* lisp/files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
[bpt/emacs.git] / lisp / ChangeLog
... / ...
CommitLineData
12014-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
4
52014-06-26 Glenn Morris <rgm@gnu.org>
6
7 * Makefile.in (update-authors): Update for moved authors.el.
8
92014-06-26 Leo Liu <sdl.web@gmail.com>
10
11 * skeleton.el (skeleton-end-hook): Default to nil and move the
12 work to skeleton-insert. (Bug#17850)
13
142014-06-26 Dmitry Antipov <dmantipov@yandex.ru>
15
16 * calc/calc-alg.el (math-beforep):
17 * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
18 Simplify because string-lessp can accept symbols as args.
19
202014-06-26 Daiki Ueno <ueno@gnu.org>
21
22 * emacs-lisp/package.el (package--check-signature):
23 If package-check-signature is allow-unsigned, don't signal error when
24 we can't verify signature because of missing public key
25 (bug#17625).
26
272014-06-26 Glenn Morris <rgm@gnu.org>
28
29 * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
30 Remove outdated declaration.
31
32 * emacs-lisp/authors.el (authors-valid-file-names)
33 (authors-renamed-files-alist): Additions.
34
352014-06-26 Leo Liu <sdl.web@gmail.com>
36
37 * textmodes/picture.el (picture-set-tab-stops):
38 * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
39 (ruler-mode-ruler): Fix to work with nil tab-stop-list.
40
41 * progmodes/asm-mode.el (asm-calculate-indentation):
42 Use indent-next-tab-stop.
43
44 * indent.el (indent-accumulate-tab-stops): New function.
45
462014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
47
48 * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
49 (package-desc-status): Obey it.
50
512014-06-26 Stephen Berman <stephen.berman@gmx.net>
52
53 * calendar/todo-mode.el: Fix two bugs.
54 (todo-insert-item--basic): If user cancels item insertion to
55 another category before setting priority, show original category
56 whether it is in the same or a different file.
57 (todo-set-item-priority): After selecting category, instead of
58 moving point to top, which extends an active region, restore it.
59
602014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * help-fns.el (describe-function-1): Check file-name is a string before
63 calling help-fns--autoloaded-p (bug#17564).
64
652014-06-26 Juri Linkov <juri@jurta.org>
66
67 * desktop.el (desktop-auto-save-enable)
68 (desktop-auto-save-disable): New functions.
69 (desktop-save-mode, desktop-auto-save-timeout): Use them.
70 (desktop-read): Disable the autosave before loading the desktop,
71 and enable afterwards. (Bug#17351)
72
732014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 Fix some indentation problem with \; and pipes (bug#17842).
76 * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
77 (sh-smie--default-forward-token, sh-smie--default-backward-token):
78 New functions.
79 (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
80 (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
81 (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
82
832014-06-26 Glenn Morris <rgm@gnu.org>
84
85 * emacs-lisp/find-func.el (find-function-C-source-directory):
86 Use file-accessible-directory-p.
87
88 * ps-samp.el: Make it slightly less awful.
89 (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
90 (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
91 Only set local values.
92 (ps-article-subject, ps-article-author): Use standard functions
93 like mail-fetch-field.
94 (ps-info-file, ps-info-node): Use match-string.
95 (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
96 (ps-samp-ps-setup): ... new function.
97
98 * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
99 Optimize away code unneeded on any modern Emacs.
100
101 * emacs-lisp/authors.el: Move to ../admin.
102
103 * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
104
1052014-06-26 Luke Lee <luke.yx.lee@gmail.com>
106
107 * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
108 (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
109 performance enhancements.
110 (hif-parse-if-exp): Rename to `hif-parse-exp'. Enhance for macro
111 expansion.
112 (hif-factor, hif-string-concatenation, intern-safe): Support string
113 concatenation and argumented macro expansion.
114 (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
115 (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
116 (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
117 (hif-canonicalize-tokens, hif-place-macro-invocation)
118 (hif-parse-macro-arglist): Mostly new functions for supporting
119 argumented macro expansion.
120 (hif-string-concatenation, hif-stringify, hif-token-concat)
121 (hif-token-stringification, hif-token-concatenation):
122 Stringification and concatenation.
123 (hif-find-next-relevant): Fix comments.
124 (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
125 some cases involving #elif.
126 (hif-find-define, hif-add-new-defines): New functions for automatically
127 scanning of defined symbols.
128 (hide-ifdef-guts): Fix for defined symbol auto scanning.
129 (hide-ifdef-undef): Fix behavior to match CPP.
130
1312014-06-25 Glenn Morris <rgm@gnu.org>
132
133 * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
134 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
135 ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
136 files. They are not relevant to the original issue (bug#1004),
137 and cause unnecessary recompilation (bug#2151).
138
1392014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * play/landmark.el: Use lexical-binding and avoid `intangible'.
142 (landmark--last-pos): New var.
143 (landmark--intangible-chars): New const.
144 (landmark--intangible): New function.
145 (landmark-mode, landmark-move): Use it.
146 (landmark-mode): Remove properties.
147 (landmark-plot-square, landmark-point-square, landmark-goto-xy)
148 (landmark-cross-qtuple):
149 Don't worry about `intangible' any more.
150 (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
151 (landmark-init-display): Don't set `intangible' and `point-entered'.
152 (square): Remove. Inline it instead.
153 (landmark--distance): Rename from `distance'.
154 (landmark-calc-distance-of-robot-from): Rename from
155 calc-distance-of-robot-from.
156 (landmark-calc-smell-internal): Rename from calc-smell-internal.
157
1582014-06-25 Dmitry Antipov <dmantipov@yandex.ru>
159
160 * files.el (dir-locals-find-file, file-relative-name):
161 * info.el (Info-complete-menu-item):
162 * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
163 to compare-strings to avoid out-of-range errors.
164 * subr.el (string-prefix-p): Adjust to match strict range
165 checking in compare-strings.
166
1672014-06-24 Leonard Randall <leonard.a.randall@gmail.com> (tiny change)
168
169 * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
170 for comment lines non-greedy and stopping at newlines to fix stack
171 overflows with large files.
172
1732014-06-24 Eli Barzilay <eli@barzilay.org>
174
175 * calculator.el (calculator-last-input): Drop 'ascii-character property
176 lookup.
177
1782014-06-24 Leo Liu <sdl.web@gmail.com>
179
180 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
181 tab-stop-list to nil. (Bug#16381)
182
183 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
184 (indent-rigidly-left-to-tab-stop)
185 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
186 (move-to-tab-stop): Change callers.
187
1882014-06-24 Eli Zaretskii <eliz@gnu.org>
189
190 * skeleton.el (skeleton-insert): Yet another fix of the doc string
191 wrt behavior of \n as the first/last element of a skeleton.
192
1932014-06-24 Michael Albinus <michael.albinus@gmx.de>
194
195 * net/tramp-adb.el (tramp-adb-handle-process-file):
196 * net/tramp-sh.el (tramp-sh-handle-process-file):
197 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
198 the output buffer when DISPLAY is non-nil. (Bug#17815)
199
2002014-06-24 Glenn Morris <rgm@gnu.org>
201
202 * play/landmark.el (landmark-move-down, landmark-move-up):
203 Fix 2007-10-20 change - preserve horizontal position.
204
2052014-06-23 Sam Steingold <sds@gnu.org>
206
207 * simple.el (kill-append): Remove undo boundary depending on ...
208 (kill-append-merge-undo): New user option.
209
2102014-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
211
212 * simple.el (handle-shift-selection, exchange-point-and-mark)
213 (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
214 (transient-mark-mode): Use&set the global value.
215 * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
216 * emulation/edt.el (edt-emulation-off): Save&restore the global
217 transient-mark-mode setting.
218 * obsolete/pc-select.el (pc-selection-mode): Use the
219 transient-mark-mode function.
220
2212014-06-23 Eli Zaretskii <eliz@gnu.org>
222
223 * international/fontset.el (script-representative-chars):
224 Add representative characters for scripts added in Unicode 7.0.
225 (otf-script-alist): Synchronize with the latest registry of OTF
226 script tags.
227
228 * international/characters.el (char-script-table): Update for
229 scripts added and codepoint ranges changed in Unicode 7.0.
230
2312014-06-23 Eli Barzilay <eli@barzilay.org>
232
233 * calculator.el (calculator-standard-displayer): Fix bug in use of
234 `calculator-groupize-number'.
235 (calculator-funcall): Fix broken `cl-flet' use by moving it into the
236 `eval' code, so it works in v24.3.1 too.
237 (calculator-last-input): Comment to clarify purpose.
238
2392014-06-22 Mario Lang <mlang@delysid.org>
240
241 * textmodes/rst.el (rst-comment-region): From from -> from.
242
243 * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
244
2452013-06-22 Dmitry Antipov <dmantipov@yandex.ru>
246
247 * electric.el (electric-layout-post-self-insert-function):
248 * emacs-lisp/ert.el (ert--insert-infos):
249 * obsolete/vi.el (vi-set-mark):
250 * term.el (term-handle-scroll):
251 * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
252 * wid-edit.el (widget-editable-list-value-create):
253 Prefer point-marker to copy-marker of point.
254
2552014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
256
257 Fix completion retrieval parsing (bug#17209).
258 * progmodes/python.el (python-mode):
259 (python-util-strip-string): New function.
260 (python-shell-completion-get-completions): Use it.
261
2622014-06-21 Eli Zaretskii <eliz@gnu.org>
263
264 * skeleton.el (skeleton-insert): Fix last change.
265
2662014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
267
268 Enhancements for outline integration (bug#17796).
269 * progmodes/python.el (python-mode): Properly set
270 outline-heading-end-regexp so that comments after colons for
271 defuns are supported.
272
2732014-06-21 Eli Zaretskii <eliz@gnu.org>
274
275 * skeleton.el (skeleton-insert): Doc fix.
276
2772014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
278
279 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
280 (smie-config-guess): Use smie-config-local so the rules are obeyed
281 (bug#17818).
282
283 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
284 since it's already done inside the loop (bug#17819).
285
2862014-06-21 Martin Rudalics <rudalics@gmx.at>
287
288 * mouse.el (mouse-drag-line): Re-remove code initially removed
289 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
290 (Bug#17819).
291
2922014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
293
294 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
295 align with the surrounding parent (bug#17721).
296
2972014-06-21 Eli Zaretskii <eliz@gnu.org>
298
299 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
300 locally to nil.
301 (texinfo-insert-block, texinfo-insert-@end)
302 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
303 local setting of skeleton-end-newline by adding an explicit \n to
304 the skeletons where appropriate. (Bug#17801)
305
3062014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
307
308 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
309 (smie-indent--hanging-p): Use it.
310 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
311
3122014-06-21 Leo Liu <sdl.web@gmail.com>
313
314 * simple.el (read-quoted-char): Don't let help chars pop up help
315 buffer. (Bug#16617)
316
3172014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
318
319 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
320 for | (bug#17621).
321
322 * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
323 Drop unknown events instead of burping.
324
3252014-06-21 Eli Zaretskii <eliz@gnu.org>
326
327 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
328 and later. (Bug#17790)
329
3302014-06-21 Juri Linkov <juri@jurta.org>
331
332 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
333 to `soft'. (Bug#17554)
334
3352014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
336
337 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
338 (bug#17737).
339
3402014-06-21 Dmitry Gutov <dgutov@yandex.ru>
341
342 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
343 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
344
3452014-06-21 Michael Albinus <michael.albinus@gmx.de>
346
347 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
348 `unread-command-events'.
349
3502014-06-19 William Xu <william.xwl@gmail.com>
351
352 * progmodes/hideif.el (hif-string-to-number): Don't return float for
353 hex integer constants (bug#17807).
354
3552014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
356
357 * international/mule-util.el (truncate-string-ellipsis): New var.
358 (truncate-string-to-width): Use it.
359
3602014-06-19 Robert Brown <robert.brown@gmail.com> (tiny change)
361
362 * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
363 (lisp-string-in-doc-position-p): New function, extracted from
364 lisp-font-lock-syntactic-face-function.
365 (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
366
3672014-06-19 Grégoire Jadi <daimrod@gmail.com>
368
369 * net/rcirc.el (rcirc-omit-mode): Fix recenter error. (Bug#17769)
370
3712014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
372
373 * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
374 (bubbles--game-over): Don't add `intangible' properties since they
375 didn't work anyway.
376
3772014-06-18 Juri Linkov <juri@jurta.org>
378
379 * vc/ediff-init.el (ediff-current-diff-Ancestor)
380 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
381 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
382 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
383 Add `min-colors 88' version with removed black/white foregrounds.
384 (Bug#10181)
385
3862014-06-18 Juri Linkov <juri@jurta.org>
387
388 * vc/diff-mode.el (diff-changed): Empty face definition to use
389 `diff-removed' and `diff-added' on tty as well. (Bug#10181)
390 (diff-context): Use darker color on light background and
391 lighter color on dark background.
392
3932014-06-18 Juri Linkov <juri@jurta.org>
394
395 * vc/diff-mode.el (diff-refine-changed): Rename from
396 `diff-refine-change' for consistency with `diff-changed'.
397 (diff-refine-change): Add obsolete face alias. (Bug#10181)
398
399 * vc/smerge-mode.el (smerge-refined-changed): Rename from
400 `smerge-refined-change'.
401 (smerge-refined-change): Add obsolete face alias.
402
4032014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
404
405 * rect.el (rectangle-preview): New custom.
406 (rectangle): New group.
407 (rectangle--pos-cols): Add `window' argument.
408 (rectangle--string-preview-state, rectangle--string-preview-window):
409 New vars.
410 (rectangle--string-flush-preview, rectangle--string-erase-preview)
411 (rectangle--space-to, rectangle--string-preview): New functions.
412 (string-rectangle): Use them.
413 (rectangle--inhibit-region-highlight): New var.
414 (rectangle--highlight-for-redisplay): Obey it. Make sure
415 `apply-on-region' uses the point-crutches of the right window.
416 Use :align-to rather than multiple spaces.
417
4182014-06-16 Andrea Rossetti <andrea.rossetti@gmail.com> (tiny change)
419
420 * ruler-mode.el (ruler-mode-window-col)
421 (ruler-mode-mouse-set-left-margin)
422 (ruler-mode-mouse-set-right-margin): Fix calculation of column
423 from mouse position (Bug#17768).
424
4252014-06-16 Ron Schnell <ronnie@driver-aces.com>
426
427 * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
428 without varname or rhs causes crash.
429 (dun-ftp): Fix bug where blank ftp password is allowed, making it
430 impossible to win endgame.
431 (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
432 rlogin is anymore.
433 (dun-help): Bump version number; update contact info.
434
4352014-06-15 Eli Barzilay <eli@barzilay.org>
436
437 * calculator.el (calculator-prompt, calculator-remove-zeros)
438 (calculator-mode-hook, calculator-operators, calculator-stack)
439 (calculator-mode): Tweak docstring.
440 (calculator-user-operators): Tweak docstring, fix a bug in the last
441 example.
442 (calculator-displayer): `std' case has an optional boolean.
443 (calculator-displayers): Use the new boolean to group in decimal mode.
444 (calculator-mode-map, calculator, calculator-message)
445 (calculator-op-arity, calculator-add-operators)
446 (calculator-string-to-number, calculator-displayer-prev)
447 (calculator-displayer-next, calculator-remove-zeros)
448 (calculator-eng-display, calculator-number-to-string)
449 (calculator-update-display, calculator-last-input)
450 (calculator-clear-fragile, calculator-digit, calculator-decimal)
451 (calculator-exp, calculator-saved-move, calculator-clear)
452 (calculator-copy, calculator-put-value, calculator-help)
453 (calculator-expt, calculator-truncate): Minor code improvements.
454 (calculator-need-3-lines): New function pulling out code from
455 `calculator'.
456 (calculator-get-display): Rename from `calculator-get-prompt', and
457 improved.
458 (calculator-push-curnum): Rename from `calculator-curnum-value', and
459 extended for all uses of it. All callers changed.
460 (calculator-groupize-number): New utility for splitting a number into
461 groups.
462 (calculator-standard-displayer): Improve code, new optional argument to
463 use comma-split groups, make second argument optional too to use with
464 'left/'right inputs. All callers changed.
465 (calculator-reduce-stack-once): New utility, doing the meat of what
466 `calculator-reduce-stack' used to do, much improved (mostly using
467 `pcase' for conciseness and clarity).
468 (calculator-reduce-stack): Now doing just the reduction loop using
469 `calculator-reduce-stack-once'.
470 (calculator-funcall): Improve code, make it work in v24.3.1 too.
471 (calculator-last-input): Improve code, remove some old cruft.
472 (calculator-quit): Kill `calculator-buffer' in electric mode too.
473 (calculator-integer-p): Remove.
474 (calculator-fact): Improve code, make it work on non-integer values
475 too (using truncated numbers).
476
4772014-06-15 Michael Albinus <michael.albinus@gmx.de>
478
479 Sync with Tramp 2.2.10.
480
481 * net/tramp.el (tramp-methods): Tweak docstring.
482 (tramp-handle-file-accessible-directory-p): Check for
483 `file-readable-p' instead of `file-executable-p'.
484 (tramp-check-cached-permissions):
485 Use `tramp-compat-file-attributes'.
486 (tramp-call-process): Add new argument VEC. Adapt callees in all
487 tramp*.el files.
488
489 * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
490 (tramp-adb-maybe-open-connection): Don't set
491 `tramp-current-*' variables.
492
493 * net/tramp-cache.el (tramp-flush-file-function): Do not flush
494 file properties of temporary buffers.
495
496 * net/tramp-ftp.el (top): Remove special handling for URL syntax.
497
498 * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
499 (tramp-gvfs-handle-delete-file): Flush file
500 properties, not directory properties.
501 (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
502 reading "unix::mode".
503 (tramp-gvfs-handle-file-name-all-completions):
504 Use "-h" option for "gvfs-ls".
505 (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
506 (tramp-gvfs-send-command): Simplify traces.
507
508 * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
509 (vc-git-program, vc-hg-program): Declare.
510 (tramp-methods) <sftp>: Remove. It has never worked satisfactorily.
511 (tramp-methods) <nc>: Add new method.
512 (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
513 (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
514 `tramp-login-args'.
515 (tramp-default-user-alist): Add "nc".
516 (top): Remove completion function for "sftp". Add completion
517 functions for "nc" and "psftp".
518 (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
519 Implement support for "nc" method.
520 (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
521 (tramp-remote-coding-commands, tramp-call-local-coding-command):
522 Tweak docstring.
523 (tramp-sh-handle-write-region): Tweak error message.
524 (tramp-sh-handle-vc-registered): Remove backends when the remote
525 binary does not exist.
526 (tramp-find-inline-encoding): Do not raise an error.
527 (tramp-make-copy-program-file-name): Tweak docstring. Handle also
528 the "nc" case. Quote result also locally.
529
530 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
531 (tramp-smb-handle-set-file-acl): Use `start-process'.
532 (tramp-smb-handle-insert-directory): Use progress reporter.
533 (tramp-smb-handle-rename-file): Flush also file properties of
534 FILENAME.
535
536 * net/trampver.el: Update release number.
537
5382014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
539
540 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
541 add-to-list.
542 (ses-localvars): Remove ses--local-printer-list, unused.
543 (ses--metaprogramming): New macro. Use it to defvar variables.
544 (ses-set-localvars): Simplify.
545 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
546 property-list into an alist.
547 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
548 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
549 Remove; use defstruct accessors/setters instead.
550 (ses-cell-formula-aset, ses-cell-printer-aset)
551 (ses-cell-references-aset): Remove, use setf instead.
552 (ses--alist-get): New function.
553 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
554 Use an alist instead of a plist and don't do move-to-front since the
555 list is always short.
556 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
557 (ses-cell-property-set-fun, ses-cell-property-set)
558 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
559 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
560 (ses--letref): New macro.
561 (ses-cell-property-pop): Rewrite.
562 (ses--cell): Rename from ses-cell and make it into a function.
563 Make `formula' fallback on `value' if nil.
564 (ses--local-printer): Rename from ses-local-printer and make it into
565 a function.
566 (ses-set-cell): Turn it into a macro so finding the accessor from the
567 field name is done at compile time.
568 (ses-repair-cell-reference-all): Test presence of `sym' rather than
569 `ref' before adding `sym' to :ses-repair-reference.
570 (ses-calculate-cell): Use ses--letref rather than
571 ses-cell-property-get-handle.
572 (ses-write-cells): Use a single prin1-to-string.
573 (ses-setter-with-undo): New function.
574 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
575 (ses-unset-with-undo): Remove.
576 (ses-load): Prefer apply' over `eval'.
577 (ses-read-printer, ses-set-column-width): Use standard "(default
578 foo)" format.
579
5802014-06-15 Glenn Morris <rgm@gnu.org>
581
582 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
583
584 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
585 Replace delete-duplicates and mapcan by cl- versions throughout.
586 And cl-macroexpand-all by macroexpand-all.
587 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
588
5892014-06-15 Eli Zaretskii <eliz@gnu.org>
590
591 * subr.el (posn-col-row): Doc fix. (Bug#17768)
592
5932014-06-15 Juri Linkov <juri@jurta.org>
594
595 * bindings.el: Put `ascii-character' property on keypad keys
596 mapped to characters. (Bug#17759)
597
5982014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
599
600 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
601 bumping forward into a closing paren (bug#17761).
602
603 * term/xterm.el (xterm--version-handler): Work around for OSX
604 Terminal.app (bug#17607).
605
6062014-06-14 Ron Schnell <ronnie@driver-aces.com>
607
608 * play/dunnet.el (dun-describe-room, dun-mode):
609 If a lamp is in the room, you won't be eaten by a grue.
610
6112014-06-13 Glenn Morris <rgm@gnu.org>
612
613 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
614 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
615 (compile-always): GNU make automatically passes
616 command-line arguments to sub-makes.
617
618 * calendar/calendar.el (calendar-generate-window):
619 Remove pointless call to font-lock-fontify-buffer.
620
6212014-06-13 Matthias Meulien <orontee@gmail.com>
622
623 * simple.el (completion-list-mode-map): Navigate with tab and backtab
624 (bug#17767).
625
6262014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
627
628 * simple.el (set-mark-command): Simplify a bit.
629
6302014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
631
632 * help.el (help--key-binding-keymap): New function.
633 (help--binding-locus): New function.
634 (describe-key): Mention the keymap in which the binding was
635 found. (bug#13948)
636
6372014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
638
639 * hippie-exp.el (he--all-buffers): New function.
640 (try-expand-line-all-buffers, try-expand-list-all-buffers)
641 (try-expand-dabbrev-all-buffers): Use it.
642
6432014-06-12 Emilio C. Lopes <eclig@gmx.net>
644
645 * hippie-exp.el (try-expand-line-all-buffers)
646 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
647 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
648 original buffer, in case they're buffer-local.
649
6502014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
651
652 * ses.el (ses-initial-global-parameters-re): New defconst, a
653 specific regexp is needed now that ses.el can handle both
654 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
655 local printers.
656 (ses-localvars): Add local variables needed for local printer handling.
657 (ses-set-localvars): Handle hashmap initialisation.
658 (ses-paramlines-plist): Add param-line for number of local printers.
659 (ses-paramfmt-plist): New defconst, needed for code factorization
660 between functions `ses-set-parameter' and
661 `ses-file-format-extend-paramter-list'
662 (ses-make-local-printer-info): New defsubst.
663 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
664 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
665 (ses-cell-printer-aset): New defmacro.
666 (ses-local-printer-compile): New defun.
667 (ses-local-printer): New defmacro.
668 (ses-printer-validate, ses-call-printer): Add support for local
669 printer functions.
670 (ses-file-format-extend-paramter-list): New defun.
671 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
672 factorization.
673 (ses-load): Add support for local printer functions.
674 (ses-read-printer): Update docstring and add support for local printer
675 functions.
676 (ses-refresh-local-printer, ses-define-local-printer): New defun.
677 (ses-safe-printer): Add support for local printer functions.
678
6792014-06-12 Ivan Andrus <darthandrus@gmail.com>
680
681 * ffap.el (ffap-lax-url): New var (bug#17723).
682 (ffap-url-at-point): Use it.
683 (ffap-file-at-point): Avoid returning just "/".
684
6852014-06-12 Matthias Meulien <orontee@gmail.com>
686
687 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
688 (python-mode-map): Bind it.
689
690 * progmodes/python.el (class skeleton): Don't erase last char of class
691 name (bug#17683).
692
6932014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
694
695 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
696
6972014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
698
699 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
700 (bug#17745).
701
7022014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
703
704 * international/mule-cmds.el: Use lexical-binding.
705 (ucs-names): Simplify.
706
7072014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
708
709 * progmodes/python.el (run-python): Use read-shell-command.
710
7112014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
712
713 * rect.el: Make it possible to move bounds past EOL or into TABs.
714 (operate-on-rectangle): Use apply-on-rectangle.
715 (rectangle--mark-crutches): New var.
716 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
717 (rectangle--crutches, rectangle--reset-crutches): New functions.
718 (apply-on-rectangle): Obey crutches. Avoid setq.
719 Fix missing final iteration if end is at EOB&BOL.
720 (rectangle-mark-mode-map): Add remap bindings for
721 exchange-point-and-mark and char/line movements.
722 (rectangle--*-char): New function.
723 (rectangle-exchange-point-and-mark, rectangle-right-char)
724 (rectangle-left-char, rectangle-forward-char)
725 (rectangle-backward-char, rectangle-next-line)
726 (rectangle-previous-line): New commands.
727 (rectangle--place-cursor): New function.
728 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
729
7302014-06-08 Glenn Morris <rgm@gnu.org>
731
732 * startup.el (initial-buffer-choice): Doc fix.
733 Reset :version (adding an option does not merit a :version bump).
734
735 * bookmark.el (bookmark-load):
736 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
737
7382014-06-08 Juri Linkov <juri@jurta.org>
739
740 * desktop.el: Activate auto-saving on window configuration changes.
741 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
742 `desktop-auto-save-set-timer' to/from
743 `window-configuration-change-hook'.
744 (desktop-auto-save-set-timer): Change REPEAT arg of
745 `run-with-idle-timer' from t to nil.
746 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
747
7482014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
749
750 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
751 vc-hg-command (bug#17570).
752
7532014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
754
755 * international/mule-cmds.el (ucs-names): Add special entry for BEL
756 (bug#17702).
757
7582014-06-08 Glenn Morris <rgm@gnu.org>
759
760 * startup.el (window-setup-hook): Doc fix.
761
762 * emacs-lisp/package.el (package-check-signature)
763 (package-unsigned-archives): Doc fixes.
764
7652014-06-08 Martin Rudalics <rudalics@gmx.at>
766
767 * window.el (display-buffer-use-some-window): Don't make window
768 used smaller than it was before (Bug#17671).
769
7702014-06-08 Eli Zaretskii <eliz@gnu.org>
771
772 * menu-bar.el (menu-bar-open): Fix last change: use the PC
773 'redisplay' instead of '(sit-for 0)'.
774
7752014-06-08 Michael Albinus <michael.albinus@gmx.de>
776
777 * net/tramp.el (tramp-ssh-controlmaster-options):
778 Improve search regexp. (Bug#17653)
779
7802014-06-08 Glenn Morris <rgm@gnu.org>
781
782 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
783
7842014-06-08 Eli Zaretskii <eliz@gnu.org>
785
786 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
787
7882014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
789
790 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
791 (bug#17586).
792
793 * vc/vc-hg.el (vc-hg-log-graph): New var.
794 (vc-hg-print-log): Use it.
795 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
796 graph output (bug#17515).
797
7982014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
799
800 * mouse.el (mouse-posn-property): Ignore buffer position info when the
801 even happened elsewhere.
802
8032014-06-06 Mario Lang <mlang@delysid.org>
804
805 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
806 `recenter' if `current-buffer' is equal to `window-buffer'.
807
8082014-06-05 Leo Liu <sdl.web@gmail.com>
809
810 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
811
8122014-06-05 Michal Nazarewicz <mina86@mina86.com>
813
814 * textmodes/tildify.el (tildify-foreach-region-outside-env):
815 New function which calls a callback on portions of the buffer that are
816 outside of ignored environments.
817 (tildify-build-regexp): Remove function since it is now
818 incorporated in `tildify-foreach-region-outside-env' where it is
819 optimised and simplified by the use of `mapconcat'.
820 (tildify-tildify): Return number of substitutions made so that…
821 (tildify-count): …can be removed.
822 (tildify-find-env): Accept a new PAIRS argument which was
823 previously looked up in `tildify-ignored-environments-alist' each
824 time the function was called. With this change, the lookup is
825 performed only once in `tildify-foreach-region-outside-env'.
826 (tildify-region): Greatly simplify the function since now most of
827 the work is done by `tildify-foreach-region-outside-env'.
828 (tildify-mode-alist): Simplify slightly by avoiding if and setq
829 and instead using or.
830
831 * textmodes/tildify.el (tildify-ignored-environments-alist):
832 Optimise environments regexes
833
834 Each time beginning of an environment to ignore is found,
835 `tildify-find-env' needs to identify regexp for the ending
836 of the environment. This is done by trying all the opening
837 regexes on matched text in a loop, so to speed that up, this
838 loop should have fewer things to match, which can be done by
839 using alternatives in the opening regexes.
840
841 Coincidentally, this should make matching of the opening
842 regexp faster as well thanks to the use of `regexp-opt' and
843 having common prefix pulled from many regexes.
844
845 * textmodes/tildify.el (tildify-string-alist)
846 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
847 of supported modes since `xml-mode' is no longer a thing but just
848 an alias to the former. Also include comments and insides of tags
849 in `tildify-ignored-environments-alist' for XML modes. Finally,
850 since XML does not define “&nbsp;”[1], use a numeric reference for
851 a no-break space (namely “&#160;”)
852
853 [1] XML specification defines only a handful of predefined entities.
854 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
855 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
856 >, &, ' and " respectively). This is in contrast to HTML and even
857 XHTML which defined a whole bunch of entities including “&nbsp;”.
858
859 * textmodes/tildify.el (tildify-pattern-alist)
860 (tildify-string-alist, tildify-ignored-environments-alist):
861 Improve defcustom's types by adding more tags explaining what each
862 value means and replace “sexp” used in
863 `tildify-ignored-environments-alist' with a full type declaration.
864
865 * textmodes/tildify.el (tildify-find-env): Fix matched group
866 indexes in end-regex building
867
868 When looking for a start of an ignore-environment, the regex is built
869 by concatenating regexes of all the environments configured in
870 `tildify-ignored-environments-alist'. So for example, the following
871 list could be used to match TeX's \verb and \verb* commands:
872
873 (("\\\\verb\\(.\\)" . (1))
874 ("\\\\verb\\*\\(.\\)" . (1)))
875
876 This would result in the following regex being used to find the start
877 of any of the variants of the \verb command:
878
879 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
880
881 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
882 won't match anything, and thus (match-string 1) will be nil, which
883 will cause building of the end-matching regex to fail.
884
885 Fix this by using capture groups from the time when the opening
886 regexes are matched individually.
887
888 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
889 in `tildify-find-env'
890
891 The `tildify-ignored-environments-alist' allows the end-regex to
892 be provided not as a static string but mix of strings and indexes
893 of groups matched the begin-regex. For example, the “\verb!…!”
894 TeX-command (where “!” is an arbitrary character) is handled
895 using:
896
897 ("\\\\verb\\*?\\(.\\)" . (1))
898
899 In the same way, the following should be supported as well:
900
901 ("open-\\(.\\)" . ("end-" 1))
902
903 However the tildify-find-env function fails at
904
905 (concat result
906 (if (stringp (setq aux (car expression)))
907 expression ; BUG: expression is a list
908 (regexp-quote (match-string aux))))
909
910 where the string part is handled incorrectly.
911
912 The most trivial fix would be to replace `expression' in the
913 true-part of the if-statement with `aux', but instead, this commit
914 optimises `tildify-find-env' by changing it to use `mapconcat'
915 rather than open-coded while-loop.
916
9172014-06-05 Mario Lang <mlang@delysid.org>
918
919 * woman.el (woman-mapcan): Remove.
920 (woman-parse-colon-path): Use cl-mapcan instead.
921
9222014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
923
924 * register.el: Add link to Emacs manual in Commentary.
925
9262014-06-02 Sam Steingold <sds@gnu.org>
927
928 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
929 (popup-menu): ...here.
930 (menu-bar-open): Use it to avoid an error when `lookup-key'
931 returns a number.
932
9332014-06-02 Michael Albinus <michael.albinus@gmx.de>
934
935 * net/tramp.el (tramp-call-process): Add traces.
936 (tramp-handle-unhandled-file-name-directory): Return "/".
937
9382014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
939
940 Sync with upstream verilog-mode revision 3cd8144.
941 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
942 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
943 (verilog-type-font-keywords): Add nor.
944 (verilog-batch-execute-func): Force reading of Local Variables.
945 Fix printing "no changes to be saved" with verilog-batch.
946 (verilog-auto-arg-ports): Doc fix.
947 Add verilog-auto-arg-format to support newlines in AUTOARG.
948 (verilog-auto-arg): Doc fix.
949
9502014-06-02 Glenn Morris <rgm@gnu.org>
951
952 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
953 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
954 * emulation/ws-mode.el: Move to obsolete/.
955 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
956
9572014-06-02 Eli Zaretskii <eliz@gnu.org>
958
959 * simple.el (keyboard-quit): Force update of mode lines, to remove
960 the "Def" indicator, if we were defining a macro. (Bug#17615)
961
9622014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * minibuffer.el (minibuffer-force-complete-and-exit):
965 Obey minibuffer-default (bug#17545).
966
967 * progmodes/js.el (js-indent-line): Don't mix columns and chars
968 (bug#17619).
969
970 * subr.el (set-transient-map): Don't wait for some "nested"
971 transient-map to finish if we're only supposed to be active for
972 the next command (bug#17642).
973
9742014-06-02 Leo Liu <sdl.web@gmail.com>
975
976 * emacs-lisp/gv.el (window-buffer, window-display-table)
977 (window-dedicated-p, window-hscroll, window-point, window-start):
978 Fix gv-expander. (Bug#17630)
979
9802014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
981
982 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
983 clicks (bug#17633).
984
985 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
986 for the single comma, since ", " is *very* common in normal French text
987 (bug#17643).
988
9892014-06-02 Glenn Morris <rgm@gnu.org>
990
991 * emacs-lisp/package.el (package-check-signature)
992 (package-unsigned-archives): Fix :version.
993
9942014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
995
996 * subr.el (sit-for): Don't run input-methods (bug#15614).
997
9982014-06-02 Glenn Morris <rgm@gnu.org>
999
1000 * cus-start.el: Fix some :version numbers.
1001
10022014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * simple.el (deactivate-mark): Set mark-active to nil even if
1005 deactivation is done via setting transient-mark-mode to nil,
1006 since one is buffer-local and the other is global.
1007
1008 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
1009 there can't be more than 2 arguments (bug#17584).
1010
10112014-06-02 Glenn Morris <rgm@gnu.org>
1012
1013 * simple.el (filter-buffer-substring-functions)
1014 (filter-buffer-substring-function, buffer-substring-filters)
1015 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
1016
1017 * minibuffer.el (completion-in-region-functions, completion-in-region)
1018 (completion--in-region): Doc fixes.
1019
1020 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
1021 (expand-abbrev, abbrev--default-expand): Doc fixes.
1022
10232014-06-02 Paul Eggert <eggert@cs.ucla.edu>
1024
1025 Include sources used to create macuvs.h.
1026 * international/README: Refer to the Unicode Terms of Use rather
1027 than copying it bodily here, as that simplifies maintenance.
1028
10292014-06-01 Glenn Morris <rgm@gnu.org>
1030
1031 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
1032
10332014-05-31 Glenn Morris <rgm@gnu.org>
1034
1035 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
1036
10372014-05-30 Glenn Morris <rgm@gnu.org>
1038
1039 * loadup.el: Treat `command-line-args' more flexibly.
1040
10412014-05-30 Alan Mackenzie <acm@muc.de>
1042
1043 Guard (looking-at "\\s!") from XEmacs.
1044 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
1045
10462014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
1047
1048 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
1049 The argument COUNT is now optional, to be more backward-compatible.
1050 Doc fix. (Bug#17560)
1051
10522014-05-29 Reuben Thomas <rrt@sc3d.org>
1053
1054 * whitespace.el (whitespace-report-region):
1055 Simplify documentation.
1056 (whitespace-report-region): Allow report-if-bogus to take the
1057 value `never', for non-interactive use.
1058 (whitespace-report): Refer to whitespace-report-region's
1059 documentation.
1060
10612014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1062
1063 * whitespace.el: Use font-lock-flush. Minimize refontifications.
1064 Side benefit: it works without jit-lock.
1065 (whitespace-point--used): New buffer-local var.
1066 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
1067 (whitespace-color-off): Use font-lock-flush.
1068 (whitespace-point--used, whitespace-point--flush-used): New functions.
1069 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
1070 (whitespace-empty-at-eob-regexp): Use them.
1071 (whitespace-post-command-hook): Rewrite.
1072
1073 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
1074 (font-lock-fontify-buffer): Mark interactive-only.
1075 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
1076 Make buffer-local.
1077 (font-lock-specified-p): Remove redundant boundp check.
1078 (font-lock-flush-function, font-lock-ensure-function): New vars.
1079 (font-lock-turn-on-thing-lock): Set them.
1080 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
1081 (font-lock-after-change-function): Make `old-len' optional.
1082 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
1083 Call font-lock-flush, just in case.
1084 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
1085 recent Emacsen.
1086 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
1087 (vera-mode-map, vera-mode-menu): Remove bindings to it.
1088 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
1089 and with-syntax-table.
1090 * textmodes/conf-mode.el (conf-quote-normal):
1091 * progmodes/sh-script.el (sh-set-shell):
1092 * progmodes/prog-mode.el (prettify-symbols-mode):
1093 * progmodes/f90.el (f90-font-lock-n):
1094 * progmodes/cwarn.el (cwarn-mode):
1095 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
1096 * progmodes/compile.el (compilation-setup, compilation--unsetup):
1097 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
1098 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
1099 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
1100 font-lock-fontify-buffer-function and
1101 font-lock-unfontify-buffer-function.
1102 (rmail-unfontify-buffer-function, rmail-fontify-message):
1103 Use with-silent-modifications.
1104 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
1105 and font-lock-ensure.
1106 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
1107
11082014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
1109
1110 * emacs-lisp/package.el (package-generate-autoloads):
1111 Inhibit backup files.
1112
11132014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1114
1115 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
1116 (bug#17608).
1117
11182014-05-21 Michal Nazarewicz <mina86@mina86.com>
1119
1120 * textmodes/tildify.el (tildify-buffer, tildify-region):
1121 Add dont-ask option.
1122
11232014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1124
1125 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
1126 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
1127
1128 * subr.el (internal--funcall-interactively): New.
1129 (internal--call-interactively): Remove.
1130 (called-interactively-p): Detect funcall-interactively instead of
1131 call-interactively.
1132 * simple.el (repeat-complex-command): Use funcall-interactively.
1133 (repeat-complex-command--called-interactively-skip): Remove.
1134
11352014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1136
1137 * register.el (register-read-with-preview): Don't burp on
1138 frame switches (e.g. due to the frame we just popped).
1139
1140 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
1141 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
1142
11432014-05-26 Andreas Schwab <schwab@linux-m68k.org>
1144
1145 * cus-face.el (custom-face-attributes): Add :distant-foreground.
1146
11472014-05-26 Martin Rudalics <rudalics@gmx.at>
1148
1149 * window.el (window--dump-frame): Remove interactive specification.
1150
11512014-05-26 Glenn Morris <rgm@gnu.org>
1152
1153 * hippie-exp.el (he-line-search-regexp):
1154 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
1155
11562014-05-26 Stephen Berman <stephen.berman@gmx.net>
1157
1158 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
1159 to avoid errors when trying to create or visit a file foo.todo
1160 located outside to todo-directory, and to allow having such files
1161 without them being tied to Todo mode (bug#17482).
1162 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
1163 (todo-archive-done-item, todo-find-filtered-items-file)
1164 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
1165 (todo-category-completions, todo-read-category): When visiting a
1166 Todo file, make sure we're in the right mode and the buffer local
1167 variables are set.
1168 (todo-make-categories-list, todo-reset-nondiary-marker)
1169 (todo-reset-done-string, todo-reset-comment-string):
1170 After processing all Todo files, kill the buffers of those files that
1171 weren't being visited before the processing.
1172 (todo-display-as-todo-file, todo-add-to-buffer-list)
1173 (todo-visit-files-commands): Comment out.
1174 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
1175 (auto-mode-alist): Remove add-to-list calls making Todo file
1176 extensions unrestrictedly tied to Todo modes.
1177
11782014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1179
1180 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
1181 (advice-function-member-p): Tell it to check both names and functions
1182 (bug#17531).
1183 (advice--add-function): Adjust call accordingly.
1184
11852014-05-26 Stephen Berman <stephen.berman@gmx.net>
1186
1187 * calendar/todo-mode.el: Miscellaneous bug fixes.
1188 (todo-delete-file): When deleting an archive but not its todo
1189 file, make sure to update the todo file's category sexp.
1190 (todo-move-category): Keep the moved category's name unless the
1191 file moved to already has a category with that name. If the
1192 numerically last category of the source file was moved, make the
1193 first category current to avoid selecting a nonexisting category.
1194 (todo-merge-category): Fix implementation to make merging to a
1195 category in another file work as documented. Eliminate now
1196 insufficient and unnecessary renaming of archive category, correct
1197 document string accordingly, and clarify it. If the numerically
1198 last category of the source file was merged, make the first
1199 category current to avoid selecting a nonexisting category.
1200 (todo-archive-done-item): When there are marked items and point
1201 happens to be on an unmarked item, ignore the latter. Don't leave
1202 point below last item after archiving marked items.
1203 (todo-unarchive-items): Fix logic to ensure unarchiving an item
1204 from an archive with only one category deletes the archive only
1205 when the category is empty after unarchiving. Make sure the todo
1206 file's category sexp is updated.
1207 (todo-read-file-name): Allow an existing file name even when it is
1208 not required (todo-move-category needs this to work as documented).
1209 (todo-add-file): Call todo-validate-name to reject the name of an
1210 existing todo file (needed due to fix in todo-read-file-name).
1211 (todo-reset-nondiary-marker): Also reset in filtered items files.
1212 (todo-reset-done-string, todo-reset-comment-string): Also reset in
1213 regexp filtered items files.
1214 (todo-reset-highlight-item): Also reset in filtered items files.
1215 Fix incorrect variable reference in document string.
1216
12172014-05-26 Glenn Morris <rgm@gnu.org>
1218
1219 * window.el (window--dump-frame): Avoid error in --without-x builds.
1220
12212014-05-26 Glenn Morris <rgm@gnu.org>
1222
1223 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
1224
12252014-05-26 Eli Zaretskii <eliz@gnu.org>
1226
1227 * frame.el (set-frame-font): Doc fix.
1228
1229 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
1230
12312014-05-26 Dmitry Gutov <dgutov@yandex.ru>
1232
1233 * emacs-lisp/package.el (package--download-one-archive):
1234 Use `write-region' instead of `save-buffer' to avoid running various
1235 hooks. (Bug#17155)
1236 (describe-package-1): Same. Insert newline at the end of the
1237 buffer if appropriate.
1238
12392014-05-26 Juri Linkov <juri@jurta.org>
1240
1241 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
1242 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
1243 Add more modifiers: meta, control, shift, hyper, super, alt.
1244 (Bug#17439)
1245
1246 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
1247 to allow changing its value with `set-variable'.
1248
12492014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1250
1251 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
1252 #; comments.
1253 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
1254 New functions.
1255 (scheme-mode-variables): Set syntax-propertize-function instead of
1256 font-lock-syntactic-face-function.
1257 (scheme-font-lock-syntactic-face-function): Delete.
1258
1259 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
1260
1261 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
1262 (bug#17392).
1263
12642014-05-26 Michael Albinus <michael.albinus@gmx.de>
1265
1266 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
1267 for a temporary file name.
1268
12692014-05-26 Eli Zaretskii <eliz@gnu.org>
1270
1271 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
1272
12732014-05-26 Michael Albinus <michael.albinus@gmx.de>
1274
1275 * net/dbus.el (dbus-init-bus, dbus-call-method)
1276 (dbus-call-method-asynchronously, dbus-send-signal)
1277 (dbus-method-return-internal, dbus-method-error-internal):
1278 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
1279
12802014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1281
1282 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
1283 methods which do not have a doc string. (Bug#17490)
1284
12852014-05-25 Tassilo Horn <tsdh@gnu.org>
1286
1287 * textmodes/reftex-ref.el (reftex-format-special): Make it work
1288 also for AMS Math's \eqref macro.
1289
12902014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1291
1292 Arrange to never byte-compile the generated -pkg.el file.
1293
1294 * emacs-lisp/package.el (package-generate-description-file):
1295 Output first-line comment to set buffer-local var `no-byte-compile'.
1296 Suggested by Dmitry Gutov:
1297 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
1298
12992014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1300
1301 Fix bug: Properly quote args to generated -pkg.el `define-package'.
1302
1303 * emacs-lisp/package.el (package-generate-description-file):
1304 Inline `package--alist-to-plist'; rewrite to selectively
1305 quote alist values that are not self-quoting.
1306 (package--alist-to-plist): Delete func.
1307
13082014-05-25 Andreas Schwab <schwab@linux-m68k.org>
1309
1310 * term/xterm.el (xterm-function-map): Add mapping for shifted
1311 keypad keys.
1312
13132014-05-24 Daniel Colascione <dancol@dancol.org>
1314
1315 * progmodes/subword.el (subword-find-word-boundary): Move point to
1316 correct spot before search. (Bug#17580)
1317
1318 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
1319 breaking the build.
1320
13212014-05-24 Leo Liu <sdl.web@gmail.com>
1322
1323 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
1324
13252014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1326
1327 * minibuffer.el (completion--sreverse): Remove.
1328 (completion--common-suffix): Use `reverse' instead.
1329 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
1330
13312014-05-22 Glenn Morris <rgm@gnu.org>
1332
1333 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
1334
13352014-05-21 Daniel Colascione <dancol@dancol.org>
1336
1337 * files.el (interpreter-mode-alist): Add mksh.
1338
1339 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
1340 derivative.
1341 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
1342 mksh. Improve custom spec; allow regular expressions.
1343 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
1344 (sh-after-hack-local-variables): New function.
1345 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
1346 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
1347 the normalization.
1348 (sh-canonicalize-shell): Rewrite to support regexes.
1349
13502014-05-21 Leo Liu <sdl.web@gmail.com>
1351
1352 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
1353
13542014-05-19 Leo Liu <sdl.web@gmail.com>
1355
1356 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
1357
13582014-05-18 Glenn Morris <rgm@gnu.org>
1359
1360 * loadup.el:
1361 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
1362
13632014-05-14 Sam Steingold <sds@gnu.org>
1364
1365 * progmodes/python.el (python-shell-get-or-create-process):
1366 Do not bind `current-prefix-arg' so that C-c C-z does not talk
1367 back unless requested.
1368
13692014-05-14 Glenn Morris <rgm@gnu.org>
1370
1371 * subr.el (with-file-modes): New macro.
1372 * printing.el (pr-save-file-modes): Make obsolete.
1373 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
1374 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
1375 Add with-file-modes.
1376 * doc-view.el (doc-view-make-safe-dir):
1377 * epg.el (epg--start):
1378 * files.el (locate-user-emacs-file, make-temp-file)
1379 (backup-buffer-copy, move-file-to-trash):
1380 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
1381 * eshell/esh-util.el (eshell-with-private-file-modes)
1382 (eshell-make-private-directory):
1383 * net/browse-url.el (browse-url-mosaic):
1384 * obsolete/mailpost.el (post-mail-send-it):
1385 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
1386 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
1387 Use with-file-modes.
1388
1389 * vc/emerge.el (emerge-make-temp-file): Simplify.
1390
13912014-05-14 Stephen Berman <stephen.berman@gmx.net>
1392 Stefan Monnier <monnier@iro.umontreal.ca>
1393
1394 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
1395 suffix (bug#15419).
1396
13972014-05-14 Glenn Morris <rgm@gnu.org>
1398
1399 * vc/emerge.el (emerge-temp-file-prefix):
1400 Make pointless option obsolete.
1401 (emerge-temp-file-mode): Make non-functional option obsolete.
1402
14032014-05-14 Michael Albinus <michael.albinus@gmx.de>
1404
1405 * net/browse-url.el (browse-url):
1406 Use `unhandled-file-name-directory' when setting `default-directory',
1407 in order to circumvent stalled remote connections. (Bug#17425)
1408
14092014-05-14 Glenn Morris <rgm@gnu.org>
1410
1411 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
1412 Optimize on Emacs, which has the relevant functions for ages.
1413
14142014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1415
1416 * simple.el (undo-make-selective-list): Obey undo-no-redo.
1417
14182014-05-12 Sam Steingold <sds@gnu.org>
1419
1420 * calendar/time-date.el (seconds-to-string): New function to
1421 pretty print time delay in seconds.
1422
14232014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1424
1425 * mpc.el (mpc-format): Trim Date to the year.
1426 (mpc-songs-hashcons): Shorten the Date field.
1427
1428 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
1429 into autoloading just because of a silly indirection.
1430
14312014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
1432
1433 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
1434
14352014-05-12 Glenn Morris <rgm@gnu.org>
1436
1437 * emacs-lisp/find-gc.el: Move to ../admin.
1438
1439 * printing.el (pr-version):
1440 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
1441
1442 * net/browse-url.el (browse-url-mosaic):
1443 Create /tmp/Mosaic.PID as a private file.
1444
14452014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1446
1447 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
1448 (advice--member-p): If name is given, only compare the name.
1449 (advice--remove-function): Don't stop at the first match.
1450 (advice--normalize-place): New function.
1451 (add-function, remove-function): Use it.
1452 (advice--add-function): Pass the name, if any, to
1453 advice--remove-function.
1454
14552014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
1456
1457 * electric.el (electric-indent-post-self-insert-function): Don't use
1458 `pos' after modifying the buffer (bug#17449).
1459
14602014-05-12 Stephen Berman <stephen.berman@gmx.net>
1461
1462 * calendar/todo-mode.el (todo-insert-item-from-calendar):
1463 Correct argument list to conform to todo-insert-item--basic.
1464
14652014-05-12 Glenn Morris <rgm@gnu.org>
1466
1467 * files.el (cd-absolute): Test if directory is accessible
1468 rather than executable. (Bug#17330)
1469
1470 * progmodes/compile.el (recompile):
1471 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
1472
1473 * net/browse-url.el (browse-url-mosaic):
1474 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
1475 This is CVE-2014-3423.
1476
14772014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1478
1479 * mouse.el: Use the normal toplevel loop while dragging.
1480 (mouse-set-point): Handle multi-clicks.
1481 (mouse-set-region): Handle multi-clicks for drags.
1482 (mouse-drag-region): Update call accordingly.
1483 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
1484 Use the normal event loop instead of a local while/read-event loop.
1485 (global-map): Remove redundant bindings for double/triple-mouse-1.
1486 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
1487 Generate synthetic down events when the protocol only sends up events.
1488 (xterm-mouse-last): Remove.
1489 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
1490 terminal parameter instead.
1491 (xterm-mouse--set-click-count): New function.
1492 (xterm-mouse-event): Detect/generate double/triple clicks.
1493 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
1494
1495 * info.el (Info-quoted): New face.
1496 (Info-mode-font-lock-keywords): New var.
1497 (Info-mode): Use it.
1498
1499 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
1500 are a hindrance for C-x C-e.
1501
15022014-05-11 Leo Liu <sdl.web@gmail.com>
1503
1504 * net/rcirc.el (rcirc-sentinel): Fix last change.
1505
15062014-05-08 Sam Steingold <sds@gnu.org>
1507
1508 * net/rcirc.el (rcirc-reconnect-delay): New user option.
1509 (rcirc-sentinel): Auto-reconnect to the server if
1510 `rcirc-reconnect-delay' is non-0 (but not more often than its
1511 value in case the host is off-line).
1512
15132014-05-09 Eli Zaretskii <eliz@gnu.org>
1514
1515 * progmodes/grep.el (lgrep): Fix a typo in last commit.
1516
15172014-05-09 Glenn Morris <rgm@gnu.org>
1518
1519 * files.el (file-expand-wildcards):
1520 * man.el (Man-support-local-filenames):
1521 * printing.el (pr-i-directory, pr-interface-directory):
1522 * progmodes/grep.el (lgrep, rgrep):
1523 * textmodes/ispell.el (ispell-call-process)
1524 (ispell-call-process-region, ispell-start-process)
1525 (ispell-init-process): Use file-accessible-directory-p.
1526
15272014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1528
1529 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
1530 (xterm-mouse--read-event-sequence-1000): Return nil if something
1531 looks fishy.
1532 (xterm-mouse-event): Propagate it.
1533 (xterm-mouse-translate-1): Handle it.
1534
15352014-05-08 Stephen Berman <stephen.berman@gmx.net>
1536
1537 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
1538 four slots of the parameter list are filled, make sure to pass it
1539 to the argument list of todo-insert-item--basic.
1540
15412014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1542
1543 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
1544 Add optional `seen' argument to detect and break infinite loops.
1545
15462014-05-08 Eli Zaretskii <eliz@gnu.org>
1547
1548 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
1549 (trace-unsafe, trace-use-tree): Make parentheses style be
1550 according to Emacs style.
1551
15522014-05-08 Michael Albinus <michael.albinus@gmx.de>
1553
1554 * net/tramp-sh.el (tramp-remote-process-environment):
1555 Remove HISTFILE and HISTSIZE; it's too late to set them here.
1556 Add :version entry.
1557 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
1558 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
1559 extra "PSx=..." commands.
1560 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
1561 (Bug#17295)
1562
1563 (tramp-uudecode): Replace the hard-coded temporary file name by a
1564 format specifier.
1565 (tramp-remote-coding-commands): Enhance docstring.
1566 (tramp-find-inline-encoding): Replace "%t" by a temporary file
1567 name. (Bug#17415)
1568 This is CVE-2014-3424.
1569
15702014-05-08 Glenn Morris <rgm@gnu.org>
1571
1572 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
1573 (find-gc-source-files): Update some names.
1574 (trace-call-tree): Simplify and update.
1575 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
1576 This is CVE-2014-3422.
1577
15782014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1579
1580 * minibuffer.el (completion--try-word-completion): Revert fix for
1581 Bug#15980 (bug#17375).
1582
1583 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
1584 Always store button numbers in the same way in xterm-mouse-last;
1585 Don't burp is xterm-mouse-last is not set as expected.
1586 Never return negative indices.
1587
15882014-05-08 Dmitry Gutov <dgutov@yandex.ru>
1589
1590 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1591 Backtrack one char if the global/char-literal var matcher hits
1592 inside a string. The next char could be the beginning of an
1593 expression expansion.
1594
15952014-05-08 Glenn Morris <rgm@gnu.org>
1596
1597 * help-fns.el (describe-function-1): Test for an autoload before a
1598 macro, since `macrop' works on autoloads. (Bug#17410)
1599
16002014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1601
1602 * electric.el (electric-indent-functions-without-reindent): Add yaml.
1603
1604 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
1605 Make sure the new point we return is within the new string (bug#17239).
1606
16072014-05-05 Daniel Colascione <dancol@dancol.org>
1608
1609 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1610 Port `gnu' pattern to rx.
1611
16122014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
1613
1614 Remove unneeded prompt when closing a buffer with active
1615 emacsclient ("Buffer ... still has clients"), #16548.
1616 * server.el (server-start): Remove the only call to:
1617 (server-kill-buffer-query-function): Remove.
1618
16192014-05-04 Leo Liu <sdl.web@gmail.com>
1620
1621 * calendar/diary-lib.el (calendar-chinese-month-name-array):
1622 Defvar to pacify compiler.
1623
16242014-05-04 Eli Zaretskii <eliz@gnu.org>
1625
1626 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
1627
16282014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1629
1630 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1631 Use nil rather than `default' for the "default" appearance (bug#17388).
1632 * vc/ediff-util.el (ediff-inferior-compare-regions)
1633 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
1634 a misleading `default' value when it's really a boolean.
1635 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
1636 overlay is not visible.
1637
16382014-05-04 Stephen Berman <stephen.berman@gmx.net>
1639
1640 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
1641 (todo-menu): Uncomment and update.
1642
16432014-05-04 Stephen Berman <stephen.berman@gmx.net>
1644
1645 * calendar/todo-mode.el: Reimplement item editing to have the same
1646 basic user interface as item insertion, and make small UI and
1647 larger internal improvements to the latter.
1648 (todo-insert-item): Add reference to the Todo mode user manual to
1649 the documentation string.
1650 (todo-insert-item--basic): Rename from todo-basic-insert-item and
1651 adjust all callers. Change signature to combine diary and
1652 nonmarking arguments. Incorporate functionality of deleted item
1653 copying command and add error checking. Remove detailed
1654 descriptions of the arguments from the documentation string, since
1655 this is treated in the Todo mode user manual.
1656 (todo-copy-item, todo-edit-multiline-item)
1657 (todo-edit-done-item-comment, todo-edit-item-header)
1658 (todo-edit-item-time, todo-edit-item-date-from-calendar)
1659 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
1660 (todo-edit-item-date-year, todo-edit-item-date-month)
1661 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
1662 Remove.
1663 (todo-edit-item): Reimplement as wrapper command for
1664 todo-edit-item--next-key and make it distinguish done and not done
1665 todo items.
1666 (todo-edit-item--text): New function, replacing old command
1667 todo-edit-item and incorporating deleted commands
1668 todo-edit-multiline-item and todo-edit-done-item-comment.
1669 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
1670 Use only numeric value of prefix argument. Remove detailed
1671 descriptions of the arguments from the documentation string, since
1672 this is treated in the Todo mode user manual.
1673 (todo-edit-item--diary-inclusion): New function, replacing old
1674 command todo-edit-item-diary-inclusion and incorporating and fixing
1675 functionality of deleted command todo-edit-item-diary-nonmarking,
1676 making sure to remove todo-nondiary-marker when adding
1677 diary-nonmarking-symbol.
1678 (todo-edit-category-diary-inclusion): Make sure to delete
1679 diary-nonmarking-symbol when adding todo-nondiary-marker.
1680 (todo-edit-category-diary-nonmarking): Fix indentation.
1681 (todo-insert-item--parameters): Group diary and nonmarking
1682 parameters together.
1683 (todo-insert-item--apply-args): Adjust to signature of
1684 todo-insert-item--basic and incorporate copy parameter.
1685 Make small code improvements.
1686 (todo-insert-item--next-param): Improve prompt and adjust it to
1687 new parameter grouping. Remove obsolete code.
1688 (todo-edit-item--param-key-alist)
1689 (todo-edit-item--date-param-key-alist)
1690 (todo-edit-done-item--param-key-alist): New defconsts.
1691 (todo-edit-item--prompt): New variable.
1692 (todo-edit-item--next-key): New function.
1693 (todo-key-bindings-t): Bind "e" to todo-edit-item.
1694 Remove bindings of deleted commands.
1695
16962014-05-04 Leo Liu <sdl.web@gmail.com>
1697
1698 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
1699
17002014-05-04 Glenn Morris <rgm@gnu.org>
1701
1702 * allout-widgets.el (allout-widgets-tally)
1703 (allout-decorate-item-guides):
1704 * menu-bar.el (menu-bar-positive-p):
1705 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
1706 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
1707 * progmodes/js.el (js--inside-param-list-p)
1708 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
1709 * progmodes/prolog.el (region-exists-p):
1710 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
1711 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
1712 Doc fixes (replace `iff').
1713
17142014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1715
1716 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
1717
17182014-05-04 Leo Liu <sdl.web@gmail.com>
1719
1720 Support Chinese diary entries in calendar and diary. (Bug#17393)
1721 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
1722 (calendar-chinese-from-absolute-for-diary)
1723 (calendar-chinese-to-absolute-for-diary)
1724 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
1725 (diary-chinese-list-entries): New functions to list and mark
1726 Chinese diary entries in the calendar window.
1727 (diary-chinese-anniversary)
1728 (diary-chinese-insert-anniversary-entry)
1729 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
1730 (diary-chinese-insert-yearly-entry): New commands to insert
1731 Chinese diary entries.
1732
1733 * calendar/diary-lib.el (diary-font-lock-keywords):
1734 Support font-locking Chinese dates.
1735
1736 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
1737 inserting Chinese diary entries.
1738
1739 * calendar/calendar.el (diary-chinese-entry-symbol):
1740 New customizable variable.
1741 (calendar-mode-map): Add bindings for inserting Chinese diary
1742 entries.
1743
17442014-05-03 Juri Linkov <juri@jurta.org>
1745
1746 * dired.el (dired-check-switches, dired-switches-recursive-p):
1747 New functions. (Bug#17218)
1748 (dired-switches-escape-p, dired-move-to-end-of-filename):
1749 Use `dired-check-switches'.
1750 (dired-insert-old-subdirs, dired-build-subdir-alist)
1751 (dired-sort-R-check): Use `dired-switches-recursive-p'.
1752
17532014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
1754
1755 * simple.el (undo-make-selective-list): New algorithm fixes
1756 incorrectness of position adjustments when undoing in region.
1757 (Bug#17235)
1758 (undo-elt-crosses-region): Make obsolete.
1759 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
1760 New functions to adjust positions using undo-deltas.
1761
17622014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1763
1764 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
1765 the last consecutive closing paren (bug#17345).
1766
17672014-04-30 Reuben Thomas <rrt@sc3d.org>
1768
1769 * dired.el (dired-mode): make terminology for eXpunge command
1770 consistent. (Bug#17276)
1771
17722014-04-30 Eli Zaretskii <eliz@gnu.org>
1773
1774 * dired.el (dired-initial-position-hook, dired-initial-position):
1775 Doc string fixes.
1776
17772014-04-30 Glenn Morris <rgm@gnu.org>
1778
1779 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
1780
17812014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
1782
1783 * faces.el (face-spec-recalc): Apply X resources only after the
1784 defface spec has been applied. Thus, X resources are no longer
1785 overriden by the defface spec which also fixes issues on win32 where
1786 the toolbar coloring was wrong because it is set through X resources
1787 and was (wrongfully) overriden. (Bug#16694)
1788
17892014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
1790
1791 * textmodes/rst.el (electric-pair-pairs): Declare.
1792 (rst-mode): Set it (bug#17131).
1793
17942014-04-30 Juri Linkov <juri@jurta.org>
1795
1796 * desktop.el (desktop-value-to-string): Let-bind `print-length'
1797 and `print-level' to nil. (Bug#17351)
1798
17992014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1800
1801 * battery.el (battery-update): Handle the case where battery
1802 status is "N/A" (bug#17319).
1803
18042014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1805
1806 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
1807 to syntax-propertize.
1808 (ps-mode-auto-indent): Mark as obsolete.
1809 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
1810 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
1811 word regexp operators.
1812 (ps-mode-map): Move initialization into declaration. Remove binding
1813 for TAB, RET, >, ], and }.
1814 (ps-mode-syntax-table): Move initialization into declaration.
1815 Don't give word syntax to non-word chars.
1816 (ps-run-mode-map): Move initialization into declaration.
1817 (ps-mode-menu-main): Remove auto-indent entry.
1818 (ps-mode-smie-rules): New function.
1819 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
1820 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
1821 (ps-mode--string-syntax-table): New const.
1822 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
1823 New functions.
1824 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
1825 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
1826
18272014-04-27 Daniel Colascione <dancol@dancol.org>
1828
1829 * term/xterm.el (xterm-paste): Use large finite timeout when
1830 reading event to avoid putting keys in this-command-keys.
1831
18322014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1833
1834 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
1835 (perl-syntax-propertize-function): Use it. Extend handling of
1836 here-docs to the unquoted case.
1837
18382014-04-25 Eli Zaretskii <eliz@gnu.org>
1839
1840 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
1841 Use equal-including-properties to compare help-echo strings (bug#17331).
1842
18432014-04-25 Leo Liu <sdl.web@gmail.com>
1844
1845 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1846 Fix syntax for @. (Bug#17325)
1847
18482014-04-25 Daniel Colascione <dancol@dancol.org>
1849
1850 * emacs-lisp/cl.el (gv): Require gv early to break eager
1851 macro-expansion cycles.
1852
18532014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1854
1855 * simple.el (region-active-p): Check there's a mark (bug#17324).
1856
1857 * simple.el (completion-list-mode-map): Use choose-completion for the
1858 mouse binding as well (bug#17302).
1859 (completion-list-mode, completion-setup-function): Adjust docstring and
1860 echo area message accordingly.
1861 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
1862 calling convention of choose-completion.
1863 * comint.el (comint-dynamic-list-completions):
1864 * term.el (term-dynamic-list-completions): Accept choose-completion.
1865
1866 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
1867 &, |, +, - and * can't be a division (bug#17317).
1868
1869 * term/xterm.el (xterm--version-handler): Don't use modern xterm
1870 features on gnome-terminal (bug#16988).
1871
18722014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
1873
1874 Improve Scheme font-locking for (define ((foo ...) ...) ...).
1875
1876 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
1877 the declared object, ignore zero or more parens, not zero or one.
1878
18792014-04-24 Leo Liu <sdl.web@gmail.com>
1880
1881 * progmodes/xscheme.el (xscheme-expressions-ring)
1882 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
1883 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
1884 (xscheme-allow-output-p, xscheme-prompt)
1885 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1886
1887 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1888 Comment out unused functions.
1889
18902014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1891
1892 * info.el: Use lexical-binding and cl-lib.
1893 Use defvar-local and setq-local instead of make-local-variable.
1894 (Info-apropos-matches): Avoid add-to-list.
1895 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1896
18972014-04-24 Daniel Colascione <dancol@dancol.org>
1898
1899 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1900
19012014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1902
1903 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1904
19052014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1906
1907 * dired.el (dired-insert-set-properties): Do not consider
1908 subdirectory headings and empty lines to be information that
1909 `dired-hide-details-mode' should hide. (Bug#17228)
1910
19112014-04-22 Michael Albinus <michael.albinus@gmx.de>
1912
1913 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1914 Remove test messages.
1915 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1916 and `target' twice.
1917
19182014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1919
1920 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1921 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1922
1923 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1924
19252014-04-22 Michael Albinus <michael.albinus@gmx.de>
1926
1927 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1928 Set "IFS=" when using read builtin, in order to preserve spaces in
1929 the file name. Add test messages for hunting a bug on hydra.
1930 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1931
19322014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1933
1934 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1935 Don't prettify a word within a symbol.
1936
19372014-04-22 Michael Albinus <michael.albinus@gmx.de>
1938
1939 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1940 possible.
1941
19422014-04-22 Daniel Colascione <dancol@dancol.org>
1943
1944 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1945 use defun to define `function-put'.
1946
19472014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1948
1949 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1950 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1951 (lisp-mode-variables): Set font-lock-extra-managed-props.
1952
1953 * emacs-lisp/byte-run.el (function-put): New function.
1954 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1955 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1956 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1957 Use them.
1958
19592014-04-22 Daniel Colascione <dancol@dancol.org>
1960
1961 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1962 Add `full-p' parameter; when nil, call `macroexpand' instead of
1963 `macroexpand-all'.
1964
1965 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1966 Improve docstrings.
1967
1968 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1969 Use lambda function values, not quoted lambdas.
1970 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1971
1972 * emacs-lisp/cl-macs.el
1973 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1974 (cl-struct-slot-value): Conditionally use aref or nth so that the
1975 compiler produces optimal code.
1976
19772014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1978
1979 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1980 (inline): Don't inline cl--set-elt.
1981 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1982 Define as inlinable instead.
1983 (cl-struct-set-slot-value): Remove.
1984
1985 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1986 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1987 Use setf instead.
1988
19892014-04-21 Daniel Colascione <dancol@dancol.org>
1990
1991 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1992 last two parameters after all.
1993 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1994 (cl--compiler-macro-assoc,cl-struct-slot-value)
1995 (cl-struct-set-slot-value): Stop using them.
1996
1997(2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1998
1999 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
2000 entry in image-mode-winprops-alist.
2001
20022014-04-21 Daniel Colascione <dancol@dancol.org>
2003
2004 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
2005 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
2006 (byte-compile-toplevel-file-form): Use it.
2007
2008 * emacs-lisp/cl-macs.el:
2009 (cl--loop-let): Properly destructure `while' clauses.
2010
20112014-04-20 Daniel Colascione <dancol@dancol.org>
2012
2013 * vc/vc.el (vc-root-dir): New public autoloaded function for
2014 generically finding the current VC root.
2015 * vc/vc-hooks.el (vc-not-supported): New error.
2016 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
2017
20182014-04-20 Daniel Colascione <dancol@dancol.org>
2019
2020 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
2021 argument.
2022 (cl--const-expr-val): cl--const-expr-val should macroexpand its
2023 argument in case we're inside a symbol-macrolet.
2024 (cl--do-arglist, cl--compiler-macro-typep)
2025 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
2026 environment to `cl--const-expr-val'.
2027 (cl-struct-sequence-type,cl-struct-slot-info)
2028 (cl-struct-slot-offset, cl-struct-slot-value)
2029 (cl-struct-set-slot-value): New functions.
2030
20312014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2032
2033 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
2034 assignments such as "case=hello" (bug#17297).
2035
20362014-04-18 Michael Albinus <michael.albinus@gmx.de>
2037
2038 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
2039 Do not autoload.
2040 (tramp-file-name-handler, tramp-completion-file-name-handler):
2041 Revert patch from 2014-04-10, it isn't necessary anymore.
2042 (tramp-autoload-file-name-handler)
2043 (tramp-register-autoload-file-name-handlers): New defuns.
2044 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
2045 (tramp-register-file-name-handlers): Remove also
2046 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
2047 Do not autoload its invocation, but eval it after loading of 'tramp.
2048
2049 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
2050
2051 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
2052
20532014-04-17 Daniel Colascione <dancol@dancol.org>
2054
2055 Add support for bracketed paste mode; add infrastructure for
2056 managing terminal mode enabling and disabling automatically.
2057
2058 * xt-mouse.el:
2059 (xterm-mouse-mode): Simplify.
2060 (xterm-mouse-tracking-enable-sequence)
2061 (xterm-mouse-tracking-disable-sequence): New constants.
2062 (turn-on-xterm-mouse-tracking-on-terminal)
2063 (turn-off-xterm-mouse-tracking-on-terminal):
2064 Use tty-mode-set-strings and tty-mode-reset-strings terminal
2065 parameters instead of random hooks.
2066 (turn-on-xterm-mouse-tracking)
2067 (turn-off-xterm-mouse-tracking): Delete.
2068
2069 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
2070 (xterm-paste-ending-sequence): New constant.
2071 (xterm-paste): New command used for bracketed paste support.
2072
2073 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
2074 (terminal-init-xterm-bracketed-paste-mode): New function.
2075 (terminal-init-xterm): Call it.
2076 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
2077 and tty-mode-reset-strings instead of random hooks.
2078 (xterm-turn-on-modify-other-keys)
2079 (xterm-turn-off-modify-other-keys)
2080 (xterm-remove-modify-other-keys): Delete obsolete functions.
2081
2082 * term/screen.el: Rewrite to just use the xterm code.
2083 Add copyright notice. Mention tmux.
2084
20852014-04-17 Ian D <dunni@gnu.org> (tiny change)
2086
2087 * image-mode.el (image-mode-window-put): Also update the property of
2088 the "default window".
2089 * doc-view.el (doc-view-new-window-function): If no window
2090 exists, move to the last known page.
2091
20922014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2093
2094 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
2095 here-documents (bug#17262).
2096
20972014-04-16 Eli Zaretskii <eliz@gnu.org>
2098
2099 * term/pc-win.el (x-list-fonts, x-get-selection-value):
2100 Provide doc strings, as required by snarf-documentation.
2101
21022014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2103
2104 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
2105 arg of overlays-at. Use `invisible-p'.
2106
2107 * obsolete/lucid.el (extent-at):
2108 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
2109 overlays-at.
2110 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
2111
21122014-04-16 João Távora <joaotavora@gmail.com>
2113
2114 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
2115 links. (Bug#17217).
2116
21172014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2118
2119 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
2120 Use mapc to loop over a vector. (Bug#17257).
2121
21222014-04-16 Michael Albinus <michael.albinus@gmx.de>
2123
2124 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
2125 patch, there are new problems with file names containing spaces.
2126 Get rid of backticks. (Bug#17238)
2127
21282014-04-16 João Távora <joaotavora@gmail.com>
2129
2130 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
2131 possible bug.
2132
21332014-04-16 Eli Zaretskii <eliz@gnu.org>
2134
2135 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
2136 (blink-cursor-mode): Mention customization variables and the
2137 effect of 'blink-cursor-blinks'.
2138
21392014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
2140
2141 * simple.el (undo): Prevent insertion of identity mapping into
2142 undo-equiv-table so as undo-only does not inf loop in the presence
2143 of consecutive nils in undo list.
2144
21452014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
2146
2147 * faces.el (make-face): Deprecate optional argument as it is no
2148 longer needed/used since the conditional X resources handling
2149 has been pushed down to make-face-x-resource-internal itself.
2150 (make-empty-face): Don't pass optional argument to make-face.
2151
21522014-04-16 Karl Fogel <kfogel@red-bean.com>
2153
2154 * savehist.el (savehist-save): Remove workaround for a read-passwd
2155 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
2156 noticing that the shim was still present.
2157
21582014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2159
2160 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
2161
21622014-04-14 Juanma Barranquero <lekktu@gmail.com>
2163
2164 * faces.el (face-set-after-frame-default): Remove unused local variable.
2165
21662014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2167
2168 * progmodes/grep.el: Use lexical-binding.
2169 (grep-expand-template): Pass explicit lexical env to `eval'.
2170 (zrgrep): Let-bind grep-find-template explicitly.
2171
2172 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
2173 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
2174
21752014-04-12 Eli Zaretskii <eliz@gnu.org>
2176
2177 * international/characters.el <standard-case-table>: Add entries
2178 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
2179 Set category of Coptic characters be 'g' (Greek).
2180
21812014-04-12 Leo Liu <sdl.web@gmail.com>
2182
2183 * progmodes/octave.el (completion-table-with-cache):
2184 Define if not available.
2185 (octave-goto-function-definition, octave-sync-function-file-names)
2186 (octave-find-definition-default-filename):
2187 Backquote upattern for compatibility.
2188
21892014-04-12 Michael Albinus <michael.albinus@gmx.de>
2190
2191 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
2192 name twice due to backticks. (Bug#17238)
2193
21942014-04-12 Glenn Morris <rgm@gnu.org>
2195
2196 * term/w32-win.el (x-win-suspend-error):
2197 * term/x-win.el (x-win-suspend-error): Sync docs.
2198
21992014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
2200
2201 * faces.el (make-face): Remove deprecated optional argument.
2202 The conditional application of X resources is handled directly by
2203 make-face-x-resource-internal since Emacs 24.4.
2204 (make-empty-face): Don't pass optional argument to make-face.
2205
22062014-04-11 Glenn Morris <rgm@gnu.org>
2207
2208 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
2209
22102014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2211
2212 Ediff's overlay priorities cause more trouble than they solve.
2213 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
2214 (ediff-highest-priority): Remove function (bug#17234).
2215 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
2216 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
2217 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
2218 overlay priorities.
2219
22202014-04-11 Feng Li <fengli@gmail.com> (tiny change)
2221
2222 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
2223 entry; use symbol boundaries to avoid mis-matches.
2224
22252014-04-11 Michael Albinus <michael.albinus@gmx.de>
2226
2227 * net/tramp.el (tramp-file-name-handler)
2228 (tramp-completion-file-name-handler): Avoid recursive loading.
2229
2230 * net/tramp-sh.el (tramp-make-copy-program-file-name):
2231 Quote result also locally.
2232
22332014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2234
2235 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
2236 Remove left-over code.
2237
2238 * newcomment.el (comment-indent-new-line): Sink code where it's used.
2239 Reuse the previous comment's indentation unconditionally if it's on its
2240 own line.
2241
22422014-04-09 Daniel Colascione <dancol@dancol.org>
2243
2244 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
2245 `no-syntax-crossing' arguments. Forward to `up-list'.
2246 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
2247 Implement logic for escaping from strings. Use narrowing to deal
2248 with corner cases.
2249
22502014-04-09 Leo Liu <sdl.web@gmail.com>
2251
2252 * net/rcirc.el (rcirc-connection-info): New variable.
2253 (rcirc-connect): Use it to store connection info.
2254 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
2255 for killed process.
2256 (rcirc-cmd-reconnect): New command. (Bug#17045)
2257 (rcirc-mode, set-rcirc-encode-coding-system)
2258 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
2259
22602014-04-09 Daniel Colascione <dancol@dancol.org>
2261
2262 * emacs-lisp/cl-indent.el: Add comment claiming
2263 facility is also good for elisp.
2264 (lisp-indent-find-method): New function.
2265 (common-lisp-indent-function): Recognize cl-loop.
2266 (common-lisp-indent-function-1): Recognize cl constructs; use
2267 `lisp-indent-find-method' instead of `get' directly.
2268 (if): Use else-body style for elisp.
2269
22702014-04-09 Dmitry Gutov <dgutov@yandex.ru>
2271
2272 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
2273 Module methods. (Bug#17216)
2274
22752014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2276
2277 * help.el (describe-bindings): Fix buffer handling (bug#17210).
2278 (describe-bindings-internal): Mark obsolete.
2279
22802014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2281
2282 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
2283 buffer-file-name, and buffer-file-truename any more.
2284
22852014-04-08 Leo Liu <sdl.web@gmail.com>
2286
2287 Use lexical-binding and require cl-lib.
2288 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
2289 (rcirc-handler-generic, rcirc-fill-paragraph)
2290 (rcirc-format-response-string, rcirc-target-buffer)
2291 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
2292 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
2293 (rcirc-ctcp-sender-PING, rcirc-browse-url)
2294 (rcirc-markup-timestamp, rcirc-markup-attributes)
2295 (rcirc-markup-my-nick, rcirc-markup-urls)
2296 (rcirc-markup-bright-nicks, rcirc-markup-fill)
2297 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
2298 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
2299 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
2300 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
2301 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
2302 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
2303 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
2304 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
2305 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
2306 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
2307 use cl-lib.
2308
23092014-04-07 João Távora <joaotavora@gmail.com>
2310
2311 * elec-pair.el (electric-pair--syntax-ppss):
2312 When inside comments parse from comment beginning.
2313 (electric-pair--balance-info): Fix typo in comment.
2314 (electric-pair--in-unterminated-string-p): Delete.
2315 (electric-pair--unbalanced-strings-p): New function.
2316 (electric-pair-string-bound-function): New var.
2317 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2318 according to `electric-pair--in-unterminated-string-p'
2319
2320 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2321 Inhibit quote pairing if point-max is inside an unterminated string.
2322 (electric-pair--looking-at-unterminated-string-p): Delete.
2323 (electric-pair--in-unterminated-string-p): New function.
2324
23252014-04-07 Glenn Morris <rgm@gnu.org>
2326
2327 * shell.el (shell-directory-tracker):
2328 Go back to just ignoring failures. (Bug#17159)
2329
23302014-04-07 João Távora <joaotavora@gmail.com>
2331
2332 Fix `electric-pair-delete-adjacent-pairs' in modes binding
2333 backspace. (bug#16981)
2334 * elec-pair.el (electric-pair-backward-delete-char): Delete.
2335 (electric-pair-backward-delete-char-untabify): Delete.
2336 (electric-pair-mode-map): Bind backspace to a menu item filtering
2337 a new `electric-pair-delete-pair' command.
2338 (electric-pair-delete-pair): New command.
2339
2340 * progmodes/python.el (python-electric-pair-string-delimiter):
2341 Fix triple-quoting electricity. (Bug#17192)
2342
2343 * elec-pair.el (electric-pair-post-self-insert-function):
2344 Don't skip whitespace when `electric-pair-text-pairs' and
2345 `electric-pair-pairs' were used. syntax to
2346 electric-pair--skip-whitespace. (Bug#17183)
2347
23482014-04-07 Eli Zaretskii <eliz@gnu.org>
2349
2350 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
2351 "<F>". (Bug#17199)
2352
23532014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2354
2355 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
2356 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
2357
23582014-04-07 Glenn Morris <rgm@gnu.org>
2359
2360 * help.el (view-lossage): Doc tweak.
2361
23622014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
2363
2364 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
2365 only when inhibit-x-resources is nil, and do that earlier in the
2366 function. Doc fix. (Bug#16694)
2367 (face-spec-choose): Accept additional optional argument, whose
2368 value is returned if no matching attributes are found.
2369 (face-spec-recalc): Use the new optional argument when calling
2370 face-spec-choose. (Bug#16378)
2371 (make-face-x-resource-internal): Do nothing when
2372 inhibit-x-resources is non-nil. Don't touch the default face if
2373 reversed video is given--as was done in previous versions of Emacs.
2374 (face-set-after-frame-default): Don't call
2375 make-face-x-resource-internal here. (Bug#16434)
2376
23772014-04-07 Tassilo Horn <tsdh@gnu.org>
2378
2379 * doc-view.el (doc-view-bookmark-jump):
2380 Use `bookmark-after-jump-hook' to jump to the right page after the
2381 buffer is shown in a window. (bug#16090)
2382
23832014-04-07 Eli Zaretskii <eliz@gnu.org>
2384
2385 * international/characters.el (mirroring): Fix last change:
2386 instead of loading uni-mirrored.el explicitly, do that implicitly
2387 by creating the 'mirroring' uniprop table. This avoids announcing
2388 the loading of uni-mirrored.el.
2389
23902014-04-07 Glenn Morris <rgm@gnu.org>
2391
2392 * files.el (buffer-stale--default-function)
2393 (buffer-stale-function, revert-buffer--default):
2394 * autorevert.el (auto-revert-buffers): Doc tweaks.
2395
23962014-04-07 Eli Zaretskii <eliz@gnu.org>
2397
2398 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
2399
24002014-04-07 Glenn Morris <rgm@gnu.org>
2401
2402 * files.el (make-backup-file-name-function)
2403 (make-backup-file-name, make-backup-file-name--default-function)
2404 (make-backup-file-name-1, find-backup-file-name)
2405 (revert-buffer-function, revert-buffer-insert-file-contents-function)
2406 (buffer-stale--default-function, buffer-stale-function)
2407 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
2408 (revert-buffer, revert-buffer--default)
2409 (revert-buffer-insert-file-contents--default-function):
2410 Doc fixes related to defaults no longer being nil.
2411 (make-backup-file-name-function): Bump :version.
2412 Restore nil as a valid but deprecated custom type.
2413
24142014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2417 Handle $' used as a variable (bug#17174).
2418
2419 * progmodes/perl-mode.el (perl-indent-new-calculate):
2420 Handle forward-sexp failure (bug#16985).
2421 (perl-syntax-propertize-function): Add "foreach" and "for" statement
2422 modifiers introducing expressions (bug#17116).
2423
24242014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
2425
2426 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
2427
24282014-04-05 Leo Liu <sdl.web@gmail.com>
2429
2430 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2431 Add define-compilation-mode.
2432
24332014-04-04 João Távora <joaotavora@gmail.com>
2434
2435 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
2436 parse from comment beginning.
2437 (electric-pair--balance-info): Fix typo in comment.
2438 (electric-pair--in-unterminated-string-p): Delete.
2439 (electric-pair--unbalanced-strings-p): New function.
2440 (electric-pair-string-bound-function): New var.
2441 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2442 according to `electric-pair--in-unterminated-string-p'.
2443
24442014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2445
2446 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
2447 Move declaration before first use.
2448 (reftex-move-to-next-arg): Silence compiler warning.
2449
24502014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
2451
2452 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
2453 Use `window-total-width' instead of `window-width'.
2454
24552014-04-03 Daniel Colascione <dancol@dancol.org>
2456
2457 * subr.el (set-transient-map): Remove rms's workaround entirely;
2458 use new `suspicious-object' subr to mark our lambda for closer
2459 scrutiny during gc.
2460
24612014-04-02 Richard Stallman <rms@gnu.org>
2462
2463 * subr.el (set-transient-map): Comment out previous change.
2464
24652014-04-02 Glenn Morris <rgm@gnu.org>
2466
2467 * menu-bar.el (menu-bar-file-menu):
2468 * vc/ediff.el (ediff-current-file):
2469 Update for revert-buffer-function no longer being nil by default.
2470
2471 * simple.el (command-execute): Respect nil disabled-command-function.
2472
24732014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2474
2475 * simple.el (command-execute): Do not execute the command when it
2476 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
2477
24782014-04-02 Juri Linkov <juri@jurta.org>
2479
2480 * dired-aux.el (dired-compress-file): Don't use string-match-p
2481 because its match data is used afterwards.
2482
24832014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
2484
2485 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
2486 0 like nil.
2487
24882014-04-02 João Távora <joaotavora@gmail.com>
2489
2490 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2491 Inhibit quote pairing if point-max is inside an unterminated string.
2492 (electric-pair--looking-at-unterminated-string-p):
2493 Delete.
2494 (electric-pair--in-unterminated-string-p): New function.
2495
24962014-04-01 Daniel Colascione <dancol@dancol.org>
2497
2498 * minibuffer.el (minibuffer-complete): Prevent assertion failure
2499 when trying to complete the prompt.
2500
25012014-03-31 Leo Liu <sdl.web@gmail.com>
2502
2503 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2504 Refactor out eldoc-documentation-function-default.
2505 (eldoc-documentation-function-default): New function.
2506 (eldoc-documentation-function): Change value.
2507
25082014-03-31 Glenn Morris <rgm@gnu.org>
2509
2510 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
2511
2512 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
2513 (vhdl-compose-components-package, vhdl-compose-configuration):
2514 Abbreviate default-directory (missing from some previous upstream sync).
2515
25162014-03-31 Reto Zimmermann <reto@gnu.org>
2517
2518 Sync with upstream vhdl mode v3.35.2.
2519 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2520 (top-level): No longer require assoc.
2521 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
2522 New functions. Use throughout to replace aget etc.
2523 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
2524 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
2525 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
2526 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
2527 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
2528 except `vhdl-compiler'.
2529 (vhdl-error-regexp-add-emacs): Remove all other compilers,
2530 when appropriate.
2531
25322014-03-31 Glenn Morris <rgm@gnu.org>
2533
2534 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
2535 Revert 2014-03-26 merge goof; go back to using defalias.
2536
25372014-03-30 Daniel Colascione <dancol@dancol.org>
2538
2539 * comint.el (comint-send-input):
2540 Deactivate completion-in-region-mode before we send comint input.
2541 (Bug#17139).
2542
2543 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
2544 on keyboard-quit.
2545
25462014-03-29 Glenn Morris <rgm@gnu.org>
2547
2548 * textmodes/reftex.el: Manage most autoloads automatically.
2549 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
2550 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
2551 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
2552 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
2553 * textmodes/reftex-toc.el: Set generated-autoload-file,
2554 and add autoload cookies for reftex.el.
2555 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
2556
25572014-03-28 Glenn Morris <rgm@gnu.org>
2558
2559 * cus-start.el (report-emacs-bug-address): Set custom properties.
2560 * mail/emacsbug.el (report-emacs-bug-address):
2561 Variable is now defined in emacs.c.
2562
2563 * mail/emacsbug.el (report-emacs-bug):
2564 Include system-configuration-features.
2565
25662014-03-28 Michal Nazarewicz <mina86@mina86.com>
2567
2568 * simple.el (cycle-spacing): Never delete spaces on first run by
2569 default, but do so in a new 'fast mode and if there are already
2570 N spaces (the previous behavior).
2571 Compare N with its value in previous invocation so that changing
2572 prefix argument restarts `cycle-spacing' sequence.
2573 The idea is that with this change, binding M-SPC to
2574 `cycle-spacing' should not introduce any changes in behavior of
2575 the binding so long as users do not type M-SPC twice in a raw with
2576 the same prefix argument or lack thereof.
2577
25782014-03-28 Glenn Morris <rgm@gnu.org>
2579
2580 * faces.el (term-file-aliases): New variable.
2581 (tty-run-terminal-initialization): Respect term-file-aliases.
2582 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
2583 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
2584 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
2585
25862014-03-27 Glenn Morris <rgm@gnu.org>
2587
2588 * startup.el (inhibit-startup-hooks): Doc tweak.
2589 (normal-top-level): Simplify running of hooks.
2590 For window-setup-hook, respect inhibit-startup-hooks.
2591 (command-line-1): Don't set window-setup-hook to nil.
2592
2593 Allow selective autoloading from obsolete/ directory.
2594 * Makefile.in (obsolete-autoloads): New rule.
2595 (autoloads): Run obsolete-autoloads.
2596 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
2597 * simple.el (iswitchb-mode): Remove hand-written autoloads.
2598
25992014-03-27 Dmitry Gutov <dgutov@yandex.ru>
2600
2601 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2602 Highlight special globals with font-lock-builtin-face. (Bug#17057)
2603
2604 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2605 Don't propertize `?' or `!' as symbol constituent when after
2606 colon. (Bug#17097)
2607
26082014-03-27 Juanma Barranquero <lekktu@gmail.com>
2609
2610 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
2611 which is no longer needed and causes trouble in GTK builds (bug#17046).
2612
2613 * emacs-lisp/package-x.el (package--archive-contents-from-url):
2614 Use url-insert-file-contents; package-handle-response no longer exists.
2615
26162014-03-26 Daniel Colascione <dancol@dancol.org>
2617
2618 * simple.el (process-menu-mode-map): New variable.
2619 (process-menu-delete-process): New command.
2620
26212014-03-26 Juanma Barranquero <lekktu@gmail.com>
2622
2623 * emacs-lisp/package.el: Fix bug#16733 (again).
2624 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
2625 (url-http-target-url): Remove unused declarations.
2626 (package-handle-response): Remove.
2627 (package--with-work-buffer): Use url-insert-file-contents and simplify.
2628 (package--download-one-archive): Use current-buffer instead of
2629 dynamic binding of `buffer'.
2630 (describe-package-1): Do not decode readme-string.
2631
26322014-03-26 Michael Albinus <michael.albinus@gmx.de>
2633
2634 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
2635
2636 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
2637 from 2014-03-07, it decreases performance unnecessarily. Let-bind
2638 `remote-file-name-inhibit-cache' to nil in the second pass.
2639 (tramp-find-executable): Do not call "which" on SunOS.
2640 (tramp-send-command-and-check): Fix docstring.
2641 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
2642 check whether source directory has set the sticky bit.
2643
26442014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
2645
2646 * simple.el (primitive-undo): Only process marker adjustments
2647 validated against their corresponding (TEXT . POS). Issue warning
2648 for lone marker adjustments in undo history. (Bug#16818)
2649 (undo-make-selective-list): Add marker adjustments to selective
2650 undo list based on whether their corresponding (TEXT . POS) is in
2651 the region. Remove variable adjusted-markers, which was unused
2652 and only non nil during undo-make-selective-list.
2653 (undo-elt-in-region): Return nil when passed a marker adjustment
2654 and explain in function doc.
2655
26562014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2657
2658 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
2659
26602014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2661
2662 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
2663 Match special global variables without curlies, too.
2664 (ruby-font-lock-keywords): Simplify the matcher for special global
2665 variables. Don't require a non-word character after the variable.
2666 (Bug#17057)
2667
26682014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2669
2670 * simple.el (redisplay-highlight-region-function): Increase priority of
2671 overlay to make sure boundaries are visible (bug#15899).
2672
26732014-03-26 Juanma Barranquero <lekktu@gmail.com>
2674
2675 * frameset.el (frameset--initial-params): Fix typo in parameter name.
2676 (frameset-restore): Compare display strings with equal.
2677
2678 * frame.el (make-frame): Don't quote display name in error message,
2679 it is already a string.
2680
26812014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2682
2683 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
2684 the password.
2685
26862014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2687
2688 * emacs-lisp/package.el (package--add-to-archive-contents):
2689 Include already installed and built-in packages in
2690 `package-archive-contents'.
2691 (package-install): Don't include already installed packages in the
2692 options during interactive invocation. (Bug#16762)
2693 (package-show-package-list): If the buffer is already displayed in
2694 another window, switch to that window.
2695
26962014-03-26 Reto Zimmermann <reto@gnu.org>
2697
2698 Sync with upstream vhdl mode v3.35.1.
2699 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2700 (vhdl-compiler-alist): Doc fix.
2701 (vhdl-goto-line): Remove.
2702 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
2703 (vhdl-mode) <paragraph-start>: Fix value.
2704 (vhdl-fix-statement-region): Not `for' in wait-statement.
2705 (vhdl-beautify-region): Also (un)tabify.
2706 (vhdl-get-visible-signals):
2707 Scan declarative part of generate statements.
2708 (vhdl-template-record): Fix indentation for record type declaration.
2709 (vhdl-expand-abbrev, vhdl-expand-paren):
2710 Revert to using fset again rather than defalias.
2711 (vhdl-scan-directory-contents): Tweak.
2712 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
2713 (vhdl-compose-components-package):
2714 Replace vhdl-goto-line with forward-line.
2715 (top-level): Tweak speedbar frame selection.
2716 (vhdl-generate-makefile-1): Support for compilers with no
2717 unit-to-file name mapping (create directory with dummy files).
2718
27192014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
2720
2721 Sync with upstream verilog-mode revision 702457d.
2722 * progmodes/verilog-mode.el (verilog-mode-version): Update.
2723 (create-lockfiles): Declare.
2724 (verilog-read-decls): Fix module header imports, bug709.
2725 Reported by Victor Lau.
2726 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
2727 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
2728 interface-only modules, bug721. Reported by Dean Hoyt.
2729
27302014-03-26 Glenn Morris <rgm@gnu.org>
2731
2732 * obsolete/gulp.el: Move here from emacs-lisp/.
2733
2734 * files.el (lock-buffer, unlock-buffer, file-locked-p):
2735 Remove fallback aliases, since they are always defined now.
2736
27372014-03-24 Daniel Colascione <dancol@dancol.org>
2738
2739 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
2740 instead of cl-loop search function.
2741
27422014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2743
2744 * calendar/parse-time.el (parse-time-iso8601-regexp)
2745 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
2746 it more generally.
2747
27482014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2749
2750 * net/dns.el (network-interface-list): Define for XEmacs.
2751
27522014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
2753
2754 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
2755 the network interfaces changed.
2756 (dns-query): Use it to flush the data.
2757
27582014-03-23 Juanma Barranquero <lekktu@gmail.com>
2759
2760 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
2761
27622014-03-23 Daniel Colascione <dancol@dancol.org>
2763
2764 Change subword-mode to use `find-word-boundary-function-table' and
2765 replace `capitalized-words-mode'. Also, convert to lexical
2766 binding.
2767
2768 * progmodes/cap-words.el: Delete now-obsolete file.
2769 * progmodes/subword.el: Reimplement using
2770 `find-word-boundary-function-table'.
2771 (subword-mode-map): Hollow out.
2772 (capitalized-words-mode): Define as obsolete alias for
2773 `subword-mode'.
2774 (subword-mode, superword-mode): Tweak documentation to reflect new
2775 implementation; call `subword-setup-buffer'.
2776 (subword-forward, subword-capitalize): Add underscore to indicate
2777 unused variable.
2778 (subword-find-word-boundary-function-table): New constant.
2779 (subword-empty-char-table): New constant.
2780 (subword-setup-buffer): New function.
2781 (subword-find-word-boundary): New function.
2782
27832014-03-23 Daniel Colascione <dancol@dancol.org>
2784
2785 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
2786 list to look for keyword arguments instead of `memq', fixing
2787 (Bug#3647) --- unfortunately, only for freshly-compiled code.
2788 Please make bootstrap.
2789
27902014-03-22 Glenn Morris <rgm@gnu.org>
2791
2792 * dired.el (dired-read-regexp): Make obsolete.
2793 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
2794 (dired-flag-files-regexp):
2795 * dired-aux.el (dired-mark-read-regexp):
2796 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
2797
2798 * startup.el (fancy-startup-text):
2799 * help.el (describe-gnu-project): Visit online info about GNU project.
2800
2801 * help-fns.el (help-fns--interactive-only): New function.
2802 (help-fns-describe-function-functions): Add the above function.
2803 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
2804 (next-line, previous-line): Remove hand-written interactive-only
2805 information from doc strings, it is auto-generated now.
2806 * bookmark.el (bookmark-write):
2807 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
2808 (epa-mail-import-keys): Mark interactive-only,
2809 and remove hand-written interactive-only information from doc strings.
2810 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
2811 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
2812 * files.el (not-modified):
2813 * simple.el (mark-whole-buffer): Mark interactive-only.
2814
2815 * emacs-lisp/byte-run.el (defun-declarations-alist):
2816 Add interactive-only. Doc tweak.
2817 (macro-declarations-alist): Doc tweak.
2818 * subr.el (declare): Doc tweak (add xref to manual).
2819 * comint.el (comint-run):
2820 * files.el (insert-file-literally, insert-file):
2821 * replace.el (replace-string, replace-regexp):
2822 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
2823 (delete-forward-char, goto-line, insert-buffer, next-line)
2824 (previous-line): Set interactive-only via declare.
2825
28262014-03-22 Dmitry Gutov <dgutov@yandex.ru>
2827
2828 * emacs-lisp/package.el (package-desc): Use the contents of the
2829 quoted form, not its cdr. (Bug#16873)
2830
28312014-03-22 Juanma Barranquero <lekktu@gmail.com>
2832
2833 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
2834 benefit of doc.c; change parameter profile to match the X function.
2835
28362014-03-22 Leo Liu <sdl.web@gmail.com>
2837
2838 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
2839 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
2840
28412014-03-21 Richard Stallman <rms@gnu.org>
2842
2843 * battery.el (battery-linux-sysfs): Search for each field
2844 from the beginning of the buffer.
2845
2846 * subr.el (set-transient-map): Clear out function and value
2847 of the temporary symbol when we're done with it.
2848
2849 * mail/rmailsum.el (rmail-summary-delete-forward):
2850 Optimize case of reaching end and handling count.
2851 (rmail-summary-mark-deleted): Optimize when N is current msg.
2852 Don't create new summary line.
2853 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
2854 (rmail-summary-undelete-many): Rewrite for speed.
2855 (rmail-summary-msg-number): New function.
2856
2857 * mail/rmail.el (rmail-delete-message): Update summary.
2858 (rmail-undelete-previous-message): Handle repeat count arg.
2859 (rmail-delete-backward, rmail-delete-forward): Likewise.
2860
28612014-03-21 Daniel Colascione <dancol@dancol.org>
2862
2863 * mail/emacsbug.el (report-emacs-bug): Include memory usage
2864 information in bug reports.
2865
28662014-03-21 Michael Albinus <michael.albinus@gmx.de>
2867
2868 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
2869 and `tramp-copy-env'.
2870
2871 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
2872 (tramp-maybe-open-connection): Handle `tramp-login-env'.
2873
28742014-03-21 Glenn Morris <rgm@gnu.org>
2875
2876 * electric.el (electric-indent-post-self-insert-function): Add doc.
2877
28782014-03-21 Dmitry Gutov <dgutov@yandex.ru>
2879
2880 * emacs-lisp/package.el (package-compute-transaction):
2881 Use `version-list-<=' to compare the requirement version against
2882 the version of package already to be installed. Update the error
2883 message. (Bug#16826)
2884
2885 * progmodes/ruby-mode.el (ruby-smie-rules):
2886 Add indentation rule for ` @ '. (Bug#17050)
2887
28882014-03-21 Juanma Barranquero <lekktu@gmail.com>
2889
2890 * align.el (align-regexp): Remove superfluous backslash.
2891
2892 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2893 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2894 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2895 Fix docstring typos.
2896 (ffap-next): Use C-u in docstring.
2897 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2898 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2899 Remove superfluous backslashes.
2900 (ffap-string-at-point): Reflow docstring.
2901
2902 * server.el (server-host): Reflow docstring.
2903 (server-unload-function): Fix docstring typo.
2904 (server-eval-at): Remove superfluous backslash.
2905
2906 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2907 (skeleton-insert): Doc fix.
2908 (skeleton-insert): Reflow docstring.
2909
2910 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2911 (tty-color-approximate, tty-color-by-index, tty-color-values)
2912 (tty-color-desc): Remove superfluous backslashes.
2913
29142014-03-21 Glenn Morris <rgm@gnu.org>
2915
2916 * cus-start.el (history-length): Bump :version.
2917
2918 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2919 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2920 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2921 Don't set `make-backup-files'.
2922
2923 * info.el (info--prettify-description): New function,
2924 to give info-finder descriptions consistent case, punctuation.
2925 (Info-finder-find-node): Use it. Sort packages.
2926 Refer to "description" rather than "commentary".
2927
29282014-03-21 Juanma Barranquero <lekktu@gmail.com>
2929
2930 * frameset.el (frameset--print-register): New function.
2931 (frameset-to-register): Use it.
2932
29332014-03-20 Juanma Barranquero <lekktu@gmail.com>
2934
2935 * progmodes/hideif.el (hif-string-to-number): New function.
2936 (hif-tokenize): Use it to understand non-decimal floats.
2937
2938 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2939
2940 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2941
29422014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2943
2944 * electric.el (electric-newline-and-maybe-indent): New command.
2945 Bind it globally to C-j.
2946 (electric-indent-mode): Don't mess with the global map any more.
2947 Don't drop the post-self-insert-hook is some buffer is still using it
2948 (bug#16770).
2949
2950 * bindings.el (global-map): Remove C-j binding.
2951
2952 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2953 the docstring of functions advised before dumping (bug#16993).
2954
29552014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2956
2957 * ps-print.el (ps-generate-postscript-with-faces):
2958 Explicitly deactivate the mark (bug#16866).
2959 * simple.el (deactivate-mark): Update region highlight.
2960
29612014-03-19 Juanma Barranquero <lekktu@gmail.com>
2962
2963 * emacs-lisp/package.el (describe-package-1):
2964 Decode commentary (bug#16733).
2965
29662014-03-18 Juanma Barranquero <lekktu@gmail.com>
2967
2968 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2969 modification of the value argument of :set (bug#16755).
2970
29712014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2972
2973 * simple.el (newline-and-indent): Do autofill (bug#17031).
2974
29752014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2976
2977 * newcomment.el (comment-normalize-vars): Only add escaping check
2978 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2979 (comment-beginning): Use `narrow-to-region' instead of moving back
2980 one character.
2981 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2982 (comment-start-skip): Update the docstring.
2983
29842014-03-18 Richard Stallman <rms@gnu.org>
2985
2986 * dired.el (dired-display-file): Force use of other window.
2987
29882014-03-18 Daniel Colascione <dancol@dancol.org>
2989
2990 * startup.el (tty-handle-args): Remove debug message from 2007.
2991
29922014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2993
2994 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2995 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2996 (advice--make-1, advice-add, advice-remove):
2997 Remove braindead :advice-pending hack.
2998
29992014-03-17 Glenn Morris <rgm@gnu.org>
3000
3001 * calendar/calendar.el (calendar-generate-month): Apply weekend
3002 face to the right days; fixes 2013-08-06 change. (Bug#17028)
3003
30042014-03-17 Michael Albinus <michael.albinus@gmx.de>
3005
3006 * net/tramp.el (tramp-action-out-of-band): Read pending output.
3007 (tramp-call-process): Trace also DESTINATION.
3008
3009 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3010 Quote file names when they are local. Remove superfluous trace.
3011
30122014-03-17 Dmitry Gutov <dgutov@yandex.ru>
3013
3014 * newcomment.el (comment-beginning): If `comment-start-skip'
3015 doesn't match, move back one char and try again. (Bug#16971)
3016
3017 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3018 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
3019 Set `comment-start-skip' to a simpler value that doesn't try to
3020 check if the semicolon is escaped (this is handled by
3021 `syntax-ppss' now). (Bug#16971)
3022
3023 * progmodes/scheme.el (scheme-mode-variables): Same.
3024
30252014-03-16 Martin Rudalics <rudalics@gmx.at>
3026
3027 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
3028 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
3029 current (Bug#16816, Bug#17007).
3030 (with-current-buffer-window): New macro doing the same as
3031 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
3032 * help.el (help-print-return-message): Warn in doc-string to not
3033 use this in `with-help-window'.
3034 (describe-bindings-internal): Call `describe-buffer-bindings'
3035 from within help buffer. See Juanma's scenario in (Bug#16816).
3036 (with-help-window): Update doc-string.
3037 * dired.el (dired-mark-pop-up):
3038 * files.el (save-buffers-kill-emacs):
3039 * register.el (register-preview): Use `with-current-buffer-window'
3040 instead of `with-temp-buffer-window'.
3041
30422014-03-16 Juanma Barranquero <lekktu@gmail.com>
3043
3044 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
3045 Implement inserting into current buffer, documented in their docstrings.
3046 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
3047 (rst-section-tree-point, rst-forward-section, rst-indent)
3048 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
3049 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
3050 (rst-font-lock-handle-adornment-pre-match-form)
3051 (rst-repeat-last-character): Reflow docstrings.
3052 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
3053 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
3054 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
3055 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
3056 Fix docstring typos.
3057 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
3058 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
3059 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
3060
30612014-03-15 Juanma Barranquero <lekktu@gmail.com>
3062
3063 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
3064 for compatibility with other ports.
3065 (ns-initialize-window-system): Use it. It is set in term/common-win.el
3066 from the -xrm command line argument, but in the Nextstep port its value
3067 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
3068
3069 * progmodes/python.el (defconst, python-syntax-count-quotes)
3070 (python-indent-region, python-indent-shift-right)
3071 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
3072 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
3073 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
3074 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
3075 (inferior-python-mode, python-shell-make-comint, run-python-internal)
3076 (python-shell-buffer-substring, python-shell-send-buffer)
3077 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
3078 (python-completion-complete-at-point, python-fill-docstring-style)
3079 (python-eldoc-function, python-imenu-format-item-label)
3080 (python-imenu-format-parent-item-label)
3081 (python-imenu-format-parent-item-jump-label)
3082 (python-imenu--build-tree, python-imenu-create-index)
3083 (python-imenu-create-flat-index): Fix docstring typos.
3084 (python-indent-context, python-shell-prompt-regexp, run-python):
3085 Remove superfluous backslashes.
3086 (python-indent-line, python-nav-beginning-of-defun)
3087 (python-shell-get-buffer, python-shell-get-process)
3088 (python-info-current-defun, python-info-current-line-comment-p)
3089 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
3090 (python-indent-post-self-insert-function, python-shell-send-file)
3091 (python-shell-completion-get-completions)
3092 (python-shell-completion-complete-or-indent)
3093 (python-eldoc--get-doc-at-point): Reflow docstrings.
3094
30952014-03-14 Glenn Morris <rgm@gnu.org>
3096
3097 * emacs-lisp/package.el (package-menu-mode-map):
3098 Replace use of obsolete function alias. Tweak menu item text.
3099
3100 * info.el (Info-finder-find-node):
3101 Ignore the `emacs' metapackage. (Bug#10813)
3102
3103 * finder.el (finder-list-matches): Include unversioned packages
3104 in the result of a keyword search.
3105
3106 * finder.el (finder--builtins-descriptions): New constant.
3107 (finder-compile-keywords): Use finder--builtins-descriptions.
3108
31092014-03-14 Dmitry Gutov <dgutov@yandex.ru>
3110
3111 * simple.el (blink-matching-paren): Describe the new value,
3112 `jump', enabling the old behavior.
3113 (blink-matching-open): Use that value. (Bug#17008)
3114
31152014-03-14 Glenn Morris <rgm@gnu.org>
3116
3117 * finder.el (finder-no-scan-regexp): Add leim-list.
3118 (finder-compile-keywords):
3119 Don't skip files with same basename. (Bug#14010)
3120 * Makefile.in (setwins_finder): New, excluding leim.
3121 (finder-data): Use setwins_finder.
3122
3123 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
3124 (help-function-arglist, help-make-usage): Move from here...
3125 * help.el (help-split-fundoc, help-add-fundoc-usage)
3126 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
3127 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
3128
31292014-03-14 Juanma Barranquero <lekktu@gmail.com>
3130
3131 * net/socks.el (socks, socks-override-functions)
3132 (socks-find-services-entry):
3133 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
3134 (hif-find-ifdef-block):
3135 * progmodes/modula2.el (m2-indent): Fix docstring typos.
3136
3137 * net/tls.el (tls-program): Reflow docstring.
3138
3139 * progmodes/pascal.el (pascal-mode-abbrev-table)
3140 (pascal-imenu-generic-expression, pascal-auto-endcomments)
3141 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
3142 (pascal-outline-mode): Fix docstring typos.
3143 (pascal-mode): Let define-derived-mode document mode hook.
3144 (pascal-uncomment-area): Reflow.
3145 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
3146
3147 * progmodes/opascal.el (opascal-compound-block-indent)
3148 (opascal-case-label-indent): Fix docstring typos.
3149 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
3150
31512014-03-13 Dmitry Gutov <dgutov@yandex.ru>
3152
3153 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3154 Fontify multiple adjacent negation chars. (Bug#17004)
3155
31562014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
3157
3158 * emacs-lisp/package.el (package--prepare-dependencies):
3159 Accept requirements without explicit version (bug#14941).
3160
31612014-03-12 Juanma Barranquero <lekktu@gmail.com>
3162
3163 * register.el (register-separator, copy-to-register): Doc fixes.
3164 (register-preview-default): Remove unnecessary call to concat.
3165
3166 * frameset.el (frameset-restore): When checking for a visible frame,
3167 use the action map instead of calling visible-frame-list.
3168
31692014-03-12 Jonas Bernoulli <jonas@bernoul.li>
3170
3171 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
3172
31732014-03-12 Martin Rudalics <rudalics@gmx.at>
3174
3175 * window.el (fit-frame-to-buffer): Get maximum width from
3176 display's width instead of height.
3177
31782014-03-12 Glenn Morris <rgm@gnu.org>
3179
3180 * desktop.el (desktop-restore-frames)
3181 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
3182 (desktop-restore-reuses-frames): Doc tweaks.
3183
3184 * electric.el (electric-indent-mode): Doc fix.
3185
31862014-03-12 Juanma Barranquero <lekktu@gmail.com>
3187
3188 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
3189 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
3190 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
3191 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
3192 (cvs-dired-use-hook): Fix docstring typos.
3193 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
3194 Doc fixes.
3195
3196 * vc/pcvs-defs.el (cvs-auto-remove-handled)
3197 (cvs-auto-remove-directories, cvs-default-ignore-marks)
3198 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
3199 (cvs-execute-single-dir): Fix docstring typos.
3200
3201 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
3202 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
3203
3204 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
3205
3206 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
3207 Fix docstring typos.
3208
32092014-03-12 Juanma Barranquero <lekktu@gmail.com>
3210
3211 * frameset.el (frameset--jump-to-register): Add autoload; it could be
3212 called from jump-to-register after unloading the frameset package.
3213
32142014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3215
3216 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
3217 (bug#16975). Deactivate the mark before setting it to nil.
3218 (activate-mark): Do nothing if region is already active.
3219
32202014-03-11 Juanma Barranquero <lekktu@gmail.com>
3221
3222 * frameset.el (frameset--target-display): Remove definition; declare.
3223 (frameset-save, frameset-restore): Let-bind frameset--target-display.
3224
32252014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3226
3227 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
3228 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
3229 when the advice is pending.
3230 (advice-remove): Remove this marker when not needed any more.
3231
32322014-03-11 Juanma Barranquero <lekktu@gmail.com>
3233
3234 * frameset.el: Separate options for reusing frames and cleaning up.
3235 (frameset--reuse-list): Remove definition; declare.
3236 (frameset--action-map): Declare.
3237 (frameset--find-frame-if): Doc fix.
3238 (frameset--restore-frame): Cache frame action.
3239 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
3240 how to clean up the frame list after restoring. Remove cleaning
3241 options from REUSE-FRAMES. Change all keyword values to symbols.
3242 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
3243
3244 * desktop.el (desktop-restore-forces-onscreen)
3245 (desktop-restore-reuses-frames): Use non-keyword values.
3246 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
3247
32482014-03-10 Glenn Morris <rgm@gnu.org>
3249
3250 * files.el (find-file): Doc fix: update info node name.
3251
3252 * emacs-lisp/advice.el (ad-add-advice, defadvice):
3253 Doc fix: remove references to deleted info nodes.
3254
32552014-03-10 Michael Albinus <michael.albinus@gmx.de>
3256
3257 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3258 Do not add `nil' to the environment, when there's no remote `locale'.
3259 (tramp-find-inline-encoding): Check, that the remote host has
3260 installed perl, before sending scripts.
3261
32622014-03-10 Leo Liu <sdl.web@gmail.com>
3263
3264 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
3265 Clear eldoc-last-message. (Bug#16920)
3266
32672014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3268
3269 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
3270 (bug#14430).
3271
32722014-03-09 Juri Linkov <juri@jurta.org>
3273
3274 * ansi-color.el (ansi-color-names-vector): Copy default colors
3275 from `xterm-standard-colors' that look well on the default white
3276 background (and also on the black background) to avoid illegible
3277 color combinations like yellow-on-white and white-on-white.
3278 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
3279
32802014-03-08 Juanma Barranquero <lekktu@gmail.com>
3281
3282 * frameset.el (frameset-restore): When no frame is visible, do not
3283 generate a list of frames, just make visible the selected one.
3284
32852014-03-08 Dmitry Gutov <dgutov@yandex.ru>
3286
3287 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
3288 it only contains the repository root. (Bug#16897)
3289
32902014-03-07 Michael Albinus <michael.albinus@gmx.de>
3291
3292 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
3293 only when `remote-file-name-inhibit-cache' is nil.
3294 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
3295
32962014-03-06 Martin Rudalics <rudalics@gmx.at>
3297
3298 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
3299 Fix doc-strings.
3300 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
3301 fit-frame-to-buffer variable. Fix doc-string.
3302 (fit-window-to-buffer): Set ONLY argument in call of
3303 fit-frame-to-buffer. Fix doc-string.
3304
33052014-03-06 Michael Albinus <michael.albinus@gmx.de>
3306
3307 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
3308 (tramp-action-password): Clear password cache if needed.
3309 (tramp-read-passwd): Do not clear password cache.
3310
3311 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
3312 cache unless it is the first password request.
3313
33142014-03-06 Glenn Morris <rgm@gnu.org>
3315
3316 * simple.el (newline): Doc tweak.
3317
3318 * emacs-lisp/shadow.el (load-path-shadows-find):
3319 Ignore dir-locals. (Bug#12357)
3320
33212014-03-05 Glenn Morris <rgm@gnu.org>
3322
3323 * files.el (interpreter-mode-alist):
3324 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
3325
33262014-03-05 Juanma Barranquero <lekktu@gmail.com>
3327
3328 * frameset.el (frameset--initial-params): Filter out null entries.
3329
33302014-03-05 Martin Rudalics <rudalics@gmx.at>
3331
3332 * window.el (window-min-height, window-min-width):
3333 Rewrite doc-strings.
3334 (window-body-size): Add PIXELWISE argument to make it consistent
3335 with its callees.
3336
33372014-03-05 Juanma Barranquero <lekktu@gmail.com>
3338
3339 * finder.el (finder-mode-map, finder-mode-syntax-table):
3340 Revert part of 2014-02-28 change.
3341
33422014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
3343
3344 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
3345 (eww-setup-buffer): Clear next/prev/etc more reliably.
3346 (eww-textarea-map): [tab] doesn't work on tty.
3347 Reported by Mario Lang.
3348
3349 * net/shr.el (shr-map): Ditto.
3350
33512014-03-04 Glenn Morris <rgm@gnu.org>
3352
3353 * minibuffer.el (completion-hilit-commonality):
3354 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
3355
33562014-03-04 Juanma Barranquero <lekktu@gmail.com>
3357
3358 * hilit-chg.el (hilit-chg-unload-function): New function.
3359 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
3360 (hilit-chg-map-changes): Prefer cardinal number to digit.
3361 (hilit-chg-display-changes): Reflow docstring.
3362 (highlight-changes-rotate-faces): Remove superfluous backslash.
3363
33642014-03-04 Michael Albinus <michael.albinus@gmx.de>
3365
3366 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
3367 `tramp-send-command-and-check'.
3368
33692014-03-04 Juanma Barranquero <lekktu@gmail.com>
3370
3371 * hexl.el (hexl-address-region, hexl-ascii-region)
3372 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
3373 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
3374 (hexl-forward-word, hexl-previous-line, hexl-next-line):
3375 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
3376 (hexl-mode): Doc fix.
3377 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
3378 (hexl-mode-ruler): Fix typos in docstrings.
3379
3380 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
3381 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
3382 Remove superfluous backslashes.
3383 (strokes-last-stroke, strokes-global-map, strokes-mode):
3384 Reflow docstrings.
3385 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
3386 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
3387 (strokes-distance-squared, strokes-global-set-stroke)
3388 (strokes-global-set-stroke-string): Doc fixes.
3389 (strokes-help): Fix typos; reflow docstring.
3390
33912014-03-04 Martin Rudalics <rudalics@gmx.at>
3392
3393 * window.el (window-in-direction): Fix doc-string.
3394
33952014-03-04 Glenn Morris <rgm@gnu.org>
3396
3397 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
3398 Explicit error if no grammar.
3399 (smie-config-save): Doc fix. Fix quote typo.
3400
34012014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
3402
3403 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
3404 electric-indent-mode-hook if we obey electric-indent-mode.
3405 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
3406 decide whether we obey electric-indent-mode.
3407 (c-change-set-fl-decl-start, c-extend-after-change-region):
3408 Silence warnings.
3409 (c-electric-indent-mode-hook): Assume we do want to obey
3410 electric-indent-mode.
3411
3412 * electric.el (electric-indent-mode-has-been-called): Remove.
3413 (electric-indent-mode): Fix accordingly.
3414
3415 * files.el (hack-local-variables): Mention file name in warning.
3416
3417 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
3418
34192014-03-04 Michal Nazarewicz <mina86@mina86.com>
3420
3421 * bindings.el: Add comment describing why C-d binds to `delete-char'.
3422 * simple.el (delete-forward-char): Mark as interactive-only.
3423
34242014-03-03 Juanma Barranquero <lekktu@gmail.com>
3425
3426 * icomplete.el (icomplete-completions):
3427 Follow-up to 2014-03-01 change.
3428
3429 * icomplete.el: Miscellaneous doc fixes.
3430 Use Icomplete everywhere instead of icomplete for consistency.
3431 (icomplete-max-delay-chars): Fix typo.
3432 (icomplete-mode): Use \[].
3433 (icomplete-tidy, icomplete-exhibit): Reflow.
3434 (icomplete-minibuffer-setup-hook, icomplete-completions):
3435 Remove superfluous backlashes.
3436
3437 * ido.el: Miscellaneous doc fixes.
3438 Use Ido everywhere instead of ido or `ido' for consistency.
3439 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
3440 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
3441 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
3442 (ido-separator): Extract obsolescence info from docstring and declare
3443 with make-obsolete-variable.
3444 (ido-minibuffer-setup-hook): Simplify example.
3445 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
3446 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
3447 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
3448 (ido-everywhere): Reflow docstring.
3449 (ido-toggle-vc): Doc fix.
3450 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
3451 of long list of keybindings.
3452
34532014-03-03 Glenn Morris <rgm@gnu.org>
3454
3455 * frame.el (display-pixel-height, display-pixel-width)
3456 (display-mm-dimensions-alist, display-mm-height)
3457 (display-mm-width): Doc tweaks.
3458
34592014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
3460
3461 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
3462 case of undo in region.
3463
34642014-03-02 Martin Rudalics <rudalics@gmx.at>
3465
3466 * window.el (fit-window-to-buffer): Fix argument in window-size
3467 call when window is horizontally combined.
3468
34692014-03-02 Juanma Barranquero <lekktu@gmail.com>
3470
3471 * icomplete.el (icomplete-completions): Use string-width.
3472 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3473
34742014-03-01 Dmitry Gutov <dgutov@yandex.ru>
3475
3476 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3477 Highlight regexp options. (Bug#16914)
3478
34792014-03-01 Martin Rudalics <rudalics@gmx.at>
3480
3481 * window.el (window--max-delta-1): Round down when calculating
3482 how many lines/columns we can get from a window.
3483
34842014-03-01 Glenn Morris <rgm@gnu.org>
3485
3486 * isearch.el (search-invisible): Doc fix.
3487
3488 * minibuffer.el (completion-hilit-commonality):
3489 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
3490 * comint.el (comint-dynamic-list-completions): Doc fix.
3491 * comint.el (comint-dynamic-list-completions):
3492 * filecache.el (file-cache-minibuffer-complete):
3493 * tempo.el (tempo-display-completions):
3494 * eshell/em-hist.el (eshell-list-history):
3495 Replace use of obsolete argument of display-completion-list.
3496
34972014-03-01 Juanma Barranquero <lekktu@gmail.com>
3498
3499 * icomplete.el (icomplete-completions):
3500 Revert back to using "..." when ?… cannot be displayed.
3501
35022014-02-28 Juanma Barranquero <lekktu@gmail.com>
3503
3504 * finder.el (finder-unload-function): New function.
3505
35062014-02-28 Juanma Barranquero <lekktu@gmail.com>
3507
3508 * dframe.el (dframe-detach):
3509 * find-dired.el (find-dired, find-name-dired):
3510 * finder.el (finder-mode-map, finder-mode-syntax-table)
3511 (finder-headmark, finder-select, finder-mouse-select):
3512 Fix docstring typos.
3513
35142014-02-28 Martin Rudalics <rudalics@gmx.at>
3515
3516 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
3517 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
3518 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
3519 Fix doc-string based on a suggestion by Nicolas Richard
3520 <theonewiththeevillook@yahoo.fr>.
3521 * help.el (with-help-window): Fix doc-string.
3522
35232014-02-28 Ivan Kanis <ivan@kanis.fr>
3524
3525 * net/shr.el (shr-image-animate): New option.
3526 (shr-put-image): Respect shr-image-animate.
3527
35282014-02-28 Michael Albinus <michael.albinus@gmx.de>
3529
3530 * net/tramp-adb.el (tramp-adb-parse-device-names):
3531 Use `accept-process-output'.
3532 (tramp-adb-handle-file-truename): Cache the localname only.
3533 (tramp-adb-handle-make-directory)
3534 (tramp-adb-handle-delete-directory): Flush file properties correctly.
3535 (tramp-adb-handle-set-file-modes): Do not raise an error when file
3536 modes cannot be changed.
3537
3538 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
3539 file properties of symlinks.
3540
35412014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
3542
3543 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
3544 required/optional fields to match development biblatex. (Bug#16781)
3545
35462014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
3547
3548 * saveplace.el (toggle-save-place):
3549 Fix argument handling. (Bug#16673)
3550
35512014-02-28 Glenn Morris <rgm@gnu.org>
3552
3553 * minibuffer.el (completions-first-difference)
3554 (completions-common-part, completion-hilit-commonality): Doc fixes.
3555
35562014-02-28 Karl Berry <karl@gnu.org>
3557
3558 * info.el (Info-mode-map): Add H for describe-mode,
3559 to synchronize with standalone Info.
3560
35612014-02-28 Emilio C. Lopes <eclig@gmx.net>
3562
3563 * progmodes/sql.el (sql-interactive-mode):
3564 Avoid setting global comint-input-ring-separator. (Bug#16814)
3565
35662014-02-27 Michael Albinus <michael.albinus@gmx.de>
3567
3568 * net/dbus.el (dbus--init-bus): Declare function.
3569 (dbus-path-local, dbus-interface-local): New defconst.
3570 (dbus-init-bus): Use them.
3571 (dbus-return-values-table): Extend doc.
3572 (dbus-handle-bus-disconnect): Extend error message.
3573
35742014-02-27 Juanma Barranquero <lekktu@gmail.com>
3575
3576 * subr.el (y-or-n-p): Fix double space issue in message.
3577
35782014-02-27 Michael Albinus <michael.albinus@gmx.de>
3579
3580 * net/tramp.el (tramp-call-process): Improve trace message.
3581 (tramp-handle-insert-file-contents): Trace error case.
3582
3583 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3584 <insert-directory>: Use `tramp-handle-insert-directory'.
3585 (tramp-adb-handle-insert-directory): Remove function.
3586 (tramp-adb-send-command-and-check): New defun, replacing
3587 `tramp-adb-command-exit-status'. Change all callees.
3588 (tramp-adb-handle-file-attributes)
3589 (tramp-adb-handle-directory-files-and-attributes): Use it.
3590 (tramp-adb-ls-output-name-less-p):
3591 Use `directory-listing-before-filename-regexp'.
3592 (tramp-adb-handle-delete-directory): Flush also file properties of
3593 the truename of directory.
3594 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
3595 (tramp-adb-handle-file-local-copy): Make the local copy readable.
3596 (tramp-adb-handle-write-region): Implement APPEND.
3597 (tramp-adb-handle-rename-file): Make it more robust. Flush file
3598 properties correctly.
3599 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
3600 variables. Check for connected devices only when needed.
3601
36022014-02-27 Glenn Morris <rgm@gnu.org>
3603
3604 * minibuffer.el (completion-table-dynamic)
3605 (completion-table-with-cache): Doc fixes.
3606
3607 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
3608 (completing-read-multiple): Doc fixes.
3609
36102014-02-27 Daniel Colascione <dancol@dancol.org>
3611
3612 * minibuffer.el (completion--nth-completion): Fix indentation.
3613
3614 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
3615 explicit tramp path is empty.
3616
36172014-02-27 Glenn Morris <rgm@gnu.org>
3618
3619 * emacs-lisp/crm.el (completing-read-multiple):
3620 Empower help-enable-auto-load.
3621
36222014-02-26 Glenn Morris <rgm@gnu.org>
3623
3624 * startup.el (command-line): Don't init the tty in daemon mode.
3625
3626 Avoid calling tty-setup-hook twice, eg if a term file
3627 explicitly calls tty-run-terminal-initialization. (Bug#16859)
3628 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
3629 (tty-create-frame-with-faces): Use it.
3630 * startup.el (command-line): Pass run-hook argument
3631 to tty-run-terminal-initialization.
3632
3633 * dired.el (dired-restore-desktop-buffer): Demote errors;
3634 eg in case a glob match fails. (Bug#16884)
3635
36362014-02-26 Dmitry Gutov <dgutov@yandex.ru>
3637
3638 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
3639 error from `read-from-string'. (Bug#16850)
3640
3641 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
3642 result of `completing-read' in the interactive form. (Bug#16854)
3643
36442014-02-25 Glenn Morris <rgm@gnu.org>
3645
3646 * image.el (image-animate, image-animate-timeout):
3647 Stop animating images in dead buffers. (Bug#16878)
3648
3649 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
3650
3651 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
3652 Doc fixes.
3653 * startup.el (term-setup-hook): Doc fix. Make obsolete.
3654 * term/sun.el (sun-raw-prefix-hooks):
3655 Use tty-setup-hook instead of term-setup-hook.
3656 (terminal-init-sun): Construct message from bytecomp plist.
3657 * term/wyse50.el (enable-arrow-keys): Doc fix.
3658
36592014-02-24 Juanma Barranquero <lekktu@gmail.com>
3660
3661 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
3662 Fix docstring typos.
3663
36642014-02-24 Michael Albinus <michael.albinus@gmx.de>
3665
3666 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
3667
36682014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3669
3670 * minibuffer.el (completion--try-word-completion):
3671 Fix error when completing M-x commands (bug#16808).
3672
36732014-02-24 Leo Liu <sdl.web@gmail.com>
3674
3675 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
3676
36772014-02-24 Juanma Barranquero <lekktu@gmail.com>
3678
3679 * apropos.el (apropos-print): Avoid formatting error when
3680 apropos-do-all and apropos-compact-layout are both t.
3681
36822014-02-23 Juanma Barranquero <lekktu@gmail.com>
3683
3684 * apropos.el (apropos-property, apropos-all-words-regexp)
3685 (apropos-true-hit, apropos-variable, apropos-print):
3686 Fix docstring typos, and remove obsolete comment.
3687
36882014-02-23 Michael Albinus <michael.albinus@gmx.de>
3689
3690 * net/tramp-sh.el (tramp-sh-handle-file-truename):
3691 Preserve trailing "/". (Bug#16851)
3692
36932014-02-23 Dmitry Gutov <dgutov@yandex.ru>
3694
3695 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
3696 after `=>' (bug#16811).
3697 (ruby-smie-rules): Handle the inconsistent second element of the
3698 list returned by `smie-indent--parent'.
3699 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
3700 method call.
3701
37022014-02-23 Juanma Barranquero <lekktu@gmail.com>
3703
3704 * elec-pair.el (electric-pair-text-syntax-table)
3705 (electric-pair-syntax-info, electric-pair--syntax-ppss)
3706 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
3707 (electric-pair--looking-at-unterminated-string-p): Doc fix.
3708 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
3709
37102014-02-22 Glenn Morris <rgm@gnu.org>
3711
3712 * imenu.el (imenu--generic-function): Doc fix.
3713
3714 * register.el (frame-configuration-to-register): Make obsolete.
3715
37162014-02-22 Juanma Barranquero <lekktu@gmail.com>
3717
3718 * desktop.el (desktop-save-buffer-p): Do not fail when
3719 desktop-files-not-to-save is nil. Return t for true result
3720 as the doc says.
3721
37222014-02-22 Daniel Colascione <dancol@dancol.org>
3723
3724 * net/secrets.el (secrets-create-item, secrets-search-items):
3725 Check that attribute values are strings, avoiding the construction
3726 of invalid dbus messages.
3727
37282014-02-21 Juanma Barranquero <lekktu@gmail.com>
3729
3730 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
3731 defun-declarations-alist.
3732
37332014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
3734
3735 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
3736 (bug#16829).
3737
37382014-02-21 Juanma Barranquero <lekktu@gmail.com>
3739
3740 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
3741 (whitespace-newline, whitespace-trailing, whitespace-line)
3742 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
3743 (whitespace-space-after-tab): Fix typo in docstrings.
3744
37452014-02-21 Dmitry Gutov <dgutov@yandex.ru>
3746
3747 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
3748
3749 * electric.el (electric-indent-functions-without-reindent):
3750 Add `yaml-indent-line'.
3751
37522014-02-21 Juanma Barranquero <lekktu@gmail.com>
3753
3754 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
3755 It has done nothing for years; should be removed after the release.
3756
3757 * simple.el (choose-completion): Fix docstring typo.
3758 (read-quoted-char-radix): Remove unneeded * in docstring.
3759 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
3760 Don't escape parentheses unnecessarily in docstrings.
3761
37622014-02-21 Martin Rudalics <rudalics@gmx.at>
3763
3764 Fix handling of window-min-height/-width (Bug#16738).
3765 * window.el (window--dump-window, window--dump-frame):
3766 New functions.
3767 (window--min-size-1): Account for window dividers.
3768 When window-resize-pixelwise is nil, delay rounding till after the
3769 sum of the window components has been calculated.
3770 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
3771 nil make sure at least one text line and two text columns remain
3772 fully visible.
3773 (window-resize): Signal an error when window-resize-apply fails.
3774 (window--resize-child-windows): Fix calculation of by how many
3775 pixels a window can still be shrunk via window-new-normal.
3776 (adjust-window-trailing-edge): Call window--resizable with
3777 correct TRAIL argument.
3778
3779 (with-temp-buffer-window): Don't evaluate BODY within
3780 with-current-buffer (Bug#16816).
3781
37822014-02-21 Michael Albinus <michael.albinus@gmx.de>
3783
3784 * net/tramp.el (tramp-check-cached-permissions):
3785 Call `file-attributes' with `suffix' being a symbol but a string.
3786
37872014-02-21 Daniel Colascione <dancol@dancol.org>
3788
3789 * net/dbus.el (dbus-init-bus-1): Declare new subr.
3790 (dbus-init-bus): New function: call into dbus-init-bus-1
3791 and installs a handler for the disconnect signal.
3792 (dbus-call-method): Rewrite to look for result in cons.
3793 (dbus-call-method-handler): Store result in cons.
3794 (dbus-check-event): Recognize events with nil sender as valid.
3795 (dbus-handle-bus-disconnect): New function. React to bus
3796 disconnection signal by synthesizing dbus error for each
3797 pending synchronous or asynchronous call.
3798 (dbus-notice-synchronous-call-errors): New function.
3799 (dbus-handle-event): Raise errors directly only when `dbus-debug'
3800 is true, not all the time.
3801
38022014-02-21 Juanma Barranquero <lekktu@gmail.com>
3803
3804 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
3805 Remove obsolescence declarations, these variables do not exist anymore.
3806
3807 * savehist.el (savehist-save-minibuffer-history)
3808 (savehist-additional-variables, savehist-file, savehist-mode-hook)
3809 (savehist-save-hook, savehist-coding-system, savehist-loaded)
3810 (savehist-load, savehist-install, savehist-autosave): Fix typos;
3811 mostly, refer to "Savehist mode" when talking about the mode,
3812 and not the function.
3813
3814 * saveplace.el (save-place): Remove redundant info in docstring.
3815 (save-place-forget-unreadable-files, toggle-save-place)
3816 (save-place-forget-unreadable-files, save-place-dired-hook):
3817 Fix typos and remove unneeded backslashes.
3818
38192014-02-20 Michael Albinus <michael.albinus@gmx.de>
3820
3821 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
3822 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
3823
3824 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3825 <insert-directory>: Use `tramp-handle-insert-directory'.
3826 (tramp-gvfs-handle-insert-directory): Remove function.
3827
3828 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3829 Call `tramp-handle-insert-directory'.
3830
38312014-02-20 Juanma Barranquero <lekktu@gmail.com>
3832
3833 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
3834 before the start of buffer/region (bug#16799).
3835
38362014-02-20 Glenn Morris <rgm@gnu.org>
3837
3838 * isearch.el (search-invisible): Doc fix.
3839
38402014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
3841
3842 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
3843 (bug#16657).
3844
38452014-02-19 Juanma Barranquero <lekktu@gmail.com>
3846
3847 * frameset.el (frameset-restore): Delay removing an old frame's
3848 duplicate id until the new frame has been correctly created.
3849
38502014-02-19 Michael Albinus <michael.albinus@gmx.de>
3851
3852 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
3853 (tramp-check-cached-permissions): Call `file-attributes' if the
3854 cache is empty.
3855
3856 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3857 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3858
3859 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3860 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3861 (tramp-gvfs-maybe-open-connection): Set always connection
3862 properties, even if target is mounted already.
3863
3864 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
3865 Set tramp-autoload cookie.
3866 (tramp-get-remote-touch): New defun.
3867 (tramp-sh-handle-set-file-times): Use it.
3868 (tramp-sh-handle-directory-files-and-attributes):
3869 Use `tramp-handle-directory-files-and-attributes' if neither stat
3870 nor perl are available on the remote host.
3871
3872 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
3873 "/". Write long listing only when "l" belongs to the switches.
3874
3875 * net/trampver.el: Update release number.
3876
38772014-02-19 Juanma Barranquero <lekktu@gmail.com>
3878
3879 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
3880
38812014-02-19 Martin Rudalics <rudalics@gmx.at>
3882
3883 * window.el (window-state-put): Allow WINDOW to refer to an
3884 internal window (Bug#16793).
3885
38862014-02-19 Glenn Morris <rgm@gnu.org>
3887
3888 * textmodes/remember.el: Move provide statement to end.
3889 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3890 (remember-notes): Doc fixes.
3891
38922014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3893
3894 * delsel.el (delete-char): Restore incorrectly erased property
3895 (bug#16795).
3896
38972014-02-18 Juanma Barranquero <lekktu@gmail.com>
3898
3899 * frameset.el (frameset--restore-frame): When a frame is being reused
3900 and its root window is not alive, delete all the frame's windows before
3901 restoring the window state. This works around the issue in bug#16793.
3902
39032014-02-18 Glenn Morris <rgm@gnu.org>
3904
3905 * textmodes/remember.el (remember-data-directory)
3906 (remember-directory-file-name-format, remember-store-in-files)
3907 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3908 (remember-notes-save-and-bury-buffer)
3909 (remember-notes--kill-buffer-query): Doc fixes.
3910
3911 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3912
39132014-02-17 Alan Mackenzie <acm@muc.de>
3914
3915 Connect electric-indent-mode up with CC Mode. Bug #15478.
3916 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3917 to electric-indent-{,local-}-mode.
3918 (c-basic-common-init): Set electric-indent-inhibit.
3919 Initialise c-electric-flag from electric-indent-mode.
3920 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3921 New hook functions which propagate electric-indent-mode to CC mode.
3922
3923 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3924 hit, toggle electric-indent-local-mode.
3925
3926 * electric.el (electric-indent-mode-has-been-called):
3927 New variable.
3928
39292014-02-17 Juanma Barranquero <lekktu@gmail.com>
3930
3931 * frameset.el (frameset-cfg-id): New function.
3932 (frameset--reuse-frame, frameset-restore): Use it.
3933 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3934
39352014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3936
3937 * ido.el (ido-file-internal): Remove unused var `d'.
3938 Use \` for to match BoS. Fit within 80n columns.
3939
39402014-02-17 Daniel Colascione <dancol@dancol.org>
3941
3942 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3943 dbus-call-method check for completion using a busy-wait loop with
3944 gradual backoff.
3945
39462014-02-16 Michael Albinus <michael.albinus@gmx.de>
3947
3948 Sync with Tramp 2.2.9.
3949
3950 * net/trampver.el: Update release number.
3951
39522014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3953
3954 * ido.el (ido-file-internal): Don't add the name of an existing
3955 directory twice. (Bug#16747)
3956
39572014-02-16 Glenn Morris <rgm@gnu.org>
3958
3959 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3960 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3961
39622014-02-15 Michael R. Mauger <michael@mauger.com>
3963
3964 * progmodes/sql.el: Version 3.4
3965 (sql-oracle-options): New default value ("-L").
3966 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3967 (sql-placeholders-filter): Correct placeholder pattern.
3968 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3969 (sql-login-delay): New variable.
3970 (sql-product-interactive): Use it.
3971
39722014-02-15 Juanma Barranquero <lekktu@gmail.com>
3973
3974 * frameset.el (frameset--jump-to-register): Check that buffer is live
3975 (bug#16749).
3976
39772014-02-15 Glenn Morris <rgm@gnu.org>
3978
3979 * info.el (info-initialize): Revert 2014-01-10 change.
3980
39812014-02-14 Glenn Morris <rgm@gnu.org>
3982
3983 * replace.el (map-query-replace-regexp)
3984 (read-regexp-defaults-function, read-regexp): Doc fixes.
3985
3986 * dired.el (dired-read-regexp):
3987 * faces.el (list-faces-display):
3988 * misearch.el (multi-isearch-read-matching-buffers)
3989 (multi-isearch-read-matching-files):
3990 * play/cookie1.el (cookie-apropos):
3991 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3992
3993 * textmodes/remember.el (remember): Use frameset-to-register
3994 rather than frame-configuration-to-register.
3995
39962014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3997
3998 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3999 incorrect keybinding.
4000
40012014-02-13 Daniel Colascione <dancol@dancol.org>
4002
4003 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
4004 when adding overlays so that line numbers from compiler match line
4005 numbers we use.
4006
40072014-02-13 Glenn Morris <rgm@gnu.org>
4008
4009 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
4010
4011 * jit-lock.el (jit-lock-mode): Doc fix.
4012
40132014-02-13 Juanma Barranquero <lekktu@gmail.com>
4014
4015 * apropos.el (apropos-read-pattern): When the user passes an empty
4016 string, give a more helpful error message than "Wrong type
4017 argument: stringp, nil".
4018
40192014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
4020
4021 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
4022
40232014-02-13 Glenn Morris <rgm@gnu.org>
4024
4025 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
4026
40272014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
4028
4029 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
4030 shift-select commands.
4031
40322014-02-12 Dmitry Gutov <dgutov@yandex.ru>
4033
4034 * progmodes/js.el (js-indent-line): Don't widen.
4035 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
4036
40372014-02-12 Glenn Morris <rgm@gnu.org>
4038
4039 * icomplete.el (icomplete): Add info-link to defgroup.
4040 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
4041 (icomplete-minibuffer-map, icomplete-mode)
4042 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
4043
4044 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
4045 (package-menu-filter): Rename from package-menu-filter-interactive.
4046 Doc fix.
4047
40482014-02-11 Juanma Barranquero <lekktu@gmail.com>
4049
4050 * frameset.el (frameset--jump-to-register): Select the required
4051 window and buffer before restoring position (bug#16696).
4052
40532014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
4054
4055 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
4056
40572014-02-10 Glenn Morris <rgm@gnu.org>
4058
4059 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
4060
40612014-02-10 Eli Zaretskii <eliz@gnu.org>
4062
4063 * w32-common-fns.el (x-get-selection): Doc fix.
4064 * select.el (x-get-selection): Doc fix. (Bug#15109)
4065
4066 * face-remap.el (face-remap-add-relative)
4067 (face-remap-remove-relative, face-remap-reset-base)
4068 (face-remap-set-base): Call force-mode-line-update to redisplay
4069 the current buffer due to potential change in faces. (Bug#16709)
4070
40712014-02-10 Michael Albinus <michael.albinus@gmx.de>
4072
4073 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
4074 script more robustly.
4075
40762014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
4077
4078 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
4079
4080 * simple.el (choose-completion): Doc fix (bug#14160).
4081
4082 * subr.el (event-start): Say what a nil EVENT value means.
4083
4084 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
4085 (bug#14197).
4086
4087 * progmodes/grep.el (find-program): Doc fix (bug#14289).
4088
4089 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
4090
4091 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
4092
4093 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
4094 predicate function (bug#15455).
4095
40962014-02-10 Dmitry Gutov <dgutov@yandex.ru>
4097
4098 * ielm.el (inferior-emacs-lisp-mode): Instead of
4099 `comment-use-global-state', set `comment-use-syntax'.
4100
41012014-02-10 Glenn Morris <rgm@gnu.org>
4102
4103 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
4104
41052014-02-09 Alan Mackenzie <acm@muc.de>
4106
4107 Fix c-invalidate-state-cache on narrowed buffers.
4108 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
4109 Widen when setting and clearing the CPP delimiter properties.
4110
41112014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
4112
4113 * help.el (describe-bindings): Doc fix (bug#9888).
4114
4115 * files.el (save-buffer): Use ARG as the parameter name for
4116 consistency (bug#10346).
4117 (save-buffer): Clarify the 0 argument (bug#10346).
4118
4119 * cus-edit.el (customize-apropos): Fix error string.
4120 (custom-buffer-create): Doc fix (bug#11122).
4121 (custom-sort-items): Doc fix (bug#11121).
4122
4123 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
4124
4125 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
4126 (icomplete-simple-completing-p): Mention the previous variable.
4127
4128 * font-lock.el (font-lock-value-in-major-mode): Clarify the
4129 meaning of the parameter (bug#12282).
4130
4131 * files.el (find-file-noselect): Clarify prompt when changing
4132 readedness (bug#13261).
4133 (locate-file): Suffixes aren't returned, so don't say that they
4134 are (bug#12674).
4135 (backup-inhibited): Doc clarification (bug#12525).
4136
4137 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
4138 before we actually start to delete things (bug#16331).
4139
4140 * subr.el (event-start): Doc fix (bug#14228).
4141 (event-end): Ditto.
4142
41432014-02-09 Glenn Morris <rgm@gnu.org>
4144
4145 * emacs-lisp/warnings.el (lwarn):
4146 Empower help-enable-auto-load. (Bug#15940)
4147
41482014-02-08 Andreas Schwab <schwab@linux-m68k.org>
4149
4150 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
4151 (Bug#16690)
4152
41532014-02-08 Michael Albinus <michael.albinus@gmx.de>
4154
4155 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4156 Insert output at end of buffer. (Bug#16120)
4157
41582014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4159
4160 * simple.el (choose-completion-string-functions): Document new
4161 calling convention (bug#14153).
4162 (execute-extended-command): Clarify doc string (bug#13373).
4163
4164 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
4165
4166 * find-dired.el (find-name-dired): Doc fix (bug#14290).
4167 (find-grep-dired): Doc fix (bug#14288).
4168
41692014-02-08 Juri Linkov <juri@jurta.org>
4170
4171 * isearch.el (isearch-quote-char): Check character validity
4172 like in `quoted-insert' (bug#16677).
4173
41742014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4175
4176 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
4177
4178 * isearch.el (isearch-hide-immediately): Doc clarification
4179 (bug#14723).
4180
4181 * simple.el (line-move): Document utility function used many
4182 places in the Emacs sources (bug#14843).
4183
4184 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
4185 (dired-prev-marked-file): Doc fix (bug#14855).
4186 (dired-up-directory): Doc fix (bug#14848).
4187
4188 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
4189
4190 * files.el (file-relative-name): Doc fix (bug#15159).
4191
4192 * fringe.el (fringe-styles): Doc fix (bug#15239).
4193
4194 * isearch.el (isearch-filter-predicate): Documentation typo fix
4195 (bug#15474).
4196
4197 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
4198
4199 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
4200
4201 * replace.el (replace-match-maybe-edit): Doc clarification
4202 (bug#15632).
4203
4204 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
4205
4206 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
4207
42082014-02-08 Glenn Morris <rgm@gnu.org>
4209
4210 * help-fns.el (describe-variable):
4211 Check {file,dir}-local-variables-alist, and buffer-file-name,
4212 in the correct buffer.
4213
42142014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
4215
4216 * help-fns.el (describe-variable): Fix the case where
4217 a value is directory-local with no dir-locals file. (Bug#16635)
4218
42192014-02-08 Glenn Morris <rgm@gnu.org>
4220
4221 * abbrev.el (edit-abbrevs-mode):
4222 Derive from fundamental-mode. (Bug#16682)
4223
42242014-02-07 Juanma Barranquero <lekktu@gmail.com>
4225
4226 * simple.el (quoted-insert): Check character validity (bug#16677).
4227
42282014-02-07 Juri Linkov <juri@jurta.org>
4229
4230 * desktop.el (desktop-read): Claim the lock when the owner is not
4231 the current process. (Bug#16157)
4232
42332014-02-07 Juri Linkov <juri@jurta.org>
4234
4235 * desktop.el (desktop-buffers-not-to-save): Change default from nil
4236 to "\\` ". (Bug#16651)
4237
42382014-02-07 Juri Linkov <juri@jurta.org>
4239
4240 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
4241 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
4242 (desktop-auto-save-cancel-timer): New function with some code from
4243 `desktop-auto-save-set-timer'.
4244 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
4245 Instead of setting `desktop-save-mode' to nil, call
4246 `desktop-save-mode' with arg 0. (Bug#16630)
4247
42482014-02-07 Glenn Morris <rgm@gnu.org>
4249
4250 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
4251 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
4252 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
4253
4254 * obsolete/iswitchb.el: Move to obsolete/.
4255 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
4256 since obsolete/ is not scanned for autoloads.
4257 * emacs-lisp/authors.el (authors-valid-file-names):
4258 Add iswitchb.el.
4259
4260 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
4261 Disable now non-functional find-file-hook.
4262
42632014-02-06 Michael Albinus <michael.albinus@gmx.de>
4264
4265 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
4266 instead of ";" in order to avoid additional prompts. Let heredoc
4267 scripts read from tty. (Bug#16582)
4268 (tramp-send-command): No special handling of heredocs, it isn't
4269 necessary anymore.
4270
42712014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
4272
4273 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
4274 with a space (bug#16664). Limit the symbols considered to the ones
4275 that are bound or fbound (bug#16646).
4276
42772014-02-06 Glenn Morris <rgm@gnu.org>
4278
4279 * epa.el (epa-mail-aliases): Doc fix.
4280
42812014-02-06 Dmitry Gutov <dgutov@yandex.ru>
4282
4283 * emacs-lisp/lisp.el (lisp-completion-at-point):
4284 Use `completion-table-merge' instead of `completion-table-in-turn'
4285 (bug#16604).
4286
4287 * minibuffer.el (completion-table-merge): New function.
4288
42892014-02-05 Michael Albinus <michael.albinus@gmx.de>
4290
4291 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
4292 (tramp-sh-handle-set-file-acl)
4293 (tramp-sh-handle-start-file-process)
4294 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
4295 (tramp-find-executable, tramp-send-command): Use it.
4296
42972014-02-05 Glenn Morris <rgm@gnu.org>
4298
4299 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
4300
43012014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
4302
4303 * progmodes/python.el (python-shell-send-string)
4304 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
4305
43062014-02-04 Anders Lindgren <andlind@gmail.com>
4307
4308 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
4309 the names (bug#16620).
4310
43112014-02-03 Martin Rudalics <rudalics@gmx.at>
4312
4313 * faces.el (window-divider): New default value. Rewrite doc-string.
4314 (window-divider-first-pixel, window-divider-last-pixel): New faces.
4315
43162014-02-03 Dmitry Gutov <dgutov@yandex.ru>
4317
4318 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
4319 `protected' and `public' can also be called without arguments.
4320
43212014-02-03 Glenn Morris <rgm@gnu.org>
4322
4323 * register.el (window-configuration-to-register)
4324 (frame-configuration-to-register): Unadvertise unused argument.
4325 * frameset.el (frameset-to-register): Remove unused argument.
4326
4327 * frameset.el (frameset-to-register):
4328 * kmacro.el (kmacro-to-register):
4329 * register.el (increment-register):
4330 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
4331 (calc-append-to-register, calc-prepend-to-register):
4332 * play/gametree.el (gametree-layout-to-register)
4333 (gametree-apply-register-layout):
4334 * textmodes/picture.el (picture-clear-rectangle-to-register)
4335 (picture-yank-rectangle-from-register):
4336 * vc/emerge.el (emerge-combine-versions-register):
4337 Use register-read-with-preview to read registers.
4338
43392014-02-03 João Távora <joaotavora@gmail.com>
4340
4341 * elec-pair.el (electric-pair-backward-delete-char): Don't error
4342 when at beginning of (possibly narrowed) buffer.
4343
43442014-02-02 Daniel Colascione <dancol@dancol.org>
4345
4346 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
4347 Also try to display local help from just before point.
4348
43492014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
4350
4351 c-parse-state. Don't "append-lower-brace-pair" in certain
4352 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
4353 recognised as a comment.
4354
4355 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
4356 as well as normal comment starter.
4357 (c-parse-state-get-strategy): Extra return possibility
4358 'back-and-forward.
4359 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
4360 return value list to indicate replacement of a brace-pair cons
4361 with its car.
4362 (c-parse-state-1): With 'back-and-forward, only call
4363 c-append-lower-brace-pair-to state-cache when cons-separated.
4364
43652014-02-02 Jan Djärv <jan.h.d@swipnet.se>
4366
4367 * term/ns-win.el (ns-suspend-error): New function.
4368 (ns-initialize-window-system): Add ns-suspend-error to
4369 suspend-hook (Bug#16612).
4370
43712014-02-02 Daniel Colascione <dancol@dancol.org>
4372
4373 * progmodes/cc-defs.el (c-find-assignment-for-mode):
4374 Make loading cc-mode silent.
4375
43762014-02-02 Daniel Colascione <dancol@dancol.org>
4377
4378 * comint.el (comint-prompt-read-only): Change doc to suggest
4379 remap keybinding.
4380
43812014-02-02 Glenn Morris <rgm@gnu.org>
4382
4383 * register.el (register-read-with-preview, point-to-register)
4384 (window-configuration-to-register, frame-configuration-to-register)
4385 (jump-to-register, number-to-register, view-register, insert-register)
4386 (copy-to-register, append-to-register, prepend-to-register)
4387 (copy-rectangle-to-register): Doc fixes.
4388
43892014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4390
4391 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
4392 * emacs-lisp/find-func.el (find-function-C-source): Idem.
4393 * emacs-lisp/nadvice.el (advice--cd*r): New function.
4394 * help-fns.el (describe-function-1): Use it.
4395
43962014-02-02 Glenn Morris <rgm@gnu.org>
4397
4398 * register.el (register-preview-default): New function,
4399 split from register-preview.
4400 (register-preview-function): Rename from register-preview-functions,
4401 make it not a hook.
4402 (register-preview): Use register-preview-function.
4403 (register-read-with-preview): Error on non-character event. (Bug#16595)
4404
44052014-02-01 Dmitry Gutov <dgutov@yandex.ru>
4406
4407 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
4408 `:' before binary operators (bug#16609). Don't check for `:'
4409 before `[' and `(', or their syntax status. A percent literal
4410 can't end with either.
4411 (ruby-font-lock-keywords): For built-ins that require arguments,
4412 check that they're followed by something that looks like argument
4413 (bug#16610).
4414
44152014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
4416
4417 * subr.el (butlast): Document what an omitted N means (bug#13437).
4418 (nbutlast): Ditto.
4419
44202014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
4421
4422 * net/shr.el (shr-generic): Make into a defsubst to make the stack
4423 depth shallower (bug#16587).
4424 (shr-tag-svg): Respect `shr-inhibit-images'.
4425 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
4426
44272014-01-31 Dmitry Gutov <dgutov@yandex.ru>
4428
4429 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
4430 (ruby-smie-grammar): Make "." right-associative. Make its priority
4431 lower than the ternary and all binary operators.
4432 (ruby-smie-rules): Indent "(" relative to the first non-"."
4433 parent, or the first "." parent at indentation.
4434 Use `ruby-align-chained-calls' for indentation of "." tokens.
4435 (Bug#16593)
4436
44372014-01-31 Juri Linkov <juri@jurta.org>
4438
4439 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
4440 from `make-hash-table'.
4441
4442 * textmodes/ispell.el (ispell-init-process): Change message format
4443 to be consistent with other messages.
4444
44452014-01-31 Glenn Morris <rgm@gnu.org>
4446
4447 * delsel.el (delete-selection-mode): Doc fix.
4448
4449 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
4450 (trace-function-background): Doc fixes.
4451
4452 * ido.el (ido-use-virtual-buffers): Doc fix.
4453 Reset :version, since the default value has not changed.
4454
4455 * register.el (register-preview-delay, register-read-with-preview):
4456 Doc fixes.
4457
4458 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
4459 do not mess with mail-buffer position (fixes 2009-11-03 change).
4460 * progmodes/cc-mode.el (c-submit-bug-report):
4461 Check auto-fill-mode is bound. (Bug#16592)
4462
44632014-01-31 Darren Hoo <darren.hoo@gmail.com>
4464
4465 * startup.el (fancy-splash-image-file): New function,
4466 split from fancy-splash-head.
4467 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
4468 so that we are both using the same image. (Bug#16574)
4469
44702014-01-30 Glenn Morris <rgm@gnu.org>
4471
4472 * simple.el (eval-expression): Doc fix.
4473
4474 * hexl.el (hexl-mode-hook):
4475 * ielm.el (ielm-mode-hook):
4476 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
4477 (lisp-interaction-mode-hook):
4478 * progmodes/cfengine.el (cfengine3-documentation-function):
4479 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
4480
44812014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
4484 is a symbol (bug#16584).
4485
44862014-01-30 Glenn Morris <rgm@gnu.org>
4487
4488 * help.el (help-for-help-internal): Add "P" to text.
4489
44902014-01-29 Glenn Morris <rgm@gnu.org>
4491
4492 * simple.el (just-one-space, cycle-spacing): Doc fixes.
4493
44942014-01-28 Martin Rudalics <rudalics@gmx.at>
4495
4496 * window.el (fit-frame-to-buffer): Fix calculations for margins and
4497 height constraints.
4498
44992014-01-28 Luke Lee <luke.yx.lee@gmail.com>
4500
4501 * progmodes/hideif.el: Extend to full CPP expression syntax.
4502 (hif-token-alist): Add missing tokens.
4503 (hif-token-regexp): Add support for float/octal/hex immediates.
4504 (hif-string-literal-regexp): New const.
4505 (hif-tokenize): Recognize strings and float/octal/hex immediates.
4506 (hif-exprlist): New function.
4507 (hif-parse-if-exp): Use it.
4508 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
4509 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
4510 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
4511 (hif-logxor, hif-comma): New functions.
4512
45132014-01-28 Glenn Morris <rgm@gnu.org>
4514
4515 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
4516
4517 * indent.el (tab-stop-list): Doc fix. Add :version.
4518
4519 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
4520 (cvs-append-to-ignore): Add compatibility alias.
4521
45222014-01-27 Glenn Morris <rgm@gnu.org>
4523
4524 * dired.el (dired-hide-details-mode): Don't autoload it,
4525 since it cannot be used outside Dired buffers anyway.
4526
4527 * emulation/cua-base.el (cua-mode): Doc fix.
4528
4529 * dired.el (dired-hide-details-hide-symlink-targets)
4530 (dired-hide-details-hide-information-lines)
4531 (dired-hide-details-mode): Doc fixes.
4532
4533 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
4534 * strokes.el (strokes-file): Doc fix. Bump :version.
4535 (strokes-help): Doc fix.
4536 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
4537 * emulation/viper.el (viper): Doc fix for custom group.
4538 (top-level): Remove oh-so-no-longer-relevant text about vip.
4539 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
4540
4541 * ido.el (ido-save-directory-list-file):
4542 * saveplace.el (save-place-file):
4543 * calendar/timeclock.el (timeclock-file):
4544 * net/quickurl.el (quickurl-url-file):
4545 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
4546 * progmodes/idlwave.el (idlwave-config-directory):
4547 * textmodes/remember.el (remember-data-file):
4548 Bump :version.
4549
45502014-01-26 Glenn Morris <rgm@gnu.org>
4551
4552 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
4553 Doc fix. Make obsolete.
4554 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
4555
4556 * sort.el (delete-duplicate-lines): Doc fix.
4557
45582014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4559
4560 * progmodes/ada-mode.el (ada):
4561 * woman.el (woman): Link to info manual and Commentary section.
4562
4563 * progmodes/flymake.el (flymake):
4564 * nxml/nxml-mode.el (nxml):
4565 * net/eww.el (eww):
4566 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
4567 * htmlfontify.el (htmlfontify):
4568 * ses.el (ses):
4569 * epa.el (epa):
4570 * ido.el (ido): Link to info manual.
4571
45722014-01-25 Leo Liu <sdl.web@gmail.com>
4573
4574 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
4575
45762014-01-25 Adam Sjøgren <asjo@koldfront.dk>
4577
4578 * net/shr.el (shr-tag-img): Prefer the title over the alt text
4579 (bug#16537).
4580
45812014-01-24 Juanma Barranquero <lekktu@gmail.com>
4582
4583 * net/eww.el (eww-download-callback):
4584 Fix reference to eww-download-directory.
4585
4586 * emacs-lisp/bytecomp.el (byte-compile-file):
4587 Remove unused local variable `file-name'.
4588
45892014-01-24 Glenn Morris <rgm@gnu.org>
4590
4591 * woman.el (woman-default-faces, woman-monochrome-faces):
4592 Fix obsolescence specification.
4593
4594 * subr.el (with-demoted-errors): Doc fix.
4595
45962014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
4597
4598 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
4599 (cl--macroexp-fboundp): New function.
4600 (cl--make-type-test): Use it.
4601
46022014-01-23 Glenn Morris <rgm@gnu.org>
4603
4604 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
4605 * simple.el (eval-expression): Doc fixes.
4606
46072014-01-22 Glenn Morris <rgm@gnu.org>
4608
4609 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
4610
46112014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
4612
4613 * emacs-lisp/package.el: Write files silently.
4614 (package-autoload-ensure-default-file, package--write-file-no-coding)
4615 (package-generate-description-file, package--download-one-archive)
4616 (package-install-from-archive): Tell `write-region' to stay quiet.
4617 (package-menu-mode, package-menu--print-info): Omit the Archive column
4618 if there's only one archive.
4619 (package-all-keywords, package--has-keyword-p): Remove dead code.
4620
46212014-01-22 Glenn Morris <rgm@gnu.org>
4622
4623 * version.el (emacs-bzr-version-bzr): Fix typo.
4624
4625 * version.el (emacs-repository-get-version):
4626 Check either .bzr or .git, but not both.
4627 Make the git case actually use the DIR argument, and return nil
4628 rather than the empty string.
4629 Avoid error if .git exists but the git executable is not found.
4630
46312014-01-22 Martin Rudalics <rudalics@gmx.at>
4632
4633 Fixes in window size functions around Bug#16430 and Bug#16470.
4634 * window.el (window-total-size, window-size): New argument ROUND.
4635 (window--min-delta-1, window-min-delta, window--max-delta-1):
4636 Be more conservative when calculating the numbers of lines or
4637 columns a window can shrink (Bug#16430).
4638 (fit-window-to-buffer): Simplify code.
4639 * term.el (term-window-width): Call window-body-width again.
4640
46412014-01-22 Glenn Morris <rgm@gnu.org>
4642
4643 * image.el (image-format-suffixes): Doc fix.
4644
4645 * international/quail.el (quail-define-package): Doc fix.
4646
4647 * emacs-lisp/authors.el (authors-valid-file-names)
4648 (authors-renamed-files-alist): Additions.
4649
4650 * vc/vc-git.el (vc-git-print-log): Remove --follow;
4651 reverts 2014-01-09 change. (Bug#16422)
4652
4653 * calc/calc-embed.el (thing-at-point-looking-at):
4654 * emacs-lisp/map-ynp.el (x-popup-dialog):
4655 * obsolete/lmenu.el (x-popup-dialog):
4656 * emacs-lisp/package.el (url-recreate-url):
4657 * mail/mailclient.el (clipboard-kill-ring-save):
4658 * subr.el (x-popup-dialog): Update declaration.
4659 * mail/rmail.el (rmail-mime-message-p):
4660 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
4661
46622014-01-21 Daniel Colascione <dancol@dancol.org>
4663
4664 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4665 Correctly detect when we're inside an arithmetic expansion form
4666 containing nested parenthesis.
4667 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
4668 to detect cases where we shouldn't expand "<<" to a heredoc
4669 skeleton.
4670
46712014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
4672
4673 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
4674 (eldoc--message-command-p): New function.
4675 (eldoc-display-message-p): Use it.
4676 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
4677 message is not automatically erased for us.
4678 (eldoc-print-current-symbol-info): Erase previous message, if any.
4679
46802014-01-21 Tassilo Horn <tsdh@gnu.org>
4681
4682 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
4683 specify it's an interactive function.
4684
4685 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
4686 Fix regex used for scanning for citation keys which failed for
4687 citations with optional arguments.
4688
46892014-01-21 Leo Liu <sdl.web@gmail.com>
4690
4691 * simple.el (read--expression): Don't enable eldoc-mode.
4692
46932014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
4694
4695 * simple.el (move-beginning-of-line): Make sure we don't move forward
4696 (bug#16497).
4697
46982014-01-20 Juri Linkov <juri@jurta.org>
4699
4700 * saveplace.el (toggle-save-place, save-place-to-alist)
4701 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
4702 'dired-mode) before checking for dired-directory. (Bug#16477)
4703
47042014-01-20 Juri Linkov <juri@jurta.org>
4705
4706 * indent.el (indent-line-to): Use backward-to-indentation
4707 instead of back-to-indentation. (Bug#16461)
4708
47092014-01-20 Paul Eggert <eggert@cs.ucla.edu>
4710
4711 Revert some of the CANNOT_DUMP fix (Bug#16494).
4712 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
4713 but fixing this can wait until after the next release.
4714 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
4715
47162014-01-19 Michael Albinus <michael.albinus@gmx.de>
4717
4718 * eshell/esh-mode.el (eshell-password-prompt-regexp):
4719 Use `password-word-equivalents'.
4720 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
4721 to t. (Bug#5664, Bug#13124)
4722
47232014-01-19 Alan Mackenzie <acm@muc.de>
4724
4725 Bind open-paren-in-column-0-is-defun-start to nil at some entry
4726 points.
4727 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
4728 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
4729 * progmodes/cc-mode.el (c-before-change, c-after-change)
4730 (c-font-lock-fontify-region): Bind it here.
4731
47322014-01-19 Martin Rudalics <rudalics@gmx.at>
4733
4734 * term.el (term-window-width): Call window-text-width instead of
4735 window-width (Bug#16470).
4736
47372014-01-18 Paul Eggert <eggert@cs.ucla.edu>
4738
4739 * simple.el (password-word-equivalents): Remove duplicates.
4740 Sort, to make this easier next time.
4741 Downcase. Omit ": " after "jelszó".
4742
47432014-01-18 Jan Djärv <jan.h.d@swipnet.se>
4744
4745 * term/common-win.el (saved-region-selection): Defvar it.
4746 (x-select-text): Set saved-region-selection (Bug#16382).
4747
47482014-01-18 Glenn Morris <rgm@gnu.org>
4749
4750 * emacs-lisp/authors.el (authors-aliases)
4751 (authors-renamed-files-alist): Add some entries.
4752
47532014-01-17 Michael Albinus <michael.albinus@gmx.de>
4754
4755 * net/tramp.el (tramp-password-prompt-regexp):
4756 Use `password-word-equivalents' if available.
4757 (tramp-action-password, tramp-process-one-action)
4758 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
4759
47602014-01-17 Chong Yidong <cyd@gnu.org>
4761
4762 * simple.el (password-word-equivalents): New defcustom.
4763 * comint.el (comint-password-prompt-regexp): Use it. Bump version
4764 to 24.4.
4765 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
4766 to t. (Bug#13124)
4767
47682014-01-17 Dmitry Gutov <dgutov@yandex.ru>
4769
4770 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
4771 (ruby-align-to-stmt-keywords): Change the default value.
4772 Use `ruby-alignable-keywords' to generate the possible customization
4773 choices.
4774 (ruby-smie-rules): Instead of using a hardcoded list of alignable
4775 keywords, check against the value of `ruby-alignable-keywords'
4776 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
4777
47782014-01-17 Glenn Morris <rgm@gnu.org>
4779
4780 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
4781
4782 Make M-x authors return zero *Authors Errors* from current logs.
4783 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
4784 (authors-ignored-files): Add some entries, remove others.
4785 (authors-ambiguous-files, authors-valid-file-names):
4786 Add some entries.
4787 (authors-renamed-files-alist): Add, remove, and adjust entries.
4788 (authors-renamed-files-regexps): Add some entries.
4789 Remove some very broad ones. Make some entries `lax'.
4790 (authors-lax-changelogs): New constant.
4791 (authors-disambiguate-file-name): Treat top-level specially.
4792 (authors-lax-changelog-p): New function.
4793 (authors-canonical-file-name): Check file as written against
4794 authors-valid-file-names. Do not special-case etc/.
4795 Handle `lax' logs and authors-renamed-files-regexps elements.
4796
47972014-01-16 Dmitry Gutov <dgutov@yandex.ru>
4798
4799 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
4800 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
4801 callers.
4802
48032014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4804
4805 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
4806 Assume we're already in the proper buffer.
4807 Inspired by Anders Lindgren <andlind@gmail.com>.
4808 (follow-post-command-hook): Call it from the right buffer.
4809 (follow-comint-scroll-to-bottom): Adjust call.
4810 (follow-all-followers): Use get-buffer-window-list.
4811
48122014-01-15 Daniel Colascione <dancol@dancol.org>
4813
4814 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
4815 `buffer-file-name' in interactive-form so that we don't leave
4816 pathless file names in `file-name-history'.
4817
48182014-01-15 Juri Linkov <juri@jurta.org>
4819
4820 * indent.el (indent-rigidly): Set deactivate-mark to nil
4821 in transient indentation mode. (Bug#16438)
4822
48232014-01-15 Dmitry Gutov <dgutov@yandex.ru>
4824
4825 * emacs-lisp/package.el (package-desc-keywords): New function
4826 (Bug#16222).
4827 (describe-package-1, package-all-keywords)
4828 (package--has-keyword-p): Use it.
4829
48302014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4831
4832 * simple.el (define-alternatives): When creating the
4833 COMMAND-alternatives variable, assign COMMAND as its definition
4834 name so that `describe-variable' can relocate it.
4835
48362014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
4837
4838 * font-lock.el (font-lock-keywords): Fix typo in docstring
4839 (bug#16307).
4840
48412014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4842
4843 * ispell.el (ispell-region): Reset `in-comment' for new line
4844 instead of wrongly reset `add-coment' (bug#13577).
4845
48462014-01-14 Daiki Ueno <ueno@gnu.org>
4847
4848 * epa-file.el (epa-file-write-region): Encode the region according
4849 to `buffer-file-format'. Problem reported at:
4850 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
4851
48522014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4853
4854 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
4855 so it applies in the right buffer (bug#16410).
4856
48572014-01-13 Daniel Colascione <dancol@dancol.org>
4858
4859 * textmodes/rst.el (rst-define-key): Provide deprecated
4860 keybindings through named functions instead of anonymous ones so
4861 that "??" doesn't appear in describe-mode output.
4862
48632014-01-13 Bastien Guerry <bzg@gnu.org>
4864
4865 * simple.el (define-alternatives): Call the selected command
4866 interactively. When setting `COMMAND--implementation' for the
4867 first time, tell the user how to chose another implementation.
4868 Enhance the docstring.
4869
48702014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4871
4872 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
4873 (log-edit--match-first-line): New function.
4874 (log-edit-font-lock-keywords): Use it.
4875 (log-edit-mode): Make jit-lock-defer-multiline work.
4876
48772014-01-13 Bastien Guerry <bzg@gnu.org>
4878
4879 * rect.el (rectangle-mark-mode): When the region is not active,
4880 display a message saying that the mark as been set and that
4881 rectangle mode is in use.
4882 (rectangle--highlight-for-redisplay): Only put an overlay with a
4883 visible vertical bar when (display-graphic-p) is non-nil.
4884 This partially fixes Bug#16403.
4885
48862014-01-13 Juri Linkov <juri@jurta.org>
4887
4888 * info.el (Info-find-file): Go to DIR before displaying the error
4889 about a nonexistent file if no previous Info file is visited.
4890 Use `user-error' instead of `error' for "Info file %s does not exist".
4891 (Info-find-node-2): In case of a nonexistent node in unwind forms
4892 go to the Top node if there is no previous node to revert to.
4893 (Bug#16405)
4894
48952014-01-13 Martin Rudalics <rudalics@gmx.at>
4896
4897 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4898 * window.el (fit-frame-to-buffer): Fix doc-string.
4899 Respect window-min-height/-width. Fit pixelwise when
4900 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4901 when avoiding that frame goes partially off-screen.
4902 (fit-window-to-buffer): Respect window-min-height/-width
4903 (Bug#14096).
4904
49052014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4906
4907 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4908 after an empty line.
4909
49102014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4911
4912 * net/shr.el (shr-render-region): Autoload.
4913
49142014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4915
4916 * net/eww.el (eww-download-directory): Rename from
4917 `eww-download-path' (Bug#16419).
4918
49192014-01-12 Leo Liu <sdl.web@gmail.com>
4920
4921 * dired-x.el (dired-mode-map): Fix last change.
4922
4923 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4924
49252014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4926
4927 Spelling fixes.
4928 * emacs-lisp/generic.el (generic--normalize-comments):
4929 Rename from generic--normalise-comments. All uses changed.
4930 * play/bubbles.el (bubbles--neighborhood-score)
4931 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4932 (bubbles--neighborhood-available)
4933 (bubbles--update-neighborhood-score):
4934 Rename from names with 'neighbourhood'. All uses changed.
4935
49362014-01-12 Leo Liu <sdl.web@gmail.com>
4937
4938 Re-implement the feature of showing eldoc info after editing.
4939 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4940 (eldoc-edit-message-commands): New function.
4941 (eldoc-print-after-edit): New variable.
4942 (eldoc-pre-command-refresh-echo-area): Emit message only by
4943 eldoc-message-commands.
4944 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4945 if eldoc-print-after-edit is set. (Bug#16346)
4946 * simple.el (read--expression): Enable eldoc-mode.
4947 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4948
49492014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4950 Eric S. Raymond <esr@thyrsus.com>
4951
4952 * version.el (emacs-repository-get-version): Enhance so the
4953 function works correctly in either a Bazaar or Git repo.
4954
49552014-01-11 Eric S. Raymond <esr@thyrsus.com>
4956
4957 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4958 Goes with removal of the joke manpages from /etc.
4959
49602014-01-10 Kenichi Handa <handa@gnu.org>
4961
4962 * mail/rmail.el (rmail-get-coding-system):
4963 Check rmail-get-coding-function before "funcall"ing it.
4964
49652014-01-10 Glenn Morris <rgm@gnu.org>
4966
4967 * emacs-lisp/authors.el (authors-fixed-entries):
4968 Update for files that no longer exist.
4969
49702014-01-10 Eric S. Raymond <esr@thyrsus.com>
4971
4972 * version.el (emacs-bzr-get-version): Restore compatibilty with
4973 24.3 (Tested).
4974
49752014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4976
4977 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4978 and Podfile.
4979
49802014-01-10 Eli Zaretskii <eliz@gnu.org>
4981
4982 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4983
49842014-01-10 Chong Yidong <cyd@gnu.org>
4985
4986 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4987
49882014-01-10 Anders Lindgren <andlind@gmail.com>
4989
4990 * follow.el (follow-cache-command-list): Include right-char and
4991 left-char.
4992
49932014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4994
4995 Spelling fixes.
4996 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4997 * woman.el (woman-mark-horizontal-position):
4998 Rename from woman-mark-horizonal-position. Use changed.
4999
50002014-01-10 Glenn Morris <rgm@gnu.org>
5001
5002 * info.el (info-initialize): If running uninstalled, ensure our
5003 own info files are always found first, even if INFOPATH is set.
5004
5005 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
5006
50072014-01-09 David Engster <deng@randomsample.de>
5008
5009 * emacs-lisp/eieio-custom.el:
5010 * emacs-lisp/eieio-opt.el: Set generated autoload file to
5011 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
5012 * emacs-lisp/eieio.el: Regenerate autoloads.
5013
50142014-01-09 Eric S. Raymond <esr@thyrsus.com>
5015
5016 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
5017 following renames. (Bug#8756)
5018
50192014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
5020
5021 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
5022 (bug#16382).
5023 (activate-mark): Add `no-tmm' argument.
5024 (set-mark, push-mark-command): Use it instead of running
5025 activate-mark-hook by hand.
5026
50272014-01-08 Eric S. Raymond <esr@thyrsus.com>
5028
5029 In preparation for the move to git, sanitize out some
5030 Bazaar-specific names.
5031
5032 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
5033
5034 * version.el (emacs-bzr-version): Name changed to
5035 emacs-repository-version. Obsolete-variable alias made.
5036 * loadup.el: Follow through on this name change.
5037 * mail/emacsbug.el (report-emacs-bug): Factor out any
5038 assumption about the version control system in use.
5039
50402014-01-08 David Engster <deng@randomsample.de>
5041
5042 * help-fns.el (help-fns-describe-function-functions):
5043 New variable to call functions for augmenting help buffers.
5044 (describe-function-1): Remove explicit calls to
5045 `help-fns--compiler-macro', `help-fns--parent-mode' and
5046 `help-fns--obsolete'. Put them in above new variable instead, and
5047 call them through `run-hook-with-args'.
5048 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
5049 `eieio-describe-class'. Not meant for interactive use anymore,
5050 but to augment existing help buffers. Remove optional second
5051 argument. Create proper button for file location.
5052 Rewrite function to use `insert' instead of `princ' and `prin1' where
5053 possible.
5054 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
5055 (eieio-method-def, eieio-class-def): Move further up.
5056 (describe-method, describe-generic, eieio-describe-method):
5057 Remove aliases.
5058 (eieio-help-constructor, eieio-help-generic): Rename from
5059 `eieio-describe-constructor' and `eieio-describe-generic', resp.
5060 Rewrite to use `insert' in the current buffer and use proper help
5061 buttons.
5062 (eieio-help-find-method-definition)
5063 (eieio-help-find-class-definition): Also accept symbols as
5064 arguments.
5065 (eieio-help-mode-augmentation-maybee): Remove.
5066 (eieio-describe-class-sb): Use `describe-function'.
5067 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
5068 Add `eieio-help-generic' and `eieio-help-constructor'.
5069
50702014-01-08 Paul Eggert <eggert@cs.ucla.edu>
5071
5072 Spelling fixes.
5073 * language/china-util.el (hz-ascii-designation):
5074 Rename from hz-ascii-designnation.
5075 (hz-ascii-designation): Rename from hz-ascii-designnation.
5076 All uses changed.
5077
50782014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5079
5080 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
5081 package-alist.
5082
50832014-01-08 Bastien Guerry <bzg@gnu.org>
5084
5085 * emacs-lisp/package.el (package-delete):
5086 Correctly delete the package from package-alist.
5087
50882014-01-08 Daiki Ueno <ueno@gnu.org>
5089
5090 * emacs-lisp/package.el (url-recreate-url): Declare.
5091 (url-http-target-url): Declare.
5092 (package-handle-response): Include requested URL in the error message.
5093 (package--check-signature): Don't re-signal errors from
5094 package--with-work-buffer. Suggested by Stefan Monnier.
5095
50962014-01-07 Bastien Guerry <bzg@gnu.org>
5097
5098 * minibuffer.el (completion--try-word-completion): When both a
5099 hyphen and a space are possible candidates for the character
5100 following a word, display both candidates. (Bug#15980)
5101
51022014-01-07 Martin Rudalics <rudalics@gmx.at>
5103
5104 * window.el (balance-windows-2): While rounding don't give a
5105 window more than the remainder. Bug#16351, bug#16383.
5106
51072014-01-07 Glenn Morris <rgm@gnu.org>
5108
5109 * menu-bar.el (menu-bar-help-extra-packages): Remove.
5110 (menu-bar-help-menu): Use view-external-packages instead.
5111
51122014-01-07 Bastien Guerry <bzg@gnu.org>
5113
5114 * emacs-lisp/package.el (package-delete): Also delete the package
5115 name from `package-alist', not its description only.
5116
51172014-01-07 Glenn Morris <rgm@gnu.org>
5118
5119 * help.el (view-external-packages):
5120 * menu-bar.el (menu-bar-help-extra-packages):
5121 Visit efaq.info rather than etc/MORE.STUFF.
5122
51232014-01-07 Juri Linkov <juri@jurta.org>
5124
5125 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
5126 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
5127
5128 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
5129 that shadows RET. (Bug#16342)
5130
51312014-01-07 Chong Yidong <cyd@gnu.org>
5132
5133 * isearch.el (isearch-yank-char, isearch-yank-word)
5134 (isearch-yank-line): Doc fix.
5135
51362014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5137
5138 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
5139 * emacs-lisp/elint.el (elint-find-builtins):
5140 * emacs-lisp/eldoc.el (eldoc-symbol-function):
5141 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
5142 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
5143 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5144 * apropos.el (apropos-safe-documentation):
5145 * subr.el (symbol-file): Remove redundant fboundp.
5146 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
5147
51482014-01-06 Bastien Guerry <bzg@gnu.org>
5149
5150 * hl-line.el (global-hl-line-overlay): Make a local variable.
5151 (global-hl-line-overlays): New variable to store all overlays.
5152 (global-hl-line-mode): Don't delete overlays from the current
5153 buffer when `global-hl-line-sticky-flag' is non-nil.
5154 (global-hl-line-highlight): Add new overlays to
5155 `global-hl-line-overlays'.
5156 (global-hl-line-unhighlight-all): New function to delete all
5157 overlays when turning off `global-hl-line-mode'.
5158 This fixes Bug#16183.
5159
51602014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5161
5162 * subr.el (set-transient-map): Fix nested case and docstring.
5163
51642014-01-06 Tassilo Horn <tsdh@gnu.org>
5165
5166 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
5167 `Texinfo' entry.
5168
51692014-01-06 Daniel Colascione <dancol@dancol.org>
5170
5171 Fix defun navigation in vc log view.
5172
5173 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
5174 like `beginning-of-defun'.
5175 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
5176 log-view-end-of-defun to log-view-end-of-defun-1. Replace
5177 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
5178 (log-view-extract-comment): Call `log-view-current-entry' directly
5179 instead of relying on broken `log-view-beginning-of-defun' behavior.
5180
51812014-01-06 Paul Eggert <eggert@cs.ucla.edu>
5182
5183 Spelling fixes.
5184 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
5185 * emacs-lisp/debug.el (cancel-debug-on-entry):
5186 * epg.el (epg-error-to-string):
5187 * files.el (recover-file):
5188 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
5189 * mail/emacsbug.el (report-emacs-bug-hook):
5190 * mail/sendmail.el (mail-recover):
5191 * ses.el (ses-yank-resize):
5192 * term/ns-win.el (ns-print-buffer):
5193 Spelling fixes in diagnostics, mostly for "canceled" with one L.
5194 * epg.el (epg-key-capability-alist): Rename from misspelled version.
5195 All uses changed.
5196 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
5197
51982014-01-06 Leo Liu <sdl.web@gmail.com>
5199
5200 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
5201 to avoid shadowing global key. (Bug#16354)
5202
52032014-01-06 Daniel Colascione <dancol@dancol.org>
5204
5205 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
5206 rst-mode.
5207
52082014-01-05 Martin Rudalics <rudalics@gmx.at>
5209
5210 * window.el (balance-windows): Add mising t to fix Bug#16351.
5211
52122014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5213
5214 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
5215 (bug#16285).
5216 (shr-insert): If we have a word that's longer than `shr-width',
5217 break after it anyway. Otherwise we'll do no breaking once we get
5218 such a long word.
5219
52202014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5221
5222 * net/eww.el (eww): Support single/double quote for search.
5223 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
5224 (eww-history-quit): Delete and use quit-window.
5225 (eww-history-kill): Delete, because it doesn't work well and
5226 not necessary.
5227 (eww-history-mode-map): Delete some keys and add easy-menu.
5228
52292014-01-05 Paul Eggert <eggert@cs.ucla.edu>
5230
5231 Fix misspelling of 'chinese' in rx (Bug#16237).
5232 * emacs-lisp/rx.el (rx-categories): Correct spelling of
5233 chinese-two-byte.
5234
5235 Change subword regexps back to vars (Bug#16296).
5236 * progmodes/subword.el (subword-forward-regexp)
5237 (subword-backward-regexp): Change these back to variables.
5238
52392014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5240
5241 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
5242 syntax-begin-function (bug#16247).
5243
52442014-01-03 Chong Yidong <cyd@gnu.org>
5245
5246 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
5247 (advice--docstring): Delete variable.
5248 (advice--make-1): Leave the docstring empty.
5249 (advice-add): Use function-documentation for advised docstring.
5250
5251 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
5252 Ignore function-documentation property when getting documentation.
5253 (ad-activate-advised-definition): Use function-documentation
5254 generate the docstring.
5255 (ad-make-advised-definition): Don't call
5256 ad-make-advised-definition-docstring.
5257 (ad-make-advised-definition-docstring, ad-advised-definition-p):
5258 Delete functions.
5259
5260 * progmodes/sql.el (sql-help): Use function-documentation instead
5261 of dynamic-docstring-function property. No need to autoload now.
5262 (sql--help-docstring): New variable.
5263 (sql--make-help-docstring): Use it.
5264
52652014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5266
5267 * ielm.el (ielm-tab): Retarget.
5268 (ielm-map): Use ielm-tab for tab.
5269 (ielm-complete-filename): Use comint-filename-completion.
5270 (ielm-complete-symbol): Remove.
5271 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
5272 remove ielm-tab from completion-at-point-functions (bug#16224).
5273
5274 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
5275 Beware signals raised by predicates (bug#16201).
5276
52772014-01-02 Richard Stallman <rms@gnu.org>
5278
5279 * dired-aux.el (dired-do-print): Handle printer-name.
5280
5281 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
5282 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
5283 (rmail-epa-decrypt): Turn off mime processing.
5284
5285 * mail/rmail.el (rmail-make-in-reply-to-field):
5286 Add parens in message-id.
5287
5288 * mail/rmail.el (rmail-get-coding-function): Variable.
5289 (rmail-get-coding-system): Use it.
5290
52912013-12-31 Eli Zaretskii <eliz@gnu.org>
5292
5293 * international/mule-conf.el: Unify the charset indian-is13194.
5294 (indian-is13194): Specify unify-map.
5295
52962013-12-31 Leo Liu <sdl.web@gmail.com>
5297
5298 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
5299
53002013-12-30 Daniel Colascione <dancol@dancol.org>
5301
5302 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
5303 of printing a useless when we resume from sleep.
5304
5305 * progmodes/sh-script.el
5306 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
5307 in indentation code. (Bug#16233)
5308
53092013-12-28 João Távora <joaotavora@gmail.com>
5310
5311 * elec-pair.el (electric-pair-post-self-insert-function):
5312 Don't open extra newlines at beginning of buffer. (Bug#16272)
5313
53142013-12-28 Eli Zaretskii <eliz@gnu.org>
5315
5316 * frame.el (window-system-for-display): Don't allow to create a
5317 GUI frame from a -nw session on MS-Windows. (Bug#14739)
5318
53192013-12-28 Glenn Morris <rgm@gnu.org>
5320
5321 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
5322 Update callers.
5323
5324 * apropos.el (apropos-match-face):
5325 * calculator.el (calculator-displayer):
5326 * dabbrev.el (dabbrev-search-these-buffers-only):
5327 * face-remap.el (buffer-face-mode-face):
5328 * simple.el (yank-handled-properties):
5329 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
5330 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
5331 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
5332 (hashcash-double-spend-database):
5333 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
5334 (ruby-deep-indent-paren-style):
5335 * textmodes/flyspell.el (flyspell-auto-correct-binding):
5336 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
5337 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
5338 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
5339 Specify custom types.
5340
5341 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
5342 * bookmark.el (bookmark-bmenu-use-header-line):
5343 * doc-view.el (doc-view-scale-internally):
5344 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
5345 * register.el (register-preview-delay):
5346 * net/shr.el (shr-bullet):
5347 * progmodes/cfengine.el (cfengine-cf-promises)
5348 (cfengine-parameters-indent):
5349 * progmodes/octave.el (inferior-octave-error-regexp-alist):
5350 * textmodes/reftex-vars.el (reftex-label-regexps):
5351 * vc/log-edit.el (log-edit-setup-add-author): Add version.
5352
5353 * net/tls.el (tls-certtool-program): Fix default value.
5354
5355 * desktop.el (desktop-restore-in-current-display):
5356 * newcomment.el (comment-empty-lines):
5357 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
5358 (idlwave-pad-keyword):
5359 * progmodes/tcl.el (tcl-tab-always-indent):
5360 * textmodes/reftex-vars.el (reftex-index-default-tag):
5361 * elec-pair.el (electric-pair-skip-whitespace):
5362 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
5363
5364 * emacs-lisp/authors.el (authors-ignored-files)
5365 (authors-valid-file-names, authors-renamed-files-alist): Additions.
5366
53672013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
5368
5369 * shell.el (shell-dynamic-complete-command): Doc fix.
5370 (shell--command-completion-data): Shell completion now matches
5371 executable filenames from the current buffer's directory, on
5372 systems in which this behavior is the default (windows-nt, ms-dos).
5373
53742013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5375
5376 * net/shr.el (shr-insert): Don't infloop if the width is zero.
5377
53782013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
5379
5380 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
5381 (bug#16251).
5382
5383 * electric.el: Move all electric-pair-* to elec-pair.el.
5384 * elec-pair.el: New file, split from electric.el.
5385
53862013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5387
5388 * net/shr.el (shr-find-fill-point): Don't try to fill if the
5389 indentation level is larger than the width, because that will
5390 infloop.
5391 (shr-insert): Fill repeatedly long texts, so that Japanese is
5392 formatted correctly (bug#16263).
5393 (shr-find-fill-point): Off by one error in comparison with the
5394 indentation.
5395
53962013-12-26 João Távora <joaotavora@gmail.com>
5397
5398 * electric.el (electric-pair-mode): More flexible engine for skip-
5399 and inhibit predicates, new options for pairing-related functionality.
5400 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
5401 if that keeps or improves their balance in buffers.
5402 (electric-pair-delete-adjacent-pairs): Delete the pair when
5403 backspacing over adjacent matched delimiters.
5404 (electric-pair-open-extra-newline): Open extra newline when
5405 inserting newlines between adjacent matched delimiters.
5406 (electric--sort-post-self-insertion-hook):
5407 Sort post-self-insert-hook according to priority values when
5408 minor-modes are activated.
5409 * simple.el (newline-and-indent): Call newline with interactive
5410 set to t.
5411 (blink-paren-post-self-insert-function): Set priority to 100.
5412 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5413 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
5414 comments. Locally set electric-pair-skip-whitespace to 'chomp and
5415 electric-pair-open-newline-between-pairs to nil.
5416
54172013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
5418
5419 * progmodes/python.el: Use lexical-binding.
5420 (python-nav-beginning-of-defun): Stop searching ASAP.
5421
54222013-12-25 Xue Fuqiao <xfq.free@gmail.com>
5423
5424 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
5425 Fix interactive spec. Doc fix. (Bug#15754)
5426
54272013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
5428
5429 * emacs-lisp/byte-run.el (eval-when-compile):
5430 * progmodes/cc-defs.el (cc-eval-when-compile):
5431 Fix edebug spec (bug#16184).
5432
54332013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5434
5435 * net/shr.el (shr-visit-file): Remove debugging function.
5436 (shr-insert): Don't infloop if we can't find a good place to break
5437 the line (bug#16256).
5438
54392013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
5440
5441 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
5442 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
5443 python-nav-lisp-forward-sexp-safe.
5444 (python-nav--forward-sexp): New argument SAFE allows switching
5445 forward sexp movement behavior for parens.
5446 (python-nav-forward-sexp): Throw errors on unterminated parens
5447 (Bug#16191).
5448 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
5449 (python-nav-backward-sexp-safe): New functions.
5450 (python-shell-buffer-substring):
5451 Use `python-nav-forward-sexp-safe'.
5452
54532013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5454
5455 * net/shr.el (shr-find-fill-point): Don't break lines before a
5456 quotation mark.
5457 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
5458 (shr-find-fill-point): Remove the special checks for the quotation
5459 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
5460
54612013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5462
5463 * net/eww.el (eww-form-textarea): Use a different face for
5464 textareas than text input since they have different keymaps
5465 (bug#16142).
5466
54672013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
5468
5469 * progmodes/python.el (python-nav-beginning-of-statement):
5470 Speed up (Bug#15295).
5471
54722013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5473
5474 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
5475 the window configuration.
5476
54772013-12-24 Eli Zaretskii <eliz@gnu.org>
5478
5479 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
5480 we run on MS-Windows or MS-DOS.
5481
54822013-12-24 Martin Rudalics <rudalics@gmx.at>
5483
5484 * window.el (balance-windows-area): Call window-size instead of
5485 window-height and window-width. Bug#16241.
5486
54872013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5488
5489 * net/eww.el (eww-bookmark-quit): Remove.
5490 (eww-bookmark-browse): Restore the window configuration when you
5491 choose a bookmark (bug#16144).
5492
54932013-12-24 Daniel Colascione <dancol@dancol.org>
5494
5495 * icomplete.el: Remove redundant :group arguments to `defcustom'
5496 throughout.
5497 (icomplete-show-matches-on-no-input): New customizable variable.
5498 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
5499 we have something to show.
5500 (icomplete-exhibit): Compute completions even if we have no user input.
5501
55022013-12-23 Daniel Colascione <dancol@dancol.org>
5503
5504 * icomplete.el: Move `provide' to end of file.
5505
55062013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
5507
5508 * net/gnutls.el (gnutls-verify-error): Add version tag.
5509
55102013-12-23 Chong Yidong <cyd@gnu.org>
5511
5512 * subr.el (set-transient-map): Rename from
5513 set-temporary-overlay-map. Doc fix.
5514
5515 * face-remap.el (text-scale-adjust):
5516 * indent.el (indent-rigidly):
5517 * kmacro.el (kmacro-call-macro):
5518 * minibuffer.el (minibuffer-force-complete):
5519 * repeat.el (repeat):
5520 * simple.el (universal-argument--mode):
5521 * calendar/todo-mode.el (todo-insert-item--next-param):
5522 * progmodes/f90.el (f90-abbrev-start): Callers changed.
5523
5524 * indent.el (indent-rigidly): Use substitute-command-keys.
5525
55262013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5527
5528 * net/eww.el (eww-tag-select): Add text-property to jump to next
5529 select field.
5530 (eww): Add non-supported ftp error.
5531
55322013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5533
5534 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
5535 comments. Handle electric indent after typing `?' and `!'.
5536
55372013-12-22 Chong Yidong <cyd@gnu.org>
5538
5539 * faces.el (face-spec-recalc): If the theme specs are not
5540 applicable to a frame, fall back on the defface spec.
5541 This prevents themes from obliterating faces on low-color terminals.
5542
55432013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5544
5545 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5546 after `{'. We need it after block openers, and it doesn't seem
5547 to hurt after hash openers.
5548
55492013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5550
5551 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
5552 extracted from `ruby-smie-rules'.
5553 (ruby--electric-indent-chars): New variable.
5554 (ruby--electric-indent-p): New function.
5555 (ruby-mode): Use `electric-indent-functions' instead of
5556 `electric-indent-chars'.
5557
55582013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5559
5560 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
5561 docstring.
5562 (ruby-smie-rules): Indent plus one level after `=>'.
5563
55642013-12-21 Richard Stallman <rms@gnu.org>
5565
5566 * simple.el (newline): Doc fix.
5567
55682013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5569
5570 * net/eww.el (eww-list-histories, eww-list-histories)
5571 (eww-history-browse, eww-history-quit, eww-history-kill)
5572 (eww-history-mode-map, eww-history-mode): New command and
5573 functions to list browser histories.
5574 (eww-form-text): Support text form with disabled
5575 and readonly attributes.
5576 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
5577
55782013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5579
5580 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
5581 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
5582 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
5583 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
5584 Use `user-error'.
5585 (eww-bookmark-mode-map): Add menu.
5586 (eww-render, eww-mode): Use `setq-local'.
5587 (eww-tool-bar-map): New variable.
5588 (eww-mode): Set `tool-bar-map'.
5589 (eww-view-source): Check for `html-mode' with `fboundp'.
5590
55912013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5592
5593 * net/shr.el (shr--extract-best-source): Don't bug out on audio
5594 elements with text inside. Also remove debugging.
5595
55962013-12-21 Jan Djärv <jan.h.d@swipnet.se>
5597
5598 * cus-start.el (all): Add ns-use-srgb-colorspace.
5599
56002013-12-21 Chong Yidong <cyd@gnu.org>
5601
5602 * custom.el (custom-theme-recalc-face): Do nothing if the face is
5603 undefined. Thus, theme settings for undefined faces do not take
5604 effect until the faces are defined with defface, the same as with
5605 theme variables.
5606
5607 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
5608 (face-spec-reset-face): Don't assign extra properties in temacs.
5609 (face-spec-recalc): Apply X resources too.
5610
56112013-12-21 Chong Yidong <cyd@gnu.org>
5612
5613 * faces.el (face-spec-set):
5614 * cus-face.el (custom-theme-set-faces, custom-set-faces):
5615 * custom.el (defface): Doc fixes (Bug#16203).
5616
5617 * indent.el (indent-rigidly-map): Add docstring, and move commands
5618 into named functions.
5619 (indent-rigidly-left, indent-rigidly-right)
5620 (indent-rigidly-left-to-tab-stop)
5621 (indent-rigidly-right-to-tab-stop): New functions. Decide on
5622 indentation direction based on bidi direction, and accumulate
5623 sequential commands in a single undo boundary.
5624 (indent-rigidly--pop-undo): New utility function.
5625
56262013-12-20 Juanma Barranquero <lekktu@gmail.com>
5627
5628 * faces.el (read-face-name): Require crm.el when using crm-separator.
5629
56302013-12-20 Daniel Colascione <dancol@dancol.org>
5631
5632 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
5633 so that we don't reflow comments into the shebang line.
5634
56352013-12-20 Juri Linkov <juri@jurta.org>
5636
5637 * saveplace.el (save-place-to-alist): Add `dired-filename' as
5638 a position when `dired-directory' is non-nil. Check integer
5639 positions with `integerp'.
5640 (toggle-save-place, save-places-to-alist): Add check for
5641 `dired-directory'.
5642 (save-place-find-file-hook): Check integer positions with
5643 `integerp'.
5644 (save-place-dired-hook): Use `dired-goto-file' when
5645 `dired-filename' is found in the assoc list. Check integer
5646 positions with `integerp'.
5647 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
5648
5649 * dired.el (dired-initial-position-hook): Rename back from
5650 `dired-initial-point-hook'.
5651 (dired-initial-position): Rename `dired-initial-point-hook' to
5652 `dired-initial-position-hook'.
5653 (dired-file-name-at-point): Doc fix. (Bug#15329)
5654
56552013-12-20 Juri Linkov <juri@jurta.org>
5656
5657 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
5658 (read-regexp-suggestions): New function.
5659 (read-regexp): Use `read-regexp-defaults-function' to get default values.
5660 Use `read-regexp-suggestions'. Add non-empty default to history
5661 for empty input.
5662 (occur-read-regexp-defaults-function): Remove function.
5663 (occur-read-primary-args): Use `regexp-history-last' instead of
5664 `occur-read-regexp-defaults-function'.
5665
5666 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
5667 (hi-lock-line-face-buffer, hi-lock-face-buffer)
5668 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
5669 `hi-lock-read-regexp-defaults-function'. Doc fix.
5670 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
5671 with `find-tag-default-as-symbol-regexp'. Doc fix.
5672 (hi-lock-read-regexp-defaults): Remove function.
5673 (hi-lock-regexp-okay): Add check for null.
5674
5675 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
5676 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
5677
5678 * subr.el (find-tag-default-as-symbol-regexp): New function.
5679 (find-tag-default-as-regexp): Move symbol regexp formatting to
5680 `find-tag-default-as-symbol-regexp'.
5681
56822013-12-20 E Sabof <esabof@gmail.com> (tiny change)
5683
5684 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
5685 (Bug#14179)
5686
56872013-12-20 Stephen Berman <stephen.berman@gmx.net>
5688
5689 * calendar/todo-mode.el: New implementation of item insertion
5690 commands and key bindings.
5691 (todo-key-prompt): New face.
5692 (todo-insert-item): New command.
5693 (todo-insert-item--parameters): New defconst, replacing defvar
5694 todo-insertion-commands-args-genlist.
5695 (todo-insert-item--param-key-alist): New defconst, replacing
5696 defvar todo-insertion-commands-arg-key-list.
5697 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
5698 (todo-insert-item--argsleft, todo-insert-item--apply-args)
5699 (todo-insert-item--next-param): New functions.
5700 (todo-insert-item--args, todo-insert-item--argleft)
5701 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
5702 New variables.
5703 (todo-key-bindings-t): Change binding of "i" from
5704 todo-insertion-map to todo-insert-item.
5705 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
5706 (todo-insertion-command-name, todo-insertion-commands-names)
5707 (todo-define-insertion-command, todo-insertion-commands)
5708 (todo-insertion-key-bindings, todo-insertion-map): Remove.
5709
57102013-12-20 Stephen Berman <stephen.berman@gmx.net>
5711
5712 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
5713 (todo-toggle-item-highlighting): Use eval-and-compile instead of
5714 eval-when-compile.
5715 (todo-move-category): Allow choosing a non-existing todo file to
5716 move the category to, and create that file.
5717 (todo-default-priority): New user option.
5718 (todo-set-item-priority): Use it.
5719 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
5720 (desktop-restore-file-buffer): Declare.
5721 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
5722 (todo-modes-set-2): Locally set desktop-save-buffer to
5723 todo-desktop-save-buffer.
5724 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
5725 (auto-mode-alist): Add autoload cookie.
5726
57272013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
5728
5729 * emacs-lisp/subr-x.el: Renamed from helpers.el.
5730 helpers.el was a poor choice of name.
5731 (string-remove-prefix): New function.
5732 (string-remove-suffix): New function.
5733
57342013-12-20 Martin Rudalics <rudalics@gmx.at>
5735
5736 Fix assignment for new window total sizes.
5737 * window.el (window--pixel-to-size): Remove function.
5738 (window--pixel-to-total-1, window--pixel-to-total):
5739 Fix calculation of new total sizes.
5740
57412013-12-20 Vitalie Spinu <spinuvit@gmail.com>
5742
5743 * comint.el (comint-output-filter): Fix rear-nonsticky property
5744 placement (Bug#16010).
5745
57462013-12-20 Chong Yidong <cyd@gnu.org>
5747
5748 * faces.el (read-color): Minor fix for completion function.
5749
57502013-12-20 Dmitry Gutov <dgutov@yandex.ru>
5751
5752 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
5753 New option. (Bug#16182)
5754 (ruby-smie--indent-to-stmt-p): Use it.
5755 (ruby-smie-rules): Revert the logic in the handling of `when'.
5756 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
5757 (ruby-deep-arglist, ruby-deep-indent-paren)
5758 (ruby-deep-indent-paren-style): Update docstrings to note that the
5759 vars don't have any effect with SMIE.
5760
57612013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
5762
5763 * calc/calc.el (calc-enter, calc-pop): Use the variable
5764 `calc-context-sensitive-enter'.
5765
57662013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
5767
5768 * net/shr.el (shr-insert): Protect against infloops in degenerate
5769 tables.
5770
57712013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5772
5773 * progmodes/octave.el (octave): Add link to manual and octave
5774 homepage.
5775 (octave-mode-menu): Link to octave-mode manual.
5776
57772013-12-20 Leo Liu <sdl.web@gmail.com>
5778
5779 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
5780 insertion using skeleton-end-newline. (Bug#16138)
5781
57822013-12-20 Juri Linkov <juri@jurta.org>
5783
5784 * replace.el (occur-engine): Use `add-face-text-property'
5785 to add the face property to matches and titles. (Bug#14645)
5786
5787 * hi-lock.el (hi-green): Use lighter color "light green" closer to
5788 the palette of other hi-lock colors.
5789 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
5790
57912013-12-19 Juri Linkov <juri@jurta.org>
5792
5793 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
5794 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
5795 (minibuffer-history-symbol): Move variable declaration closer to
5796 its usage.
5797
5798 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
5799 (Bug#14785)
5800
58012013-12-19 Juri Linkov <juri@jurta.org>
5802
5803 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
5804 New function.
5805 (log-edit-hook): Add it to :options. (Bug#16170)
5806
58072013-12-19 Juri Linkov <juri@jurta.org>
5808
5809 * simple.el (eval-expression-print-format): Don't check for
5810 command names and the last command. Always display additional
5811 formats of the integer result in the echo area, and insert them
5812 to the current buffer only with a zero prefix arg.
5813 Display character when char-displayable-p is non-nil.
5814 (eval-expression): With a zero prefix arg, set `print-length' and
5815 `print-level' to nil, and insert the integer values from
5816 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
5817
5818 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
5819 `eval-last-sexp-arg-internal'. Doc fix.
5820 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
5821 `eval-last-sexp-print-value'. Doc fix.
5822 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
5823 Set `print-length' and `print-level' to nil when arg is zero.
5824 (eval-last-sexp): Doc fix.
5825 (eval-defun-2): Print the integer values from
5826 `eval-expression-print-format' at the end.
5827
5828 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
5829 values from `eval-expression-print-format' at the end.
5830
5831 * ielm.el (ielm-eval-input): Print the integer
5832 values from `eval-expression-print-format' at the end.
5833
58342013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
5835
5836 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
5837 2013-12-11T19:01:44Z!tzz@lifelogs.com.
5838
58392013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
5840
5841 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
5842 (hl-line-highlight, global-hl-line-highlight): Use it.
5843 (hl-line-overlay): Use defvar-local.
5844
58452013-12-19 Jan Djärv <jan.h.d@swipnet.se>
5846
5847 * term/ns-win.el: Require dnd.
5848 (global-map): Remove drag items.
5849 (ns-insert-text, ns-set-foreground-at-mouse)
5850 (ns-set-background-at-mouse):
5851 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
5852 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
5853 New functions.
5854
58552013-12-19 Glenn Morris <rgm@gnu.org>
5856
5857 * emacs-lisp/ert.el (ert-select-tests):
5858 Fix string/symbol mixup. (Bug#16121)
5859
58602013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5861
5862 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
5863 keywords to their parent.
5864
58652013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5866
5867 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
5868 first arg to be a string (fixed dead code), or an operator symbol.
5869 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
5870 operator symbols.
5871 (ruby-smie-rules): Remove parent token check in the `.' clause, it
5872 did nothing. Don't respond to `(:after ".")', it will be called
5873 with :before anyway. Remove the ` @ ' rule, it didn't seem to
5874 change anything. Only return indentation for binary operators
5875 when they are hanging. De-dent opening paren when its parent is
5876 `.', otherwise it looks bad when the dot is not at bol or eol
5877 (bug#16182).
5878
58792013-12-19 Juri Linkov <juri@jurta.org>
5880
5881 * replace.el (query-replace-read-args): Split a non-negative arg
5882 and a negative arg into separate elements.
5883 (query-replace, query-replace-regexp, replace-string)
5884 (replace-regexp): Add arg `backward'. Doc fix.
5885 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5886 move point to the beginning of the match.
5887 (replace-search, replace-highlight): Use new arg `backward'
5888 to set the value of `isearch-forward'.
5889 (perform-replace): Add arg `backward' and use it to perform
5890 replacement backward. (Bug#14979)
5891
5892 * isearch.el (isearch-query-replace): Use a negative prefix arg
5893 to call `perform-replace' with a non-nil arg `backward'.
5894
58952013-12-18 Juri Linkov <juri@jurta.org>
5896
5897 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5898 to the default list. Move `log-edit-show-files' to the end.
5899 Add more available functions to options.
5900 (log-edit): Move default specific settings to
5901 `log-edit-insert-message-template'. Don't move point.
5902 (log-edit-insert-message-template): New function.
5903 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5904 (Bug#16170)
5905
59062013-12-18 Juri Linkov <juri@jurta.org>
5907
5908 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5909 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5910
59112013-12-18 Leo Liu <sdl.web@gmail.com>
5912
5913 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5914 (Bug#16186)
5915
59162013-12-18 Eli Zaretskii <eliz@gnu.org>
5917
5918 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5919 formats for displaying file sizes when the -s switch is given.
5920 Instead, compute a separate format for displaying the size in
5921 blocks, which is displayed in addition to the "regular" size.
5922 When -h is given in addition to -s, produce size in blocks in
5923 human-readable form as well. (Bug#16179)
5924
59252013-12-18 Tassilo Horn <tsdh@gnu.org>
5926
5927 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5928 Reference tables with ~\ref{...} instead of only \ref{...}.
5929
59302013-12-18 Chong Yidong <cyd@gnu.org>
5931
5932 * cus-edit.el (custom-magic-alist): Fix "themed" description
5933 (Bug#14348).
5934
5935 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5936 is non-nil, do not create a new entry in the symbol's theme-value
5937 or theme-face property; update theme-settings only (Bug#14664).
5938 (custom-available-themes): Doc fix.
5939
5940 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5941 (Bug#15674).
5942
5943 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5944
59452013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5946
5947 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5948 (Bug#13914).
5949
59502013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5951
5952 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5953
59542013-12-18 Glenn Morris <rgm@gnu.org>
5955
5956 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5957 * cus-start.el (load-prefer-newer): New option.
5958
59592013-12-18 Le Wang <l26wang@gmail.com>
5960
5961 * comint.el (comint-previous-matching-input-from-input):
5962 Retain point (Bug#13404).
5963
59642013-12-18 Chong Yidong <cyd@gnu.org>
5965
5966 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5967
59682013-12-18 Glenn Morris <rgm@gnu.org>
5969
5970 * mail/emacsbug.el (report-emacs-bug):
5971 Only mention enable-multibyte-characters if non-standard.
5972
59732013-12-17 Juri Linkov <juri@jurta.org>
5974
5975 * arc-mode.el (archive-extract-by-file): Check if directory exists
5976 before deletion to not show irrelevant errors if it doesn't exist.
5977
59782013-12-17 Juri Linkov <juri@jurta.org>
5979
5980 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5981 (Bug#14751)
5982
5983 * net/eww.el (browse-web): Add alias to `eww'.
5984 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5985 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5986
5987 * net/browse-url.el (browse-url-browser-function): Move `eww'
5988 closer to similar functions.
5989
5990 * startup.el (fancy-startup-screen, fancy-about-screen):
5991 Set browse-url-browser-function to eww-browse-url locally.
5992 (Bug#14751)
5993
59942013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5995
5996 * window.el (window--pixel-to-total): Remove unused `mini' var.
5997 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5998 (split-window): Remove unused `new' var.
5999 (window--display-buffer): Remove unused `frame' and `delta' vars.
6000 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
6001 and display-width'.
6002
60032013-12-17 Martin Rudalics <rudalics@gmx.at>
6004
6005 * dired.el (dired-mark-pop-up):
6006 * register.el (register-preview): Don't bind
6007 split-height-threshold here since it's now done in
6008 display-buffer-below-selected.
6009
60102013-12-17 oblique <psyberbits@gmail.com> (tiny change)
6011
6012 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
6013 xterm-rgb-convert-to-16bit.
6014 (rxvt-register-default-colors): Standardize with
6015 xterm-register-default-colors (Bug#14078).
6016
60172013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
6018
6019 * simple.el (kill-region): Pass mark first, then point, so that
6020 kill-append works right (Bug#12819).
6021 (copy-region-as-kill, kill-ring-save): Likewise.
6022
60232013-12-17 Leo Liu <sdl.web@gmail.com>
6024
6025 * net/rcirc.el (rcirc-add-face):
6026 * eshell/em-prompt.el (eshell-emit-prompt):
6027 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
6028 (Bug#16167)
6029
60302013-12-17 Chong Yidong <cyd@gnu.org>
6031
6032 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
6033 Suggested by Xue Fuqiao.
6034
60352013-12-17 Dmitry Gutov <dgutov@yandex.ru>
6036
6037 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
6038
60392013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
6040
6041 * net/shr.el (shr-insert-document): Remove unused var
6042 `shr-preliminary-table-render'.
6043 (shr-rescale-image): Remove unused arg `force'.
6044 (shr-put-image): Update calls accordingly.
6045 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
6046
60472013-12-17 Dmitry Gutov <dgutov@yandex.ru>
6048
6049 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
6050 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
6051 :close-all, to see which indentation method to use (Bug#16116).
6052 (smie-rules-function): Document the method :close-all.
6053
60542013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
6055
6056 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
6057
6058 * net/eww.el (eww-display-html): If we can't find the anchor we're
6059 looking for, then go to point-min.
6060
60612013-12-16 Paul Eggert <eggert@cs.ucla.edu>
6062
6063 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
6064 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
6065 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
6066 Expand dir too, in case it's relative.
6067
60682013-12-16 Juri Linkov <juri@jurta.org>
6069
6070 * desktop.el (desktop-auto-save-timeout): Change default to
6071 `auto-save-timeout'. Doc fix.
6072 (desktop-save): Skip the timestamp in desktop-saved-frameset
6073 when checking for auto-save changes.
6074 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
6075 `desktop-auto-save' is called repeatedly by the idle timer.
6076 (desktop-auto-save-set-timer): Replace `run-with-timer' with
6077 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
6078 (Bug#15331)
6079
60802013-12-16 Juri Linkov <juri@jurta.org>
6081
6082 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
6083 (Bug#16035)
6084 (isearch-pre-command-hook): Check `this-command' for symbolp.
6085
60862013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
6087
6088 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
6089
60902013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
6091
6092 * progmodes/cfengine.el (cfengine3--current-word): Remove.
6093 (cfengine3--current-function): Bring in the current-function
6094 functionality from `cfengine3--current-word'.
6095 (cfengine3-completion-function): Bring in the
6096 bounds-of-current-word functionality from
6097 `cfengine3--current-word'.
6098
60992013-12-16 Martin Rudalics <rudalics@gmx.at>
6100
6101 * window.el (display-buffer-below-selected):
6102 Bind split-height-threshold to 0 as suggested by Juri Linkov.
6103
61042013-12-16 Leo Liu <sdl.web@gmail.com>
6105
6106 * progmodes/compile.el (compile-goto-error): Do not push-mark.
6107 Remove NOMSG arg and all uses changed.
6108
61092013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
6110
6111 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
6112 (cua--deactivate-rectangle): Don't deactivate the mark.
6113 (cua-set-rectangle-mark): Don't set mark-active since
6114 cua--activate-rectangle already does it for us.
6115 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
6116 non-rectangular region.
6117
6118 * emulation/cua-base.el (cua-repeat-replace-region):
6119 Use with-current-buffer.
6120
6121 * net/gnutls.el: Use cl-lib.
6122 (gnutls-negotiate): `mapcan' -> cl-mapcan.
6123
61242013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
6125
6126 * emacs-lisp/package.el (package-built-in-p): Support both
6127 built-in and the package.el converted package descriptions.
6128 (package-show-package-list): Allow keywords.
6129 (package-keyword-button-action): Use it instead of
6130 `finder-list-matches'.
6131 (package-menu-filter-interactive): Interactive filtering (by
6132 keyword) function.
6133 (package-menu--generate): Support keywords and change keymappings
6134 and headers when they are given.
6135 (package--has-keyword-p): Helper function.
6136 (package-menu--refresh): Use it.
6137 (package--mapc): Helper function.
6138 (package-all-keywords): Use it.
6139 (package-menu-mode-map): Set up menu items and keybindings to
6140 provide a filtering UI.
6141
61422013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
6143
6144 * net/gnutls.el (gnutls-verify-error): New defcustom to control
6145 the behavior when a certificate fails validation. Defaults to
6146 old behavior: never abort, just warn.
6147 (gnutls-negotiate): Use it.
6148
61492013-12-14 Martin Rudalics <rudalics@gmx.at>
6150
6151 * window.el (display-buffer-below-selected): Never split window
6152 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
6153
61542013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
6155
6156 * emacs-lisp/package.el (package--prepare-dependencies): New function.
6157 (package-buffer-info): Use it (bug#15108).
6158
61592013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
6160
6161 * icomplete.el (icomplete-completions): Make sure the prefix is already
6162 displayed elsewhere before hiding it (bug#16219).
6163
61642013-12-14 Dmitry Gutov <dgutov@yandex.ru>
6165
6166 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
6167 open-paren tokens when preceded by a open-paren, too.
6168 (ruby-smie-rules): Handle virtual indentation after open-paren
6169 tokens specially. If there is code between it and eol, return the
6170 column where is starts (Bug#16118).
6171
61722013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6173
6174 * progmodes/cfengine.el: Fix `add-hook' doc.
6175 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
6176 (cfengine3--current-word): Fix parameters.
6177 (cfengine3-make-syntax-cache): Simplify further.
6178 (cfengine3-completion-function, cfengine3--current-function):
6179 Use `assq' for symbols.
6180 (cfengine3--current-function): Fix `cfengine3--current-word' call.
6181
61822013-12-13 Glenn Morris <rgm@gnu.org>
6183
6184 * loadup.el (load-path): Warn if site-load or site-init changes it.
6185 No more need to reset it when bootstrapping.
6186
61872013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6188
6189 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
6190 locations for cf-promises.
6191 (cfengine-mode-syntax-functions-regex): New caching variable.
6192 (cfengine3-fallback-syntax): Fallback syntax for cases where
6193 cf-promises doesn't run.
6194 (cfengine3--current-word): Reimplement using
6195 `cfengine-mode-syntax-functions-regex'.
6196 (cfengine3-completion-function, cfengine3--current-function):
6197 Use `cfengine3-make-syntax-cache' directly.
6198 (cfengine3-clear-syntax-cache): New function.
6199 (cfengine3-make-syntax-cache): Simplify and create
6200 `cfengine-mode-syntax-functions-regex' on demand.
6201 (cfengine3-format-function-docstring): Don't call
6202 `cfengine3-make-syntax-cache' explicitly.
6203
62042013-12-13 Martin Rudalics <rudalics@gmx.at>
6205
6206 Fix windmove-find-other-window broken after pixelwise resizing
6207 (Bug#16017).
6208 * windmove.el (windmove-other-window-loc): Revert change from
6209 2013-12-04.
6210 (windmove-find-other-window): Call window-in-direction.
6211 * window.el (window-in-direction): New arguments SIGN, WRAP and
6212 MINI to emulate original windmove-find-other-window behavior.
6213
62142013-12-13 Dmitry Gutov <dgutov@yandex.ru>
6215
6216 * simple.el (blink-matching--overlay): New variable.
6217 (blink-matching-open): Instead of moving point, highlight the
6218 matching paren with an overlay
6219 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
6220
6221 * faces.el (paren-showing-faces, show-paren-match)
6222 (show-paren-mismatch): Move from paren.el.
6223
62242013-12-13 Leo Liu <sdl.web@gmail.com>
6225
6226 * indent.el (indent-region): Disable progress reporter in
6227 minibuffer. (Bug#16108)
6228
6229 * bindings.el (visual-order-cursor-movement): Fix version.
6230
62312013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
6232
6233 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
6234 Also match after beginning of line.
6235 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
6236 files. Thanks to Russell Sim. (Bug#15378)
6237
62382013-12-13 Juri Linkov <juri@jurta.org>
6239
6240 * simple.el <Keypad support>: Remove key bindings duplicated
6241 with bindings.el. (Bug#14397)
6242
62432013-12-13 Juri Linkov <juri@jurta.org>
6244
6245 * comint.el (comint-mode-map): Replace `delete-char' with
6246 `delete-forward-char'. (Bug#16109)
6247
62482013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6249
6250 * progmodes/python.el (python-indent-calculate-indentation):
6251 Fix de-denters cornercase. (Bug#15731)
6252
62532013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
6254
6255 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
6256 (advice--make): Pay attention to `depth'.
6257 (advice--make-1): Don't autoload commands eagerly.
6258 * emacs-lisp/elp.el (elp-instrument-function):
6259 * emacs-lisp/trace.el (trace-function-internal):
6260 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
6261
6262 * iswitchb.el (iswitchb-mode): Don't belittle ido.
6263
62642013-12-12 Eli Zaretskii <eliz@gnu.org>
6265
6266 * term/w32-win.el (w32-handle-dropped-file):
6267 * startup.el (normal-top-level):
6268 * net/browse-url.el (browse-url-file-url):
6269 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
6270 decode file names using 'utf-8' rather than
6271 file-name-coding-system.
6272
62732013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6274
6275 * progmodes/python.el (python-indent-context)
6276 (python-indent-calculate-indentation): Fix auto-identation
6277 behavior for comment blocks. (Bug#15916)
6278
62792013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6280
6281 * progmodes/python.el (python-indent-calculate-indentation):
6282 When determining indentation, don't treat "return", "pass", etc., as
6283 operators when they are just string constituents. (Bug#15812)
6284
62852013-12-12 Juri Linkov <juri@jurta.org>
6286
6287 * uniquify.el (uniquify-buffer-name-style): Change default to
6288 `post-forward-angle-brackets'.
6289
6290 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
6291 `uniquify'. Change default to `post-forward-angle-brackets'.
6292
62932013-12-11 Glenn Morris <rgm@gnu.org>
6294
6295 * emacs-lisp/package.el (finder-list-matches):
6296 Autoload rather than falsely declaring.
6297
62982013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
6299
6300 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
6301 (eww-mode-map): Use them.
6302
63032013-12-11 Martin Rudalics <rudalics@gmx.at>
6304
6305 * window.el (display-buffer-in-side-window): Fix doc-string
6306 (Bug#16115).
6307
63082013-12-11 Juanma Barranquero <lekktu@gmail.com>
6309
6310 * vc/vc-git.el: Silence byte-compiler warnings.
6311 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
6312 (log-edit-set-header): Declare.
6313
63142013-12-11 Eli Zaretskii <eliz@gnu.org>
6315
6316 * Makefile.in (custom-deps, finder-data): Run output file names
6317 through unmsys--file-name. (Bug#16099)
6318
63192013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
6320
6321 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
6322 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
6323
6324 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
6325 instead of deleting the selection "by hand" (bug#16098).
6326 Rely on insert-for-yank to yank rectangles.
6327 (cua-highlight-region-shift-only): Mark obsolete.
6328 (cua-mode): Don't enable/disable transient-mark-mode,
6329 shift-select-mode (cua-mode works both with and without them), and
6330 pc-selection-mode (obsolete).
6331 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
6332 (cua--deactivate-rectangle): Deactivate it.
6333
6334 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
6335 (delete-selection-helper): Make sure yank starts at the top of the
6336 deleted region.
6337 (minibuffer-keyboard-quit): Use region-active-p.
6338
6339 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
6340
6341 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
6342 to `delete' (bug#16109).
6343
63442013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6345
6346 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
6347 info manual and show keybindings and set `:group' keyword.
6348
63492013-12-11 Juri Linkov <juri@jurta.org>
6350
6351 * delsel.el (delete-active-region): Let-bind `this-command'
6352 to prevent `kill-region' from changing its original value.
6353 (delete-selection-helper): Handle `overwrite-mode' for the type
6354 `kill' exactly the same way as for the type `t'.
6355 (insert-char, quoted-insert, reindent-then-newline-and-indent):
6356 Support more commands. (Bug#13312)
6357
63582013-12-11 Juri Linkov <juri@jurta.org>
6359
6360 * bindings.el: Map kp keys to non-kp keys systematically
6361 with basic modifiers control, meta and shift. (Bug#14397)
6362
63632013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6364
6365 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
6366 "Close browser" menu items. Fix wrong function of "List
6367 bookmarks".
6368
63692013-12-11 Juri Linkov <juri@jurta.org>
6370
6371 * misearch.el (multi-isearch-buffers): Set the value of
6372 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6373 arg of isearch-forward to t.
6374 (multi-isearch-buffers-regexp): Set the value of
6375 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6376 arg of isearch-forward-regexp to t.
6377 (multi-isearch-files): Set the value of
6378 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6379 arg of isearch-forward to t.
6380 (multi-isearch-files-regexp): Set the value of
6381 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6382 arg of isearch-forward-regexp to t. (Bug#16035)
6383
6384 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
6385 arg of isearch-forward to t.
6386 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
6387 arg of isearch-forward-regexp to t.
6388 (dired-isearch-filter-filenames): Remove unnecessary check for
6389 `dired-isearch-filenames'.
6390
6391 * comint.el (comint-history-isearch-backward):
6392 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
6393 (comint-history-isearch-backward-regexp):
6394 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
6395
63962013-12-10 Eli Zaretskii <eliz@gnu.org>
6397
6398 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
6399 unmsys--file-name. (Bug#16099)
6400
64012013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
6402
6403 * emacs-lisp/package.el (package-keyword-button-action):
6404 Remove finder.el require dependency.
6405
64062013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
6407
6408 * emacs-lisp/package.el: Require finder.el.
6409 (describe-package-1): Add keyword buttons.
6410 (package-make-button): New convenience function.
6411 (package-keyword-button-action): Keyword button action using
6412 `finder-list-matches'.
6413
64142013-12-09 Eli Zaretskii <eliz@gnu.org>
6415
6416 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
6417 last commit.
6418
64192013-12-09 Michael Albinus <michael.albinus@gmx.de>
6420
6421 * autorevert.el (auto-revert-notify-add-watch): Do not handle
6422 symlinked files.
6423
64242013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6425
6426 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
6427 after the end of a percent literal.
6428
64292013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
6430
6431 * progmodes/ruby-mode.el (ruby-forward-string): Document.
6432 Handle caret-delimited strings (Bug#16079).
6433
64342013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6435
6436 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
6437 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
6438 `ruby-parse-partial' (Bug#16078).
6439
64402013-12-09 Leo Liu <sdl.web@gmail.com>
6441
6442 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
6443
64442013-12-08 Dmitry Gutov <dgutov@yandex.ru>
6445
6446 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
6447 (js-switch-indent-offset): New option.
6448 (js--proper-indentation): Use it. And handle the case when
6449 "default" is actually a key in an object literal.
6450 (js--same-line): New function.
6451 (js--multi-line-declaration-indentation): Use it.
6452 (js--indent-in-array-comp, js--array-comp-indentation):
6453 New functions.
6454 (js--proper-indentation): Use them, to handle array comprehension
6455 continuations.
6456
64572013-12-08 Leo Liu <sdl.web@gmail.com>
6458
6459 * progmodes/flymake.el (flymake-highlight-line): Re-write.
6460 (flymake-make-overlay): Remove arg MOUSE-FACE.
6461 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
6462
64632013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6464
6465 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
6466 New function.
6467 (redisplay-highlight-region-function): Use it.
6468
6469 * emulation/cua-base.el (cua--explicit-region-start)
6470 (cua--last-region-shifted): Remove.
6471 (cua--deactivate): Use deactivate-mark.
6472 (cua--pre-command-handler-1): Don't handle shift-selection.
6473 (cua--post-command-handler-1): Don't change transient-mark-mode.
6474 (cua--select-keymaps): Use region-active-p rather than
6475 cua--explicit-region-start or cua--last-region-shifted.
6476 (cua-mode): Enable shift-select-mode.
6477
64782013-12-08 Leo Liu <sdl.web@gmail.com>
6479
6480 * progmodes/flymake.el (flymake-popup-current-error-menu):
6481 Rename from flymake-display-err-menu-for-current-line. Reimplement.
6482 (flymake-posn-at-point-as-event, flymake-popup-menu)
6483 (flymake-make-emacs-menu): Remove. (Bug#16077)
6484
64852013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6486
6487 * rect.el (rectangle-mark-mode): Activate mark even if
6488 transient-mark-mode is off (bug#16066).
6489 (rectangle--highlight-for-redisplay): Fix boundary condition when point
6490 is > mark and at bolp.
6491
6492 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
6493 (region-extract-function): Use it.
6494 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
6495 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
6496 Delete functions.
6497 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
6498 kill-ring-save, kill-region, delete-char, delete-forward-char.
6499 Ignore self-insert-iso.
6500
6501 * emulation/cua-gmrk.el (cua--init-global-mark):
6502 Ignore `self-insert-iso'.
6503
6504 * emulation/cua-base.el (cua--prefix-copy-handler)
6505 (cua--prefix-cut-handler): Rely on region-extract-function rather than
6506 checking cua--rectangle.
6507 (cua-delete-region): Use region-extract-function.
6508 (cua-replace-region): Delete function.
6509 (cua-copy-region, cua-cut-region): Obey region-extract-function.
6510 (cua--pre-command-handler-1): Don't do the delete-selection thing.
6511 (cua--self-insert-char-p): Ignore `self-insert-iso'.
6512 (cua--init-keymaps): Don't remap delete-selection commands.
6513 (cua-mode): Use delete-selection-mode instead of rolling our own
6514 (bug#16085).
6515
6516 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
6517 Obey region-extract-function.
6518
6519 Make registers and delete-selection-mode work on rectangles.
6520 * register.el (describe-register-1): Don't modify the register's value.
6521 (copy-to-register): Obey region-extract-function.
6522 * delsel.el (delete-active-region): Obey region-extract-function.
6523
65242013-12-08 Leo Liu <sdl.web@gmail.com>
6525
6526 * progmodes/flymake.el (flymake, flymake-error-bitmap)
6527 (flymake-warning-bitmap, flymake-fringe-indicator-position)
6528 (flymake-compilation-prevents-syntax-check)
6529 (flymake-start-syntax-check-on-newline)
6530 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
6531 (flymake-start-syntax-check-on-find-file, flymake-log-level)
6532 (flymake-xml-program, flymake-master-file-dirs)
6533 (flymake-master-file-count-limit)
6534 (flymake-allowed-file-name-masks): Relocate.
6535 (flymake-makehash, flymake-float-time)
6536 (flymake-replace-regexp-in-string, flymake-split-string)
6537 (flymake-get-temp-dir): Remove.
6538 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
6539 (flymake-current-row, flymake-selected-frame)
6540 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
6541 related functions. (Bug#16077)
6542
65432013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
6544
6545 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
6546
65472013-12-07 Tassilo Horn <tsdh@gnu.org>
6548
6549 * help-fns.el (describe-function-1): Use new advice-* functions
6550 rather than old ad-* functions. Fix function type description and
6551 source links for advised functions and subrs.
6552
65532013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6554
6555 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
6556
65572013-12-06 Michael Albinus <michael.albinus@gmx.de>
6558
6559 * progmodes/compile.el (compilation-start):
6560 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
6561
6562 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6563 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
6564
65652013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6566
6567 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6568 Touch up the last change.
6569
65702013-12-06 Leo Liu <sdl.web@gmail.com>
6571
6572 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
6573 (inferior-octave-startup): Always use "octave> " for prompt.
6574 (octave-goto-function-definition)
6575 (octave-sync-function-file-names)
6576 (octave-find-definition-default-filename): Remove redundant backquotes.
6577
65782013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6579
6580 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
6581 syntax for `?'.
6582 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
6583 where appropriate already.
6584 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
6585 end of method names (Bug#15874).
6586
65872013-12-06 Juri Linkov <juri@jurta.org>
6588
6589 * isearch.el (isearch--saved-overriding-local-map):
6590 New internal variable.
6591 (isearch-mode): Set it to the initial value of
6592 `overriding-terminal-local-map'.
6593 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
6594 with `isearch--saved-overriding-local-map'. (Bug#16035)
6595
65962013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6597
6598 * progmodes/octave.el (inferior-octave-completion-table):
6599 Turn back into function, use `completion-table-with-cache'
6600 (Bug#11906). Update all references.
6601
6602 * minibuffer.el (completion-table-with-cache): New function.
6603
66042013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
6605
6606 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
6607
66082013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
6609
6610 * net/eww.el (eww-current-source): New variable to store page
6611 source.
6612 (eww-display-html, eww-mode, eww-save-history)
6613 (eww-restore-history): Use it.
6614 (eww-view-source): New command to view page source.
6615 Opportunistically uses `html-mode' to highlight the buffer.
6616 (eww-mode-map): Install it.
6617
66182013-12-05 Michael Albinus <michael.albinus@gmx.de>
6619
6620 * net/dbus.el (dbus-unregister-service)
6621 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
6622 Fix docstring.
6623 (dbus-unregister-service): Skip :serial entries in
6624 `dbus-registered-objects-table'.
6625 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
6626
66272013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
6628
6629 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
6630 around keywords with extra `split-string' argument.
6631
66322013-12-04 Martin Rudalics <rudalics@gmx.at>
6633
6634 * windmove.el (windmove-other-window-loc): Handle navigation
6635 between windows (excluding the minibuffer window - Bug#16017).
6636
66372013-12-04 Michael Albinus <michael.albinus@gmx.de>
6638
6639 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
6640 in D-Bus type syntax.
6641 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
6642 preserve unibyte strings. (Bug#16048)
6643
66442013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6645
6646 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
6647 Call force-mode-line-update is the proper buffer (bug#16042).
6648
66492013-12-04 Dmitry Gutov <dgutov@yandex.ru>
6650
6651 * vc/log-edit.el (log-edit-add-new-comment): Rename to
6652 `log-edit-remember-comment', make argument optional. Adjust all
6653 callers.
6654 (log-edit-mode): Add `log-edit-remember-comment' to
6655 `kill-buffer-hook' locally.
6656 (log-edit-kill-buffer): Don't remember comment explicitly since
6657 the buffer is killed anyway.
6658
66592013-12-04 Juri Linkov <juri@jurta.org>
6660
6661 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
6662 add-hook and remove-hook for multi-buffer search. (Bug#16035)
6663
66642013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
6665
6666 * notifications.el (notifications-close-notification): Call the
6667 D-Bus method with ID being a `:uint32'. (Bug#16030)
6668
66692013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
6670
6671 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
6672
66732013-12-03 Juri Linkov <juri@jurta.org>
6674
6675 * progmodes/compile.el (compilation-start): Rename window alist
6676 entry `no-display-ok' to `allow-no-window'.
6677
6678 * simple.el (shell-command): Add window alist entry
6679 `allow-no-window' to `display-buffer'.
6680 (async-shell-command): Doc fix.
6681
6682 * window.el (display-buffer-no-window): New action function.
6683 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
6684
66852013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6686
6687 * vc/log-edit.el (log-edit-set-header): Extract from
6688 `log-edit-toggle-header'.
6689 (log-edit-extract-headers): Separate the summary, when extracted
6690 from header, from the rest of the message with an empty line.
6691
6692 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
6693 line, if present, to the Summary header.
6694
66952013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6696
6697 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
6698 in current-buffer (bug#16029).
6699
67002013-12-02 Helmut Eller <eller.helmut@gmail.com>
6701
6702 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
6703 (debugger-mode-map): Bind it.
6704 (debugger--backtrace-base): New function.
6705 (debugger-eval-expression): Use it.
6706 (debugger-frame-number): Skip local vars when present.
6707 (debugger--locals-visible-p, debugger--insert-locals)
6708 (debugger--show-locals, debugger--hide-locals): New functions.
6709
67102013-12-02 Michael Albinus <michael.albinus@gmx.de>
6711
6712 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
6713 "LC_ALL".
6714 (tramp-get-remote-locale): New defun.
6715 (tramp-open-connection-setup-interactive-shell): Use it.
6716
67172013-12-02 Leo Liu <sdl.web@gmail.com>
6718
6719 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
6720
6721 * progmodes/sh-script.el (sh-shell-process):
6722 * progmodes/octave.el (inferior-octave-process-live-p):
6723 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
6724 (gdb-inferior-io-sentinel):
6725 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
6726
67272013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6728
6729 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
6730 `save-selected-window' to `log-edit-hide-buf'. This makes
6731 `log-edit-show-files' idempotent.
6732 (log-edit-show-files): Mark the new window as dedicated.
6733
67342013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6735
6736 * vc/log-edit.el (log-edit-mode-map): Add binding for
6737 `log-edit-kill-biffer'.
6738 (log-edit-hide-buf): Add a FIXME comment.
6739 (log-edit-add-new-comment): New function, extracted from
6740 `log-edit-done'.
6741 (log-edit-done, log-edit-add-to-changelog): Use it.
6742 (log-edit-kill-buffer): New command.
6743
67442013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6745
6746 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
6747 instead of killing the buffer.
6748
67492013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6750
6751 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
6752
67532013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6754
6755 * net/eww.el (eww-form-checkbox-selected-symbol)
6756 (eww-form-checkbox-symbol): New customizable variable.
6757 (eww-form-checkbox, eww-toggle-checkbox):
6758 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
6759
6760 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
6761 (shr--get-media-pref, shr--extract-best-source): New function.
6762 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
6763 no :src tag was specified.
6764
6765 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
6766 (eww-render): Handle `eww-use-external-browser-for-content-type'.
6767 Use \\` to match beginning of string instead of ^.
6768 (eww-browse-with-external-browser): Provide optional URL parameter.
6769 (eww-render): Set `eww-current-title' back to "".
6770
6771 * net/shr.el (shr-tag-video): Display content for video if no
6772 poster is available.
6773 (shr-tag-audio): Add support for <audio> tag.
6774
6775 * net/eww.el (eww-text-input-types): New const.
6776 (eww-process-text-input): Treat input types in
6777 `eww-text-input-types' as text.
6778
6779 * net/shr.el (shr-tag-table): Fix comment typo.
6780
67812013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6782
6783 * net/eww.el (eww-follow-link): New command to avoid reloading
6784 pages when we follow #target links (bug#15243).
6785 (eww-quit): Special mode buffers shouldn't query before exiting.
6786
67872013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6788
6789 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
6790 forms.
6791
67922013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6793
6794 * net/eww.el (eww-restore-history): Update the window title after
6795 moving in the history.
6796 (eww-current-dom): New variable used to save the current DOM.
6797
67982013-12-01 Dmitry Gutov <dgutov@yandex.ru>
6799
6800 * vc/log-edit.el (log-edit-mode-map): Add binding for
6801 `log-edit-beginning-of-line'.
6802 (log-edit-setup-add-author): New user option.
6803 (log-edit-beginning-of-line): New command.
6804 (log-edit): Move major mode call above the contents setup so that
6805 the local variable values are already applied.
6806 (log-edit): Only insert "Author: " when
6807 `log-edit-setup-add-author' is non-nil.
6808 (log-edit): When SETUP is non-nil, position point after ": "
6809 instead of point-min.
6810
68112013-12-01 Glenn Morris <rgm@gnu.org>
6812
6813 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
6814
68152013-11-30 Eli Zaretskii <eliz@gnu.org>
6816
6817 * startup.el (fancy-splash-frame): On MS-Windows, trigger
6818 redisplay to make sure the initial frame gets a chance to become
6819 visible. (Bug#16014)
6820
68212013-11-30 Martin Rudalics <rudalics@gmx.at>
6822
6823 Support resizing frames and windows pixelwise.
6824 * cus-start.el (frame-resize-pixelwise)
6825 (window-resize-pixelwise): New entries.
6826 * emacs-lisp/debug.el (debug): Use window-total-height instead
6827 of window-total-size.
6828 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
6829 * help.el (describe-bindings-internal): Use help-buffer as
6830 argument for with-help-window.
6831 (temp-buffer-max-width): New option.
6832 (resize-temp-buffer-window, help-window-setup)
6833 (with-help-window): Rewrite.
6834 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
6835 dragging dividers.
6836 * window.el (frame-char-size, window-min-pixel-height)
6837 (window-safe-min-pixel-height, window-safe-min-pixel-width)
6838 (window-min-pixel-width, window-safe-min-pixel-size)
6839 (window-combination-p, window-safe-min-size)
6840 (window-resizable-p, window--size-to-pixel)
6841 (window--pixel-to-size, window--resize-apply-p): New functions.
6842 (window-safe-min-height): Fix doc-string.
6843 (window-size, window-min-size, window--min-size-1)
6844 (window-sizable, window-sizable-p, window--min-delta-1)
6845 (window-min-delta, window--max-delta-1, window-max-delta)
6846 (window--resizable, window--resizable-p, window-resizable)
6847 (window-full-height-p, window-full-width-p, window-at-side-p)
6848 (window--in-direction-2, window-in-direction)
6849 (window--resize-reset-1, window--resize-mini-window)
6850 (window-resize, window-resize-no-error)
6851 (window--resize-child-windows-normal)
6852 (window--resize-child-windows, window--resize-siblings)
6853 (window--resize-this-window, window--resize-root-window)
6854 (window--resize-root-window-vertically)
6855 (adjust-window-trailing-edge, enlarge-window, shrink-window)
6856 (maximize-window, minimize-window, delete-window)
6857 (quit-restore-window, window-split-min-size, split-window)
6858 (balance-windows-2, balance-windows)
6859 (balance-windows-area-adjust, balance-windows-area)
6860 (window--state-get-1, window-state-get, window--state-put-1)
6861 (window--state-put-2, window-state-put)
6862 (display-buffer-record-window, window--display-buffer):
6863 Make functions handle pixelwise sizing of windows.
6864 (display-buffer--action-function-custom-type)
6865 (display-buffer-fallback-action):
6866 Add display-buffer-in-previous-window.
6867 (display-buffer-use-some-window): Resize window to height it had
6868 before.
6869 (fit-window-to-buffer-horizontally): New option.
6870 (fit-frame-to-buffer): Describe new values.
6871 (fit-frame-to-buffer-bottom-margin): Replace with
6872 fit-frame-to-buffer-margins.
6873 (window--sanitize-margin): New function.
6874 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
6875 using window-text-pixel-size.
6876
68772013-11-30 Glenn Morris <rgm@gnu.org>
6878
6879 * emacs-lisp/bytecomp.el (byte-compile-form):
6880 Make the `interactive-only' warning like the `obsolete' one.
6881 * comint.el (comint-run):
6882 * files.el (insert-file-literally, insert-file):
6883 * replace.el (replace-string, replace-regexp):
6884 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6885 (goto-line, insert-buffer, next-line, previous-line):
6886 Tweak `interactive-only' spec.
6887
6888 Stop keeping (most) generated cedet grammar files in the repository.
6889 * Makefile.in (semantic): New.
6890 (compile-main): Depend on semantic.
6891
68922013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6893
6894 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6895 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6896
6897 * uniquify.el (uniquify-buffer-name-style): Change default.
6898
6899 * loadup.el: Preload "uniquify".
6900
6901 * time.el (display-time-update): Update all mode lines (bug#15999).
6902
6903 * electric.el (electric-indent-mode): Enable by default.
6904 * loadup.el: Preload "electric".
6905
69062013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6907
6908 * emacs-lisp/helpers.el (string-empty-p): New function.
6909 (string-blank-p): New function.
6910
69112013-11-29 Andreas Politz <politza@hochschule-trier.de>
6912
6913 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6914 (Bug#14029).
6915
69162013-11-29 Andreas Politz <politza@fh-trier.de>
6917 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6918 allow non-lambda lists as functions.
6919 (imenu--in-alist): Don't recurse into non-subalists.
6920 (imenu): Don't pass function itself as an argument (Bug#14029).
6921
69222013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6923
6924 * progmodes/python.el (python-mode-map): Remove binding for ":".
6925 (python-indent-electric-colon): Remove command.
6926 (python-indent-post-self-insert-function): Integrate the previous code
6927 of python-indent-electric-colon. Make it conditional on
6928 electric-indent-mode.
6929 (python-mode): Add ?: to electric-indent-chars.
6930 Move python-indent-post-self-insert-function to the end of
6931 post-self-insert-hook.
6932
69332013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6934
6935 * doc-view.el (doc-view-goto-page): Update mode-line.
6936
6937 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6938
69392013-11-27 Glenn Morris <rgm@gnu.org>
6940
6941 * international/charprop.el, international/uni-bidi.el:
6942 * international/uni-category.el, international/uni-combining.el:
6943 * international/uni-comment.el, international/uni-decimal.el:
6944 * international/uni-decomposition.el, international/uni-digit.el:
6945 * international/uni-lowercase.el, international/uni-mirrored.el:
6946 * international/uni-name.el, international/uni-numeric.el:
6947 * international/uni-old-name.el, international/uni-titlecase.el:
6948 * international/uni-uppercase.el:
6949 Remove generated files from VCS repository.
6950
69512013-11-27 Eli Zaretskii <eliz@gnu.org>
6952
6953 * filenotify.el (file-notify-add-watch): Don't special-case
6954 w32notify when computing the directory to watch.
6955
69562013-11-27 Glenn Morris <rgm@gnu.org>
6957
6958 Make bootstrap without generated uni-*.el files possible again.
6959 * loadup.el: Update command-line-args checking for unidata-gen.
6960 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6961 * composite.el, international/characters.el:
6962 Handle unicode tables being undefined.
6963
6964 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6965 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6966 (compile-main): Depend on leim rule.
6967 (leim): New rule.
6968 * loadup.el: Move leim-list.el to leim/ subdirectory.
6969 * startup.el (normal-top-level): No more leim directory.
6970 * international/ja-dic-cnv.el (skkdic-convert):
6971 Disable version-control and autoloads in output files.
6972 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6973 Disable version-control and autoloads in output files.
6974 * leim/quail: Move here from ../leim.
6975 * leim/quail/hangul.el (hangul-input-method-activate):
6976 Add autoload cookie.
6977 (generated-autoload-load-name): Set file-local value.
6978 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6979 (generated-autoload-load-name): Set file-local value.
6980
69812013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6982
6983 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6984 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6985 (eww-quit): Ask confirmation before quitting eww.
6986
69872013-11-26 Eli Zaretskii <eliz@gnu.org>
6988
6989 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6990 reading output from Diff on MS-Windows and MS-DOS.
6991
69922013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6993
6994 * emacs-lisp/helpers.el (string-reverse): New function.
6995
69962013-11-26 Michael Albinus <michael.albinus@gmx.de>
6997
6998 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6999 names on MS Windows, like "/[::1]:".
7000
7001 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
7002 SWITCHES.
7003
70042013-11-26 Glenn Morris <rgm@gnu.org>
7005
7006 * progmodes/python.el (python-indent-guess-indent-offset):
7007 Avoid corner-case error. (Bug#15975)
7008
7009 Preload leim-list.el. (Bug#4789)
7010 * loadup.el: Load leim-list.el when found.
7011 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
7012
70132013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
7014
7015 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
7016
7017 * emacs-lisp/helpers.el (string-join): New function.
7018
70192013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
7020
7021 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7022 Mark as obsolete and replace it with a symbol property.
7023 (byte-compile-form): Use new 'interactive-only property.
7024 * comint.el, files.el, replace.el, simple.el:
7025 Apply new 'interactive-only properly.
7026
70272013-11-25 Martin Rudalics <rudalics@gmx.at>
7028
7029 * window.el (display-buffer-at-bottom): Make sure that
7030 split-window-sensibly creates the new window on bottom
7031 (Bug#15961).
7032
70332013-11-23 David Kastrup <dak@gnu.org>
7034
7035 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
7036 on the conflict markers when available.
7037 (smerge--get-marker): New function.
7038 (smerge-end-re, smerge-base-re): Add subgroup.
7039
70402013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
7041
7042 * frame.el (handle-focus-in, handle-focus-out): Add missing
7043 interactive spec.
7044
70452013-11-25 Michael Albinus <michael.albinus@gmx.de>
7046
7047 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7048 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
7049
70502013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
7051
7052 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
7053 (gomoku--last-pos): New var.
7054 (gomoku--intangible-chars): New const.
7055 (gomoku--intangible): New function.
7056 (gomoku-mode): Use it. Derive from special-mode.
7057 (gomoku-move-up): Adjust line count.
7058 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
7059 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
7060 Simplify accordingly.
7061
7062 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
7063 Remove blink-cursor code.
7064 (blink-cursor-timer-function, blink-cursor-suspend):
7065 Don't special-case GUIs.
7066 (blink-cursor-mode): Use focus-in/out-hook.
7067
70682013-11-25 Dmitry Gutov <dgutov@yandex.ru>
7069
7070 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
7071 work when annotation is invisible (Bug#13886).
7072
70732013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
7074
7075 * json.el (json-alist-p): Only return non-nil if the alist has
7076 simple keys (Bug#13518).
7077
70782013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
7079
7080 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
7081 when control-statement is the first statement in a buffer (Bug#15956).
7082
70832013-11-24 Dmitry Gutov <dgutov@yandex.ru>
7084
7085 * imenu.el (imenu-generic-skip-comments-and-strings):
7086 New option (Bug#15560).
7087 (imenu--generic-function): Use it.
7088
70892013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
7090
7091 * minibuffer.el (completion--in-region-1): Scroll the correct window.
7092 (Bug#13898)
7093
70942013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
7095
7096 * emacs-lisp/helpers.el: Add some string helpers.
7097 (string-trim-left): Removes leading whitespace.
7098 (string-trim-right): Removes trailing whitespace.
7099 (string-trim): Removes leading and trailing whitespace.
7100
7101 * subr.el (string-suffix-p): New function.
7102
71032013-11-23 Glenn Morris <rgm@gnu.org>
7104
7105 * progmodes/python.el (python-shell-send-file):
7106 Add option to delete file when done. (Bug#15647)
7107 (python-shell-send-string, python-shell-send-region): Use it.
7108
71092013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
7110
7111 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
7112 to set buffer-read-only to t, never to nil. (Bug#15938)
7113
7114 * textmodes/tex-mode.el (latex-noindent-environments):
7115 Add safe-local-variable property. (Bug#15936)
7116
71172013-11-23 Glenn Morris <rgm@gnu.org>
7118
7119 * textmodes/enriched.el (enriched-mode): Doc fix.
7120 * emacs-lisp/authors.el (authors-renamed-files-alist):
7121 Add enriched.doc -> enriched.txt.
7122
7123 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
7124
71252013-11-22 Leo Liu <sdl.web@gmail.com>
7126
7127 * progmodes/octave.el (inferior-octave-startup): Spit out error
7128 message.
7129
71302013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
7131
7132 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7133 Improve docstring.
7134 Add :version.
7135 (ruby-encoding-magic-comment-style): Add :version.
7136
71372013-11-22 Leo Liu <sdl.web@gmail.com>
7138
7139 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
7140 (Bug#15076)
7141 (octave-help-mode): Adapt to change to help-mode-finish to use
7142 derived-mode-p on 2013-09-17.
7143 (inferior-octave-prompt): Also match octave-gui.
7144 (octave-kill-process): Don't ask twice. (Bug#10564)
7145
71462013-11-22 Leo Liu <sdl.web@gmail.com>
7147
7148 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
7149 (inferior-octave-startup, inferior-octave-check-process)
7150 (inferior-octave-track-window-width-change)
7151 (octave-completion-at-point, octave-eldoc-function): Use it.
7152 (octave-kill-process): Provide confirmation. (Bug#10564)
7153
71542013-11-21 Leo Liu <sdl.web@gmail.com>
7155
7156 * progmodes/octave.el (octave-mode, inferior-octave-mode):
7157 Fix obsolete variable comment-use-global-state.
7158
71592013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7160
7161 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
7162 Add `octave-source-file'.
7163 (octave-source-file): New function. (Bug#15935)
7164
71652013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
7166
7167 * net/eww.el (eww-local-regex): New variable.
7168 (eww): Use it to detect localhost and similar.
7169
71702013-11-21 Leo Liu <sdl.web@gmail.com>
7171
7172 Add completion for command `ag'.
7173 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
7174 (pcomplete/ag): New function.
7175 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
7176
71772013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7178
7179 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
7180 (bug#14646).
7181 (make-obsolete): Remove interactive spec.
7182
71832013-11-21 Glenn Morris <rgm@gnu.org>
7184
7185 * startup.el (command-line-1): Use path-separator with -L.
7186
71872013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
7188
7189 * emacs-lisp/package.el (describe-package-1): Add package archive
7190 to shown fields.
7191
71922013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
7193
7194 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7195 Change default to "# encoding: %s" to differentiate it from the
7196 default Ruby encoding comment template.
7197
71982013-11-20 era eriksson <era+emacsbugs@iki.fi>
7199
7200 * ses.el (ses-mode): Doc fix. (Bug#14748)
7201
72022013-11-20 Leo Liu <sdl.web@gmail.com>
7203
7204 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
7205
72062013-11-19 Dan Nicolaescu <dann@gnu.org>
7207
7208 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
7209 when rebase or bisect are in progress.
7210
72112013-11-19 Xue Fuqiao <xfq.free@gmail.com>
7212
7213 * filenotify.el (file-notify-add-watch): Doc fix.
7214
72152013-11-19 Leo Liu <sdl.web@gmail.com>
7216
7217 * obsolete/rcompile.el: Mark obsolete.
7218
7219 * progmodes/compile.el (compilation-start)
7220 (compilation-goto-locus, compilation-find-file):
7221 Pass no-display-ok and handle nil value from display-buffer.
7222 (Bug#13594)
7223
7224 * window.el (display-buffer-alist, display-buffer): Document the
7225 new parameter no-display-ok. Return either a window or nil
7226 but never a non-window value.
7227
72282013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7229
7230 * electric.el (electric-indent-mode-map): Remove.
7231 (electric-indent-mode): Change the global-map instead (bug#15915).
7232
7233 * textmodes/text-mode.el (paragraph-indent-minor-mode):
7234 Use add-function.
7235
72362013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
7237
7238 * emacs-lisp/nadvice.el (remove-function): Align with
7239 add-function's behavior.
7240
7241 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
7242 (gdb--string-regexp): New constant.
7243 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
7244 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
7245 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
7246 submatch 1.
7247 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
7248 Adjust use accordingly.
7249 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
7250
72512013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
7252
7253 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
7254 interpolation curlies (Bug#15914).
7255
72562013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
7257
7258 * calc/calc.el (calc-context-sensitive-enter): New variable.
7259 (calc-enter): Use `calc-context-sensitive-enter'.
7260
72612013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
7262
7263 * progmodes/cfengine.el: Version bump.
7264 (cfengine-cf-promises): New defcustom to locate cf-promises.
7265 (cfengine3-vartypes): Add new "data" type.
7266 (cfengine3--current-word): New function to get current name-like
7267 word or its bounds.
7268 (cfengine3--current-function): New function to look up a CFEngine
7269 function's definition.
7270 (cfengine3-format-function-docstring): New function.
7271 (cfengine3-make-syntax-cache): New function.
7272 (cfengine3-documentation-function): New function: ElDoc glue.
7273 (cfengine3-completion-function): New function: completion glue.
7274 (cfengine3-mode): Set `compile-command',
7275 `eldoc-documentation-function', and add to
7276 `completion-at-point-functions'.
7277
72782013-11-16 Michael Albinus <michael.albinus@gmx.de>
7279
7280 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7281 `tramp-current-connection'.
7282
72832013-11-15 Dmitry Gutov <dgutov@yandex.ru>
7284
7285 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
7286 nil/self/true/false with "end of symbol".
7287
72882013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
7289
7290 * subr.el (version-regexp-alist): Fix a typo.
7291
72922013-11-15 Michael Albinus <michael.albinus@gmx.de>
7293
7294 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
7295 "en_US.utf8" and "LC_CTYPE" to "".
7296 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
7297 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
7298
72992013-11-15 Leo Liu <sdl.web@gmail.com>
7300
7301 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
7302
73032013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7304
7305 * progmodes/gud.el (ctl-x-map):
7306 Remove C-x SPC binding. (Bug#12342)
7307 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
7308
73092013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
7310
7311 * subr.el (version-regexp-alist):
7312 Recognize hg, svn and darcs versions as snapshot versions.
7313
7314 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
7315 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
7316 (ruby--encoding-comment-required-p): Extract from
7317 `ruby-mode-set-encoding'.
7318 (ruby-mode-set-encoding): Add the ability to always insert an
7319 utf-8 encoding comment. Fix and simplify coding comment update
7320 logic.
7321
73222013-11-14 Michael Albinus <michael.albinus@gmx.de>
7323
7324 * net/tramp-gvfs.el (top): Run init code only when
7325 `tramp-gvfs-enabled' is not nil.
7326 (tramp-gvfs-enabled): Check also :system bus.
7327
73282013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7329
7330 Sync with upstream verilog-mode revision 78e66ba.
7331 * progmodes/verilog-mode.el (verilog-end-of-defun)
7332 (verilog-type-completion, verilog-get-list): Remove unused funcs.
7333 (verilog-get-end-of-defun): Remove unused argument.
7334 (verilog-comment-depth): Remove unused local `e'.
7335 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
7336 Don't pass arg to verilog-get-end-of-defun.
7337
73382013-11-14 Glenn Morris <rgm@gnu.org>
7339
7340 * obsolete/assoc.el (aget): Prefix dynamic variable.
7341
7342 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
7343
73442013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7345
7346 * widget.el, hfy-cmap.el: Remove bogus package version number.
7347
73482013-11-13 Glenn Morris <rgm@gnu.org>
7349
7350 * replace.el (replace-eval-replacement):
7351 Try to give more helpful error message. (Bug#15836)
7352
7353 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
7354 (archive-7z-update): Avoid custom type mismatches.
7355
7356 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
7357
73582013-11-13 Michael Albinus <michael.albinus@gmx.de>
7359
7360 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
7361 address can be empty.
7362
7363 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
7364 Accept nil SWITCHES.
7365 (tramp-gvfs-handle-write-region): Implement APPEND.
7366
73672013-11-12 Dmitry Gutov <dgutov@yandex.ru>
7368
7369 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
7370 binary "|" operator and closing block args delimiter.
7371 Remove FIXME comment referring to Ruby 1.8-only syntax.
7372 (ruby-smie--implicit-semi-p): Not after "|" operator.
7373 (ruby-smie--closing-pipe-p): New function.
7374 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
7375 (ruby-smie-rules): Indent after "|".
7376
73772013-11-12 Glenn Morris <rgm@gnu.org>
7378
7379 * ps-print.el (ps-face-attribute-list):
7380 Handle anonymous faces. (Bug#15827)
7381
73822013-11-12 Martin Rudalics <rudalics@gmx.at>
7383
7384 * window.el (display-buffer-other-frame): Fix doc-string.
7385 (Bug#15868)
7386
73872013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7388
7389 * subr.el (force-mode-line-update): Delete, move to buffer.c.
7390
73912013-11-11 Michael Albinus <michael.albinus@gmx.de>
7392
7393 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
7394 (tramp-sh-handle-file-local-copy): Don't write a message when
7395 saving temporary files.
7396
7397 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
7398 both directories are remote.
7399 (tramp-smb-handle-directory-files): Do not return double entries.
7400 Do not expand full file names.
7401 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
7402 (tramp-smb-handle-write-region): Implement APPEND.
7403 (tramp-smb-get-stat-capability): Fix a stupid bug.
7404
74052013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7406
7407 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
7408
74092013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7410
7411 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
7412 throwing error over malformed let/let* (bug#15814).
7413
74142013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7415
7416 * iswitchb.el (iswitchb-mode): Mark obsolete.
7417
74182013-11-11 Glenn Morris <rgm@gnu.org>
7419
7420 * international/uni-bidi.el, international/uni-category.el:
7421 * international/uni-name.el, international/uni-numeric.el:
7422 Regenerate for Unicode 6.3.0.
7423
74242013-11-10 Michael Albinus <michael.albinus@gmx.de>
7425
7426 * net/tramp.el (tramp-methods):
7427 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
7428 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
7429
74302013-11-09 Andreas Schwab <schwab@linux-m68k.org>
7431
7432 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7433 Force highlighting text after Summary keyword in doc face for rpm.
7434
74352013-11-09 Dmitry Gutov <dgutov@yandex.ru>
7436
7437 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
7438 available and the word has no wildcards, append one to the grep pattern.
7439 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
7440 (ispell-complete-word): Call `ispell-lookup-words' with the value
7441 independent of `ispell-look-p'.
7442
74432013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7444
7445 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
7446 Not after "||".
7447 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
7448 their parent.
7449
74502013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7451
7452 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
7453 (ruby-font-lock-keywords): Use backquote.
7454
74552013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7456
7457 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7458 (ruby-smie--backward-token): Only consider full-string matches.
7459
74602013-11-08 Jan Djärv <jan.h.d@swipnet.se>
7461
7462 * faces.el (describe-face): Add distant-foreground.
7463
74642013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
7465
7466 * progmodes/ruby-mode.el: Improve encoding comment handling.
7467 (ruby-encoding-magic-comment-style): New option.
7468 (ruby-custom-encoding-magic-comment-template): New option.
7469 (ruby--insert-coding-comment, ruby--detect-encoding):
7470 New functions extracted from `ruby-mode-set-encoding'.
7471 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
7472 to control the style of the auto-inserted encoding comment.
7473
74742013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7475
7476 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
7477 Use `smie-backward-sexp' with token argument.
7478
74792013-11-08 Michael Albinus <michael.albinus@gmx.de>
7480
7481 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7482 Remove instrumentation code.
7483
74842013-11-08 Glenn Morris <rgm@gnu.org>
7485
7486 * progmodes/autoconf.el (autoconf-mode):
7487 Tweak comment-start-skip. (Bug#15822)
7488
74892013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7490
7491 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
7492 at bobp (bug#15826).
7493 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
7494
74952013-11-08 Darren Hoo <darren.hoo@gmail.com>
7496
7497 * man.el (Man-start-calling): New macro, extracted from
7498 Man-getpage-in-background.
7499 (Man-getpage-in-background): Use it.
7500 (Man-update-manpage): New command.
7501 (Man-mode-map): Bind it.
7502
75032013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7504
7505 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
7506 of "and", "or", "&&" and "||".
7507 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
7508 argument. Prohibit opening curly brace because it could only be a
7509 block opener in that position.
7510 (ruby-smie--forward-token, ruby-smie--backward-token):
7511 Separate "|" from "&" or "*" going after it. That can happen in block
7512 arguments.
7513 (ruby-smie--indent-to-stmt): New function, seeks the end of
7514 previous statement or beginning of buffer.
7515 (ruby-smie-rules): Use it.
7516 (ruby-smie-rules): Check if there's a ":" before a curly block
7517 opener candidate; if there is, it's a hash.
7518
75192013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7520
7521 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
7522 (cl--block-wrapper): Fix last accidental change.
7523
75242013-11-07 Michael Albinus <michael.albinus@gmx.de>
7525
7526 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7527 Instrument, in order to hunt failure on hydra.
7528
75292013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7530
7531 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
7532 malformed bindings form (bug#15814).
7533
75342013-11-07 Dmitry Gutov <dgutov@yandex.ru>
7535
7536 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
7537 "." compared to " @ ". This incidentally fixes some indentation
7538 examples with "do".
7539 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
7540 (ruby-smie-grammar): New tokens: "and" and "or".
7541 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
7542 Exclude "and" and "or". Remove "do" in order to work around token
7543 priorities.
7544 (ruby-smie-rules): Add all infix tokens. Handle the case of
7545 beginning-of-buffer.
7546
75472013-11-06 Glenn Morris <rgm@gnu.org>
7548
7549 * Makefile.in (setwins_almost, setwins_for_subdirs):
7550 Avoid accidental matches.
7551
75522013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7553
7554 * menu-bar.el (popup-menu): Use key-binding.
7555
75562013-11-06 Eli Zaretskii <eliz@gnu.org>
7557
7558 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
7559 menus, support also the menus produced by minor modes.
7560 (Bug#15817)
7561
75622013-11-06 Leo Liu <sdl.web@gmail.com>
7563
7564 * thingatpt.el (thing-at-point-looking-at): Add optional arg
7565 DISTANCE to bound the search. All uses changed. (Bug#15808)
7566
75672013-11-06 Glenn Morris <rgm@gnu.org>
7568
7569 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
7570 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
7571 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
7572
75732013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7574
7575 * electric.el (electric-indent-just-newline): New command.
7576 (electric-indent-mode-map): New keymap.
7577 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
7578 Re-add :group which weren't redundant.
7579
7580 * electric.el (electric-indent-local-mode): New minor mode.
7581 (electric-indent-functions-without-reindent): New var.
7582 (electric-indent-post-self-insert-function): Use it.
7583 * emacs-lisp/gv.el (buffer-local-value): Add setter.
7584
75852013-11-05 Eli Zaretskii <eliz@gnu.org>
7586
7587 * international/quail.el (quail-help): Be more explicit about the
7588 meaning of the labels shown on the keys. (Bug#15800)
7589
7590 * startup.el (normal-top-level): Load the subdirs.el files before
7591 setting the locale environment. (Bug#15805)
7592
75932013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
7594
7595 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
7596 via arguments so as to get the right ones (bug#15418).
7597
7598 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
7599
76002013-11-05 Michael Albinus <michael.albinus@gmx.de>
7601
7602 Fix problems found while writing a test suite.
7603
7604 * net/tramp-compat.el (tramp-compat-load): New defun.
7605 * net/tramp.el (tramp-handle-load): Use it.
7606
7607 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
7608 "(numberp ok-if-already-exists)" correctly.
7609
76102013-11-05 Xue Fuqiao <xfq.free@gmail.com>
7611
7612 * international/characters.el (glyphless-char-display-control):
7613 Add usage note.
7614
76152013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
7616
7617 * progmodes/python.el (python-mode):
7618 * progmodes/scheme.el (scheme-mode):
7619 * progmodes/prolog.el (prolog-mode):
7620 * progmodes/ruby-mode.el (ruby-mode):
7621 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
7622 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
7623
76242013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7625
7626 * rect.el (rectangle--highlight-for-redisplay):
7627 * emacs-lisp/smie.el (smie--next-indent-change):
7628 Use buffer-chars-modified-tick.
7629
7630 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
7631
7632 * electric.el (electric-indent-post-self-insert-function):
7633 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
7634
76352013-11-04 Helmut Eller <eller.helmut@gmail.com>
7636
7637 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
7638
76392013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7640
7641 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
7642 (bug#15786).
7643
76442013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7645
7646 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
7647
7648 * progmodes/python.el: Fix up last change.
7649 (python-shell--save-temp-file): New function.
7650 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
7651 `string' comes from the current buffer.
7652 (python-shell-send-string-no-output): Remove `msg' arg.
7653 (python--use-fake-loc): New var.
7654 (python-shell-buffer-substring): Obey it. Try to compensate for the
7655 extra coding line added by python-shell--save-temp-file.
7656 (python-shell-send-region): Use python-shell--save-temp-file and
7657 python-shell-send-file directly. Add `nomain' argument.
7658 (python-shell-send-buffer): Use python-shell-send-region.
7659 (python-electric-pair-string-delimiter): New function.
7660 (python-mode): Use it.
7661
76622013-11-04 Eli Zaretskii <eliz@gnu.org>
7663
7664 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
7665 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
7666 environment and decoding all of the default-directory's to here
7667 from command-line.
7668 (command-line): Decode also argv[0].
7669
7670 * loadup.el: Error out if default-directory is a multibyte string
7671 when we are dumping.
7672
7673 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
7674
76752013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
7676
7677 * emacs-lisp/package.el (package-menu-mode)
7678 (package-menu--print-info, package-menu--archive-predicate):
7679 Add Archive column to package list.
7680
76812013-11-04 Michael Albinus <michael.albinus@gmx.de>
7682
7683 Fix problems found while writing a test suite.
7684
7685 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
7686 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
7687 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
7688 to nil when running original file name handler. Otherwise,
7689 there are problems with constructs like "$$FOO".
7690
7691 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
7692 for `localname'.
7693
76942013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
7695
7696 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
7697
7698 * subr.el (version<, version<=, version=):
7699 Update docstrings with information for snapshot versions.
7700
7701 * helpers.el: New library for misc helper functions.
7702 (hash-table-keys): New function returning a list of hash keys.
7703 (hash-table-values): New function returning a list of hash values.
7704
77052013-11-04 Dmitry Gutov <dgutov@yandex.ru>
7706
7707 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7708 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
7709
77102013-11-04 Michal Nazarewicz <mina86@mina86.com>
7711
7712 * textmodes/fill.el (fill-single-char-nobreak-p): New function
7713 checking whether point is after a 1-letter word.
7714
77152013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7716
7717 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
7718 Don't infloop when expanding region over `multiline' syntax-type that
7719 begins a line (bug#15778).
7720
77212013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7722
7723 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
7724 Make it into a proper minor mode.
7725 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
7726 (rectangle-mark-mode-map): New keymap.
7727 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
7728
77292013-11-04 Glenn Morris <rgm@gnu.org>
7730
7731 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
7732
77332013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7734
7735 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
7736 (ruby-smie-rules): Use smie-rule-parent instead.
7737
7738 * emacs-lisp/smie.el (smie-rule-parent): Always call
7739 smie-indent-virtual rather than only for hanging tokens.
7740 (smie--next-indent-change): New helper command.
7741
77422013-11-03 Glenn Morris <rgm@gnu.org>
7743
7744 * Makefile.in (abs_srcdir): Remove.
7745 (emacs): Unset EMACSLOADPATH.
7746
77472013-11-02 Glenn Morris <rgm@gnu.org>
7748
7749 * Makefile.in (EMACS): Use a relative filename.
7750 (abs_top_builddir): Remove.
7751 (custom-deps, finder-data, autoloads): Use --chdir.
7752
7753 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
7754
7755 Use relative filenames in TAGS files.
7756 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7757 (lisptagsfiles4, TAGS): Use relative file names.
7758 (TAGS-LISP): Remove.
7759 (maintainer-clean): No more TAGS-LISP file.
7760
7761 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7762 (lisptagsfiles4): Use absolute filenames again.
7763 (TAGS, TAGS-LISP): Not everything needs to run in one line.
7764 Remove all *loaddefs files, not just the first. Remove esh-groups.
7765 (maintainer-clean): Delete TAGS, TAGS-LISP.
7766
77672013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7768
7769 * emacs-lisp/package.el (package-version-join):
7770 Recognize snapshot versions.
7771
77722013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7773
7774 * subr.el (version-regexp-alist): Add support for snapshot versions.
7775
77762013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7777
7778 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
7779 New function, replacement for `smie-rule-parent' for when we want to
7780 skip over our direct parent if it's an assignment token..
7781 (ruby-smie-rules): Use it.
7782
77832013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7784
7785 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
7786 unconditionally. Remove now unnecessary forward declarations.
7787 Remove XEmacs-specific setup.
7788 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7789 (ruby-font-lock-syntactic-keywords)
7790 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
7791 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7792 (ruby-here-doc-end-syntax): Remove.
7793 (ruby-mode): Don't check whether `syntax-propertize-rules' is
7794 defined as function.
7795
77962013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7797
7798 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
7799
78002013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7801
7802 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
7803 table and abbrev table, `define-derived-mode' does that for us
7804 anyway.
7805
78062013-11-01 Glenn Morris <rgm@gnu.org>
7807
7808 * Makefile.in: Remove manual mh-e dependencies (writing .elc
7809 files is atomic for some time, so no parallel compilation issues).
7810
78112013-11-01 Jan Djärv <jan.h.d@swipnet.se>
7812
7813 * faces.el (face-x-resources): Add :distant-foreground.
7814 (region): Use :distant-foreground for gtk and ns.
7815
78162013-11-01 Tassilo Horn <tsdh@gnu.org>
7817
7818 Allow multiple bibliographies when BibLaTeX is used rather than
7819 BibTeX.
7820 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
7821 (reftex-locate-bibliography-files): Us it.
7822
78232013-11-01 Claudio Bley <claudio.bley@googlemail.com>
7824
7825 * image.el (image-type-header-regexps): Fix the 'pbm' part to
7826 allow comments in pbm files.
7827
7828 * term/w32-win.el (dynamic-library-alist): Support newer versions
7829 of libjpeg starting with v7: look only for the DLL from the
7830 version against which Emacs was built.
7831 Support versions of libpng beyond 1.4.x.
7832 Support libtiff v4.x.
7833
78342013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7835
7836 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
7837 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
7838 Add property :safe.
7839 (ruby-deep-arglist): Add property :type.
7840
78412013-10-31 Glenn Morris <rgm@gnu.org>
7842
7843 * Makefile.in (custom-deps, finder-data): No need to setq the target
7844 variables, we are in the right directory and the defaults work fine.
7845
78462013-10-30 Glenn Morris <rgm@gnu.org>
7847
7848 * Makefile.in (autoloads): Do not use abs_lisp.
7849
7850 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7851 `newline' does not respect `standard-output', so use `princ'.
7852
78532013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
7854
7855 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
7856 * buff-menu.el (Buffer-menu--unmark): New function.
7857 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
7858
78592013-10-30 Glenn Morris <rgm@gnu.org>
7860
7861 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
7862
7863 * emacs-lisp/package.el (lm-homepage): Declare.
7864
7865 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
7866 Fix doc typos.
7867
7868 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
7869
7870 * Makefile.in (finder-data, autoloads, update-subdirs)
7871 (compile-main, compile-clean, compile-always, bootstrap-clean):
7872 Check return value of cd.
7873 (compile-calc): Remove.
7874
78752013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7876
7877 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
7878
7879 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
7880 (byte-compile-and-folded): New function.
7881 (=, <, >, <=, >=): Use it.
7882
7883 * dos-w32.el (minibuffer-history-case-insensitive-variables)
7884 (path-separator, null-device, buffer-file-coding-system)
7885 (lpr-headers-switches): Check system-type before modifying them.
7886 (find-buffer-file-type-coding-system): Mark obsolete.
7887 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7888 find-file-not-found-set-buffer-file-coding-system.
7889 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7890 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7891 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7892 (w32-direct-print-region-helper, w32-direct-print-region-function)
7893 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7894 * startup.el (normal-top-level-add-subdirs-to-load-path):
7895 * ps-print.el (ps-print-region-function):
7896 * lpr.el (print-region-function): Use new name.
7897
7898 * subr.el (custom-declare-variable-early): Remove function.
7899 (custom-declare-variable-list): Remove var.
7900 (error, user-error): Remove `while' loop.
7901 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7902 (user-emacs-directory-warning, locate-user-emacs-file):
7903 Move to files.el.
7904 * simple.el (read-quoted-char-radix, read-quoted-char):
7905 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7906 Move from subr.el.
7907 * custom.el (custom-declare-variable-list): Don't process
7908 custom-declare-variable-list.
7909
7910 * progmodes/python.el (python-shell-get-buffer): New function.
7911 (python-shell-get-process): Use it.
7912 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7913 Python which encoding was used. Don't split-string since we only care
7914 about the first line. Return the temp-file, if applicable.
7915 (python-shell-send-region): Tell compile.el how to turn locations in
7916 the temp-file into locations in the source buffer.
7917
79182013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7919
7920 * subr.el (undefined): Add missing behavior from the C code for
7921 unbound keys.
7922
7923 * rect.el: Use lexical-binding. Add new rectangular region support.
7924 (rectangle-mark): New command.
7925 (rectangle--region): New var.
7926 (deactivate-mark-hook): Reset rectangle--region.
7927 (rectangle--extract-region, rectangle--insert-for-yank)
7928 (rectangle--highlight-for-redisplay)
7929 (rectangle--unhighlight-for-redisplay): New functions.
7930 (region-extract-function, redisplay-unhighlight-region-function)
7931 (redisplay-highlight-region-function): Use them to handle
7932 rectangular region.
7933 * simple.el (region-extract-function): New var.
7934 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7935 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7936 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7937 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7938 (redisplay-unhighlight-region-function)
7939 (redisplay-highlight-region-function): New vars.
7940 (redisplay--update-region-highlight): New function.
7941 (pre-redisplay-function): Use it.
7942 (exchange-point-and-mark): Don't deactivate the mark before
7943 reactivate-it anyway.
7944 * comint.el (comint-kill-region): Remove yank-handler argument.
7945 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7946 (delete-char): Remove property, since it's now part of their
7947 default behavior.
7948 (self-insert-iso): Remove property since this command doesn't exist.
7949
7950 * emacs-lisp/package.el (package--download-one-archive)
7951 (describe-package-1): Don't query the user about final newline.
7952
79532013-10-29 Daniel Colascione <dancol@dancol.org>
7954
7955 * net/tramp.el (tramp-methods): Document new functionality.
7956 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7957 tramp-hostname-checker if method provides one instead of scanning
7958 argument list for "%h" to decide hostname acceptability.
7959
79602013-10-28 Michael Albinus <michael.albinus@gmx.de>
7961
7962 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7963 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7964 Handle COPY-CONTENTS. (Bug#15737)
7965
79662013-10-28 Daiki Ueno <ueno@gnu.org>
7967
7968 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7969 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7970
79712013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7972
7973 * image.el (defimage, image-load-path): Doc fixes.
7974
79752013-10-27 Alan Mackenzie <acm@muc.de>
7976
7977 Indent statements in macros following "##" correctly.
7978 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7979 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7980
79812013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7982
7983 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7984
79852013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7986
7987 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7988 after `=' is probably a new expression.
7989
79902013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7991
7992 * man.el (man-imenu-title): New option.
7993 (Man-mode-map): Add menu. (Bug#15722)
7994 (Man-mode): Add imenu to menu.
7995
79962013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7997
7998 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7999 specific in what the first arg can be: a non-keyword word,
8000 string/regexp/percent literal opener, opening paren, or unary
8001 operator followed directly by word.
8002
80032013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8004
8005 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
8006 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
8007 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
8008 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
8009 Remove vars, they do not apply any more.
8010 (prolog-mode-abbrev-table): Remove redundant declaration.
8011 (prolog-upper-case-string, prolog-lower-case-string): Remove.
8012 (prolog-use-smie): Remove.
8013 (prolog-smie-rules): Add indentation rule for the if-then-else layout
8014 supported by prolog-electric-if-then-else-flag.
8015 (prolog-mode-variables, prolog-menu): Use setq-local.
8016 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
8017 Remove binding to `Backspace' since this key doesn't exist anyway.
8018 Remove bindings for electric self-inserting keys.
8019 (prog-mode): Assume it's defined.
8020 (prolog-post-self-insert): New function.
8021 (prolog-mode): Use it.
8022 (prolog-indent-line, prolog-indent-level)
8023 (prolog-find-indent-of-matching-paren)
8024 (prolog-indentation-level-of-line, prolog-goto-comment-column)
8025 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
8026 (prolog-goto-next-paren, prolog-in-string-or-comment)
8027 (prolog-tokenize, prolog-inside-mline-comment)
8028 (prolog-find-start-of-mline-comment): Remove functions.
8029 (prolog-find-unmatched-paren, prolog-clause-end)
8030 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
8031 (prolog-electric--if-then-else): Rename from
8032 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
8033 (prolog-tokenize-searchkey): Remove const.
8034 (prolog-clause-info): Use forward-sexp.
8035 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
8036 (prolog-electric-if-then-else): Remove commands.
8037 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
8038 for use in post-self-insert-hook.
8039 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
8040 for use in post-self-insert-hook.
8041 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
8042 for use in post-self-insert-hook.
8043 (prolog-electric--underscore): Rename from prolog-electric--underscore;
8044 adapt it for use in post-self-insert-hook.
8045
80462013-10-25 Michael Albinus <michael.albinus@gmx.de>
8047
8048 * emacs-lisp/ert.el (ert-run-tests-interactively):
8049 Use `completing-read'. (Bug#9756)
8050
80512013-10-25 Eli Zaretskii <eliz@gnu.org>
8052
8053 * simple.el (line-move): Call line-move-1 instead of
8054 line-move-visual when the current window hscroll is zero, but
8055 temporary-goal-column indicates we will need to hscroll as result
8056 of the movement. (Bug#15712)
8057
80582013-10-25 Dmitry Gutov <dgutov@yandex.ru>
8059
8060 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
8061 capitalization. Use :visible instead of :active.
8062 Fix `ruby-indent-exp' reference. Add menu items for the generic
8063 commands that are used with SMIE.
8064 (ruby-do-end-to-brace): Insert space after `{'.
8065
80662013-10-25 John Anthony <john@jo.hnanthony.com>
8067
8068 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
8069
8070 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
8071
80722013-10-25 Glenn Morris <rgm@gnu.org>
8073
8074 * vc/vc.el (vc-print-log): Don't use a working revision unless
8075 one was explicitly specified. (Bug#15322)
8076
80772013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8078
8079 * subr.el (add-to-list): Preserve return value in compiler-macro
8080 (bug#15692).
8081
80822013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8083
8084 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
8085 result. Ask user to retry using '-all' flag. (Bug#15701)
8086
80872013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8088
8089 * emacs-lisp/smie.el: New smie-config system.
8090 (smie-config): New defcustom.
8091 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
8092 (smie-config-guess, smie-config-save): New commands.
8093 (smie-config--mode-local, smie-config--buffer-local)
8094 (smie-config--trace, smie-config--modefuns): New vars.
8095 (smie-config--advice, smie-config--mode-hook)
8096 (smie-config--setter, smie-config-local, smie-config--get-trace)
8097 (smie-config--guess-value, smie-config--guess): New functions.
8098 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
8099 text properties. Treat "string fence" syntax like string syntax.
8100
8101 * progmodes/sh-script.el (sh-use-smie): Change default.
8102 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
8103 (sh-var-value): Simplify by CSE.
8104 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
8105 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
8106 is used.
8107 (sh-guess-basic-offset): Use cl-incf.
8108 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
8109
81102013-10-24 Helmut Eller <eller.helmut@gmail.com>
8111
8112 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
8113 (bug#15699).
8114
81152013-10-24 Glenn Morris <rgm@gnu.org>
8116
8117 * Makefile.in (abs_top_srcdir): Remove.
8118 (update-subdirs): Use relative path to update-subdirs.
8119
81202013-10-24 Eli Zaretskii <eliz@gnu.org>
8121
8122 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
8123 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
8124 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
8125 Call unmsys--file-name before expand-file-name, not after it.
8126
81272013-10-24 Michael Albinus <michael.albinus@gmx.de>
8128
8129 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
8130 (ert-test-skipped): New error.
8131 (ert-skip, ert-stats-skipped): New defuns.
8132 (ert--skip-unless): New macro.
8133 (ert-test-skipped): New struct.
8134 (ert--run-test-debugger, ert-test-result-type-p)
8135 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
8136 (ert--stats-set-test-and-result, ert-char-for-test-result)
8137 (ert-string-for-test-result, ert-run-tests-batch)
8138 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
8139 Handle skipped tests. (Bug#9803)
8140
81412013-10-24 Glenn Morris <rgm@gnu.org>
8142
8143 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
8144
8145 * Makefile.in (abs_top_srcdir): New, set by configure.
8146 (update-subdirs): Correct build-aux location.
8147
81482013-10-24 Dmitry Gutov <dgutov@yandex.ru>
8149
8150 * vc/vc.el (vc-print-root-log): Always set `default-directory'
8151 value, whether we could auto-deduce `backend', or not.
8152
8153 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
8154 with parameters" example. Simplify the "is it block or is it
8155 hash" check, but also make it more thorough.
8156
81572013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
8158
8159 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
8160
81612013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8162
8163 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
8164 { if it is hanging.
8165
8166 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
8167 :before ";".
8168
81692013-10-23 Jed Brown <jed@59A2.org> (tiny change)
8170
8171 * progmodes/compile.el (compilation-directory-matcher)
8172 (compilation-page-delimiter):
8173 Support GNU Make-4.0 directory quoting. (Bug#15678)
8174
81752013-10-23 Leo Liu <sdl.web@gmail.com>
8176
8177 * ido.el (ido-tidy): Handle read-only text.
8178
81792013-10-23 Glenn Morris <rgm@gnu.org>
8180
8181 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
8182 (emacs, compile, compile-always):
8183 Quote entities that might contain whitespace.
8184 (custom-deps, finder-data, autoloads): Use abs_lisp.
8185 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
8186 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
8187 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
8188
81892013-10-23 Dmitry Gutov <dgutov@yandex.ru>
8190
8191 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
8192 Use `following-char'.
8193
81942013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8195
8196 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
8197 * progmodes/ruby-mode.el (ruby-smie-rules):
8198 Remove corresponding workaround. Fix indentation rule of ";" so it
8199 also applies when ";" is the parent.
8200
82012013-10-22 Xue Fuqiao <xfq.free@gmail.com>
8202
8203 * frame.el (display-screens, display-pixel-height)
8204 (display-pixel-width, display-mm-width, display-backing-store)
8205 (display-save-under, display-planes, display-color-cells)
8206 (display-visual-class, display-monitor-attributes-list):
8207 Mention the optional ‘display’ argument in doc strings.
8208
82092013-10-22 Michael Gauland <mikelygee@amuri.net>
8210
8211 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
8212 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
8213
82142013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8215
8216 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
8217 TODO. Add "." after " @ ".
8218 (ruby-smie--at-dot-call): New function. Checks if point at method
8219 call with explicit target.
8220 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
8221 to the method name tokens when it precedes them.
8222 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
8223 (ruby-smie-rules): Add rule for indentation before and after "."
8224 token.
8225
82262013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8227
8228 * textmodes/remember.el (remember-diary-extract-entries):
8229 Avoid add-to-list.
8230
8231 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
8232 an instruction.
8233
82342013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8235
8236 * progmodes/ruby-mode.el (ruby-smie-grammar):
8237 Add (almost) all infix operators.
8238 (ruby-smie--implicit-semi-p): Add new operator chars.
8239
8240 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8241 `smie-down-list'.
8242 (ruby-smie--args-separator-p): Check that there's no newline
8243 between method call and its arguments.
8244
82452013-10-20 Alan Mackenzie <acm@muc.de>
8246
8247 Allow comma separated lists after Java "implements".
8248
8249 * progmodes/cc-engine.el (c-backward-over-enum-header):
8250 Parse commas.
8251 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
8252 from a "disallowed" list in enum fontification.
8253
82542013-10-20 Johan Bockgård <bojohan@gnu.org>
8255
8256 * startup.el (default-frame-background-mode): Remove unused defvar.
8257
8258 * progmodes/verilog-mode.el (verilog-mode): Don't set
8259 comment-indent-function globally.
8260
82612013-10-20 Jan Djärv <jan.h.d@swipnet.se>
8262
8263 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
8264 Move Info menu item creation to ns-win.el.
8265
8266 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
8267 in menu bar.
8268
8269 * menu-bar.el: Move GNUstep specific menus...
8270
8271 * term/ns-win.el (ns-initialize-window-system): ... to here.
8272
82732013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8274
8275 * simple.el (newline): Only run post-self-insert-hook when
8276 called interactively.
8277
82782013-10-19 Johan Bockgård <bojohan@gnu.org>
8279
8280 * icomplete.el (icomplete-with-completion-tables): Add :version.
8281
82822013-10-19 Alan Mackenzie <acm@muc.de>
8283
8284 Fix fontification bugs with constructors and const.
8285
8286 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
8287 CASE 2) Remove the check for the absence of a suffix construct
8288 after a function declaration with only types (no identifiers) in
8289 the parentheses. Also, accept a function declaration with just a
8290 type inside the parentheses, if this type can be positively
8291 recognised as such, or if a prefix keyword like "explicit" nails
8292 down the construct as a declaration.
8293
82942013-10-19 Eli Zaretskii <eliz@gnu.org>
8295
8296 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
8297 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
8298 the problem whereby selecting a menu item that leads to a
8299 minibuffer prompt moves the cursor out of the minibuffer window,
8300 making it hard to type at the prompt. Suggested by Stefan Monnier
8301 <monnier@iro.umontreal.ca>.
8302
83032013-10-19 Jan Djärv <jan.h.d@swipnet.se>
8304
8305 * menu-bar.el: Don't make Services menu.
8306
83072013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8308
8309 * ffap.el: Handle "/usr/include/c++/<version>" directories.
8310 (ffap-alist): Use ffap-c++-mode for c++-mode.
8311 (ffap-c++-path): New variable.
8312 (ffap-c++-mode): New function.
8313
83142013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
8315
8316 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
8317
83182013-10-18 Michael Albinus <michael.albinus@gmx.de>
8319
8320 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
8321 introduced on 2013-09-08, which results in an infinite loop
8322 requesting a password.
8323
83242013-10-18 Glenn Morris <rgm@gnu.org>
8325
8326 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
8327
83282013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
8329
8330 Sync with upstream verilog-mode revision 1a6ecec7.
8331 * progmodes/verilog-mode.el (verilog-mode-version): Update.
8332 (verilog-mode-release-date): Remove.
8333 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
8334 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
8335 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
8336 (verilog-auto-tieoff-ignore-regexp)
8337 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
8338 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
8339 (verilog-signals-with, verilog-dir-cache-preserving)
8340 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
8341 Doc fixes.
8342 (verilog-case-fold): New option, to control case folding in
8343 regexp searches, bug597.
8344 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
8345 (verilog-string-match-fold, verilog-in-paren-count)
8346 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
8347 (verilog-at-close-struct-p): New functions.
8348 (verilog-beg-block-re-ordered, verilog-extended-case-re)
8349 (verilog-forward-sexp, verilog-set-auto-endcomments)
8350 (verilog-leap-to-case-head): Handle "unique0" case.
8351 (verilog-in-constraint-re): New constant.
8352 (verilog-keywords, verilog-type-font-keywords):
8353 Add some SystemVerilog 1800-2012 keywords.
8354 (verilog-label-be): Remove unimplemented argument, bug669.
8355 (verilog-batch-execute-func): When batch expanding clear
8356 create-lockfiles to prevent spurious user locks when a file ends
8357 up not changing.
8358 (verilog-calculate-indent, verilog-calc-1)
8359 (verilog-at-close-constraint-p, verilog-at-constraint-p)
8360 (verilog-do-indent): Fix indentation of nested constraints
8361 and structures.
8362 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
8363 (verilog-auto-inst-param): Use verilog-string-match-fold.
8364 (verilog-read-inst-module-matcher):
8365 Fix AUTOINST on gate primitives with #1.
8366 (verilog-read-decls): Fix double-declaring user-defined typed signals.
8367 Reads all user-defined typed variables.
8368 (verilog-read-defines): Fix reading definitions inside comments, bug647.
8369 (verilog-signals-matching-regexp)
8370 (verilog-signals-not-matching-regexp, verilog-auto):
8371 Respect verilog-case-fold.
8372 (verilog-diff-report): Fix line count.
8373 (verilog-auto-assign-modport): Remove unused local `modi'.
8374 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
8375 better handle multidimensional arrays.
8376 Fix packed array ports misadding bit index in AUTOINST, bug637.
8377 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
8378 to not double-declare existing outputs and inputs, respectively.
8379 (verilog-template-map): Bind U to verilog-sk-uvm-component.
8380 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
8381 (verilog-sk-uvm-component): New skeleton.
8382 (verilog-submit-bug-report): Add verilog-case-fold,
8383 remove verilog-mode-release-date.
8384
83852013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
8386
8387 * subr.el (sit-for): Call (input-pending-p t) so as to behave
8388 as before.
8389
83902013-10-18 Reuben Thomas <rrt@sc3d.org>
8391
8392 * textmodes/remember.el (remember): Set buffer-offer-save in
8393 remember buffers (bug#13566).
8394
83952013-10-18 Daniel Colascione <dancol@dancol.org>
8396
8397 When evaluating forms in ielm, direct standard output to ielm
8398 buffer. Add new ielm-return-for-effect command. Remove trailing
8399 whitespace throughout.
8400
8401 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
8402 (ielm-return-for-effect): New command.
8403 (ielm-send-input): Accept optional `for-effect' parameter.
8404 (ielm-eval-input): Accept optional `for-effect' parameter.
8405 Bind `standard-output' to stream we create using
8406 `ielm-standard-output-impl'. Suppress printing result when
8407 `for-effect'.
8408 (ielm-standard-output-impl): New function.
8409 (inferior-emacs-lisp-mode): Explain new features in documentation.
8410
84112013-10-17 Michael Albinus <michael.albinus@gmx.de>
8412
8413 Code cleanup.
8414
8415 * net/tramp.el (tramp-debug-message): Do not check for connection
8416 buffer.
8417 (tramp-message): Use "vector" connection property.
8418
8419 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
8420 (tramp-equal-remote, tramp-eshell-directory-change)
8421 * net/tramp-adb.el (tramp-adb-handle-copy-file)
8422 (tramp-adb-handle-rename-file)
8423 * net/tramp-cmds.el (tramp-list-remote-buffers)
8424 (tramp-cleanup-connection, tramp-cleanup-this-connection)
8425 * net/tramp-compat.el (tramp-compat-process-running-p)
8426 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
8427 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
8428 (tramp-gvfs-handle-rename-file)
8429 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8430 (tramp-set-file-uid-gid)
8431 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8432 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
8433 of `file-remote-p'.
8434
8435 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
8436 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
8437 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
8438 (tramp-gw-open-network-stream): Suppress unrelated traces.
8439
8440 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
8441 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
8442 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8443 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
8444 connection property.
8445
8446 * net/tramp-cache.el (top): Suppress traces when reading
8447 persistency file.
8448
8449 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
8450 Refactor common code. Improve debug message.
8451 (tramp-maybe-open-connection)
8452 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
8453 connection buffer too early.
8454
8455 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
8456 from `tramp-smb-actions-with-acl'.
8457 (tramp-smb-actions-set-acl): New defconst.
8458 (tramp-smb-handle-copy-directory)
8459 (tramp-smb-action-get-acl): New defun, renamed from
8460 `tramp-smb-action-with-acl'.
8461 (tramp-smb-action-set-acl): New defun.
8462 (tramp-smb-handle-set-file-acl): Rewrite.
8463
84642013-10-17 Glenn Morris <rgm@gnu.org>
8465
8466 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
8467
84682013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8469
8470 * skeleton.el (skeleton-newline): Remove.
8471 (skeleton-internal-1): Use (insert "\n") instead.
8472
8473 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
8474 let-bindings.
8475
8476 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
8477 forward-sexp-function while we redo its job (bug#15613).
8478
84792013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
8480
8481 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
8482 represented by lists.
8483
84842013-10-16 Glenn Morris <rgm@gnu.org>
8485
8486 * tmm.el (tmm--history): New dynamic variable.
8487 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
8488
84892013-10-16 Michael Albinus <michael.albinus@gmx.de>
8490
8491 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
8492 (tramp-smb-errors): Add error messages.
8493 (tramp-smb-actions-with-acl): New defconst.
8494 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
8495 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
8496 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
8497 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
8498 (tramp-smb-get-stat-capability): Fix tests.
8499
85002013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
8501
8502 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
8503 (bug#15580).
8504
85052013-10-16 Glenn Morris <rgm@gnu.org>
8506
8507 * ansi-color.el (ansi-color-drop-regexp):
8508 Add 1J, 1K, 2K. (Bug#15617)
8509
8510 * files.el (hack-local-variables--warned-lexical): New.
8511 (hack-local-variables):
8512 Warn about misplaced lexical-binding. (Bug#15616)
8513
8514 * net/eww.el (eww-render): Always set eww-current-url,
8515 and update header line. (Bug#15622)
8516 (eww-display-html): ... Rather than just doing it here.
8517
85182013-10-15 Eli Zaretskii <eliz@gnu.org>
8519
8520 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
8521 menu navigations commands.
8522
85232013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
8524
8525 * progmodes/subword.el (subword-capitalize): Be careful when
8526 the search for [[:alpha:]] fails (bug#15580).
8527
85282013-10-14 Eli Zaretskii <eliz@gnu.org>
8529
8530 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
8531 to commands that scroll the menu.
8532
85332013-10-14 Dmitry Gutov <dgutov@yandex.ru>
8534
8535 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
8536 Handle methods ending with `?' and `!'.
8537
85382013-10-14 Akinori MUSHA <knu@iDaemons.org>
8539
8540 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
8541 `japanese-cp932' to `cp932' to fix the problem where saving a
8542 source file written in Shift_JIS twice would end up having
8543 `coding: japanese-cp932' which Ruby could not recognize.
8544 (ruby-mode-set-encoding): Add support for encodings mapped to nil
8545 in `ruby-encoding-map'.
8546 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
8547 doesn't need to be explicitly declared in magic comment.
8548 (ruby-encoding-map): Add type declaration for better customize UI.
8549
85502013-10-13 Glenn Morris <rgm@gnu.org>
8551
8552 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
8553 Occur buffers are read-only. http://bugs.debian.org/720775
8554
8555 * emacs-lisp/authors.el (authors-fixed-entries):
8556 Comment out old alpha stuff.
8557
85582013-10-13 Dmitry Gutov <dgutov@yandex.ru>
8559
8560 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
8561 to `after-save-hook' instead of `before-save-hook'.
8562 (ruby-mode-set-encoding): Use the value of coding system used to
8563 write the file. Call `basic-save-buffer-1' after modifying the
8564 buffer.
8565
85662013-10-13 Alan Mackenzie <acm@muc.de>
8567
8568 Fix indentation/fontification of Java enum with
8569 "implements"/generic.
8570
8571 * progmodes/cc-engine.el (c-backward-over-enum-header):
8572 Extracted from the three other places and enhanced to handle generics.
8573 (c-inside-bracelist-p): Uses new function above.
8574 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
8575 function above.
8576 (c-font-lock-enum-tail): Uses new function above.
8577
85782013-10-13 Kenichi Handa <handa@gnu.org>
8579
8580 * international/mule-cmds.el (select-safe-coding-system): Remove a
8581 superfluous condition in chekcing whether a coding system is safe
8582 or not.
8583
85842013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
8585
8586 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
8587
85882013-10-13 Andreas Politz <politza@hochschule-trier.de>
8589
8590 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
8591
85922013-10-13 Glenn Morris <rgm@gnu.org>
8593
8594 * menu-bar.el (menu-bar-update-buffers):
8595 Unify Buffers menu prompt string. (Bug#15576)
8596
8597 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
8598
8599 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
8600 Add some entries.
8601 (authors-fixed-entries): Use accented form of name.
8602
86032013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8604
8605 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
8606 method calls (bug#15594).
8607 (ruby-smie--args-separator-p): New function.
8608 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
8609 recognize paren-free method calls.
8610
8611 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
8612 internals of universal-argument.
8613
86142013-10-11 Eli Zaretskii <eliz@gnu.org>
8615
8616 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
8617 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
8618 dropped menu on second mouse click on the menu bar.
8619
86202013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8621
8622 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
8623 (explicit-shell-file-name): Declare.
8624 (sh--vars-before-point, sh--cmd-completion-table): New functions.
8625 (sh-completion-at-point-function): New function.
8626 (sh-mode): Use it.
8627 (sh-smie--keyword-p): Remove unused argument.
8628 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
8629 vars.
8630 (sh-set-shell): Always setup SMIE, even if we use the
8631 old indentation code.
8632
86332013-10-11 Dmitry Gutov <dgutov@yandex.ru>
8634
8635 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
8636 cases of ? and =.
8637 (ruby-smie-rules): Simplify the "do" rule. The cases when the
8638 predicate would return nil are almost non-existent.
8639 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
8640
8641 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
8642 cache also after commands that modify the buffer but don't move
8643 point.
8644
86452013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8646
8647 * env.el (substitute-env-in-file-name): New function.
8648 (substitute-env-vars): Extend the meaning of the optional arg.
8649
86502013-10-10 Eli Zaretskii <eliz@gnu.org>
8651
8652 * term/w32-win.el (dynamic-library-alist): Define separate lists
8653 of GIF DLLs for versions before and after 5.0.0 of giflib.
8654 (Bug#15531)
8655
86562013-10-10 João Távora <joaotavora@gmail.com>
8657
8658 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
8659 not locked, use last revision and current source as
8660 defaults. (Bug#15569)
8661
86622013-10-10 Masatake YAMATO <yamato@redhat.com>
8663
8664 * menu-bar.el (menu-bar-open): Don't use popup-menu if
8665 menu-bar is hidden.
8666
86672013-10-10 Martin Rudalics <rudalics@gmx.at>
8668
8669 * window.el (pop-to-buffer-same-window): Fix doc-string.
8670 (Bug#15492)
8671
86722013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8673
8674 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
8675
86762013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
8677
8678 * calendar/icalendar.el (icalendar-import-file):
8679 Fix interactive spec. (Bug#15482)
8680
86812013-10-10 Glenn Morris <rgm@gnu.org>
8682
8683 * desktop.el (desktop-save): Default to saving in .emacs.d,
8684 since PWD is no longer in desktop-path by default. (Bug#15319)
8685
8686 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
8687 now that text mode has a menu with the same entry.
8688 (menu-bar-text-mode-auto-fill): Remove now unused func.
8689 * textmodes/text-mode.el (text-mode-map):
8690 Use auto-fill help text from menu-bar.el.
8691
86922013-10-10 John Anthony <john@jo.hnanthony.com>
8693
8694 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
8695
86962013-10-09 Juri Linkov <juri@jurta.org>
8697
8698 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
8699 instead of this-command-keys. Add universal-argument-more and
8700 universal-argument-minus to the list of prefix commands. (Bug#15568)
8701
87022013-10-09 Glenn Morris <rgm@gnu.org>
8703
8704 * vc/vc-svn.el (vc-svn-create-repo):
8705 Expand paths in file://... url. (Bug#15446)
8706
8707 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
8708 Add some entries.
8709 (authors): Remove unused local variables.
8710
87112013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8712
8713 * profiler.el: Create a more coherent calltree from partial backtraces.
8714 (profiler-format): Hide the tail with `invisible' so that C-s can still
8715 find the hidden elements.
8716 (profiler-calltree-depth): Don't recurse so enthusiastically.
8717 (profiler-function-equal): New hash-table-test.
8718 (profiler-calltree-build-unified): New function.
8719 (profiler-calltree-build): Use it.
8720 (profiler-report-make-name-part): Indent the calltree less.
8721 (profiler-report-mode): Add visibility specs for profiler-format.
8722 (profiler-report-expand-entry, profiler-report-toggle-entry):
8723 Expand the whole subtree when provided with a prefix arg.
8724
87252013-10-09 Dmitry Gutov <dgutov@yandex.ru>
8726
8727 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
8728 iuwu-mod token.
8729 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
8730 hanging iuwu-mod token.
8731 (ruby-smie--forward-token): Do not include a dot after a token in
8732 that token.
8733 (ruby-smie--backward-token): Likewise.
8734
87352013-10-08 Juri Linkov <juri@jurta.org>
8736
8737 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
8738 to isearch-other-control-char.
8739 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
8740 and isearch-post-command-hook to post-command-hook.
8741 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
8742 and isearch-post-command-hook from post-command-hook.
8743 (isearch-unread-key-sequence)
8744 (isearch-reread-key-sequence-naturally)
8745 (isearch-lookup-scroll-key, isearch-other-control-char)
8746 (isearch-other-meta-char): Remove functions.
8747 (isearch-pre-command-hook, isearch-post-command-hook):
8748 New functions based on isearch-other-meta-char rewritten
8749 relying on the new behavior of overriding-terminal-local-map
8750 that does not replace the local keymaps any more. (Bug#15200)
8751
87522013-10-08 Eli Zaretskii <eliz@gnu.org>
8753
8754 Support menus on text-mode terminals.
8755 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
8756 functionality.
8757
8758 * tooltip.el (tooltip-mode): Don't error out on TTYs.
8759
8760 * menu-bar.el (popup-menu, popup-menu-normalize-position):
8761 Move here from mouse.el.
8762 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
8763 and arrow keys.
8764 (tty-menu-navigation-map): New map for TTY menu navigation.
8765
8766 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
8767
8768 * frame.el (display-mouse-p): Report text-mode mouse as available
8769 on w32.
8770 (display-popup-menus-p): Report availability if mouse is
8771 available; don't condition on window-system.
8772
8773 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
8774 (tty-menu-selected-face): New faces.
8775
87762013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8777
8778 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
8779 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
8780 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
8781 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
8782 New constants.
8783 (lisp-mode-variables): New `elisp' argument.
8784 (emacs-lisp-mode): Use it.
8785 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
8786 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
8787
8788 * indent.el: Use lexical-binding.
8789 (indent-region): Add progress reporter.
8790 (tab-stop-list): Make it implicitly extend to infinity by repeating the
8791 last step.
8792 (indent--next-tab-stop): New function to implement this behavior.
8793 (tab-to-tab-stop, move-to-tab-stop): Use it.
8794
87952013-10-08 Teemu Likonen <tlikonen@iki.fi>
8796
8797 * indent.el (indent-rigidly--current-indentation): New function.
8798 (indent-rigidly-map): New var.
8799 (indent-rigidly): Use it to provide interactive mode (bug#8196).
8800
88012013-10-08 Bastien Guerry <bzg@gnu.org>
8802
8803 * register.el (insert-register): Fix 2013-10-07 change.
8804
88052013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8806
8807 * progmodes/perl-mode.el: Use lexical-binding.
8808 Remove redundant :group args.
8809 (perl-nochange): Change default to be closer to other major modes's
8810 standard behavior.
8811 (perl-indent-line): Don't consider text on current line as a
8812 valid beginning of function from which to indent.
8813
8814 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
8815 with more than one argument (bug#15538).
8816
8817 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
8818
8819 * vc/pcvs.el: Use lexical-binding.
8820 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
8821 environment of `eval'.
8822 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
8823 than a list of expressions. Adjust callers.
8824 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
8825
88262013-10-07 Dmitry Gutov <dgutov@yandex.ru>
8827
8828 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
8829 case of the dot in a chained method call being on the following line.
8830
88312013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8832
8833 * electric.el (electric-indent-inhibit): New var.
8834 (electric-indent-post-self-insert-function): Use it.
8835 * progmodes/python.el (python-mode): Set it.
8836
8837 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
8838 open braces.
8839
8840 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
8841
8842 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
8843 (css-mode): Use electric-indent-chars.
8844
8845 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
8846 (font-lock-beg, font-lock-end): Move before first use.
8847 (nxml-mode): Use syntax-propertize-function.
8848 (nxml-after-change, nxml-after-change1): Adjust accordingly.
8849 (nxml-extend-after-change-region): Remove.
8850 * nxml/xmltok.el: Use lexical-binding.
8851 (xmltok-save): Use `declare'.
8852 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
8853 * nxml/nxml-util.el: Use lexical-binding.
8854 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
8855 Use `declare'.
8856 * nxml/nxml-ns.el: Use lexical-binding.
8857 (nxml-ns-save): Use `declare'.
8858 (nxml-ns-prefixes-for): Avoid add-to-list.
8859 * nxml/rng-match.el: Use lexical-binding.
8860 (rng--ipattern): Use cl-defstruct.
8861 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
8862 (rng-cons-group-after, rng-subst-group-after)
8863 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
8864 Use closures instead of `(lambda...).
8865
88662013-10-07 Michael Albinus <michael.albinus@gmx.de>
8867
8868 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
8869 of BEG and END.
8870
8871 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8872 Use `tramp-handle-insert-file-contents'.
8873 (tramp-gvfs-handle-insert-file-contents): Remove function.
8874
8875 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8876 Use `save-restriction' in order to keep markers.
8877
8878 * net/trampver.el: Update release number.
8879
88802013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8881
8882 * progmodes/compile.el (compilation-parse-errors):
8883 Use compilation--put-prop.
8884 (compilation--ensure-parse): Check compilation-multiline.
8885
8886 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8887
8888 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8889 lexical-binding.
8890
8891 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8892
8893 * progmodes/ruby-mode.el: Fix recently added tests.
8894 (ruby-smie-grammar): Add - and +.
8895 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8896 (ruby-smie--backward-id): New functions.
8897 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8898 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8899 any more.
8900
89012013-10-07 Leo Liu <sdl.web@gmail.com>
8902
8903 * register.el (register-preview-delay)
8904 (register-preview-functions): New variables.
8905 (register-read-with-preview, register-preview)
8906 (register-describe-oneline): New functions.
8907 (point-to-register, window-configuration-to-register)
8908 (frame-configuration-to-register, jump-to-register)
8909 (number-to-register, view-register, insert-register)
8910 (copy-to-register, append-to-register, prepend-to-register)
8911 (copy-rectangle-to-register): Use register-read-with-preview to
8912 read register. (Bug#15525)
8913
89142013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8915
8916 * net/network-stream.el (network-stream-open-starttls): Don't add
8917 --insecure if it's already present, because that gnutls-cli
8918 rejects getting that parameter twice.
8919
89202013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8921
8922 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8923 keyword, too.
8924
89252013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8926
8927 * newcomment.el (comment-use-global-state): Change default value
8928 to t, mark obsolete (Bug#15251).
8929 (comment-beginning): In addition to `comment-to-syntax', check the
8930 value of `comment-use-global-state'.
8931
89322013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8935 (ruby-comment-column): Follow the global default, by default.
8936 (ruby-smie-grammar): Add assignment syntax.
8937 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8938 open-paren, a comma, or a \.
8939 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8940 and line continuations.
8941 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8942 followed by implicit semi-colons. Add rule for string concatenation
8943 and for indentation at BOB.
8944 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8945
8946 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8947 calling next-sexp, since next-token may have skipped chars which
8948 next-sexp doesn't know should be skipped!
8949
89502013-10-05 Leo Liu <sdl.web@gmail.com>
8951
8952 * progmodes/octave.el (octave-send-region):
8953 Call compilation-forget-errors.
8954
89552013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8956
8957 * vc/vc-svn.el (vc-svn-find-admin-dir):
8958 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8959 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8960 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8961 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8962
89632013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8964
8965 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8966
89672013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8968
8969 * subr.el (read-passwd): Hide chars even when called within a context
8970 where after-change-functions is disabled (bug#15501).
8971 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8972 until we removed ourself from overriding-terminal-local-map.
8973
89742013-10-04 Leo Liu <sdl.web@gmail.com>
8975
8976 * progmodes/octave.el (inferior-octave-mode):
8977 Call compilation-forget-errors.
8978
89792013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8980
8981 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8982
89832013-10-04 Michael Albinus <michael.albinus@gmx.de>
8984
8985 * net/secrets.el (secrets-create-collection): Add optional
8986 argument ALIAS. Use proper Label keyword. Append ALIAS as
8987 dbus-call-method argument. (Bug#15516)
8988
89892013-10-04 Leo Liu <sdl.web@gmail.com>
8990
8991 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8992 (inferior-octave-compilation-font-lock-keywords): New variables.
8993 (compilation-error-regexp-alist)
8994 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8995 (inferior-octave-mode): Use compilation-shell-minor-mode.
8996
89972013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8998
8999 * minibuffer.el (completion--replace): Be careful that `end' might be
9000 a marker.
9001
90022013-10-03 Daiki Ueno <ueno@gnu.org>
9003
9004 Add support for package signature checking.
9005 * emacs-lisp/package.el (url-http-file-exists-p)
9006 (epg-make-context, epg-context-set-home-directory)
9007 (epg-verify-string, epg-context-result-for)
9008 (epg-signature-status, epg-signature-to-string)
9009 (epg-check-configuration, epg-configuration)
9010 (epg-import-keys-from-file): Declare.
9011 (package-check-signature): New user option.
9012 (package-unsigned-archives): New user option.
9013 (package-desc): Add `signed' field.
9014 (package-load-descriptor): Set `signed' field if .signed file exists.
9015 (package--archive-file-exists-p): New function.
9016 (package--check-signature): New function.
9017 (package-install-from-archive): Check package signature.
9018 (package--download-one-archive): Check archive signature.
9019 (package-delete): Remove .signed file.
9020 (package-import-keyring): New command.
9021 (package-refresh-contents): Import default keyring.
9022 (package-desc-status): Add "unsigned" status.
9023 (describe-package-1, package-menu--print-info)
9024 (package-menu-mark-delete, package-menu--find-upgrades)
9025 (package-menu--status-predicate): Support "unsigned" status.
9026
90272013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9028
9029 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
9030 the new compilation scheme using the new byte-codes.
9031
9032 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
9033 (byte-pophandler): New byte codes.
9034 (byte-goto-ops): Adjust accordingly.
9035 (byte-compile--use-old-handlers): New var.
9036 (byte-compile-catch): Use new byte codes depending on
9037 byte-compile--use-old-handlers.
9038 (byte-compile-condition-case--old): Rename from
9039 byte-compile-condition-case.
9040 (byte-compile-condition-case--new): New function.
9041 (byte-compile-condition-case): New function that dispatches depending
9042 on byte-compile--use-old-handlers.
9043 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
9044 when we can.
9045
9046 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
9047 Optimize under `condition-case' and `catch' if
9048 byte-compile--use-old-handlers is nil.
9049 (disassemble-offset): Handle new bytecodes.
9050
90512013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9052
9053 * subr.el (error): Use `declare'.
9054 (decode-char, encode-char): Use advertised-calling-convention instead
9055 of the docstring to discourage use of the `restriction' arg.
9056
90572013-10-03 Daiki Ueno <ueno@gnu.org>
9058
9059 * epg.el (epg-verify-file): Add a comment saying that it does not
9060 notify verification error as a return value nor a signal.
9061 (epg-verify-string): Ditto.
9062
90632013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
9064
9065 * progmodes/compile.el (compilation-start): Try globbing the arg to
9066 `cd' (bug#15417).
9067
90682013-10-02 Michael Albinus <michael.albinus@gmx.de>
9069
9070 Sync with Tramp 2.2.8.
9071
9072 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
9073 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
9074 * net/trampver.el: Update release number.
9075
90762013-10-01 Jan Djärv <jan.h.d@swipnet.se>
9077
9078 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
9079 and default-process-coding-system for darwin only.
9080
90812013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
9082
9083 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
9084
90852013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
9086
9087 * vc/vc-git.el (vc-git-grep): Disable pager.
9088
90892013-10-01 Dmitry Gutov <dgutov@yandex.ru>
9090
9091 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
9092 Use :url instead of :homepage, as per
9093 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
9094
9095 * newcomment.el (comment-beginning): When `comment-use-syntax' is
9096 non-nil, use `syntax-ppss' (Bug#15251).
9097
90982013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9099
9100 * progmodes/octave.el (inferior-octave-startup-file):
9101 Prefer ~/.emacs.d/init_octave.m.
9102
91032013-09-29 Dmitry Gutov <dgutov@yandex.ru>
9104
9105 * emacs-lisp/package.el (package-desc-from-define):
9106 Accept additional arguments as plist, convert them to an alist and store
9107 them in the `extras' slot.
9108 (package-generate-description-file): Convert extras alist back to
9109 plist and append to the `define-package' form arguments.
9110 (package--alist-to-plist): New function.
9111 (package--ac-desc): Add `extras' slot.
9112 (package--add-to-archive-contents): Check if the archive-contents
9113 vector is long enough, and if it is, pass its `extras' slot value
9114 to `package-desc-create'.
9115 (package-buffer-info): Call `lm-homepage', pass the returned value
9116 to `package-desc-from-define'.
9117 (describe-package-1): Render the homepage button (Bug#13291).
9118
9119 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9120 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
9121
91222013-09-29 Jan Djärv <jan.h.d@swipnet.se>
9123
9124 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
9125 and default-process-coding-system to utf-8-unix (Bug#15402).
9126
91272013-09-29 Xue Fuqiao <xfq.free@gmail.com>
9128
9129 * subr.el (looking-back): Do not recommend using looking-back.
9130
91312013-09-28 Alan Mackenzie <acm@muc.de>
9132
9133 Fix indentation/fontification of Java enum with "implements".
9134
9135 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
9136 regexp which matches "implements", etc., in Java.
9137 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
9138 specifier clauses coming after "enum".
9139 * progmodes/cc-fonts.el (c-font-lock-declarations)
9140 (c-font-lock-enum-tail): Check for extra specifier clauses coming
9141 after "enum".
9142
91432013-09-28 Jan Djärv <jan.h.d@swipnet.se>
9144
9145 * faces.el (region): Change ns_selection_color to
9146 ns_selection_fg_color, add ns_selection_bg_color.
9147
91482013-09-28 Leo Liu <sdl.web@gmail.com>
9149
9150 * progmodes/octave.el (inferior-octave-completion-table)
9151 (inferior-octave-completion-at-point): Minor tweaks.
9152
9153 * textmodes/ispell.el (ispell-lookup-words): Rename from
9154 lookup-words. (Bug#15460)
9155 (lookup-words): Obsolete.
9156 (ispell-complete-word, ispell-command-loop): All uses changed.
9157
91582013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9159
9160 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
9161 (octave-mode-menu): Add octave-send-buffer.
9162 (octave-send-buffer): New function.
9163
91642013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9165
9166 * progmodes/octave.el (octave-mode-map): Add key binding for
9167 octave-lookfor.
9168 (octave-mode-menu): Add octave-lookfor.
9169 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
9170 octave-lookfor.
9171 (octave-lookfor): New function.
9172
91732013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9174
9175 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
9176 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
9177 its convention.
9178 (cl--loop-set-iterator-function): New function.
9179 (cl-loop): Adjust accordingly, so as not to use cl-subst.
9180 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
9181 Bind `it' with `let' instead of substituting it with `cl-subst'.
9182 (cl--unused-var-p): New function.
9183 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
9184 Eliminate some unused variable warnings (bug#15326).
9185
91862013-09-27 Tassilo Horn <tsdh@gnu.org>
9187
9188 * doc-view.el (doc-view-scale-reset): Rename from
9189 `doc-view-reset-zoom-level'.
9190 (doc-view-scale-adjust): New command.
9191 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
9192 `doc-view-scale-adjust'.
9193
91942013-09-26 Tassilo Horn <tsdh@gnu.org>
9195
9196 * doc-view.el (doc-view-reset-zoom-level): New command.
9197 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
9198 zoom commands (bug#15466).
9199
92002013-09-26 Kenichi Handa <handa@gnu.org>
9201
9202 * international/quail.el (quail-help): Make it not a command.
9203
92042013-09-26 Leo Liu <sdl.web@gmail.com>
9205
9206 * minibuffer.el (completion-all-sorted-completions): Make args
9207 optional as they are.
9208
92092013-09-25 Daniel Colascione <dancol@dancol.org>
9210
9211 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
9212 specs are and that they're not evaluated.
9213
92142013-09-24 Sam Steingold <sds@gnu.org>
9215
9216 * midnight.el (clean-buffer-list-kill-regexps)
9217 (clean-buffer-list-kill-buffer-names): Update for the new Man
9218 buffer naming which includes the object name.
9219
92202013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9221
9222 * eshell/esh-cmd.el (eshell--sep-terms): New var.
9223 (eshell-parse-command, eshell-parse-pipeline): Use it since
9224 eshell-separate-commands requires a dynamic scoped var.
9225 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
9226
92272013-09-23 Leo Liu <sdl.web@gmail.com>
9228
9229 * autoinsert.el (auto-insert-alist): Make the value of
9230 lexical-binding match its file setting.
9231
92322013-09-23 Juanma Barranquero <lekktu@gmail.com>
9233
9234 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
9235
9236 * autoarg.el (autoarg-kp-digit-argument):
9237 * electric.el (Electric-command-loop):
9238 * kmacro.el (kmacro-step-edit-insert):
9239 Do not set universal-argument-num-events.
9240
92412013-09-22 Leo Liu <sdl.web@gmail.com>
9242
9243 * files.el (interpreter-mode-alist): Add octave.
9244
92452013-09-21 Alan Mackenzie <acm@muc.de>
9246
9247 C++: fontify identifier in declaration following "public:" correctly.
9248 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
9249 to match "public", etc.
9250 (c-decl-prefix-re): Add ":" into the C++ value.
9251 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
9252 bit. Add a check for a ":" preceded by "public", etc.
9253
92542013-09-21 Eli Zaretskii <eliz@gnu.org>
9255
9256 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
9257 recognized by GDB 7.5 and later.
9258
92592013-09-21 Xue Fuqiao <xfq.free@gmail.com>
9260
9261 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
9262
92632013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9264
9265 * subr.el (internal--call-interactively): New const.
9266 (called-interactively-p): Use it (bug#3984).
9267
92682013-09-20 Xue Fuqiao <xfq.free@gmail.com>
9269
9270 * vc/pcvs.el (cvs-mode-ignore):
9271 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
9272 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
9273
92742013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9275
9276 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
9277 (eshell-ls-orig-insert-directory): Remove.
9278 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
9279 (eshell-ls-use-in-dired): Use advice-add/remove.
9280 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
9281 Add `orig-fun' arg for use in :around advice.
9282 Make it check (redundantly) eshell-ls-use-in-dired.
9283
92842013-09-19 Glenn Morris <rgm@gnu.org>
9285
9286 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
9287
9288 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
9289
9290 * emacs-lisp/eieio.el (class-parent): Undo previous change.
9291
92922013-09-19 Michael Albinus <michael.albinus@gmx.de>
9293
9294 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
9295 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
9296 (tramp-get-remote-python): New defuns.
9297 (tramp-get-remote-uid-with-perl)
9298 (tramp-get-remote-gid-with-perl): New defuns. Perl code
9299 contributed by yary <not.com@gmail.com> (tiny change).
9300 (tramp-get-remote-uid-with-python)
9301 (tramp-get-remote-gid-with-python): New defuns. Python code
9302 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
9303 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
9304
93052013-09-19 Glenn Morris <rgm@gnu.org>
9306
9307 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
9308
9309 * eshell/em-unix.el (eshell-remove-entries):
9310 Rename argument to avoid name-clash with global `top-level'.
9311
9312 * eshell/esh-proc.el (eshell-kill-process-function):
9313 Remove eshell-reset-after-proc from eshell-kill-hook if present.
9314 (eshell-reset-after-proc): Remove unused arg `proc'.
9315
9316 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
9317 (directory-files-and-attributes): Mark unused arg.
9318
9319 * eshell/em-unix.el (eshell-remove-entries):
9320 Remove unused arg `path'. Update callers.
9321
9322 * eshell/em-hist.el (eshell-hist-parse-arguments):
9323 Remove unused arg `silent'. Update callers.
9324
9325 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
9326 Fix (f)boundp mix-up.
9327
9328 * eshell/em-smart.el (eshell-smart-scroll-window)
9329 (eshell-disable-after-change):
9330 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
9331
93322013-09-18 Alan Mackenzie <acm@muc.de>
9333
9334 Fix fontification of type when followed by "const".
9335 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
9336 "known" types from fontification.
9337
93382013-09-18 Glenn Morris <rgm@gnu.org>
9339
9340 * emacs-lisp/chart.el (x-display-color-cells): Declare.
9341 (chart-face-list): Drop Emacsen without display-color-p.
9342
9343 * net/eww.el (libxml-parse-html-region): Declare.
9344 (eww-display-html): Explicit error if no libxml2 support.
9345
9346 * doc-view.el (doc-view-mode): Silence --without-x compilation.
9347
9348 * image.el (image-type-from-buffer, image-multi-frame-p):
9349 Remove --without-x warning/error.
9350
9351 * mouse.el (mouse-yank-primary):
9352 * term.el (term-mouse-paste):
9353 Reorder to silence --without-x compilation.
9354
9355 * mpc.el (doc-view-mode): Silence --without-x compilation.
9356
9357 * mail/rmailmm.el (rmail-mime-set-bulk-data):
9358 Silence --without-x compilation.
9359
9360 * progmodes/gud.el (gud-find-file, gud-mode):
9361 Silence --without-x compilation.
9362 (tooltip-mode): Declare.
9363
9364 * wdired.el (dired-backup-overwrite): Remove declaration.
9365 (wdired-mode-map): Add doc string.
9366
9367 * custom.el (x-get-resource): Declare.
9368
9369 * eshell/em-glob.el (ange-cache):
9370 * eshell/em-unix.el (ange-cache): Declare.
9371
9372 * faces.el (x-display-list, x-open-connection, x-get-resource):
9373 Declare.
9374
9375 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
9376 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
9377 Declare.
9378
9379 * frame.el (x-display-grayscale-p, x-display-name): Declare.
9380
9381 * net/gnutls.el (gnutls-log-level): Declare.
9382
9383 * net/shr.el (image-size, image-animate): Declare.
9384
9385 * simple.el (font-info): Declare.
9386
9387 * subr.el (x-popup-dialog): Declare.
9388
9389 * term/common-win.el (x-select-enable-primary)
9390 (x-last-selected-text-primary, x-last-selected-text-clipboard):
9391 Declare.
9392
9393 * term/ns-win.el (x-handle-args): Declare.
9394
9395 * term/x-win.el (x-select-enable-clipboard): Declare.
9396
9397 * term/w32-win.el (create-default-fontset): Declare.
9398
9399 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
9400 Declare.
9401
9402 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
9403 (fit-frame-to-buffer): Explicit error if --without-x.
9404 (mouse-autoselect-window-select): Silence compiler.
9405
9406 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
9407
9408 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
9409 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
9410 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
9411 * eshell/esh-util.el (eshell-sublist):
9412 Remove unused local variables.
9413
9414 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
9415
9416 * textmodes/two-column.el: Make 2C-split work for --without-x.
9417 (scroll-bar-columns): Autoload.
9418 (top-level): Require fringe when compiling.
9419
94202013-09-18 Leo Liu <sdl.web@gmail.com>
9421
9422 * subr.el (add-hook): Robustify to handle closure as well.
9423
94242013-09-17 Glenn Morris <rgm@gnu.org>
9425
9426 * simple.el (messages-buffer-mode-map): Unbind "g".
9427
94282013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9429
9430 * help-mode.el (help-mode-finish): Use derived-mode-p.
9431 Remove obsolete highlighting.
9432
9433 * play/life.el (life-mode): Use define-derived-mode. Derive from
9434 special-mode.
9435 (life): Let-bind inhibit-read-only.
9436 (life-setup): Avoid `setq'. Use `life-mode'.
9437
9438 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
9439 which should not be needed any more.
9440 (package-menu-refresh, package-menu-describe-package): Use user-error.
9441
9442 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
9443 (eshell-post-rewrite-command-hook): Make obsolete.
9444 (eshell-parse-command): Simplify.
9445 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
9446 (eshell--cmd): Declare.
9447 (eshell-parse-pipeline): Remove unused var `final-p'.
9448 Pass a dynvar to eshell-post-rewrite-command-hook.
9449 Implement the new eshell-post-rewrite-command-function.
9450 (eshell-invoke-directly): Remove unused arg `input'.
9451 * eshell/esh-io.el (eshell-io-initialize):
9452 Use eshell-post-rewrite-command-function (bug#15399).
9453 (eshell--apply-redirections): Rename from eshell-apply-redirections;
9454 adjust to new calling convention.
9455 (eshell-create-handles): Rename args to avoid clashing with dynvar
9456 `standard-output'.
9457
94582013-09-17 Glenn Morris <rgm@gnu.org>
9459
9460 * simple.el (messages-buffer-mode): New major mode.
9461 (messages-buffer): New function.
9462 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
9463 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
9464 (ert-run-test): Use `messages-buffer' function.
9465 (ert--force-message-log-buffer-truncation): Ignore read-only.
9466 * help.el (view-echo-area-messages): Use `messages-buffer' function.
9467 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
9468
94692013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9470
9471 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
9472
9473 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
9474
94752013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9476
9477 * icomplete.el (icomplete-in-buffer): New var.
9478 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
9479 vars and replace them with functions.
9480 (icomplete-minibuffer-setup): Adjust accordingly.
9481 (icomplete--completion-table, icomplete--completion-predicate)
9482 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
9483 New functions.
9484 (icomplete-forward-completions, icomplete-backward-completions)
9485 (icomplete-simple-completing-p, icomplete-exhibit)
9486 (icomplete-completions): Use them.
9487 (icomplete--in-region-buffer): New var.
9488 (icomplete--in-region-setup): New function.
9489 (icomplete-mode): Use it.
9490
9491 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
9492 (bug#15379).
9493 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
9494 return args and options.
9495 (eshell-eval-using-options): Use the new return value of
9496 eshell--do-opts to set the options's vars in their scope.
9497 (eshell--set-option): Rename from eshell-set-option.
9498 Add arg `opt-vals'.
9499 (eshell--process-option): Rename from eshell-process-option.
9500 Add arg `opt-vals'.
9501 (eshell--process-args): Use an `opt-vals' alist to store the options's
9502 values during their processing and return them additionally to the
9503 remaining args.
9504
95052013-09-15 Dmitry Gutov <dgutov@yandex.ru>
9506
9507 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
9508 continuation character an operator, as far as indentation is
9509 concerned (Bug#15369).
9510
95112013-09-15 Martin Rudalics <rudalics@gmx.at>
9512
9513 * window.el (window--state-put-2): Don't process buffer state
9514 when buffer doesn't exist any more (Bug#15382).
9515
95162013-09-15 Glenn Morris <rgm@gnu.org>
9517
9518 * eshell/em-unix.el (eshell/rm):
9519 Make -f ignore missing files. (Bug#15373)
9520
9521 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
9522 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
9523 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
9524
95252013-09-14 Glenn Morris <rgm@gnu.org>
9526
9527 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
9528
95292013-09-13 Glenn Morris <rgm@gnu.org>
9530
9531 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
9532 (dired-guess-default): Make `file' available in the env. (Bug#15363)
9533
95342013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
9535
9536 * frame.el (x-focus-frame): Mark as declared in frame.c.
9537
95382013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9539
9540 * ls-lisp.el: Use advice-add.
9541 (original-insert-directory): Remove.
9542 (ls-lisp--insert-directory): Rename from insert-directory; add
9543 `orig-fun' argument.
9544 (insert-directory): Advise.
9545
95462013-09-13 Eli Zaretskii <eliz@gnu.org>
9547
9548 * term.el (term-emulate-terminal): Decode the command string
9549 before passing it to term-command-hook. (Bug#15337)
9550
95512013-09-13 Glenn Morris <rgm@gnu.org>
9552
9553 * eshell/esh-util.el (ange-cache): Move declaration earlier.
9554
9555 * eshell/esh-ext.el (eshell-search-path): Declare.
9556
9557 * eshell/em-prompt.el (eshell/pwd): Autoload it.
9558 Otherwise an error occurs if eshell-dirs module not loaded.
9559
9560 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
9561
95622013-09-13 Michael Albinus <michael.albinus@gmx.de>
9563
9564 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
9565 `tramp-check-proper-host'. Check for a valid method name.
9566
9567 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9568 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9569 * net/tramp-sh.el (tramp-maybe-open-connection):
9570 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
9571
9572 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
9573 also for hash values.
9574
95752013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9576
9577 * term/ns-win.el (parameters): Don't declare as dynamic.
9578 (before-make-frame-hook): Don't add ineffective function.
9579
9580 * eshell/*.el: Use lexical-binding (bug#15231).
9581
95822013-09-12 Kenichi Handa <handa@gnu.org>
9583
9584 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
9585
95862013-09-12 Glenn Morris <rgm@gnu.org>
9587
9588 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
9589 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
9590
9591 * subr.el (do-after-load-evaluation): Also give compiler warnings
9592 when obsolete files are used (except by obsolete files).
9593
9594 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
9595 in the status output, assume `filename' is the first. (Bug#15322)
9596
9597 * vc/vc.el (vc-deduce-fileset): Doc fix.
9598
9599 * calc/calc-help.el (Info-goto-node):
9600 * progmodes/cperl-mode.el (Info-find-node):
9601 * vc/ediff.el (Info-goto-node): Update declarations.
9602
9603 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
9604
9605 * vc/vc-bzr.el (vc-compilation-mode): Declare.
9606 (vc-bzr-pull): Require vc-dispatcher.
9607 * vc/vc-git.el (vc-compilation-mode): Declare.
9608 (vc-git-pull): Require vc-dispatcher.
9609
9610 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
9611
9612 * progmodes/octave.el (help-button-action): Declare.
9613
9614 * shell.el (shell-directory-tracker): Output error as a message
9615 rather than just returning it as a string.
9616 (shell-process-pushd): Remove useless use of message.
9617
9618 * dframe.el (dframe-timer-fn):
9619 * files.el (dir-locals-read-from-file):
9620 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
9621 (mpc-format):
9622 * reveal.el (reveal-post-command):
9623 * saveplace.el (load-save-place-alist-from-file):
9624 * shell.el (shell-resync-dirs):
9625 * w32-common-fns.el (x-get-selection-value):
9626 * emacs-lisp/copyright.el (copyright-find-copyright):
9627 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9628 * emulation/tpu-edt.el (tpu-copy-keyfile):
9629 * play/bubbles.el (bubbles--mark-neighbourhood):
9630 * progmodes/executable.el
9631 (executable-make-buffer-file-executable-if-script-p):
9632 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
9633
96342013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9635
9636 Cleanup Eshell to rely less on dynamic scoping.
9637 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
9638 last-value, and ext-command here. Bind `args' closer to `body'.
9639 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
9640 (eshell--args): Declare new dynamic var.
9641 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
9642 last-value, and ext-command. Pass `args' to `body'.
9643 (eshell-process-args): Bind eshell--args.
9644 (eshell-set-option): Use eshell--args.
9645 * eshell/eshell.el (eshell): Use derived-mode-p.
9646 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
9647 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
9648 (eshell-glob-function): Declare.
9649 * eshell/esh-util.el: Require cl-lib.
9650 (eshell-read-hosts-file): Avoid add-to-list.
9651 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
9652 `err'.
9653 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
9654 Declare.
9655 (eshell/diff): Remove unused var `err'.
9656 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
9657 `killflag'.
9658 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
9659 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
9660 first use.
9661 * eshell/em-glob.el (eshell-glob-matches, message-shown):
9662 Move declaration before first use.
9663 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
9664 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
9665 rely on cl-return.
9666
96672013-09-12 Glenn Morris <rgm@gnu.org>
9668
9669 * term/ns-win.el (global-map): Remove binding for ispell-next,
9670 deleted 1999-05-29. (Bug#15357)
9671
96722013-09-11 Glenn Morris <rgm@gnu.org>
9673
9674 * echistory.el (electric-command-history): Remove call to deleted func.
9675
9676 * play/landmark.el (landmark-mode): Fix typos.
9677
9678 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
9679 Check cvs-sort-ignore-file is bound.
9680
9681 * savehist.el: No need for cl when compiling on Emacs.
9682
96832013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9684
9685 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
9686 (bug#15338).
9687 (eshell-self-insert-command, eshell-send-invisible):
9688 Remove unused argument.
9689 (eshell-handle-control-codes): Remove unused var `orig'.
9690 Avoid delete-backward-char.
9691
9692 * files.el (set-auto-mode): Simplify a bit further.
9693
96942013-09-11 Glenn Morris <rgm@gnu.org>
9695
9696 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
9697 (set-auto-mode): Don't regexp-quote elements.
9698 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
9699 * progmodes/cc-mode.el (interpreter-mode-alist):
9700 * progmodes/ruby-mode.el (interpreter-mode-alist):
9701 Revert previous change.
9702
97032013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9704
9705 * play/snake.el (snake-mode):
9706 * play/mpuz.el (mpuz-mode):
9707 * play/landmark.el (lm-mode):
9708 * play/blackbox.el (blackbox-mode):
9709 * play/5x5.el (5x5-mode):
9710 * obsolete/options.el (Edit-options-mode):
9711 * net/quickurl.el (quickurl-list-mode):
9712 * net/newst-treeview.el (newsticker-treeview-mode):
9713 * mail/rmailsum.el (rmail-summary-mode):
9714 * mail/mspools.el (mspools-mode):
9715 * locate.el (locate-mode):
9716 * ibuffer.el (ibuffer-mode):
9717 * emulation/ws-mode.el (wordstar-mode):
9718 * emacs-lisp/debug.el (debugger-mode):
9719 * array.el (array-mode):
9720 * net/eudc.el (eudc-mode): Use define-derived-mode.
9721 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
9722 Move initialization into declaration.
9723 (mairix-searches-mode): Use define-derived-mode.
9724 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
9725 (eudc-edit-hotlist): Use dolist.
9726 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
9727 (Man-mode): Use define-derived-mode.
9728 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
9729 (Info-edit-mode): Use define-derived-mode.
9730 (Info-cease-edit): Use Info-mode.
9731 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
9732 into declaration.
9733 (eshell-mode): Use define-derived-mode.
9734 * chistory.el (command-history-mode-map): Rename from
9735 command-history-map.
9736 (command-history-mode): Use define-derived-mode.
9737 (Command-history-setup): Remove function.
9738 * calc/calc.el (calc-trail-mode-map): New var.
9739 (calc-trail-mode): Use define-derived-mode.
9740 (calc-trail-buffer): Set calc-main-buffer manually.
9741 * bookmark.el (bookmark-insert-annotation): New function.
9742 (bookmark-edit-annotation): Use it.
9743 (bookmark-edit-annotation-mode): Make it a proper major mode.
9744 (bookmark-send-edited-annotation): Use derived-mode-p.
9745 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
9746 closer to its ideal place. Use \' to match EOS.
9747
9748 * profiler.el (profiler-calltree-find): Use function-equal.
9749
97502013-09-10 Glenn Morris <rgm@gnu.org>
9751
9752 * files.el (interpreter-mode-alist): Convert to regexps.
9753 (set-auto-mode): Adapt for this. (Bug#15306)
9754 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
9755 Comment out unused variable.
9756 * progmodes/cc-mode.el (interpreter-mode-alist):
9757 * progmodes/python.el (interpreter-mode-alist):
9758 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
9759 * progmodes/sh-script.el (sh-set-shell):
9760 No longer use interpreter-mode-alist to get list of shells.
9761
9762 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
9763
97642013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9765
9766 * simple.el: Use set-temporary-overlay-map for universal-argument.
9767 (universal-argument-map): Don't use default-bindings (bug#15317).
9768 Bind switch-frame explicitly. Replace universal-argument-minus with
9769 a conditional binding.
9770 (universal-argument-num-events, saved-overriding-map): Remove.
9771 (restore-overriding-map): Remove.
9772 (universal-argument--mode): Rename from save&set-overriding-map,
9773 and rewrite.
9774 (universal-argument, universal-argument-more, negative-argument)
9775 (digit-argument): Adjust accordingly.
9776 (universal-argument-minus): Remove.
9777 (universal-argument-other-key): Remove.
9778
9779 * subr.el (with-demoted-errors): Add `format' argument.
9780
97812013-09-10 Michael Albinus <michael.albinus@gmx.de>
9782
9783 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
9784 `tramp-cleanup-connection'.
9785
9786 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
9787 parameters KEEP-DEBUG and KEEP-PASSWORD.
9788
9789 * net/tramp.el (tramp-file-name-handler):
9790 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9791 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9792 (tramp-maybe-open-connection):
9793 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9794 Use `tramp-cleanup-connection'.
9795
9796 * net/tramp-sh.el (tramp-maybe-open-connection):
9797 Catch 'uname-changed inside the progress reporter.
9798
97992013-09-10 Glenn Morris <rgm@gnu.org>
9800
9801 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
9802
9803 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
9804 returns "alternate access method" in mode (eg "-rw-r--r--.").
9805
98062013-09-08 Glenn Morris <rgm@gnu.org>
9807
9808 * saveplace.el (load-save-place-alist-from-file):
9809 Demote errors. (Bug#15305)
9810
98112013-09-08 Michael Albinus <michael.albinus@gmx.de>
9812
9813 Improve compatibility with older Emacsen, and XEmacs.
9814
9815 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
9816 only if it is bound. It isn't for XEmacs.
9817 (with-tramp-progress-reporter): Do not let-bind `result'.
9818 This yields to scoping errors in XEmacs.
9819 (tramp-handle-make-auto-save-file-name): New function, moved from
9820 tramp-sh.el.
9821
9822 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
9823 for `make-auto-save-file-name'.
9824 (tramp-adb--gnu-switches-to-ash):
9825 Use `tramp-compat-replace-regexp-in-string'.
9826
9827 * net/tramp-cache.el (tramp-cache-print): Call
9828 `substring-no-properties' only if it is bound. It isn't for XEmacs.
9829
9830 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
9831 bound. It isn't for XEmacs.
9832
9833 * net/tramp-compat.el (tramp-compat-copy-file):
9834 Catch `wrong-number-of-arguments' error.
9835 (tramp-compat-replace-regexp-in-string): New defun.
9836
9837 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
9838 for `make-auto-save-file-name'.
9839 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
9840 `copy-file'.
9841 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
9842 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
9843 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
9844
9845 * net/tramp-gw.el (tramp-gw-open-network-stream):
9846 Use `tramp-compat-replace-regexp-in-string'.
9847
9848 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9849 Call `tramp-handle-make-auto-save-file-name'.
9850 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
9851 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9852 (tramp-sh-file-inotifywait-process-filter):
9853 Use `tramp-compat-replace-regexp-in-string'.
9854 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
9855
9856 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
9857 for `make-auto-save-file-name'.
9858 (tramp-smb-handle-copy-directory):
9859 Call `tramp-compat-replace-regexp-in-string'.
9860 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
9861 (tramp-smb-handle-copy-file): Improve error message.
9862 (tramp-smb-handle-rename-file): Rename directly only in case
9863 `newname' does not exist yet. This is a restriction of smbclient.
9864 (tramp-smb-maybe-open-connection): Rerun the function only when
9865 `auth-sources' is non-nil.
9866
98672013-09-08 Kenichi Handa <handa@gnu.org>
9868
9869 * international/characters.el: Set category "^" (Combining) for
9870 more characters.
9871
98722013-09-07 Alan Mackenzie <acm@muc.de>
9873
9874 Correctly fontify Java class constructors.
9875 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
9876 in Java Mode.
9877 (c-recognize-typeless-decls): Set the Java value to t.
9878 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
9879 While handling a "(", add a check for, effectively, Java, and handle a
9880 "typeless" declaration there.
9881
98822013-09-07 Roland Winkler <winkler@gnu.org>
9883
9884 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9885 field subtitle for entry type book.
9886
98872013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9888
9889 * minibuffer.el: Make minibuffer-complete call completion-in-region
9890 rather than other way around.
9891 (completion--some, completion-pcm--find-all-completions):
9892 Don't delay signals when debugging.
9893 (minibuffer-completion-contents): Beware fields within the
9894 minibuffer contents.
9895 (completion-all-sorted-completions): Use defvar-local.
9896 (completion--do-completion, completion--cache-all-sorted-completions)
9897 (completion-all-sorted-completions, minibuffer-force-complete):
9898 Add args `beg' and `end'.
9899 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9900 (minibuffer-complete): Use completion-in-region.
9901 (completion-complete-and-exit): New fun, extracted from
9902 minibuffer-complete-and-exit.
9903 (minibuffer-complete-and-exit): Use it.
9904 (completion--complete-and-exit): Rename from
9905 minibuffer--complete-and-exit.
9906 (completion-in-region--single-word): New function, extracted from
9907 minibuffer-complete-word.
9908 (minibuffer-complete-word): Use it.
9909 (display-completion-list): Make `common-substring' argument obsolete.
9910 (completion--in-region): Call completion--in-region-1 instead of
9911 minibuffer-complete.
9912 (completion-help-at-point): Pass boundaries to
9913 minibuffer-completion-help as args rather than via an overlay.
9914 (completion-pcm--string->pattern): Use `any-delim'.
9915 (completion-pcm--optimize-pattern): New function.
9916 (completion-pcm--pattern->regex): Handle `any-delim'.
9917 * icomplete.el (icomplete-forward-completions)
9918 (icomplete-backward-completions, icomplete-completions):
9919 Adjust calls to completion-all-sorted-completions and
9920 completion--cache-all-sorted-completions.
9921 (icomplete-with-completion-tables): Default to t.
9922 * emacs-lisp/crm.el (crm--current-element): Rename from
9923 crm--select-current-element. Don't put an overlay but return the
9924 boundaries instead.
9925 (crm--completion-command): Take two new args to bind to the boundaries.
9926 (crm-completion-help): Adjust accordingly.
9927 (crm-complete): Use completion-in-region.
9928 (crm-complete-word): Use completion-in-region--single-word.
9929 (crm-complete-and-exit): Use completion-complete-and-exit.
9930
99312013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9932
9933 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9934 than dynamically.
9935
99362013-09-06 Juri Linkov <juri@jurta.org>
9937
9938 * info.el (Info-display-images-node): When image file doesn't exist
9939 display text version of the image if it's provided in the Info file.
9940 Otherwise, display the location of missing image from SRC attribute.
9941 Add help-echo text property from ALT attribute. (Bug#15279)
9942
99432013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9944
9945 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9946 (edit-abbrevs-mode): Use define-derived-mode.
9947
9948 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9949 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9950 that it's defined.
9951 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9952 Use define-derived-mode.
9953
9954 * epg.el (epg-start-encrypt): Minor CSE simplification.
9955
99562013-09-06 William Xu <william.xwl@gmail.com>
9957
9958 * arc-mode.el: Add support for 7za (bug#15264).
9959 (archive-7z-program): New var.
9960 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9961 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9962 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9963
99642013-09-06 Michael Albinus <michael.albinus@gmx.de>
9965
9966 Remove URL syntax.
9967
9968 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9969 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9970 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9971 (tramp-postfix-host-format, tramp-file-name-regexp)
9972 (tramp-completion-file-name-regexp)
9973 (tramp-completion-dissect-file-name)
9974 (tramp-handle-substitute-in-file-name): Remove 'url case.
9975 (tramp-file-name-regexp-url)
9976 (tramp-completion-file-name-regexp-url): Remove constants.
9977
99782013-09-06 Glenn Morris <rgm@gnu.org>
9979
9980 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9981
99822013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9983
9984 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9985 keywords" below "here-doc beginnings" (Bug#15270).
9986
99872013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9988
9989 * subr.el (pop): Use `car-safe'.
9990 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9991 to detect unused `pop' return value.
9992
9993 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9994 var `block-regexp'.
9995 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9996 (python-fill-string): Remove unused var `marker'.
9997 (python-skeleton-add-menu-items): Remove unused var `items'.
9998
9999 * international/mule-cmds.el: Require CL.
10000 (find-coding-systems-for-charsets): Avoid add-to-list.
10001 (sanitize-coding-system-list): New function, extracted from
10002 select-safe-coding-system-interactively.
10003 (select-safe-coding-system-interactively): Use it.
10004 (read-input-method-name): Accept symbols for `default'.
10005
10006 * emacs-lisp/advice.el (defadvice): Add indent rule.
10007
100082013-09-05 Daniel Hackney <dan@haxney.org>
10009
10010 * dired-x.el:
10011 * net/ange-ftp.el:
10012 * net/browse-url.el:
10013 * net/dbus.el:
10014 * net/eudc.el:
10015 * net/eudcb-ldap.el:
10016 * net/eww.el:
10017 * net/imap.el:
10018 * printing.el:
10019 * vc/ediff-diff.el:
10020 * vc/ediff-init.el:
10021 * vc/ediff-merg.el:
10022 * vc/ediff-mult.el:
10023 * vc/ediff-util.el:
10024 * vc/ediff-wind.el:
10025 * vc/ediff.el:
10026 * vc/emerge.el:
10027 * vc/pcvs.el:
10028 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
10029 byte compiler. Remove some unused let-bound variables.
10030
100312013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
10032
10033 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
10034 a "ref-cell", since it gets better optimized (bug#14883).
10035
100362013-09-05 Glenn Morris <rgm@gnu.org>
10037
10038 * progmodes/cc-awk.el (c-forward-sws): Declare.
10039
100402013-09-04 Glenn Morris <rgm@gnu.org>
10041
10042 * generic-x.el [rul-generic-mode]: Require cc-mode.
10043 (c++-mode-syntax-table): Declare.
10044 (rul-generic-mode-syntax-table): Init in the defvar.
10045
100462013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
10047
10048 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
10049 (vc-do-command, vc-set-async-update):
10050 * vc/vc-mtn.el (vc-mtn-dir-status):
10051 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
10052 (vc-hg-pull, vc-hg-merge-branch):
10053 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
10054 (vc-git-merge-branch):
10055 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
10056 (vc-cvs-dir-status-files):
10057 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
10058 (vc-bzr-dir-status-files):
10059 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
10060 * vc/vc-annotate.el: Use lexical-binding.
10061 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
10062 (vc-sentinel-movepoint): Declare.
10063 (vc-annotate): Don't use `goto-line'.
10064 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
10065 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
10066 (vc-sentinel-movepoint): Declare.
10067 * vc/vc-svn.el: Use lexical-binding.
10068 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
10069 * vc/vc-sccs.el:
10070 * vc/vc-rcs.el: Use lexical-binding.
10071
10072 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
10073 `deleted'. Don't drop errors silently.
10074
10075 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
10076
100772013-09-04 Xue Fuqiao <xfq.free@gmail.com>
10078
10079 * vc/vc.el (vc-ignore): Rewrite.
10080 (vc-default-ignore): New function.
10081 (vc-default-ignore-completion-table): Use find-ignore-file.
10082
10083 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
10084 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
10085 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
10086 Remove. Most code moved to vc.el.
10087
100882013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
10089
10090 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
10091 * net/tramp-smb.el (tramp-smb-get-file-entries):
10092 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
10093 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
10094
10095 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
10096 Update call to it.
10097 (eww-change-select): Remove unused var `properties'.
10098 (eww-make-unique-file-name): Remove unused var `base'.
10099
10100 * finder.el (finder-compile-keywords): Don't mess with windows.
10101
10102 * calculator.el (calculator-funcall): Fix typo in last change.
10103
10104 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
10105
10106 * emacs-lisp/package.el (package-activate-1): Don't let a missing
10107 <pkg>-autoloads.el file stop us.
10108
10109 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
10110 warnings, and factor out common code.
10111
101122013-09-03 Dmitry Gutov <dgutov@yandex.ru>
10113
10114 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
10115 two-character operators and whether the character preceding them
10116 changes their meaning (Bug#15208).
10117
101182013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
10119
10120 Format code sent to Python shell for robustness.
10121 * progmodes/python.el (python-shell-buffer-substring):
10122 New function.
10123 (python-shell-send-region, python-shell-send-buffer): Use it.
10124
101252013-09-02 Michael Albinus <michael.albinus@gmx.de>
10126
10127 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
10128 * net/tramp.el (tramp-user-error): ... here.
10129 (tramp-find-method, tramp-check-proper-host)
10130 (tramp-dissect-file-name, tramp-debug-message)
10131 (tramp-handle-shell-command):
10132 * net/tramp-adb.el (tramp-adb-handle-shell-command):
10133 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
10134
10135 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
10136
101372013-09-02 Martin Rudalics <rudalics@gmx.at>
10138
10139 * avoid.el (mouse-avoidance-point-position)
10140 (mouse-avoidance-too-close-p): Handle case where posn-at-point
10141 returns nil.
10142
101432013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
10144
10145 * progmodes/python.el (python-shell-completion-get-completions):
10146 Drop use of deleted `comint-last-prompt-overlay'.
10147 (python-nav-if-name-main): New command.
10148
101492013-09-01 Glenn Morris <rgm@gnu.org>
10150
10151 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10152 Avoid leading space in $wins. Otherwise the sed command used by
10153 eg compile-main ends up containing "/*.el". (Bug#15170)
10154
10155 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
10156
101572013-08-30 Glenn Morris <rgm@gnu.org>
10158
10159 * emacs-lisp/bytecomp.el (byte-recompile-directory):
10160 Fix is-this-a-directory logic. (Bug#15220)
10161
101622013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10163
10164 * textmodes/css-mode.el: Use SMIE.
10165 (css-smie-grammar): New var.
10166 (css-smie--forward-token, css-smie--backward-token)
10167 (css-smie-rules): New functions.
10168 (css-mode): Use them.
10169 (css-navigation-syntax-table): Remove var.
10170 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
10171 (css-indent-calculate, css-indent-line): Remove functions.
10172
10173 Misc changes to reduce use of `(lambda...); and other cleanups.
10174 * cus-edit.el: Use lexical-binding.
10175 (customize-push-and-save, customize-apropos)
10176 (custom-buffer-create-internal): Use closures.
10177 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
10178 * progmodes/ada-xref.el: Use setq.
10179 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
10180 * dframe.el: Use lexical-binding.
10181 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
10182 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
10183 * descr-text.el: Use lexical-binding.
10184 (describe-text-widget, describe-text-sexp, describe-property-list):
10185 Use closures.
10186 * comint.el (comint-history-isearch-push-state): Use a closure.
10187 * calculator.el: Use lexical-binding.
10188 (calculator-number-to-string): Make it work with lexical-binding.
10189 (calculator-funcall): Same and use cl-letf.
10190
10191 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
10192 (lisp--company-doc-string, lisp--company-location): New functions.
10193 (lisp-completion-at-point): Use them to improve Company support.
10194
10195 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
10196 params of lambda expressions.
10197 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
10198 (ruby-smie--opening-pipe-p): New function.
10199 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
10200 symbols and matched |...| for formal params.
10201 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
10202 from being treated as hanging. Handle "rescue".
10203
102042013-08-29 Glenn Morris <rgm@gnu.org>
10205
10206 * progmodes/cc-engine.el (c-pull-open-brace):
10207 Move definition before use.
10208
102092013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10210
10211 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
10212 are immutable. Don't use `unsafe' any more.
10213 (cl--defsubst-expand): Don't substitute at the same time as keeping
10214 a residual unused let-binding. Don't use `unsafe' any more.
10215
102162013-08-29 Glenn Morris <rgm@gnu.org>
10217
10218 * calendar/cal-china.el (calendar-chinese-year-cache):
10219 Recenter on 2015.
10220
10221 * nxml/nxml-util.el (nxml-debug-clear-inside):
10222 Use cl-loop rather than loop.
10223
10224 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
10225
10226 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
10227
102282013-08-28 Glenn Morris <rgm@gnu.org>
10229
10230 * progmodes/antlr-mode.el: No need to require cc-mode twice.
10231
10232 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
10233
10234 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
10235
102362013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10237
10238 * simple.el (repeat-complex-command--called-interactively-skip):
10239 New function.
10240 (repeat-complex-command): Use it (bug#14136).
10241
10242 * progmodes/cc-mode.el: Minor cleanup of var declarations.
10243 (c-define-abbrev-table): Add `doc' argument.
10244 (c-mode-abbrev-table, c++-mode-abbrev-table)
10245 (objc-mode-abbrev-table, java-mode-abbrev-table)
10246 (idl-mode-abbrev-table, pike-mode-abbrev-table)
10247 (awk-mode-abbrev-table): Use it.
10248 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
10249 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
10250 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
10251 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
10252 Move initialization into the declaration; and remove any
10253 autoload cookie.
10254
10255 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
10256 and dynamic let binding.
10257
10258 * vc/smerge-mode.el: Remove redundant :group args.
10259
10260 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
10261 to load-path.
10262
102632013-08-28 Juri Linkov <juri@jurta.org>
10264
10265 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
10266 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
10267 (isearch-other-meta-char): Handle an undefined shifted printing
10268 character by downshifting it. (Bug#15200)
10269
102702013-08-28 Juri Linkov <juri@jurta.org>
10271
10272 * isearch.el (isearch-search): Change regexp error message for
10273 non-regexp searches. (Bug#15166)
10274
102752013-08-28 Paul Eggert <eggert@cs.ucla.edu>
10276
10277 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
10278 for portability to hosts where /bin/sh has problems.
10279
102802013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10281
10282 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
10283
102842013-08-27 Juri Linkov <juri@jurta.org>
10285
10286 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
10287 in the keyboard macro. (Bug#15126)
10288
102892013-08-27 Juri Linkov <juri@jurta.org>
10290
10291 * isearch.el (isearch-quote-char): Comment out converting unibyte
10292 to multibyte, thus syncing with its `quoted-insert' counterpart.
10293 (Bug#15166)
10294
102952013-08-27 Martin Rudalics <rudalics@gmx.at>
10296
10297 * window.el (display-buffer-use-some-window): Add missing
10298 argument in call of get-largest-window (Bug#15185).
10299 Reported by Stephen Leake.
10300
103012013-08-27 Glenn Morris <rgm@gnu.org>
10302
10303 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
10304
103052013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10306
10307 * progmodes/python.el (python-font-lock-keywords): Don't return nil
10308 from a matcher-function unless there's no more matches (bug#15161).
10309
103102013-08-26 Michael Albinus <michael.albinus@gmx.de>
10311
10312 * minibuffer.el: Revert change from 2013-08-20.
10313
10314 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
10315 with text property `tramp-default', if appropriate.
10316 (tramp-check-proper-host): New defun.
10317 (tramp-dissect-file-name): Do not check hostname. Revert change
10318 of 2013-03-18.
10319 (tramp-backtrace): Make VEC-OR-PROC optional.
10320
10321 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
10322 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10323 * net/tramp-sh.el (tramp-maybe-open-connection):
10324 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10325 Apply `tramp-check-proper-host'.
10326
103272013-08-26 Tassilo Horn <tsdh@gnu.org>
10328
10329 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
10330 lambda expression in order to have `describe-variable' display it.
10331
103322013-08-26 Michael Albinus <michael.albinus@gmx.de>
10333
10334 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
10335 BUF can be optional. (Bug#15186)
10336
103372013-08-25 Xue Fuqiao <xfq.free@gmail.com>
10338
10339 * progmodes/flymake.el (flymake-get-real-file-name-function):
10340 Fix broken customization. (Bug#15184)
10341
103422013-08-25 Alan Mackenzie <acm@muc.de>
10343
10344 Improve indentation of bracelists defined by macros (without "=").
10345
10346 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
10347 expansion begins with "{", regard it as bracelist when it doesn't
10348 contain a ";".
10349
10350 Parse C++ inher-intro when there's a template split over 2 lines.
10351
10352 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
10353 rigorously the search for "class" etc. followed by ":".
10354
10355 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
10356 random languages a regexp which never matches rather than nil.
10357
10358 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
10359
10360 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
10361 (c-awk-regexp-one-line-possibly-open-char-list-re)
10362 (c-awk-one-line-possibly-open-regexp-re)
10363 (c-awk-one-line-non-syn-ws*-re): Remove.
10364 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
10365 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
10366 (c-awk-space*-unclosed-regexp-/-re): New constants.
10367 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
10368 aren't regexp delimiters.
10369
10370 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
10371 handling for a rare situation in AWK Mode involving unterminated
10372 strings/regexps.
10373
103742013-08-23 Glenn Morris <rgm@gnu.org>
10375
10376 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
10377
10378 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
10379
10380 * files.el (create-file-buffer): If the result would begin with
10381 spaces, prepend a "|" instead of removing them. (Bug#15162)
10382
103832013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
10386 text-properties (bug#15155).
10387
10388 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
10389 exist any more.
10390 (calc-keypad-redraw): Remove unused var `pad'.
10391 (calc-keypad-press): Remove unused var `menu'.
10392
103932013-08-23 Martin Rudalics <rudalics@gmx.at>
10394
10395 * window.el (display-buffer-pop-up-frame):
10396 Call pop-up-frame-function with BUFFER current so `make-frame' will
10397 use it as the new frame's buffer (Bug#15133).
10398
103992013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10400
10401 * calendar/timeclock.el: Minor cleanups.
10402 (timeclock-ask-before-exiting, timeclock-use-display-time):
10403 Use `symbol'.
10404 (timeclock-modeline-display): Define as alias before the
10405 actual definition.
10406 (timeclock-mode-line-display): Use define-minor-mode.
10407 (timeclock-day-list-template): Make it a function, add an argument.
10408 (timeclock-day-list-required, timeclock-day-list-length)
10409 (timeclock-day-list-debt, timeclock-day-list-span)
10410 (timeclock-day-list-break): Adjust calls accordingly.
10411
104122013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10413
10414 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
10415 Use read--expression so that completion works again.
10416
104172013-08-21 Sam Steingold <sds@gnu.org>
10418
10419 Add rudimentary inferior shell interaction
10420 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
10421 (sh-set-shell): Reset it.
10422 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
10423 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
10424
104252013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
10426
10427 * align.el: Use lexical-binding.
10428 (align-region): Simplify accordingly.
10429
104302013-08-20 Michael Albinus <michael.albinus@gmx.de>
10431
10432 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
10433
10434 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
10435 `non-essential' up.
10436
104372013-08-17 Michael Albinus <michael.albinus@gmx.de>
10438
10439 * net/tramp.el:
10440 * net/tramp-adb.el:
10441 * net/tramp-cmds.el:
10442 * net/tramp-ftp.el:
10443 * net/tramp-gvfs.el:
10444 * net/tramp-gw.el:
10445 * net/tramp-sh.el: Don't wrap external variable declarations by
10446 `eval-when-compile'.
10447
104482013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10449
10450 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
10451 now that Emacs supports ImageMagick animations.
10452
104532013-08-16 Michael Albinus <michael.albinus@gmx.de>
10454
10455 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
10456 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
10457
104582013-08-16 Martin Rudalics <rudalics@gmx.at>
10459
10460 * window.el (mouse-autoselect-window-select): Do autoselect when
10461 mouse pointer is on margin.
10462
104632013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
10464
10465 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
10466
104672013-08-16 Glenn Morris <rgm@gnu.org>
10468
10469 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
10470 Handle "Remote Directory" response of some clients. (Bug#15058)
10471
10472 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
10473 Tweak warning. (Bug#14926)
10474
10475 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
10476 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
10477
10478 * image-mode.el (image-mode-map): Add menu items to reverse,
10479 increase, decrease, reset animation speed.
10480 (image--set-speed, image-increase-speed, image-decrease-speed)
10481 (image-reverse-speed, image-reset-speed): New functions.
10482 (image-mode-map): Add bindings for speed commands.
10483
10484 * image.el (image-animate-get-speed, image-animate-set-speed):
10485 New functions.
10486 (image-animate-timeout): Respect image :speed property.
10487
104882013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10489
10490 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
10491 previous line (bug#15101).
10492 (debugger-eval-expression, debugger-record-expression):
10493 Use read--expression (bug#15102).
10494
104952013-08-15 Michael Albinus <michael.albinus@gmx.de>
10496
10497 Remove byte compiler warnings, visible when compiling with
10498 `byte-compile-force-lexical-warnings' set to t.
10499
10500 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
10501 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
10502 (tramp-handle-unhandled-file-name-directory)
10503 (tramp-handle-file-notify-add-watch, tramp-action-login)
10504 (tramp-action-succeed, tramp-action-permission-denied)
10505 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
10506 arguments with "_".
10507
10508 * net/tramp-adb.el (tramp-adb-parse-device-names)
10509 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
10510 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
10511 (tramp-adb-handle-file-truename): Remove unused arguments.
10512
10513 * net/tramp-cache.el (tramp-flush-directory-property)
10514 (tramp-flush-connection-property, tramp-list-connections)
10515 (tramp-parse-connection-properties): Prefix unused arguments with "_".
10516
10517 * net/tramp-compat.el (tramp-compat-make-temp-file):
10518 Rename FILENAME to F.
10519
10520 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
10521 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
10522 (tramp-zeroconf-parse-workstation-device-names)
10523 (tramp-zeroconf-parse-webdav-device-names)
10524 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
10525
10526 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
10527 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
10528
10529 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
10530 arguments.
10531 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
10532 (tramp-sh-handle-insert-file-contents-literally)
10533 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
10534 with "_".
10535 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
10536 Remove unused variables.
10537
10538 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10539 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
10540 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
10541
10542 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
10543 Make them a defconst.
10544 (tramp-uuencode-region): Remove unused variable.
10545
105462013-08-14 Juanma Barranquero <lekktu@gmail.com>
10547
10548 * frameset.el (frameset--prop-setter): New function.
10549 (frameset-prop): Add gv-setter declaration.
10550 (frameset-filter-minibuffer): Deal with the case that the minibuffer
10551 parameter was already set in FILTERED. Doc fix.
10552 (frameset--record-minibuffer-relationships): Allow saving a
10553 minibufferless frame without its corresponding minibuffer frame.
10554 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
10555 frame, if the frame id matches.
10556 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
10557 frames before orphaned ones.
10558 (frameset-restore): Warn about orphaned windows, instead of error out.
10559
105602013-08-14 Martin Rudalics <rudalics@gmx.at>
10561
10562 * window.el (window-make-atom): Don't overwrite parameter
10563 already present.
10564 (display-buffer-in-atom-window): Handle special case where we
10565 split an already atomic window.
10566 (window--major-non-side-window, display-buffer-in-side-window)
10567 (window--side-check): Ignore minibuffer window when walking
10568 window tree.
10569 (window-deletable-p): Return 'frame only if no other frame uses
10570 our minibuffer window.
10571 (record-window-buffer): Run buffer-list-update-hook.
10572 (split-window): Make sure window--check-frame won't destroy an
10573 existing atomic window in case the new window gets nested
10574 inside.
10575 (display-buffer-at-bottom): Ignore minibuffer window when
10576 walking window tree. Don't split a side window.
10577 (pop-to-buffer): Don't set-buffer here, the select-window call
10578 should do that.
10579 (mouse-autoselect-window-select): Autoselect only if we are in the
10580 text portion of the window.
10581
105822013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10583
10584 * net/shr.el (shr-parse-image-data): New function to grab both the
10585 data itself and the Content-Type.
10586 (shr-put-image): Use it.
10587
10588 * net/eww.el (eww-display-image): Ditto.
10589
10590 * image.el (image-content-type-suffixes): New variable.
10591
105922013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
10593
10594 * progmodes/python.el (python-imenu--build-tree)
10595 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
10596
105972013-08-13 Xue Fuqiao <xfq.free@gmail.com>
10598
10599 * simple.el (backward-word): Mention the optional argument.
10600
106012013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10602
10603 * frameset.el (frameset--make): Rename constructor from make-frameset.
10604 (frameset-p, frameset-valid-p): Don't autoload.
10605 (frameset-valid-p): Use normal accessors.
10606
106072013-08-13 Glenn Morris <rgm@gnu.org>
10608
10609 * progmodes/compile.el (compile-command): Tweak example in doc.
10610 * obsolete/scribe.el (scribe-mode):
10611 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
10612
10613 * mail/feedmail.el (feedmail-confirm-outgoing)
10614 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
10615
10616 * cus-start.el (truncate-partial-width-windows): Fix type.
10617
10618 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
10619
10620 * net/shr.el (shr-table-horizontal-line): Fix custom type.
10621
106222013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10623
10624 * emacs-lisp/timer.el (timer--time-setter): New function.
10625 (timer--time): Use it as gv-setter.
10626
10627 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
10628 setter is not a symbol.
10629
106302013-08-12 Grégoire Jadi <daimrod@gmail.com>
10631
10632 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
10633 if sending fails. This makes debugging easier.
10634
106352013-08-12 Juanma Barranquero <lekktu@gmail.com>
10636
10637 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
10638 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
10639 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
10640
106412013-08-12 Eli Zaretskii <eliz@gnu.org>
10642
10643 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
10644
106452013-08-12 Glenn Morris <rgm@gnu.org>
10646
10647 * format.el (format-annotate-function):
10648 Handle read-only text properties in the source. (Bug#14887)
10649
106502013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10651
10652 * net/eww.el (eww-display-html): Ignore coding system errors.
10653 One web site uses "utf-8lias" as the coding system.
10654
106552013-08-11 Juanma Barranquero <lekktu@gmail.com>
10656
10657 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
10658
106592013-08-10 Juanma Barranquero <lekktu@gmail.com>
10660
10661 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
10662 (tutorial--detailed-help): Remove unused local variables.
10663 (tutorial--save-tutorial-to): Use ignore-errors.
10664 (help-with-tutorial): Use looking-at-p.
10665
10666 * view.el (view-buffer-other-window, view-buffer-other-frame):
10667 Mark unused arguments.
10668
10669 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
10670 (woman-select-symbol-fonts, woman, woman-find-file)
10671 (woman-insert-file-contents, woman-non-underline-faces):
10672 Use string-match-p.
10673 (woman1-unquote): Move declaration.
10674
10675 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
10676 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
10677 argument. Remove unused local variable.
10678 (xml-parse-elem-type): Use string-match-p.
10679 (xml-substitute-numeric-entities): Use ignore-errors.
10680
10681 * calculator.el (calculator): Mark unused argument.
10682 (calculator-paste, calculator-quit, calculator-integer-p):
10683 Use ignore-errors.
10684 (calculator-string-to-number, calculator-decimal, calculator-exp)
10685 (calculator-op-or-exp): Use string-match-p.
10686
10687 * dired.el (dired-buffer-more-recently-used-p): Declare.
10688 (dired-insert-set-properties, dired-insert-old-subdirs):
10689 Use ignore-errors.
10690
10691 * dired-aux.el (dired-compress): Use ignore-errors.
10692 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
10693 (dired-do-async-shell-command, dired-do-shell-command)
10694 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
10695 (dired-insert-subdir-validate): Use string-match-p.
10696 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
10697 (dired-add-entry): Use string-match-p, looking-at-p.
10698 (dired-insert-subdir-newpos): Remove unused local variable.
10699
10700 * filenotify.el (file-notify-callback): Remove unused local variable.
10701
10702 * filesets.el (filesets-error): Mark unused argument.
10703 (filesets-which-command-p, filesets-filter-dir-names)
10704 (filesets-directory-files, filesets-get-external-viewer)
10705 (filesets-ingroup-get-data): Use string-match-p.
10706
10707 * find-file.el (ff-other-file-name, ff-other-file-name)
10708 (ff-find-the-other-file, ff-cc-hh-converter):
10709 Remove unused local variables.
10710 (ff-get-file-name): Use string-match-p.
10711 (ff-all-dirs-under): Use ignore-errors.
10712
10713 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
10714 (follow-select-if-visible): Remove unused local variable.
10715
10716 * forms.el (read-file-filter): Move declaration.
10717 (forms--make-format, forms--make-parser, forms-insert-record):
10718 Quote function with #'.
10719 (forms--update): Use string-match-p. Quote function with #'.
10720
10721 * help-mode.el (help-dir-local-var-def): Mark unused argument.
10722 (help-make-xrefs): Use looking-at-p.
10723 (help-xref-on-pp): Use looking-at-p, ignore-errors.
10724
10725 * ibuffer.el (ibuffer-ext-visible-p): Declare.
10726 (ibuffer-confirm-operation-on): Use string-match-p.
10727
10728 * msb.el (msb-item-handler, msb-dired-item-handler):
10729 Mark unused arguments.
10730
10731 * ses.el (ses-decode-cell-symbol)
10732 (ses-kill-override): Remove unused local variable.
10733 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
10734 (ses-load): Use ignore-errors, looking-at-p.
10735 (ses-jump-safe): Use ignore-errors.
10736 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
10737
10738 * tabify.el (untabify, tabify): Mark unused arguments.
10739
10740 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
10741 Mark unused argument.
10742 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
10743 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
10744
10745 * emacs-lisp/timer.el (timer--time): Define setter with
10746 gv-define-setter to avoid deprecation warning.
10747
10748 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
10749 (*record-cmpl-statistics-p*): Remove (was commented out).
10750 (cmpl-statistics-block): Remove (body was commented out).
10751 All callers changed.
10752 (add-completions-from-buffer, load-completions-from-file):
10753 Remove unused variables.
10754
107552013-08-09 Juanma Barranquero <lekktu@gmail.com>
10756
10757 * filecache.el (file-cache-delete-file-list):
10758 Print message only when told so.
10759 (file-cache-files-matching): Use #' in mapconcat argument.
10760
10761 * ffap.el (ffap-url-at-point): Fix reference to variable
10762 thing-at-point-default-mail-uri-scheme.
10763
107642013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
10765
10766 * subr.el (define-error): New function.
10767 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
10768 error-file-not-found and define with define-error.
10769 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
10770 and define with define-error.
10771 * userlock.el (file-locked, file-supersession):
10772 * simple.el (mark-inactive):
10773 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
10774 * progmodes/ada-mode.el (ada-mode-errors):
10775 * play/life.el (life-extinct):
10776 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
10777 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
10778 * nxml/rng-util.el (rng-error):
10779 * nxml/rng-uri.el (rng-uri-error):
10780 * nxml/rng-match.el (rng-compile-error):
10781 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
10782 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
10783 * nxml/nxml-rap.el (nxml-scan-error):
10784 * nxml/nxml-outln.el (nxml-outline-error):
10785 * net/soap-client.el (soap-error):
10786 * net/gnutls.el (gnutls-error):
10787 * net/ange-ftp.el (ftp-error):
10788 * mpc.el (mpc-proc-error):
10789 * json.el (json-error, json-readtable-error, json-unknown-keyword)
10790 (json-number-format, json-string-escape, json-string-format)
10791 (json-key-format, json-object-format):
10792 * jka-compr.el (compression-error):
10793 * international/quail.el (quail-error):
10794 * international/kkc.el (kkc-error):
10795 * emacs-lisp/ert.el (ert-test-failed):
10796 * calc/calc.el (calc-error, inexact-result, math-overflow)
10797 (math-underflow):
10798 * bookmark.el (bookmark-error-no-filename):
10799 * epg.el (epg-error): Define with define-error.
10800
10801 * time.el (display-time-event-handler)
10802 (display-time-next-load-average): Don't call sit-for since it seems
10803 unnecessary (bug#15045).
10804
10805 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
10806 Use #' instead of ' to quote functions.
10807 (checkdoc-output-mode): Use setq-local.
10808 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
10809 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
10810 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
10811 (checkdoc-ispell, checkdoc-ispell-current-buffer)
10812 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
10813 (checkdoc-ispell-message-text, checkdoc-ispell-start)
10814 (checkdoc-ispell-continue, checkdoc-ispell-comments)
10815 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
10816
10817 * ido.el (ido-completion-help): Fix up compiler warning.
10818
108192013-08-09 Juanma Barranquero <lekktu@gmail.com>
10820
10821 * frameset.el (frameset-p): Add autoload cookie.
10822 (frameset--jump-to-register): New function, based on code moved from
10823 register.el.
10824 (frameset-to-register): Move from register.el. Adapt to `registerv'.
10825
10826 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
10827 (frameset-restore, frameset-save, frameset-session-filter-alist):
10828 Remove declarations.
10829 (register-alist): Doc fix.
10830 (frameset-to-register): Move to frameset.el.
10831 (jump-to-register, describe-register-1): Remove frameset-specific code.
10832
108332013-08-08 Juanma Barranquero <lekktu@gmail.com>
10834
10835 * allout-widgets.el (allout-widgets-pre-command-business)
10836 (allout-widgets-post-command-business)
10837 (allout-widgets-after-change-handler)
10838 (allout-decorate-item-and-context, allout-set-boundary-marker)
10839 (allout-body-modification-handler)
10840 (allout-graphics-modification-handler): Mark ignored arguments.
10841 (allout-widgets-post-command-business)
10842 (allout-widgets-exposure-change-processor)
10843 (allout-widgets-exposure-undo-processor)
10844 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
10845 (allout-parse-item-at-point, allout-decorate-item-guides)
10846 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
10847 * allout.el (epa-passphrase-callback-function): Declare.
10848 (allout-overlay-insert-in-front-handler)
10849 (allout-overlay-interior-modification-handler)
10850 (allout-isearch-end-handler, allout-chart-siblings)
10851 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
10852 (allout-yank-processing, allout-process-exposed)
10853 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
10854 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
10855 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
10856 (lisp-indent-defform): Mark ignored arguments.
10857 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
10858 (calculate-lisp-indent): Remove unused variables.
10859 * international/characters.el (indian-2-column, arabic-2-column)
10860 (tibetan): Mark ignored arguments.
10861 (use-cjk-char-width-table): Mark ignored arguments.
10862 Remove unused variables.
10863 * international/fontset.el (build-default-fontset-data)
10864 (x-compose-font-name, create-fontset-from-fontset-spec):
10865 Mark ignored arguments.
10866 (fontset-plain-name): Remove unused variables.
10867 * international/mule.el (charset-id, charset-bytes, generic-char-p)
10868 (keyboard-coding-system): Mark ignored arguments.
10869 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
10870 * help.el (resize-temp-buffer-window):
10871 * window.el (display-buffer-in-major-side-window)
10872 (display-buffer-in-side-window, display-buffer-in-previous-window):
10873 Remove unused variables.
10874 * isearch.el (isearch-forward-symbol):
10875 * version.el (emacs-bzr-version-bzr):
10876 * international/mule-cmds.el (current-language-environment):
10877 * term/common-win.el (x-handle-iconic, x-handle-geometry)
10878 (x-handle-display):
10879 * term/pc-win.el (x-list-fonts, x-display-planes)
10880 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
10881 (x-server-version, x-display-screens, x-display-mm-height)
10882 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
10883 (x-selection-owner-p, x-own-selection-internal)
10884 (x-disown-selection-internal, x-get-selection-internal)
10885 (msdos-initialize-window-system):
10886 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10887 * term/x-win.el (x-handle-no-bitmap-icon):
10888 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10889 (vc-default-find-file-hook, vc-default-extra-menu):
10890 Mark ignored arguments.
10891
108922013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10893
10894 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10895 break-condition in the context of the debugged code (bug#12685).
10896
108972013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10898
10899 * comint.el:
10900 Do not use an overlay to highlight the last prompt. (Bug#14744)
10901 (comint-mode): Make comint-last-prompt buffer local.
10902 (comint-last-prompt): New variable.
10903 (comint-last-prompt-overlay): Remove. Superseded by
10904 comint-last-prompt.
10905 (comint-snapshot-last-prompt, comint-output-filter):
10906 Use comint-last-prompt.
10907
109082013-08-08 Juanma Barranquero <lekktu@gmail.com>
10909
10910 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10911 (frameset-save): Check validity of the resulting frameset.
10912
109132013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10914
10915 * ido.el (ido-record-command): Add doc string.
10916
109172013-08-08 Juanma Barranquero <lekktu@gmail.com>
10918
10919 * frameset.el (frameset): Do not disable creation of the default
10920 frameset-p predicate. Doc fix.
10921 (frameset-valid-p): New function, copied from the old predicate-p.
10922 Add additional checks.
10923 (frameset-restore): Check with frameset-valid-p.
10924 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10925 (frameset-name, frameset-description, frameset-properties)
10926 (frameset-states): Add docstring.
10927 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10928 (frameset-filter-alist): Doc fixes.
10929
109302013-08-08 Juanma Barranquero <lekktu@gmail.com>
10931
10932 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10933
109342013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10935
10936 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10937 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10938 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10939 (byte-compile-normal-call): Remove obsolescence check.
10940
109412013-08-08 Juanma Barranquero <lekktu@gmail.com>
10942
10943 * frameset.el (frameset-restore): Doc fix.
10944
10945 * register.el (frameset-frame-id, frameset-frame-with-id)
10946 (frameset-p, frameset-restore, frameset-save): Declare.
10947 (register-alist): Document framesets.
10948 (frameset-session-filter-alist): Declare.
10949 (frameset-to-register): New function.
10950 (jump-to-register): Implement jumping to framesets. Doc fix.
10951 (describe-register-1): Describe framesets.
10952
10953 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10954
109552013-08-07 Juanma Barranquero <lekktu@gmail.com>
10956
10957 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10958 Use lexical-binding.
10959
10960 * frameset.el (frameset): Use type vector, not list (incompatible
10961 change). Do not declare a new constructor, use the default one.
10962 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10963 `name' and `description', respectively, and add read-only slot
10964 `timestamp'. Doc fixes.
10965 (frameset-copy, frameset-persistent-filter-alist)
10966 (frameset-filter-alist, frameset-switch-to-gui-p)
10967 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10968 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10969 (frameset-filter-iconified, frameset-keep-original-display-p):
10970 Doc fixes.
10971 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10972 Rename from frameset-filter-(save|restore)-param. All callers changed.
10973 Doc fix.
10974 (frameset-p): Adapt to change to vector and be more thorough.
10975 Change arg name to OBJECT. Doc fix.
10976 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10977 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10978 All callers changed.
10979 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10980 All callers changed.
10981 (frameset--record-minibuffer-relationships): Rename from
10982 frameset--process-minibuffer-frames. All callers changed.
10983 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10984 Use new default constructor (again). Doc fix.
10985 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10986 All callers changed.
10987 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10988 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10989 Doc fix.
10990 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10991 PARAMETERS and WINDOW-STATE, respectively.
10992 (frameset-restore): Add new keyword argument PREDICATE.
10993 Reset frameset--target-display to nil. Doc fix.
10994
109952013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10996
10997 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10998 (bat-mode): Use it.
10999 (bat-mode-syntax-table): Mark \n as end-of-comment.
11000 (bat-font-lock-keywords): Remove comment rule.
11001
11002 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
11003 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
11004
11005 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
11006 (byte-compile-callargs-warn): Use `push'.
11007 (byte-compile-arglist-warn): Ignore higher-order "calls".
11008 (byte-compile-file-form-autoload): Use `pcase'.
11009 (byte-compile-function-form): If quoting a symbol, check that it exists.
11010
110112013-08-07 Eli Zaretskii <eliz@gnu.org>
11012
11013 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
11014 and add a few popular commands found in batch files.
11015 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
11016 (dos-mode): Doc fixes.
11017
110182013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
11019
11020 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
11021 (dos-mode): Use setq-local. Add space after "rem".
11022 (dos-mode-syntax-table): Don't use "w" for symbol chars.
11023 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
11024
110252013-08-07 Arni Magnusson <arnima@hafro.is>
11026
11027 * progmodes/dos.el: New file.
11028 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
11029 dos-mode.
11030
110312013-08-06 Glenn Morris <rgm@gnu.org>
11032
11033 * calendar/calendar.el: Add new faces, and day-header-array.
11034 (calendar-weekday-header, calendar-weekend-header)
11035 (calendar-month-header): New faces.
11036 (calendar-day-header-construct): New function.
11037 (calendar-day-header-width): Also :set calendar-day-header-array.
11038 (calendar-american-month-header, calendar-european-month-header)
11039 (calendar-iso-month-header): Use calendar- faces.
11040 (calendar-generate-month):
11041 Use calendar-day-header-array for day headers; apply faces to them.
11042 (calendar-mode): Check calendar-font-lock-keywords non-nil.
11043 (calendar-abbrev-construct): Add optional maxlen argument.
11044 (calendar-day-name-array): Doc fix.
11045 (calendar-day-name-array, calendar-abbrev-length)
11046 (calendar-day-abbrev-array):
11047 Also :set calendar-day-header-array, and maybe redraw.
11048 (calendar-day-header-array): New option. (Bug#15007)
11049 (calendar-font-lock-keywords): Set to nil and make obsolete.
11050 (calendar-day-name): Add option to use header array.
11051
110522013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11053
11054 * net/shr.el (shr-render-td): Remove debugging.
11055 (shr-render-td): Make width computation consistent by defaulting
11056 all zero-width columns to 10 characters. This may not be optimal,
11057 but it's at least consistent.
11058 (shr-make-table-1): Redo last change to fix the real problem in
11059 colspan handling.
11060
110612013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
11062
11063 * files.el (cache-long-line-scans):
11064 Make obsolete alias to `cache-long-scans'.
11065
110662013-08-06 Juanma Barranquero <lekktu@gmail.com>
11067
11068 * frameset.el (frameset, frameset-filter-alist)
11069 (frameset-filter-params, frameset-save, frameset--reuse-frame)
11070 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
11071 (frameset-compute-pos): Rename from frameset--compute-pos,
11072 and add docstring.
11073 (frameset-move-onscreen): Use frameset-compute-pos.
11074 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
11075
11076 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
11077 Fix typos in docstrings.
11078
110792013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
11080
11081 * frame.el (get-other-frame): Tiny cleanup.
11082
110832013-08-06 Juanma Barranquero <lekktu@gmail.com>
11084
11085 * vc/vc.el (vc-default-ignore-completion-table):
11086 Silence byte-compiler warning.
11087
11088 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
11089 slot, which can indeed be nil.
11090 (frameset-live-filter-alist, frameset-persistent-filter-alist):
11091 Move entry for `left' from persistent to live filter alist.
11092 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
11093 Doc fixes.
11094 (frameset-filter-params): When restoring a frame, copy items added to
11095 `filtered', to avoid unwittingly modifying the original parameters.
11096 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
11097 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
11098
11099 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
11100 to use looking-at-p instead of looking-at. (Bug#15028)
11101
111022013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
11103
11104 Revert introduction of isearch-filter-predicates (bug#14714).
11105 Rely on add-function instead.
11106 * isearch.el (isearch-filter-predicates): Rename it back to
11107 isearch-filter-predicate.
11108 (isearch-message-prefix): Use advice-function-mapc and advice
11109 properties to get the isearch-message-prefix.
11110 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
11111 instead of run-hook-with-args-until-failure.
11112 (isearch-filter-visible): Not obsolete any more.
11113 * loadup.el: Preload nadvice.
11114 * replace.el (perform-replace): Revert to funcall
11115 instead of run-hook-with-args-until-failure.
11116 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
11117 * dired-aux.el (dired-isearch-filenames-mode): Rename from
11118 dired-isearch-filenames-toggle; make it into a proper minor mode.
11119 Use add/remove-function.
11120 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
11121 Call the minor-mode rather than add/remove-hook.
11122 (dired-isearch-filter-filenames):
11123 Remove isearch-message-prefix property.
11124 * info.el (Info--search-loop): New function, extracted from Info-search.
11125 Funcall isearch-filter-predicate instead of
11126 run-hook-with-args-until-failure isearch-filter-predicates.
11127 (Info-search): Use it.
11128 (Info-mode): Use isearch-filter-predicate instead of
11129 isearch-filter-predicates.
11130
111312013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11132
11133 Do not call to `selected-window' where it is assumed by default.
11134 Affected functions are `window-minibuffer-p', `window-dedicated-p',
11135 `window-hscroll', `window-width', `window-height', `window-buffer',
11136 `window-frame', `window-start', `window-point', `next-window'
11137 and `window-display-table'.
11138 * abbrev.el (abbrev--default-expand):
11139 * bs.el (bs--show-with-configuration):
11140 * buff-menu.el (Buffer-menu-mouse-select):
11141 * calc/calc.el (calc):
11142 * calendar/calendar.el (calendar-generate-window):
11143 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
11144 (diary-make-entry):
11145 * comint.el (send-invisible, comint-dynamic-complete-filename)
11146 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
11147 * completion.el (complete):
11148 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
11149 * disp-table.el (describe-current-display-table):
11150 * doc-view.el (doc-view-insert-image):
11151 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
11152 * ehelp.el (with-electric-help):
11153 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11154 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
11155 * emacs-lisp/helper.el (Helper-help-scroller):
11156 * emulation/cua-base.el (cua--post-command-handler-1):
11157 * eshell/esh-mode.el (eshell-output-filter):
11158 * ffap.el (ffap-gnus-wrapper):
11159 * help-macro.el (make-help-screen):
11160 * hilit-chg.el (highlight-compare-buffers):
11161 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
11162 * hl-line.el (global-hl-line-highlight):
11163 * icomplete.el (icomplete-simple-completing-p):
11164 * isearch.el (isearch-done):
11165 * jit-lock.el (jit-lock-stealth-fontify):
11166 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
11167 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11168 * mpc.el (mpc-tagbrowser, mpc):
11169 * net/rcirc.el (rcirc-any-buffer):
11170 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
11171 * play/landmark.el (landmark-max-width, landmark-max-height):
11172 * play/zone.el (zone):
11173 * progmodes/compile.el (compilation-goto-locus):
11174 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
11175 * progmodes/etags.el (find-tag-other-window):
11176 * progmodes/fortran.el (fortran-column-ruler):
11177 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
11178 * progmodes/verilog-mode.el (verilog-point-text):
11179 * reposition.el (reposition-window):
11180 * rot13.el (toggle-rot13-mode):
11181 * server.el (server-switch-buffer):
11182 * shell.el (shell-dynamic-complete-command)
11183 (shell-dynamic-complete-environment-variable):
11184 * simple.el (insert-buffer, set-selective-display)
11185 (delete-completion-window):
11186 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
11187 (speedbar-recenter):
11188 * startup.el (fancy-splash-head):
11189 * textmodes/ispell.el (ispell-command-loop):
11190 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
11191 * tutorial.el (help-with-tutorial):
11192 * vc/add-log.el (add-change-log-entry):
11193 * vc/compare-w.el (compare-windows):
11194 * vc/ediff-help.el (ediff-indent-help-message):
11195 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
11196 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
11197 (ediff-setup-control-frame):
11198 * vc/emerge.el (emerge-position-region):
11199 * vc/pcvs-util.el (cvs-bury-buffer):
11200 * window.el (walk-windows, mouse-autoselect-window-select):
11201 * winner.el (winner-set-conf, winner-undo): Related users changed.
11202
112032013-08-05 Juanma Barranquero <lekktu@gmail.com>
11204
11205 * frameset.el (frameset--set-id): Doc fix.
11206 (frameset-frame-id, frameset-frame-id-equal-p)
11207 (frameset-locate-frame-id): New functions.
11208 (frameset--process-minibuffer-frames, frameset--reuse-frame)
11209 (frameset-restore): Use them.
11210
112112013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11212
11213 Do not call to `selected-frame' where it is assumed by default.
11214 Affected functions are `raise-frame', `redraw-frame',
11215 `frame-first-window', `frame-terminal' and `delete-frame'.
11216 * calendar/appt.el (appt-disp-window):
11217 * epg.el (epg-wait-for-completion):
11218 * follow.el (follow-delete-other-windows-and-split)
11219 (follow-avoid-tail-recenter):
11220 * international/mule.el (set-terminal-coding-system):
11221 * mail/rmail.el (rmail-mail-return):
11222 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11223 * progmodes/f90.el (f90-add-imenu-menu):
11224 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
11225 * server.el (server-switch-buffer):
11226 * simple.el (delete-completion-window):
11227 * talk.el (talk):
11228 * term/xterm.el (terminal-init-xterm-modify-other-keys)
11229 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
11230 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
11231 * vc/ediff.el (ediff-documentation): Related users changed.
11232 * frame.el (selected-terminal): Remove the leftover.
11233
112342013-08-05 Glenn Morris <rgm@gnu.org>
11235
11236 * calendar/calendar.el (calendar-generate-month):
11237 Fix for calendar-column-width != 1 + calendar-day-digit-width.
11238 (calendar-generate-month, calendar-font-lock-keywords):
11239 Fix for calendar-day-header-width > length of any day name.
11240
112412013-08-05 Juanma Barranquero <lekktu@gmail.com>
11242
11243 * desktop.el (desktop-clear): Use new name of sort predicate.
11244
11245 * frameset.el (frameset): Add docstring. Move :version property to its
11246 own `version' slot.
11247 (frameset-copy): Rename from copy-frameset.
11248 (frameset-p): Check more thoroughly.
11249 (frameset-prop): Do not check for :version, which is no longer a prop.
11250 (frameset-live-filter-alist, frameset-persistent-filter-alist):
11251 Use new :never value instead of t.
11252 (frameset-filter-alist): Expand and clarify docstring.
11253 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
11254 (frameset-filter-minibuffer, frameset-filter-save-param)
11255 (frameset-filter-restore-param, frameset-filter-iconified):
11256 Add pointer to docstring of frameset-filter-alist.
11257 (frameset-filter-params): Rename filter values to be more meaningful:
11258 :never instead of t, and reverse the meanings of :save and :restore.
11259 (frameset--process-minibuffer-frames): Clarify error message.
11260 (frameset-save): Avoid unnecessary and confusing call to framep.
11261 Use new BOA constructor for framesets.
11262 (frameset--reuse-list): Doc fix.
11263 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
11264 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
11265 (frameset-minibufferless-first-p): Doc fix.
11266 Rename from frameset-sort-frames-for-deletion.
11267 (frameset-restore): Doc fixes. Use new function names.
11268 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
11269
112702013-08-04 Juanma Barranquero <lekktu@gmail.com>
11271
11272 * desktop.el (desktop-restore-forces-onscreen)
11273 (desktop-restore-reuses-frames): Document :keyword constant values.
11274 (desktop-filter-parameters-alist): Remove, now identical to
11275 frameset-filter-alist.
11276 (desktop--filter-tty*): Remove, moved to frameset.el.
11277 (desktop-save-frameset, desktop-restore-frameset):
11278 Do not pass :filters argument.
11279
11280 * frameset.el (frameset-live-filter-alist)
11281 (frameset-persistent-filter-alist): New variables.
11282 (frameset-filter-alist): Use them. Add autoload cookie.
11283 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
11284 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
11285 `frameset--id' (it's supposed to be internal to frameset.el).
11286 (frameset--process-minibuffer-frames): Ditto. Doc fix.
11287 (frameset--initial-params): New function.
11288 (frameset--get-frame): Use it. Doc fix.
11289 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
11290 Accept :all, not 'all.
11291 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
11292 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
11293 with fbound symbols. Fix frame id matching, and remove matching ids if
11294 the frame being restored is deleted. Obey :delete.
11295
112962013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11297
11298 * subr.el (macrop): New function.
11299 (text-clone--maintaining): New var.
11300 (text-clone--maintain): Rename from text-clone-maintain. Use it
11301 instead of inhibit-modification-hooks.
11302
11303 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
11304 a proxy, so as handle autoloads and redefinitions of the target.
11305 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
11306
11307 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
11308 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
11309 (pcase--mutually-exclusive-p): New function.
11310 (pcase--split-consp): Use it.
11311 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
11312 mutually exclusive with the current predicate.
11313
11314 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
11315 (edebug-macrop): Remove. Use `macrop' instead.
11316 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
11317 (ad-macro-p):
11318 * eshell/esh-cmd.el (eshell-macrop):
11319 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
11320
113212013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11322
11323 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
11324 (advice-mapc): New function, using it.
11325 (advice-function-member-p): New function.
11326 (advice--normalize): Store the cdr in advice--saved-rewrite since
11327 that's the part that will be changed.
11328 (advice--symbol-function): New function.
11329 (advice-remove): Handle removal before the function is defined.
11330 Adjust to new advice--saved-rewrite.
11331 (advice-member-p): Use advice-function-member-p and
11332 advice--symbol-function.
11333
113342013-08-04 Juanma Barranquero <lekktu@gmail.com>
11335
11336 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
11337 (frameset-filter-minibuffer): Doc fix.
11338 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
11339 (frameset--set-id, frameset--process-minibuffer-frames)
11340 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
11341 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
11342
11343 * desktop.el (desktop-clear): Only delete frames when called
11344 interactively and desktop-restore-frames is non-nil. Doc fix.
11345 (desktop-read): Set desktop-saved-frameset to nil.
11346
113472013-08-04 Xue Fuqiao <xfq.free@gmail.com>
11348
11349 * vc/vc.el (vc-ignore): Rewrite.
11350 (vc-default-ignore-completion-table, vc--read-lines)
11351 (vc--add-line, vc--remove-regexp): New functions.
11352
11353 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
11354 (vc-svn-ignore-completion-table): New function.
11355
11356 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
11357 (vc-hg-ignore-completion-table)
11358 (vc-hg-find-ignore-file): New functions.
11359
11360 * vc/vc-git.el (vc-git-ignore): Rewrite.
11361 (vc-git-ignore-completion-table)
11362 (vc-git-find-ignore-file): New functions.
11363
11364 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
11365
11366 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
11367 (vc-bzr-ignore-completion-table)
11368 (vc-bzr-find-ignore-file): New functions.
11369
113702013-08-03 Juanma Barranquero <lekktu@gmail.com>
11371
11372 * frameset.el (frameset-prop): New function and setter.
11373 (frameset-save): Do not modify frame list passed by the caller.
11374
113752013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11376
11377 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
11378
113792013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
11380
11381 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
11382 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
11383
11384 * custom.el (custom-initialize-default, custom-initialize-set)
11385 (custom-initialize-reset, custom-initialize-changed): Affect the
11386 toplevel-default-value (bug#6275, bug#14586).
11387 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
11388 for bug#6275.
11389
113902013-08-02 Juanma Barranquero <lekktu@gmail.com>
11391
11392 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11393 Add cl-def* expressions.
11394
11395 * frameset.el (frameset-filter-params): Fix order of arguments.
11396
113972013-08-02 Juanma Barranquero <lekktu@gmail.com>
11398
11399 Move code related to saving frames to frameset.el.
11400 * desktop.el: Require frameset.
11401 (desktop-restore-frames): Doc fix.
11402 (desktop-restore-reuses-frames): Rename from
11403 desktop-restoring-reuses-frames.
11404 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
11405 (desktop-clear): Clear frames too.
11406 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
11407 (desktop--filter-tty*, desktop-save, desktop-read):
11408 Use frameset functions.
11409 (desktop-before-saving-frames-functions, desktop--filter-*-color)
11410 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11411 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
11412 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
11413 (desktop--process-minibuffer-frames, desktop-save-frames)
11414 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
11415 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
11416 (desktop--sort-states, desktop-restoring-frames-p)
11417 (desktop-restore-frames): Remove. Most code moved to frameset.el.
11418 (desktop-restoring-frameset-p, desktop-restore-frameset)
11419 (desktop--check-dont-save, desktop-save-frameset): New functions.
11420 (desktop--app-id): New constant.
11421 (desktop-first-buffer, desktop-buffer-ok-count)
11422 (desktop-buffer-fail-count): Move before first use.
11423 * frameset.el: New file.
11424
114252013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11426
11427 * files.el: Use lexical-binding.
11428 (dir-locals-read-from-file): Remove unused `err' variable.
11429 (hack-dir-local-variables--warned-coding): New var.
11430 (hack-dir-local-variables): Use it to avoid repeated warnings.
11431 (make-backup-file-name--default-function): New function.
11432 (make-backup-file-name-function): Use it as default.
11433 (buffer-stale--default-function): New function.
11434 (buffer-stale-function): Use it as default.
11435 (revert-buffer-insert-file-contents--default-function): New function.
11436 (revert-buffer-insert-file-contents-function): Use it as default.
11437 (insert-directory): Avoid add-to-list.
11438
11439 * autorevert.el (auto-revert-handler): Simplify.
11440 Use buffer-stale--default-function.
11441
114422013-08-01 Tassilo Horn <tsdh@gnu.org>
11443
11444 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
11445
11446 * whitespace.el (whitespace-ensure-local-variables): New function.
11447 (whitespace-cleanup-region): Call it.
11448 (whitespace-turn-on): Call it.
11449
114502013-08-01 Michael Albinus <michael.albinus@gmx.de>
11451
11452 Complete file name handlers.
11453
11454 * net/tramp.el (tramp-handle-set-visited-file-modtime)
11455 (tramp-handle-verify-visited-file-modtime)
11456 (tramp-handle-file-notify-rm-watch): New functions.
11457 (tramp-call-process): Do not bind `default-directory'.
11458
11459 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11460 Order alphabetically.
11461 <access-file, add-name-to-file, dired-call-process>:
11462 <dired-compress-file, file-acl, file-notify-rm-watch>:
11463 <file-ownership-preserved-p, file-selinux-context>:
11464 <make-directory-internal, make-symbolic-link, set-file-acl>:
11465 <set-file-selinux-context, set-visited-file-modtime>:
11466 <verify-visited-file-modtime>: Add handler.
11467 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
11468
11469 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
11470 <file-notify-add-watch, file-notify-rm-watch>:
11471 <set-file-times, set-visited-file-modtime>:
11472 <verify-visited-file-modtime>: Add handler.
11473 (with-tramp-gvfs-error-message)
11474 (tramp-gvfs-handle-set-visited-file-modtime)
11475 (tramp-gvfs-fuse-file-name): Remove.
11476 (tramp-gvfs-handle-file-notify-add-watch)
11477 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
11478 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
11479
11480 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11481 Order alphabetically.
11482 <file-notify-rm-watch>: Use default Tramp handler.
11483 <executable-find>: Remove private handler.
11484 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
11485 `default-directory'.
11486 (tramp-sh-handle-executable-find)
11487 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
11488 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11489 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
11490 Do not use `format' in `tramp-message'.
11491
11492 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
11493 <file-notify-rm-watch, set-visited-file-modtime>:
11494 <verify-visited-file-modtime>: Add handler.
11495 (tramp-smb-call-winexe): Do not bind `default-directory'.
11496
114972013-08-01 Xue Fuqiao <xfq.free@gmail.com>
11498
11499 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
11500
115012013-07-31 Dmitry Gutov <dgutov@yandex.ru>
11502
11503 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
11504 use it.
11505 (log-view-diff-changeset): Same.
11506 (log-view-diff-common): Call backend command `previous-revision'
11507 to find out the previous revision, in both cases. Swap the
11508 variables `to' and `fr', so that `fr' usually refers to the
11509 earlier revision (Bug#14989).
11510
115112013-07-31 Kan-Ru Chen <kanru@kanru.info>
11512
11513 * ibuf-ext.el (ibuffer-filter-by-filename):
11514 Make it work with dired buffers too.
11515
115162013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
11517
11518 * emacs-lisp/re-builder.el (reb-color-display-p):
11519 * files.el (save-buffers-kill-terminal):
11520 * net/browse-url.el (browse-url):
11521 * server.el (server-save-buffers-kill-terminal):
11522 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
11523 Prefer nil to selected-frame for the first arg of frame-parameter.
11524
115252013-07-31 Xue Fuqiao <xfq.free@gmail.com>
11526
11527 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
11528
115292013-07-30 Stephen Berman <stephen.berman@gmx.net>
11530
11531 * minibuffer.el (completion--twq-all): Try and preserve each
11532 completion's case choice (bug#14907).
11533
115342013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11535
11536 * net/network-stream.el (open-network-stream): Mention the new
11537 :nogreeting parameter.
11538 (network-stream-open-starttls): Use the :nogreeting parameter
11539 (bug#14938).
11540
11541 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
11542
11543 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
11544 more natural than popping.
11545
11546 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
11547 (shr-urlify): Highlight under mouse.
11548
115492013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11550
11551 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
11552
11553 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
11554
11555 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
11556 buffer for output.
11557
11558 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
11559 point-min==1. Fix search string. Fix parentheses missing.
11560
11561 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
11562 assume point-min==1. Fix search string. Fix parentheses missing.
11563
11564 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
11565
11566 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
11567 buffer for output.
11568
115692013-07-29 Eli Zaretskii <eliz@gnu.org>
11570
11571 * frame.el (frame-notice-user-settings): Avoid inflooping when the
11572 initial frame is minibuffer-less. (Bug#14841)
11573
115742013-07-29 Michael Albinus <michael.albinus@gmx.de>
11575
11576 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
11577 option.
11578
11579 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11580 (tramp-maybe-open-connection): Use it.
11581
115822013-07-28 Juanma Barranquero <lekktu@gmail.com>
11583
11584 * desktop.el (desktop--make-frame): Include `minibuffer' in the
11585 minimal set of parameters passed when creating a frame, because
11586 the minibuffer status of a frame cannot be changed later.
11587
115882013-07-28 Stephen Berman <stephen.berman@gmx.net>
11589
11590 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
11591 replace-regexp-in-string and inadvertent omissions in previous change.
11592 (todo-filter-items): Ensure only file names are comma-separated in
11593 name of filtered items buffer.
11594
115952013-07-28 Juanma Barranquero <lekktu@gmail.com>
11596
11597 * desktop.el: Optionally force offscreen frames back onscreen.
11598 (desktop-restoring-reuses-frames): New option.
11599 (desktop--compute-pos, desktop--move-onscreen): New functions.
11600 (desktop--make-frame): Use desktop--move-onscreen.
11601
116022013-07-27 Alan Mackenzie <acm@muc.de>
11603
11604 Fontify a Java generic method as a function.
11605 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
11606 value to t.
11607
116082013-07-27 Stephen Berman <stephen.berman@gmx.net>
11609
11610 * calendar/todo-mode.el: Add command to rename todo files.
11611 (todo-rename-file): New command.
11612 (todo-key-bindings-t): Add key binding for it. Change the
11613 bindings of todo-filter-regexp-items(-multifile) to use `x'
11614 instead of `r', since the latter is better suited to the new
11615 renaming command.
11616
116172013-07-27 Alan Mackenzie <acm@muc.de>
11618
11619 Make Java try-with-resources statement parse properly.
11620 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
11621 (c-block-stmt-1-2-key): New language constants/variables.
11622 * progmodes/cc-engine.el (c-beginning-of-statement-1)
11623 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
11624 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
11625 with c-block-stmt-1-2-key.
11626
116272013-07-27 Juanma Barranquero <lekktu@gmail.com>
11628
11629 * desktop.el (desktop--make-frame): Apply most frame parameters after
11630 creating the frame to force (partially or totally) offscreen frames to
11631 be restored as such.
11632
116332013-07-26 Xue Fuqiao <xfq.free@gmail.com>
11634
11635 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
11636 (Bug#14948)
11637
116382013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11639
11640 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
11641 `base' arg of backtrace-frame.
11642
116432013-07-26 Eli Zaretskii <eliz@gnu.org>
11644
11645 * simple.el (list-processes): Doc fix.
11646
116472013-07-26 Juanma Barranquero <lekktu@gmail.com>
11648
11649 * desktop.el (desktop--select-frame):
11650 Try harder to reuse existing frames.
11651
116522013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11653
11654 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
11655 (edebug-eval): Use backtrace-eval.
11656 (edebug--display, edebug--recursive-edit): Don't let-bind the
11657 edebug-outer-* vars that keep track of variables we locally let-bind.
11658 (edebug-outside-excursion): Don't restore outside values of locally
11659 let-bound vars.
11660 (edebug--display): Use user-error.
11661 (cl-lexical-debug, cl-debug-env): Remove.
11662
116632013-07-26 Juanma Barranquero <lekktu@gmail.com>
11664
11665 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
11666 are restored to be sure that they are visible before deleting any
11667 remaining ones.
11668
116692013-07-26 Matthias Meulien <orontee@gmail.com>
11670
11671 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
11672 vc-print-root-log. (Bug#14948)
11673
116742013-07-26 Richard Stallman <rms@gnu.org>
11675
11676 Add aliases for encrypting mail.
11677 * epa.el (epa-mail-aliases): New option.
11678 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
11679 Bind inhibit-read-only so read-only text doesn't ruin everything.
11680 (epa-mail-default-recipients): New subroutine broken out.
11681 Handle epa-mail-aliases.
11682
116832013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11684
11685 Add support for lexical variables to the debugger's `e' command.
11686 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
11687 vars, except for debugger-outer-match-data.
11688 (debugger-frame-number): Move check for "on a function call" from
11689 callers into it. Add `skip-base' argument.
11690 (debugger-frame, debugger-frame-clear): Simplify accordingly.
11691 (debugger-env-macro): Only reset the state stored in non-variables,
11692 i.e. current-buffer and match-data.
11693 (debugger-eval-expression): Rewrite using backtrace-eval.
11694 * subr.el (internal--called-interactively-p--get-frame): Remove.
11695 (called-interactively-p):
11696 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
11697 `base' arg of backtrace-frame instead.
11698
116992013-07-26 Glenn Morris <rgm@gnu.org>
11700
11701 * align.el (align-regexp): Doc fix. (Bug#14857)
11702 (align-region): Explicit error if subexpression missing/does not match.
11703
11704 * simple.el (global-visual-line-mode):
11705 Do not duplicate the mode lighter. (Bug#14858)
11706
117072013-07-25 Martin Rudalics <rudalics@gmx.at>
11708
11709 * window.el (display-buffer): In display-buffer bind
11710 split-window-keep-point to t, bug#14829.
11711
117122013-07-25 Juanma Barranquero <lekktu@gmail.com>
11713
11714 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
11715 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
11716 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
11717 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11718 Change accordingly.
11719 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11720 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
11721
117222013-07-25 Glenn Morris <rgm@gnu.org>
11723
11724 * dired-x.el (dired-mark-extension): Convert comment to doc string.
11725
117262013-07-25 Juanma Barranquero <lekktu@gmail.com>
11727
11728 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
11729 parameter to modify-frame-parameters if the value has not changed;
11730 this is a workaround for bug#14949.
11731 (desktop--make-frame): On cl-delete-if call, check parameter name,
11732 not full parameter.
11733
117342013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11735
11736 * vc/vc.el (vc-ignore): New function.
11737
11738 * vc/vc-svn.el (vc-svn-ignore): New function.
11739
11740 * vc/vc-hg.el (vc-hg-ignore): New function.
11741
11742 * vc/vc-git.el (vc-git-ignore): New function.
11743
11744 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
11745 (vc-dir-ignore): New function.
11746
11747 * vc/vc-cvs.el (vc-cvs-ignore): New function.
11748 (cvs-append-to-ignore): Move here from pcvs.el.
11749
11750 * vc/vc-bzr.el (vc-bzr-ignore): New function.
11751
11752 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
11753
117542013-07-24 Juanma Barranquero <lekktu@gmail.com>
11755
11756 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
11757 (desktop-restore-frames): Warn when deleting an existing frame failed.
11758
117592013-07-24 Glenn Morris <rgm@gnu.org>
11760
11761 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
11762
117632013-07-24 Michael Albinus <michael.albinus@gmx.de>
11764
11765 * filenotify.el (file-notify-supported-p):
11766 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11767 Remove functions.
11768
11769 * autorevert.el (auto-revert-use-notify)
11770 (auto-revert-notify-add-watch):
11771 * net/tramp.el (tramp-file-name-for-operation):
11772 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11773 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11774 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11775 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11776 Remove `file-notify-supported-p' entry.
11777
117782013-07-24 Glenn Morris <rgm@gnu.org>
11779
11780 * printing.el: Replace all uses of deleted ps-windows-system,
11781 ps-lp-system, ps-flatten-list with lpr- versions.
11782
117832013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11784
11785 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
11786 checked with memq (bug#14935).
11787
11788 * files.el (revert-buffer-function): Use a non-nil default.
11789 (revert-buffer-preserve-modes): Declare var to
11790 provide access to the `preserve-modes' argument.
11791 (revert-buffer): Let-bind it.
11792 (revert-buffer--default): New function, extracted from revert-buffer.
11793
117942013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11795
11796 * lpr.el: Signal print errors more prominently.
11797 (print-region-function): Don't default to nil.
11798 (lpr-print-region): New function, extracted from print-region-1.
11799 Check lpr's return value and signal an error in case of problem.
11800 (print-region-1): Use it.
11801 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
11802 versions instead.
11803 (ps-printer-name): Default to nil.
11804 (ps-printer-name-option): Default to lpr-printer-switch.
11805 (ps-print-region-function): Don't default to nil.
11806 (ps-postscript-code-directory): Simplify default.
11807 (ps-do-despool): Use lpr-print-region to properly check the outcome.
11808 (ps-string-list, ps-eval-switch, ps-flatten-list)
11809 (ps-flatten-list-1): Remove.
11810 (ps-multibyte-buffer): Avoid setq.
11811 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
11812 (print-region-function, ps-print-region-function): Don't set them here.
11813
118142013-07-24 Xue Fuqiao <xfq.free@gmail.com>
11815
11816 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
11817 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
11818 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
11819 (ido-decorations): Doc fix.
11820
11821 * ansi-color.el: Fix old URL.
11822
118232013-07-23 Michael R. Mauger <michael@mauger.com>
11824
11825 * progmodes/sql.el: Version 3.3
11826 (sql-product-alist): Improve oracle :prompt-cont-regexp.
11827 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
11828 (sql-interactive-remove-continuation-prompt): Rewrite, use
11829 functions above. Fix continuation prompt and complete output line
11830 handling.
11831 (sql-redirect-one, sql-execute): Use `read-only-mode' on
11832 redirected output buffer.
11833 (sql-mode): Restore deleted code (Bug#13591).
11834
118352013-07-23 Juanma Barranquero <lekktu@gmail.com>
11836
11837 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
11838
118392013-07-23 Michael Albinus <michael.albinus@gmx.de>
11840
11841 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
11842
11843 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11844 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11845 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
11846
118472013-07-23 Juanma Barranquero <lekktu@gmail.com>
11848
11849 * desktop.el (desktop-clear): Simplify; remove useless checks
11850 against invalid buffer names.
11851 (desktop-list*): Use cl-list*.
11852 (desktop-buffer-info, desktop-create-buffer): Simplify.
11853
118542013-07-23 Leo Liu <sdl.web@gmail.com>
11855
11856 * bookmark.el (bookmark-make-record): Restore NAME as a default
11857 value. (Bug#14933)
11858
118592013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11860
11861 * emacs-lisp/autoload.el (autoload--setup-output): New function,
11862 extracted from autoload--insert-text.
11863 (autoload--insert-text): Remove.
11864 (autoload--print-cookie-text): New function, extracted from
11865 autoload--insert-cookie-text.
11866 (autoload--insert-cookie-text): Remove.
11867 (autoload-generate-file-autoloads): Adjust calls accordingly.
11868
11869 * winner.el (winner-hook-installed-p): Remove.
11870 (winner-mode): Simplify accordingly.
11871
11872 * subr.el (add-to-list): Fix compiler-macro when `append' is
11873 not constant. Don't use `cl-member' for the base case.
11874
11875 * progmodes/subword.el: Fix boundary case (bug#13758).
11876 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
11877 own group.
11878 (subword-backward-regexp): Make it a constant.
11879 (subword-forward-internal): Don't treat a trailing capital as the
11880 beginning of a word.
11881
118822013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
11883
11884 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11885 global value of tabulated-list-revert-hook (bug#14930).
11886
118872013-07-22 Juanma Barranquero <lekktu@gmail.com>
11888
11889 * desktop.el: Require 'cl-lib.
11890 (desktop-before-saving-frames-functions): New hook.
11891 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11892 for frames being saved. Rename from desktop--save-minibuffer-frames.
11893 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11894 Do not save frames with non-nil `desktop-dont-save' parameter.
11895 Filter out deleted frames.
11896 (desktop--find-frame): Use cl-find-if.
11897 (desktop--select-frame): Use cl-(first|second|third) to access values
11898 of desktop-mini.
11899 (desktop--make-frame): Use cl-delete-if.
11900 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11901 (desktop-restore-frames): Use cl-(first|second|third) to access values
11902 of desktop-mini. Look for visible frame at the end, not while
11903 restoring frames.
11904
11905 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11906 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11907 Use string-match-p, looking-at-p (bug#14927).
11908
119092013-07-21 Juanma Barranquero <lekktu@gmail.com>
11910
11911 * desktop.el (desktop-saved-frame-states):
11912 Rename from desktop--saved-states; all users changed.
11913 (desktop-save-frames): Rename from desktop--save-frames.
11914 Do not save state to desktop file.
11915 (desktop-save): Save desktop-saved-frame-states to desktop file
11916 and reset to nil.
11917 (desktop-restoring-frames-p): New function.
11918 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11919 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11920 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11921
11922 * desktop.el: Correctly restore iconified frames.
11923 (desktop--filter-iconified-position): New function.
11924 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11925
119262013-07-20 Glenn Morris <rgm@gnu.org>
11927
11928 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11929 Let `message' do the formatting.
11930 (def-gdb-preempt-display-buffer): Add explicit format.
11931
11932 * image-dired.el (image-dired-track-original-file):
11933 Use with-current-buffer.
11934 (image-dired-track-thumbnail): Use with-current-buffer.
11935 Avoid changing point of wrong window.
11936
11937 * image-dired.el (image-dired-track-original-file):
11938 Avoid changing point of wrong window. (Bug#14909)
11939
119402013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11941
11942 * progmodes/gdb-mi.el (gdb-done-or-error):
11943 Guard against "%" in gdb output. (Bug#14127)
11944
119452013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11946
11947 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11948 (Bug#14826)
11949
11950 * international/mule.el (coding-system-iso-2022-flags): Fix last
11951 change.
11952
119532013-07-20 Kenichi Handa <handa@gnu.org>
11954
11955 * international/mule.el (coding-system-iso-2022-flags):
11956 Add `8-bit-level-4'. (Bug#8522)
11957
119582013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11959
11960 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11961 (bug#14815).
11962
11963 * net/eww.el (eww-process-text-input): Allow inputting when the
11964 point is at the start of the line, as the properties aren't
11965 front-sticky.
11966
11967 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11968 degenerate widths.
11969
119702013-07-19 Richard Stallman <rms@gnu.org>
11971
11972 * epa.el (epa-popup-info-window): Doc fix.
11973
11974 * subr.el (split-string): New arg TRIM.
11975
119762013-07-18 Juanma Barranquero <lekktu@gmail.com>
11977
11978 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11979 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11980
119812013-07-18 Michael Albinus <michael.albinus@gmx.de>
11982
11983 * filenotify.el (file-notify--library): Rename from
11984 `file-notify-support'. Do not autoload. Adapt all uses.
11985 (file-notify-supported-p): New defun.
11986
11987 * autorevert.el (auto-revert-use-notify):
11988 Use `file-notify-supported-p' instead of `file-notify-support'.
11989 Adapt docstring.
11990 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11991
11992 * net/tramp.el (tramp-file-name-for-operation):
11993 Add `file-notify-supported-p'.
11994
11995 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11996 New defun.
11997 (tramp-sh-file-name-handler-alist): Add it as handler for
11998 `file-notify-supported-p '.
11999
12000 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
12001 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12002 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12003 Add `ignore' as handler for `file-notify-*' functions.
12004
120052013-07-17 Eli Zaretskii <eliz@gnu.org>
12006
12007 * simple.el (line-move-partial, line-move): Don't start vscroll or
12008 scroll-up if the current line is not taller than the window.
12009 (Bug#14881)
12010
120112013-07-16 Dmitry Gutov <dgutov@yandex.ru>
12012
12013 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
12014 highlight question marks in the method names as strings.
12015 (ruby-block-beg-keywords): Inline.
12016 (ruby-font-lock-keyword-beg-re): Extract from
12017 `ruby-font-lock-keywords'.
12018
120192013-07-16 Jan Djärv <jan.h.d@swipnet.se>
12020
12021 * frame.el (blink-cursor-blinks): New defcustom.
12022 (blink-cursor-blinks-done): New defvar.
12023 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
12024 (blink-cursor-timer-function): Check if number of blinks has been
12025 done on X and NS.
12026 (blink-cursor-suspend, blink-cursor-check): New defuns.
12027
120282013-07-15 Glenn Morris <rgm@gnu.org>
12029
12030 * edmacro.el (edmacro-format-keys): Fix previous change.
12031
120322013-07-15 Paul Eggert <eggert@cs.ucla.edu>
12033
12034 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
12035 The hack didn't work outside English locales anyway.
12036
120372013-07-15 Juanma Barranquero <lekktu@gmail.com>
12038
12039 * simple.el (define-alternatives): Rename from alternatives-define,
12040 per RMS' suggestion.
12041
120422013-07-14 Juanma Barranquero <lekktu@gmail.com>
12043
12044 * desktop.el (desktop-restore-frames): Change default to t.
12045 (desktop-restore-in-current-display): Now offer more options.
12046 (desktop-restoring-reuses-frames): New customization option.
12047 (desktop--saved-states): Doc fix.
12048 (desktop-filter-parameters-alist): New variable, renamed and expanded
12049 from desktop--excluded-frame-parameters.
12050 (desktop--target-display): New variable.
12051 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
12052 (desktop--filter-tty*, desktop--filter-*-color)
12053 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
12054 (desktop--filter-save-desktop-parm)
12055 (desktop-restore-in-original-display-p): New functions.
12056 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
12057 (desktop--save-minibuffer-frames): New function, inspired by a similar
12058 function from Martin Rudalics.
12059 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
12060 (desktop--restore-in-this-display-p): Remove.
12061 (desktop--find-frame): Rename from desktop--find-frame-in-display
12062 and add predicate argument.
12063 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
12064 (desktop--reuse-list): New variable.
12065 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
12066 New functions.
12067 (desktop--restore-frames): Add support for "minibuffer-special" frames.
12068
120692013-07-14 Michael Albinus <michael.albinus@gmx.de>
12070
12071 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
12072
120732013-07-13 Dmitry Gutov <dgutov@yandex.ru>
12074
12075 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12076 Highlight conversion methods on Kernel.
12077
120782013-07-13 Alan Mackenzie <acm@muc.de>
12079
12080 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
12081 and comment it out. This out-commenting enables certain C++
12082 declarations to be parsed correctly.
12083
120842013-07-13 Eli Zaretskii <eliz@gnu.org>
12085
12086 * international/mule.el (define-coding-system): Doc fix.
12087
12088 * simple.el (default-font-height): Don't call font-info if the
12089 frame's default font didn't change since the frame was created.
12090 (Bug#14838)
12091
120922013-07-13 Leo Liu <sdl.web@gmail.com>
12093
12094 * ido.el (ido-read-file-name): Guard against non-symbol value.
12095
120962013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
12097
12098 * progmodes/python.el (python-imenu--build-tree): Fix corner case
12099 in nested defuns.
12100
121012013-07-13 Leo Liu <sdl.web@gmail.com>
12102
12103 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
12104 ido-set-matches call. (Bug#6852)
12105
121062013-07-12 Dmitry Gutov <dgutov@yandex.ru>
12107
12108 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
12109 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
12110 Ruby 2.0.
12111 (ruby-font-lock-keywords): Distinguish calls to functions with
12112 module-like names from module references. Highlight character
12113 literals.
12114
121152013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
12116
12117 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
12118 (gdb-send): Handle continued commands. (Bug#14847)
12119
121202013-07-12 Juanma Barranquero <lekktu@gmail.com>
12121
12122 * desktop.el (desktop--v2s): Remove unused local variable.
12123 (desktop-save-buffer): Make defvar-local; adjust docstring.
12124 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
12125 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
12126
121272013-07-12 Andreas Schwab <schwab@linux-m68k.org>
12128
12129 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
12130
121312013-07-12 Eli Zaretskii <eliz@gnu.org>
12132
12133 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
12134 (Bug#14842)
12135
121362013-07-12 Glenn Morris <rgm@gnu.org>
12137
12138 * doc-view.el: Require cl-lib at runtime too.
12139 (doc-view-remove-if): Remove.
12140 (doc-view-search-next-match, doc-view-search-previous-match):
12141 Use cl-remove-if.
12142
12143 * edmacro.el: Require cl-lib at runtime too.
12144 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
12145 (edmacro-mismatch, edmacro-subseq): Remove.
12146
12147 * shadowfile.el: Require cl-lib.
12148 (shadow-remove-if): Remove.
12149 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
12150 Use cl-remove-if.
12151
12152 * wid-edit.el: Require cl-lib.
12153 (widget-choose): Use cl-remove-if.
12154 (widget-remove-if): Remove.
12155
12156 * progmodes/ebrowse.el: Require cl-lib at runtime too.
12157 (ebrowse-delete-if-not): Remove.
12158 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
12159 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
12160 Use cl-delete-if-not.
12161
121622013-07-12 Juanma Barranquero <lekktu@gmail.com>
12163
12164 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
12165 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
12166
121672013-07-12 Leo Liu <sdl.web@gmail.com>
12168
12169 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
12170
121712013-07-11 Glenn Morris <rgm@gnu.org>
12172
12173 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
12174 (edebug-gensym-index, edebug-gensym):
12175 Remove reimplementation of cl-gensym.
12176 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
12177
12178 * thumbs.el: Require cl-lib at run-time too.
12179 (thumbs-gensym-counter, thumbs-gensym):
12180 Remove reimplementation of cl-gensym.
12181 (thumbs-temp-file): Use cl-gensym.
12182
12183 * emacs-lisp/ert.el: Require cl-lib at runtime too.
12184 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
12185 (ert--intersection, ert--set-difference, ert--set-difference-eq)
12186 (ert--union, ert--gensym-counter, ert--gensym-counter)
12187 (ert--coerce-to-vector, ert--remove*, ert--string-position)
12188 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
12189 (ert-make-test-unbound, ert--expand-should-1)
12190 (ert--expand-should, ert--should-error-handle-error)
12191 (should-error, ert--explain-equal-rec)
12192 (ert--plist-difference-explanation, ert-select-tests)
12193 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
12194 Use cl-lib functions rather than reimplementations.
12195
121962013-07-11 Michael Albinus <michael.albinus@gmx.de>
12197
12198 * net/tramp.el (tramp-methods): Extend docstring.
12199 (tramp-connection-timeout): New defcustom.
12200 (tramp-error-with-buffer): Reset timestamp only when appropriate.
12201 (with-tramp-progress-reporter): Simplify.
12202 (tramp-process-actions): Improve messages.
12203
12204 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
12205 * net/tramp-sh.el (tramp-maybe-open-connection):
12206 Use `tramp-connection-timeout'.
12207 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
12208 (Bug#14808)
12209
122102013-07-11 Leo Liu <sdl.web@gmail.com>
12211
12212 * ido.el (ido-read-file-name): Conform to the requirements of
12213 read-file-name. (Bug#11861)
12214 (ido-read-directory-name): Conform to the requirements of
12215 read-directory-name.
12216
122172013-07-11 Juanma Barranquero <lekktu@gmail.com>
12218
12219 * subr.el (delay-warning): New function.
12220
122212013-07-10 Eli Zaretskii <eliz@gnu.org>
12222
12223 * simple.el (default-line-height): New function.
12224 (line-move-partial, line-move): Use it instead of computing the
12225 line height inline.
12226 (line-move-partial): Always compute ROWH. If the last line is
12227 partially-visible, but its text is completely visible, allow
12228 cursor to enter such a partially-visible line.
12229
122302013-07-10 Michael Albinus <michael.albinus@gmx.de>
12231
12232 Improve error messages. (Bug#14808)
12233
12234 * net/tramp.el (tramp-current-connection): New defvar, moved from
12235 tramp-sh.el.
12236 (tramp-message-show-progress-reporter-message): Remove, not
12237 needed anymore.
12238 (tramp-error-with-buffer): Show message in minibuffer.
12239 Discard input before waiting. Reset connection timestamp.
12240 (with-tramp-progress-reporter): Improve messages.
12241 (tramp-process-actions): Use progress reporter. Delete process in
12242 case of error. Improve messages.
12243
12244 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
12245 Call `tramp-error-with-buffer' with vector and buffer.
12246 (tramp-current-connection): Remove.
12247 (tramp-maybe-open-connection): The car of
12248 `tramp-current-connection' are the first 3 slots of the vector.
12249
122502013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
12251
12252 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
12253 inside continued strings.
12254
122552013-07-10 Paul Eggert <eggert@cs.ucla.edu>
12256
12257 Timestamp fixes for undo (Bug#14824).
12258 * files.el (clear-visited-file-modtime): Move here from fileio.c.
12259
122602013-07-10 Leo Liu <sdl.web@gmail.com>
12261
12262 * files.el (require-final-newline): Allow safe local value.
12263 (Bug#14834)
12264
122652013-07-09 Leo Liu <sdl.web@gmail.com>
12266
12267 * ido.el (ido-read-directory-name): Handle fallback.
12268 (ido-read-file-name): Update DIR to ido-current-directory.
12269 (Bug#1516)
12270 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
12271
122722013-07-09 Dmitry Gutov <dgutov@yandex.ru>
12273
12274 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
12275 "autoload". Remove "warn lower camel case" section, previously
12276 commented out. Highlight negation char. Do not highlight the
12277 target in singleton method definitions.
12278
122792013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12280
12281 * faces.el (tty-setup-hook): Declare the hook.
12282
12283 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
12284 and detect when a guard/pred depends on local vars (bug#14773).
12285 (pcase--u1): Adjust caller.
12286
122872013-07-08 Eli Zaretskii <eliz@gnu.org>
12288
12289 * simple.el (line-move-partial, line-move): Account for
12290 line-spacing.
12291 (line-move-partial): Avoid setting vscroll when the last
12292 partially-visible line in window is of default height.
12293
122942013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12295
12296 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
12297 been used a while.
12298
122992013-07-07 Juanma Barranquero <lekktu@gmail.com>
12300
12301 * subr.el (read-quoted-char): Remove unused local variable `char'.
12302
123032013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
12304
12305 * vc/ediff.el (ediff-version): Version update.
12306 (ediff-files-command, ediff3-files-command, ediff-merge-command)
12307 (ediff-merge-with-ancestor-command, ediff-directories-command)
12308 (ediff-directories3-command, ediff-merge-directories-command)
12309 (ediff-merge-directories-with-ancestor-command): New functions.
12310 All are command-line interfaces to ediff: to facilitate calling
12311 Emacs with the appropriate ediff functions invoked.
12312
12313 * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
12314 New function.
12315 (viper-save-kill-buffer): Check if buffer is modified.
12316
12317 * emulation/viper.el (viper-version): Version update.
12318 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
12319
123202013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
12321
12322 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
12323 * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
12324 (viper-intercept-ESC-key): Simplify.
12325 * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
12326 don't use kbd.
12327 * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
12328 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
12329 (viper-setup-ESC-to-escape): New functions.
12330 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
12331 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
12332
123332013-07-07 Eli Zaretskii <eliz@gnu.org>
12334
12335 * simple.el (default-font-height, window-screen-lines):
12336 New functions.
12337 (line-move, line-move-partial): Use them instead of
12338 frame-char-height and window-text-height. This makes scrolling
12339 text smoother when the buffer's default face uses a font that is
12340 different from the frame's default font.
12341
123422013-07-06 Jan Djärv <jan.h.d@swipnet.se>
12343
12344 * files.el (write-file): Do not display confirm dialog for NS,
12345 it does its own dialog, which can't be canceled (Bug#14578).
12346
123472013-07-06 Eli Zaretskii <eliz@gnu.org>
12348
12349 * simple.el (line-move-partial): Adjust the row returned by
12350 posn-at-point for the current window-vscroll. (Bug#14567)
12351
123522013-07-06 Michael Albinus <michael.albinus@gmx.de>
12353
12354 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
12355 (tramp-sh-file-inotifywait-process-filter): Handle file names with
12356 spaces.
12357
123582013-07-06 Martin Rudalics <rudalics@gmx.at>
12359
12360 * window.el (window-state-put-stale-windows): New variable.
12361 (window--state-put-2): Save list of windows without matching buffer.
12362 (window-state-put): Remove "bufferless" windows if possible.
12363
123642013-07-06 Juanma Barranquero <lekktu@gmail.com>
12365
12366 * simple.el (alternatives-define): Remove leftover :group keyword.
12367 Tweak docstring.
12368
123692013-07-06 Leo Liu <sdl.web@gmail.com>
12370
12371 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
12372 (ido-enable-virtual-buffers): New variable.
12373 (ido-buffer-internal, ido-toggle-virtual-buffers)
12374 (ido-make-buffer-list): Use it.
12375 (ido-exhibit): Support turning on and off virtual buffers
12376 automatically.
12377
123782013-07-06 Juanma Barranquero <lekktu@gmail.com>
12379
12380 * simple.el (alternatives-define): New macro.
12381
123822013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
12383
12384 * subr.el (read-quoted-char): Use read-key.
12385 (sit-for): Let read-event decode tty input (bug#14782).
12386
123872013-07-05 Stephen Berman <stephen.berman@gmx.net>
12388
12389 * calendar/todo-mode.el: Add handling of file deletion, both by
12390 mode command and externally. Fix various related bugs.
12391 Clarify Commentary and improve some documentation strings and code.
12392 (todo-delete-file): New command.
12393 (todo-check-file): New function.
12394 (todo-show): Handle external deletion of the file we're trying to
12395 show (bug#14688). Replace called-interactively-p by an optional
12396 prefix argument to avoid problematic interaction with catch form
12397 when byte compiled (bug#14702).
12398 (todo-quit): Handle external deletion of the archive's todo file.
12399 Make sure the buffer that was visiting the archive file is still
12400 live before trying to bury it.
12401 (todo-category-completions): Handle external deletion of any
12402 category completion files.
12403 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
12404 of todo files, in case of external deletion.
12405 (todo-add-file): Replace unnecessary setq by let-binding.
12406 (todo-find-archive): Check whether there are any archives.
12407 Replace unnecessary setq by let-binding.
12408 (todo-archive-done-item): Use find-file-noselect to get the
12409 archive buffer whether or not the archive already exists.
12410 Remove superfluous code. Use file size instead of buffer-file-name to
12411 check if the archive is new; if it is, update list of archives.
12412 (todo-default-todo-file): Allow nil to be a valid value for when
12413 there are no todo files.
12414 (todo-reevaluate-default-file-defcustom): Use corrected definition
12415 of todo-default-todo-file.
12416 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
12417 (todo-delete-category, todo-show-categories-table)
12418 (todo-category-number): Clarify comment.
12419 (todo-filter-items): Clarify documentation string.
12420 (todo-show-current-file, todo-display-as-todo-file)
12421 (todo-reset-and-enable-done-separator): Tweak documentation string.
12422 (todo-done-separator): Make separator length window-width, since
12423 bug#2749 is now fixed.
12424
124252013-07-05 Michael Albinus <michael.albinus@gmx.de>
12426
12427 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
12428 Support both "gvfs-monitor-dir" and "inotifywait".
12429 (tramp-sh-file-inotifywait-process-filter): Rename from
12430 `tramp-sh-file-notify-process-filter'.
12431 (tramp-sh-file-gvfs-monitor-dir-process-filter)
12432 (tramp-get-remote-gvfs-monitor-dir): New defuns.
12433
124342013-07-05 Leo Liu <sdl.web@gmail.com>
12435
12436 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
12437
124382013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12439
12440 * frame.el (display-pixel-height, display-pixel-width)
12441 (display-mm-height, display-mm-width): Mention behavior on
12442 multi-monitor setups in docstrings.
12443 (w32-display-monitor-attributes-list): Declare function.
12444 (display-monitor-attributes-list): Use it.
12445
124462013-07-04 Michael Albinus <michael.albinus@gmx.de>
12447
12448 * filenotify.el: New package.
12449
12450 * autorevert.el (top): Require filenotify.el.
12451 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
12452 instead.
12453 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
12454 (auto-revert-notify-handler): Use `file-notify-*' functions.
12455
12456 * subr.el (file-notify-handle-event): Move function to filenotify.el.
12457
12458 * net/tramp.el (tramp-file-name-for-operation):
12459 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
12460
12461 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
12462 for `file-notify-add-watch' and `file-notify-rm-watch'.
12463 (tramp-process-sentinel): Improve trace.
12464 (tramp-sh-handle-file-notify-add-watch)
12465 (tramp-sh-file-notify-process-filter)
12466 (tramp-sh-handle-file-notify-rm-watch)
12467 (tramp-get-remote-inotifywait): New defuns.
12468
124692013-07-03 Juri Linkov <juri@jurta.org>
12470
12471 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
12472 call of `occur-read-primary-args' to interactive spec.
12473
12474 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
12475 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
12476
124772013-07-03 Matthias Meulien <orontee@gmail.com>
12478
12479 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
12480 `Buffer-menu-multi-occur'. Add it to the menu.
12481 (Buffer-menu-mode): Document it in docstring.
12482 (Buffer-menu-multi-occur): New command. (Bug#14673)
12483
124842013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12485
12486 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
12487 keywords and built-ins.
12488
124892013-07-03 Glenn Morris <rgm@gnu.org>
12490
12491 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
12492
12493 Make info-xref checks case-sensitive by default
12494 * info.el (Info-find-node, Info-find-in-tag-table)
12495 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
12496 Add option for exact case matching of nodes.
12497 * info-xref.el (info-xref): New custom group.
12498 (info-xref-case-fold): New option.
12499 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
12500
125012013-07-03 Leo Liu <sdl.web@gmail.com>
12502
12503 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
12504
125052013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12506
12507 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
12508 middle of block statement initially, lower the depth. Remove
12509 FIXME comment, not longer valid. Remove middle of block statement
12510 detection, no need to do that anymore since we've been using
12511 `ruby-parse-region' here.
12512
125132013-07-02 Jan Djärv <jan.h.d@swipnet.se>
12514
12515 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
12516
125172013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
12518
12519 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
12520
125212013-07-01 Juanma Barranquero <lekktu@gmail.com>
12522
12523 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
12524 (desktop-restore-in-current-display): New customization option.
12525 (desktop--excluded-frame-parameters): Add `font'.
12526 (desktop--save-frames): Rename from desktop--save-windows.
12527 (desktop--restore-in-this-display-p): New function.
12528 (desktop--make-full-frame): Remove unwanted width/height from
12529 full(width|height) frames.
12530 (desktop--restore-frames): Rename from desktop--restore-windows.
12531 Obey desktop-restore-current-display. Do not delete old frames or
12532 select a new frame unless we were able to restore at least one frame.
12533
125342013-06-30 Michal Nazarewicz <mina86@mina86.com>
12535
12536 * files.el (find-file-noselect): Simplify conditional expression.
12537
12538 * textmodes/remember.el (remember-append-to-file):
12539 Don't mix `find-buffer-visiting' and `get-file-buffer'.
12540
12541 Add `remember-notes' function to store random notes across Emacs
12542 restarts.
12543 * textmodes/remember.el (remember-data-file): Add :set callback to
12544 affect notes buffer (if any).
12545 (remember-notes): New command.
12546 (remember-notes-buffer-name, bury-remember-notes-on-kill):
12547 New defcustoms for the `remember-notes' function.
12548 (remember-notes-save-and-bury-buffer): New command.
12549 (remember-notes-mode-map): New variable.
12550 (remember-mode): New minor mode.
12551 (remember-notes--kill-buffer-query): New function.
12552 * startup.el (initial-buffer-choice): Add notes to custom type.
12553
125542013-06-30 Eli Zaretskii <eliz@gnu.org>
12555
12556 * bindings.el (right-char, left-char): Don't call sit-for, this is
12557 no longer needed. Use arithmetic comparison only for numerical
12558 arguments.
12559
12560 * international/mule-cmds.el (select-safe-coding-system):
12561 Handle the case of FROM being a string correctly. (Bug#14755)
12562
125632013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12564
12565 * net/shr.el (shr-make-table-1): Add a sanity check that allows
12566 progression on degenerate tables.
12567 (shr-rescale-image): ImageMagick animated images currently don't work.
12568
125692013-06-30 Juanma Barranquero <lekktu@gmail.com>
12570
12571 Some fixes and improvements for desktop frame restoration.
12572 It is still experimental and disabled by default.
12573 * desktop.el (desktop--save-windows): Put the selected frame at
12574 the head of the list.
12575 (desktop--make-full-frame): New function.
12576 (desktop--restore-windows): Try to re-select the frame that was
12577 selected upon saving. Do not abort if some frames fail to restore,
12578 just show an error message and continue. Set up maximized frames
12579 so they have default non-maximized dimensions.
12580
125812013-06-30 Dmitry Gutov <dgutov@yandex.ru>
12582
12583 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
12584 Don't start heredoc inside a string or comment.
12585
125862013-06-29 Eli Zaretskii <eliz@gnu.org>
12587
12588 * bindings.el (visual-order-cursor-movement): New defcustom.
12589 (right-char, left-char): Provide visual-order cursor motion by
12590 calling move-point-visually. Update the doc strings.
12591
125922013-06-28 Kenichi Handa <handa@gnu.org>
12593
12594 * international/mule.el (define-coding-system): New coding system
12595 properties :inhibit-null-byte-detection,
12596 :inhibit-iso-escape-detection, and :prefer-utf-8.
12597 (set-buffer-file-coding-system): If :charset-list property of
12598 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
12599 appropriate for setting.
12600
12601 * international/mule-cmds.el (select-safe-coding-system):
12602 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
12603 multibyte characters, return utf-8 (or one of its siblings).
12604
12605 * international/mule-conf.el (prefer-utf-8): New coding system.
12606 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
12607 files.
12608
126092013-06-28 Ivan Kanis <ivan@kanis.fr>
12610
12611 * net/shr.el (shr-render-region): New function.
12612
12613 * net/eww.el: Autoload `eww-browse-url'.
12614
126152013-06-27 Dmitry Gutov <dgutov@yandex.ru>
12616
12617 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12618 Adapt to `package-desc-version' being a list.
12619 Use `package--ac-desc-version' to retrieve version from a package
12620 archive element.
12621
126222013-06-27 Juanma Barranquero <lekktu@gmail.com>
12623
12624 New experimental feature to save&restore window and frame setup.
12625 * desktop.el (desktop-save-windows): New defcustom.
12626 (desktop--saved-states): New var.
12627 (desktop--excluded-frame-parameters): New defconst.
12628 (desktop--filter-frame-parms, desktop--find-frame-in-display)
12629 (desktop--restore-windows, desktop--save-windows): New functions.
12630 (desktop-save): Call `desktop--save-windows'.
12631 (desktop-read): Call `desktop--restore-windows'.
12632
126332013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12634
12635 * net/shr.el (add-face-text-property): Remove compat definition.
12636
126372013-06-27 Stephen Berman <stephen.berman@gmx.net>
12638
12639 * info.el (Info-try-follow-nearest-node): Move search for footnote
12640 above search for node name to prevent missing a footnote (bug#14717).
12641
126422013-06-27 Stephen Berman <stephen.berman@gmx.net>
12643
12644 * obsolete/otodo-mode.el: Add obsolescence info to file header.
12645
126462013-06-27 Leo Liu <sdl.web@gmail.com>
12647
12648 * net/eww.el (eww-read-bookmarks): Check file size.
12649
126502013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12651
12652 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
12653 advice--pending if newdef is nil or an autoload (bug#13820).
12654 (advice-mapc): New function.
12655
126562013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12657
12658 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
12659 probably.
12660 (eww-mode-map): Add a menu bar.
12661 (eww-add-bookmark): New command.
12662 (eww-bookmark-mode): New mode and commands.
12663 (eww-add-bookmark): Remove newlines from the title.
12664 (eww-bookmark-browse): Don't bug out if it's the only window.
12665
126662013-06-26 Glenn Morris <rgm@gnu.org>
12667
12668 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
12669 (hfy-size): Handle ttys. (Bug#14668)
12670
12671 * info-xref.el: Update for Texinfo 5 change in *note format.
12672 (info-xref-node-re, info-xref-note-re): New constants.
12673 (info-xref-check-buffer): Use info-xref-note-re.
12674
126752013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12676
12677 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
12678
12679 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
12680 nil terminate the loop (bug#14718).
12681
126822013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12683
12684 * net/eww.el: Rework history traversal. When going forward/back,
12685 put these actions into the history, too, so that they can be
12686 replayed.
12687 (eww-render): Move the history reset to the correct buffer.
12688
126892013-06-25 Juri Linkov <juri@jurta.org>
12690
12691 * files-x.el (modify-dir-local-variable): Change the header comment
12692 in the file with directory local variables. (Bug#14692)
12693
12694 * files-x.el (read-file-local-variable-value): Add `default'.
12695 (Bug#14710)
12696
126972013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12698
12699 * net/eww.el (eww-make-unique-file-name): Create a unique file
12700 name before saving to entering `y' accidentally asynchronously.
12701
127022013-06-25 Ivan Kanis <ivan@kanis.fr>
12703
12704 * net/eww.el (eww-download): New command and keystroke.
12705
127062013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12707
12708 * net/eww.el (eww-copy-page-url): Change name of command.
12709
12710 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
12711 be more consistent with Info and dired.
12712
12713 * net/eww.el (eww-mode-map): Ditto.
12714
127152013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12716
12717 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
12718 packages from archives.
12719 (package-archive-contents): Change format; include obsolete packages.
12720 (package-desc): Use `dir' to mark builtin packages.
12721 (package--from-builtin): Set the `dir' field to `builtin'.
12722 (generated-autoload-file, version-control): Declare.
12723 (package-compute-transaction): Change first arg and return value to be
12724 lists of package-descs. Adjust to new package-archive-contents format.
12725 (package--add-to-archive-contents): Adjust to new
12726 package-archive-contents format.
12727 (package-download-transaction): Arg is now a list of package-descs.
12728 (package-install): If `pkg' is a package name, pass it as
12729 a requirement, so it is subject to the usual (e.g. disabled) checks.
12730 (describe-package): Accept package-desc as well.
12731 (describe-package-1): Describe a specific package-desc. Add links to
12732 other package-descs for the same package name.
12733 (package-menu-describe-package): Pass the actual package-desc.
12734 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
12735 works correctly.
12736 (package-desc-status): New function.
12737 (package-menu--refresh): New function, extracted
12738 from package-menu--generate.
12739 (package-menu--generate): Use it.
12740 (package-delete): Update package-alist.
12741 (package-menu-execute): Don't call package-initialize.
12742
12743 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
12744 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
12745 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
12746 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
12747 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
12748 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
12749
127502013-06-25 Martin Rudalics <rudalics@gmx.at>
12751
12752 * window.el (window--state-get-1): Workaround for bug#14527.
12753 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
12754
127552013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12756
12757 * net/eww.el (eww-back-url): Implement the history by stashing all
12758 the data into a list.
12759 (eww-forward-url): Allow going forward in the history, too.
12760
127612013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12762
12763 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
12764 for values and use read--expression for expressions (bug#14710).
12765 (read-file-local-variable): Avoid setq.
12766 (read-file-local-variable-mode): Use minor-mode-list.
12767
127682013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12769
12770 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
12771 for DOI URLs.
12772
127732013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12774
12775 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
12776 Update imenu-support when dialect changes.
12777
127782013-06-25 Leo Liu <sdl.web@gmail.com>
12779
12780 * ido.el (ido-read-internal): Allow forward slash on windows.
12781
127822013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12783
12784 * net/eww.el (eww): Start of strings is \\`, not ^.
12785
127862013-06-24 Ivan Kanis <ivan@kanis.fr>
12787
12788 * net/shr.el (shr-browse-url): Fix interactive spec.
12789
12790 * net/eww.el (eww): Add a trailing slash to domain names.
12791
127922013-06-24 Juanma Barranquero <lekktu@gmail.com>
12793
12794 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
12795
127962013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12797
12798 * net/shr.el (shr-browse-url): Use an external browser if given a
12799 prefix.
12800
12801 * net/eww.el (eww-external-browser): Move to shr.
12802
128032013-06-24 Ivan Kanis <ivan@kanis.fr>
12804
12805 * net/eww.el (eww): Work more correctly for file: URLs.
12806 (eww-detect-charset): Allow quoted charsets.
12807 (eww-yank-page-url): New command and keystroke.
12808
128092013-06-24 Daiki Ueno <ueno@gnu.org>
12810
12811 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
12812 file name of gpg executable.
12813 (epg-context-program): New function.
12814 (epg-context-home-directory): New function.
12815 (epg-context-set-program): New function.
12816 (epg-context-set-home-directory): New function.
12817 (epg--start): Use `epg-context-program' instead of
12818 'epg-gpg-program'.
12819 (epg--list-keys-1): Likewise.
12820
128212013-06-24 Leo Liu <sdl.web@gmail.com>
12822
12823 * ido.el (ido-read-internal): Fix bug#14620.
12824
128252013-06-23 Juanma Barranquero <lekktu@gmail.com>
12826
12827 * faces.el (face-documentation): Simplify.
12828 (read-face-attribute, tty-find-type, x-resolve-font-name):
12829 Use `string-match-p'.
12830 (list-faces-display): Use `string-match-p'. Simplify.
12831 (face-spec-recalc): Check face to avoid face alias loops.
12832 (read-color): Use `string-match-p' and non-capturing parenthesis.
12833
128342013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
12835
12836 * net/shr.el (shr-rescale-image): Use the new
12837 :max-width/:max-height functionality.
12838
128392013-06-23 Ivan Kanis <ivan@kanis.fr>
12840
12841 * net/eww.el (eww-search-prefix): New variable.
12842 (eww): Use it.
12843 (eww-external-browser): New variable.
12844 (eww-mode-map): New keystroke.
12845 (eww-browse-with-external-browser): New command.
12846
12847 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
12848
128492013-06-23 Juanma Barranquero <lekktu@gmail.com>
12850
12851 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12852 Don't skip aligning the next header field when padding is 0;
12853 otherwise, field width is not respected unless the title is as
12854 wide as the field.
12855
128562013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 * emacs-lisp/package.el (package-el-version): Remove.
12859 (package-process-define-package): Fix inf-loop.
12860 (package-install): Allow symbols as arguments again.
12861
128622013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12863
12864 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
12865 add some more keyword-like methods.
12866 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
12867
128682013-06-22 Juanma Barranquero <lekktu@gmail.com>
12869
12870 * bs.el (bs-buffer-show-mark): Make defvar-local.
12871 (bs-mode): Use setq-local.
12872
12873 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
12874 (emacs-lock--try-unlocking): Make defvar-local.
12875
128762013-06-22 Glenn Morris <rgm@gnu.org>
12877
12878 * play/cookie1.el (cookie-apropos): Minor simplification.
12879
12880 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
12881
128822013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12883
12884 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
12885 `regexp-opt', it breaks the build during dumping.
12886
128872013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12888
12889 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12890 Highlight keyword-like methods on Kernel and Module with
12891 font-lock-builtin-face.
12892 (auto-mode-alist): Consolidate different entries into one regexp
12893 and add more *file-s.
12894
128952013-06-21 Stephen Berman <stephen.berman@gmx.net>
12896
12897 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12898
12899 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12900 (diary-entry): Use it in the action of this button type instead of
12901 diary-goto-entry.
12902
12903 * calendar/todo-mode.el: New version.
12904 (todo-add-category): Append new category to end of file and give
12905 it the highest number, instead of putting it at the beginning and
12906 giving it 0. Incorporate noninteractive functionality.
12907 (todo-forward-category): Adapt to 1-based category numbering.
12908 Allow skipping over archived categories.
12909 (todo-backward-category): Derive from todo-forward-category.
12910 (todo-backward-item, todo-forward-item): Make noninteractive and
12911 delegate interactive part to new commands. Make sensitive to done items.
12912 (todo-categories): Make value an alist of category names and
12913 vectors of item counts.
12914 (todo-category-beg): Make a defconst.
12915 (todo-category-number): Use 1 instead of 0 as initial value.
12916 (todo-category-select): Make sensitive to overlays, optional item
12917 highlighting and done items.
12918 (todo-delete-item): Make sensitive to overlays and marked and done items.
12919 (todo-edit-item): Make sensitive to overlays and editing of
12920 date/time header optional. Add format checks.
12921 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12922 no-op if point is not on an item. Advertise using todo-edit-quit.
12923 (todo-edit-mode): Make sensitive to new format, font-locking, and
12924 multiple todo files.
12925 (todo-insert-item, todo-insert-item-here): Derive from
12926 todo-basic-insert-item and extend functionality.
12927 (todo-item-end, todo-item-start): Make sensitive to done items.
12928 (todo-item-string): Don't return text properties. Restore point.
12929 (todo-jump-to-category): Make sensitive to multiple todo files and
12930 todo archives. Use extended category completion.
12931 (todo-lower-item, todo-raise-item): Rename to *-priority and
12932 derive from todo-set-item-priority.
12933 (todo-mode): Derive from special-mode. Make sensitive to new
12934 format, font-locking and multiple todo files. Make read-only.
12935 (todo-mode-map): Don't suppress digit keys, so they can supply
12936 prefix arguments. Add many new key bindings.
12937 (todo-prefix): Insert as an overlay instead of file text.
12938 Change semantics from diary date expression to purely visual mark.
12939 (todo-print): Rename to todo-print-buffer. Make buffer display
12940 features printable. Remove option to restrict number of items
12941 printed. Add option to print to file.
12942 (todo-print-function): Rename to todo-print-buffer-function.
12943 (todo-quit): Extend to handle exiting new todo modes.
12944 (todo-remove-item): Make sensitive to overlays.
12945 (todo-save): Extend to buffers of filtered items.
12946 (todo-show): Make sensitive to done items, multiple todo files and
12947 new todo modes. Offer to convert legacy todo file before creating
12948 first new todo file.
12949 (todo-show-priorities): Rename to todo-top-priorities.
12950 Change semantics of value 0.
12951 (todo-top-priorities): Rename to todo-filter-top-priorities,
12952 derive from todo-filter-items and extend functionality.
12953 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12954 and extend functionality to other types of filtered items.
12955 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12956 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12957 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12958 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12959 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12960 (todo-edit-mode-hook, todo-entry-prefix-function)
12961 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12962 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12963 (todo-initials, todo-insert-threshold, todo-item-string-start)
12964 (todo-line-string, todo-menu, todo-mode-hook)
12965 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12966 (todo-print-priorities, todo-remove-separator)
12967 (todo-save-top-priorities-too, todo-string-count-lines)
12968 (todo-string-multiline-p, todo-time-string-format)
12969 (todo-tmp-buffer-name): Remove.
12970 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12971 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12972 (todo-edit-category-diary-inclusion)
12973 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12974 (todo-edit-file, todo-edit-item-date-day)
12975 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12976 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12977 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12978 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12979 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12980 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12981 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12982 (todo-filter-top-priorities-multifile, todo-find-archive)
12983 (todo-find-filtered-items-file, todo-go-to-source-item)
12984 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12985 (todo-jump-to-archive-category, todo-lower-category)
12986 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12987 (todo-move-category, todo-move-item, todo-next-button)
12988 (todo-next-item, todo-padded-string, todo-powerset)
12989 (todo-previous-button, todo-previous-item)
12990 (todo-print-buffer-to-file, todo-raise-category)
12991 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12992 (todo-set-category-number, todo-set-item-priority)
12993 (todo-set-top-priorities-in-category)
12994 (todo-set-top-priorities-in-file, todo-show-categories-table)
12995 (todo-sort-categories-alphabetically-or-numerically)
12996 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12997 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12998 (todo-toggle-item-header, todo-toggle-item-highlighting)
12999 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
13000 (todo-toggle-view-done-items, todo-toggle-view-done-only)
13001 (todo-unarchive-items, todo-unmark-category): New commands.
13002 (todo-absolute-file-name, todo-add-to-buffer-list)
13003 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
13004 (todo-basic-insert-item, todo-category-completions)
13005 (todo-category-number, todo-category-string-matcher-1)
13006 (todo-category-string-matcher-2, todo-check-filtered-items-file)
13007 (todo-check-format, todo-clear-matches)
13008 (todo-comment-string-matcher, todo-convert-legacy-date-time)
13009 (todo-current-category, todo-date-string-matcher)
13010 (todo-define-insertion-command, todo-diary-expired-matcher)
13011 (todo-diary-goto-entry, todo-diary-item-p)
13012 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
13013 (todo-display-categories, todo-display-sorted, todo-done-item-p)
13014 (todo-done-item-section-p, todo-done-separator)
13015 (todo-done-string-matcher, todo-files, todo-filter-items)
13016 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
13017 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
13018 (todo-insert-category-line, todo-insert-item-from-calendar)
13019 (todo-insert-sort-button, todo-insert-with-overlays)
13020 (todo-insertion-command-name, todo-insertion-key-bindings)
13021 (todo-label-to-key, todo-longest-category-name-length)
13022 (todo-make-categories-list, todo-mode-external-set)
13023 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
13024 (todo-modes-set-3, todo-multiple-filter-files)
13025 (todo-nondiary-marker-matcher, todo-prefix-overlays)
13026 (todo-read-category, todo-read-date, todo-read-dayname)
13027 (todo-read-file-name, todo-read-time)
13028 (todo-reevaluate-category-completions-files-defcustom)
13029 (todo-reevaluate-default-file-defcustom)
13030 (todo-reevaluate-filelist-defcustoms)
13031 (todo-reevaluate-filter-files-defcustom)
13032 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
13033 (todo-reset-done-separator, todo-reset-done-separator-string)
13034 (todo-reset-done-string, todo-reset-global-current-todo-file)
13035 (todo-reset-highlight-item, todo-reset-nondiary-marker)
13036 (todo-reset-prefix, todo-set-categories)
13037 (todo-set-date-from-calendar, todo-set-show-current-file)
13038 (todo-set-top-priorities, todo-short-file-name)
13039 (todo-show-current-file, todo-sort, todo-time-string-matcher)
13040 (todo-total-item-counts, todo-update-buffer-list)
13041 (todo-update-categories-display, todo-update-categories-sexp)
13042 (todo-update-count, todo-validate-name, todo-y-or-n-p):
13043 New functions.
13044 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
13045 New major modes.
13046 (todo-categories, todo-display, todo-edit, todo-faces)
13047 (todo-filtered): New defgroups.
13048 (todo-archived-only, todo-button, todo-category-string, todo-date)
13049 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
13050 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
13051 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
13052 (todo-add-item-if-new-category, todo-always-add-time-string)
13053 (todo-categories-align, todo-categories-archived-label)
13054 (todo-categories-category-label, todo-categories-diary-label)
13055 (todo-categories-done-label, todo-categories-number-separator)
13056 (todo-categories-todo-label, todo-categories-totals-label)
13057 (todo-category-completions-files, todo-completion-ignore-case)
13058 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
13059 (todo-done-separator-string, todo-done-string)
13060 (todo-files-function, todo-filter-done-items, todo-filter-files)
13061 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
13062 (todo-initial-category, todo-initial-file, todo-item-mark)
13063 (todo-legacy-date-time-regexp, todo-mode-line-function)
13064 (todo-nondiary-marker, todo-number-prefix)
13065 (todo-print-buffer-function, todo-show-current-file)
13066 (todo-show-done-only, todo-show-first, todo-show-with-done)
13067 (todo-skip-archived-categories, todo-top-priorities-overrides)
13068 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
13069 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
13070 New defcustoms.
13071 (todo-category-done, todo-date-pattern, todo-date-string-start)
13072 (todo-diary-items-buffer, todo-done-string-start)
13073 (todo-filtered-items-buffer, todo-item-start)
13074 (todo-month-abbrev-array, todo-month-name-array)
13075 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
13076 (todo-top-priorities-buffer): New defconsts.
13077 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
13078 (todo-categories-with-marks, todo-category-string-face)
13079 (todo-comment-face, todo-comment-string, todo-current-todo-file)
13080 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
13081 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
13082 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
13083 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
13084 (todo-font-lock-keywords, todo-global-current-todo-file)
13085 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
13086 (todo-insertion-commands-args)
13087 (todo-insertion-commands-args-genlist)
13088 (todo-insertion-commands-names, todo-insertion-map)
13089 (todo-key-bindings-t, todo-key-bindings-t+a)
13090 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
13091 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
13092 (todo-nondiary-face, todo-print-buffer, todo-time-face)
13093 (todo-visited): New variables.
13094
130952013-06-21 Glenn Morris <rgm@gnu.org>
13096
13097 * play/cookie1.el (cookie-apropos): Add optional display argument.
13098 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
13099 (psychoanalyze-pinhead): Use cookie-doctor.
13100
131012013-06-21 Juanma Barranquero <lekktu@gmail.com>
13102
13103 * emacs-lisp/package.el (tar-get-file-descriptor)
13104 (tar--extract): Declare.
13105
131062013-06-21 Eduard Wiebe <usenet@pusto.de>
13107
13108 Extend flymake's warning predicate to be a function (bug#14217).
13109 * progmodes/flymake.el (flymake-warning-predicate): New.
13110 (flymake-parse-line): Use it.
13111 (flymake-warning-re): Make obsolete alias to
13112 `flymake-warning-predicate'.
13113
131142013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13115
13116 * emacs-lisp/package.el (package-alist): Include obsolete packages.
13117 (package-obsolete-list): Remove.
13118 (package-activate): Remove min-version argument. Add `force' argument.
13119 Adjust to new package-alist format.
13120 (package-mark-obsolete): Remove.
13121 (package-unpack): Force reload of the package's autoloads.
13122 (package-installed-p): Check builtins if the installed package is not
13123 recent enough.
13124 (package-initialize): Don't reset package-obsolete-list.
13125 Don't specify which package version to activate.
13126 (package-process-define-package, describe-package-1)
13127 (package-menu--generate): Adjust to new package-alist format.
13128
131292013-06-21 Juanma Barranquero <lekktu@gmail.com>
13130
13131 * allout-widgets.el (allout-widgets-mode-off)
13132 (allout-widgets-mode-on, allout-widgets-pre-command-business)
13133 (allout-widgets-post-command-business)
13134 (allout-widgets-after-copy-or-kill-function)
13135 (allout-widgets-after-undo-function, allout-test-range-overlaps)
13136 (allout-decorate-item-and-context)
13137 (allout-graphics-modification-handler): Fix typos in docstrings.
13138 (allout-get-or-create-parent-widget): Use `looking-at-p'.
13139
13140 * cmuscheme.el (scheme-start-file): Doc fix.
13141 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
13142 (scheme-input-filter): Use `string-match-p'.
13143
13144 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
13145
13146 * dired-x.el: Use Dired consistently in docstrings.
13147
13148 * dired.el: Use Dired consistently in docstrings.
13149 (dired-readin, dired-mode): Use `setq-local'.
13150 (dired-switches-alist): Make defvar-local.
13151 (dired-buffers-for-dir): Use `zerop'.
13152 (dired-safe-switches-p, dired-switches-escape-p)
13153 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
13154 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
13155 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
13156 (dired-goto-next-nontrivial-file): Use `string-match-p'.
13157 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
13158 (dired-toggle-marks, dired-mark-files-containing-regexp)
13159 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
13160 (dired-flag-auto-save-files, dired-flag-backup-files):
13161 Use `looking-at-p'.
13162 (dired-mark-files-regexp, dired-build-subdir-alist):
13163 Use `string-match-p', `looking-at-p'.
13164
13165 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
13166 (direct-print-region-helper): Use `string-match-p'.
13167
131682013-06-21 Leo Liu <sdl.web@gmail.com>
13169
13170 * comint.el (comint-redirect-results-list-from-process):
13171 Fix infinite loop.
13172
131732013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13174
13175 * net/eww.el (eww-update-header-line-format): Quote % characters.
13176
131772013-06-21 Glenn Morris <rgm@gnu.org>
13178
13179 * play/cookie1.el (cookie): New custom group.
13180 (cookie-file): New option.
13181 (cookie-check-file): New function.
13182 (cookie): Make it interactive. Make start and end messages optional.
13183 Interactively, display the result. Default to cookie-file.
13184 (cookie-insert): Default to cookie-file.
13185 (cookie-snarf): Make start and end messages optional.
13186 Default to cookie-file. Use with-temp-buffer.
13187 (cookie-read): Rename from read-cookie.
13188 Make start and end messages optional. Default to cookie-file.
13189 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
13190 Do not autoload it.
13191 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
13192 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
13193
131942013-06-21 Leo Liu <sdl.web@gmail.com>
13195
13196 * progmodes/octave.el (octave-mode): Backward compatibility fix.
13197
131982013-06-21 Glenn Morris <rgm@gnu.org>
13199
13200 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
13201
132022013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13203 Daniel Hackney <dan@haxney.org>
13204
13205 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
13206 Consolidate the single-file vs tarball code.
13207 (package-desc-suffix): New function.
13208 (package-desc-full-name): Don't bother inlining it.
13209 (package-load-descriptor): Return the new package-desc.
13210 (package-mark-obsolete): Remove unused arg `package'.
13211 (package-unpack): Make it work for single files as well.
13212 Make it update package-alist.
13213 (package--make-autoloads-and-stuff): Rename from
13214 package--make-autoloads-and-compile. Don't compile any more.
13215 (package--compile): New function.
13216 (package-generate-description-file): New function, extracted from
13217 package-unpack-single.
13218 (package-unpack-single): Remove.
13219 (package--with-work-buffer): Add indentation and debugging info.
13220 (package-download-single): Remove.
13221 (package-install-from-archive): Rename from package-download-tar, make
13222 it take a pkg-desc, and make it work for single files as well.
13223 (package-download-transaction): Simplify.
13224 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
13225 external tar program.
13226 (package-install-from-buffer): Remove `pkg-desc' argument.
13227 Use package-tar-file-info for tar-mode buffers.
13228 (package-install-file): Simplify accordingly.
13229 (package-archive-base): Change to take a pkg-desc.
13230 * tar-mode.el (tar--check-descriptor): New function, extracted from
13231 tar-get-descriptor.
13232 (tar-get-descriptor): Use it.
13233 (tar-get-file-descriptor): New function.
13234 (tar--extract): New function, extracted from tar-extract.
13235 (tar--extract): Use it.
13236 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
13237 case the summary uses non-ascii. Adjust to new calling convention of
13238 package-tar-file-info.
13239
132402013-06-21 Leo Liu <sdl.web@gmail.com>
13241
13242 * comint.el (comint-redirect-results-list-from-process):
13243 Fix random delay. (Bug#14681)
13244
132452013-06-21 Juanma Barranquero <lekktu@gmail.com>
13246
13247 * profiler.el (profiler-format-number): Use log, not log10.
13248
132492013-06-20 Juanma Barranquero <lekktu@gmail.com>
13250
13251 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
13252
132532013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13254
13255 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
13256 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
13257 yet available.
13258 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
13259 (AUTOGENEL): ... here.
13260 * emacs-lisp/cl-macs.el (cl--sublis): New function.
13261 (cl--defsubst-expand): Use it.
13262
132632013-06-20 Paul Eggert <eggert@cs.ucla.edu>
13264
13265 * subr.el (log10): Move here from C code, and declare as obsolete.
13266 All uses of (log10 X) replaced with (log X 10).
13267
132682013-06-20 Juanma Barranquero <lekktu@gmail.com>
13269
13270 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
13271 Declare with `defvar-local'.
13272 (tabulated-list-use-header-line, tabulated-list-entries)
13273 (tabulated-list-padding, tabulated-list-printer)
13274 (tabulated-list-sort-key): Declare with `defvar-local'.
13275 (tabulated-list-init-header, tabulated-list-print-fake-header):
13276 Use `setq-local'.
13277
132782013-06-20 Michael Albinus <michael.albinus@gmx.de>
13279
13280 * arc-mode.el (archive-mode): Add `archive-write-file' to
13281 `write-contents-functions' also for remote files. (Bug#14652)
13282
132832013-06-20 Juanma Barranquero <lekktu@gmail.com>
13284
13285 * cus-edit.el (custom-commands): Fix typos.
13286 (custom-display): Fix tooltip text.
13287 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
13288 Fix typos in docstrings.
13289 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
13290 (custom-unlispify-menu-entry, custom-magic-value-create)
13291 (custom-add-see-also, custom-group-value-create): Use ?\s.
13292 (custom-guess-type, customize-apropos, editable-field)
13293 (custom-face-value-create): Use `string-match-p'.
13294 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
13295
13296 * custom.el (custom-load-symbol): Use `string-match-p'.
13297
13298 * ansi-color.el: Convert to lexical binding.
13299 (ansi-colors): Fix URL.
13300 (ansi-color-context, ansi-color-context-region): Use defvar-local.
13301 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
13302 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
13303
133042013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13305
13306 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
13307
13308 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
13309
133102013-06-19 Tom Tromey <tromey@redhat.com>
13311
13312 * net/eww.el (eww-top-url): Remove.
13313 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
13314 (eww-render): Set new variables. Don't set eww-top-url.
13315 (eww-handle-link): Handle "prev", "home", and "contents".
13316 Downcase the rel text.
13317 (eww-top-url): Choose best top URL.
13318
133192013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13320
13321 * net/eww.el: Rewrite to implement form elements "by hand" instead of
13322 relying in widget.el. Using widget.el leads to too many
13323 user interface inconsistencies.
13324 (eww-self-insert): Implement entering commands in text fields.
13325 (eww-process-text-input): New function to make text input field editing
13326 work.
13327 (eww-submit): Rewrite to use the new-style form methods.
13328 (eww-select-display): Display the correct selected item.
13329 (eww-change-select): Implement changing the select value.
13330 (eww-toggle-checkbox): Implement radio/checkboxes.
13331 (eww-update-field): Fix compilation error.
13332 (eww-tag-textarea): Implement <textarea>.
13333
13334 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
13335 we don't shadow mode-specific bindings.
13336
13337 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
13338 nothing to push.
13339
13340 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
13341
133422013-06-19 Glenn Morris <rgm@gnu.org>
13343
13344 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
13345
133462013-06-19 Michael Albinus <michael.albinus@gmx.de>
13347
13348 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
13349 not needed.
13350
13351 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
13352
133532013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13354
13355 * net/browse-url.el (browse-url-browser-function):
13356 `eww-browse-url' has the right calling signature, `eww' does not.
13357
133582013-06-19 Glenn Morris <rgm@gnu.org>
13359
13360 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
13361 Only eval autoloaded macros.
13362 (byte-compile-autoload): Only give the macro warning for macros.
13363
13364 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
13365 (ps-underlined-faces): Declare.
13366
13367 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
13368 (speedbar-add-supported-extension): Declare.
13369
13370 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
13371 Don't include a date stamp in the header of the generated file;
13372 it leads to needless differences between output files.
13373
133742013-06-19 Michael Albinus <michael.albinus@gmx.de>
13375
13376 * net/secrets.el (secrets-struct-secret-content-type):
13377 Replace check of introspection data by a test call of "CreateItem".
13378 Some servers do not offer introspection.
13379
133802013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
13381
13382 * electric.el (electric-pair-mode): Improve interaction with
13383 electric-layout-mode.
13384 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
13385 (electric-pair-syntax): Use text-mode-syntax-table in comments
13386 and strings.
13387 (electric-pair--insert): New function.
13388 (electric-pair-post-self-insert-function): Use it and
13389 electric--after-char-pos.
13390
133912013-06-19 Leo Liu <sdl.web@gmail.com>
13392
13393 * progmodes/octave.el (octave-help): Fix regexp.
13394
133952013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
13396
13397 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
13398 (shr-table-horizontal-line): Allow nil as a value, and change the
13399 default.
13400 (shr-insert-table-ruler): Respect the nil value.
13401
134022013-06-18 Tom Tromey <tromey@barimba>
13403
13404 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13405 New defvars.
13406 (eww-open-file): New defun.
13407 (eww-render): Initialize new variables.
13408 (eww-display-html): Handle "link" and "a".
13409 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
13410 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
13411 (eww-back-url): Rename from eww-previous-url.
13412 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13413 New defuns.
13414
134152013-06-18 Dmitry Gutov <dgutov@yandex.ru>
13416
13417 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
13418 Distinguish ternary operator tokens from slash symbol and slash
13419 char literal.
13420
134212013-06-18 Juanma Barranquero <lekktu@gmail.com>
13422
13423 Convert symbol prettification into minor mode and global minor mode.
13424
13425 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
13426 `prog-prettify-symbols', and make a local defvar instead of defcustom.
13427 (prettify-symbols--keywords): Rename from
13428 `prog-prettify-symbols-alist' and make a local defvar.
13429 (prettify-symbols--compose-symbol): Rename from
13430 `prog--prettify-font-lock-compose-symbol'.
13431 (prettify-symbols--make-keywords): Rename from
13432 `prog-prettify-font-lock-symbols-keywords' and simplify.
13433 (prog-prettify-install): Remove.
13434 (prettify-symbols-mode): New minor mode, based on
13435 `prog-prettify-install'.
13436 (turn-on-prettify-symbols-mode): New function.
13437 (global-prettify-symbols-mode): New globalized minor mode.
13438
13439 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13440 * progmodes/cfengine.el (cfengine3-mode):
13441 * progmodes/perl-mode.el (perl-mode): Don't call
13442 `prog-prettify-install'; set `prettify-symbols-alist' instead.
13443
134442013-06-18 Juri Linkov <juri@jurta.org>
13445
13446 * files-x.el (modify-file-local-variable-message): New function.
13447 (modify-file-local-variable)
13448 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
13449 and call `modify-file-local-variable-message' when it's non-nil.
13450 (add-file-local-variable, delete-file-local-variable)
13451 (add-file-local-variable-prop-line)
13452 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
13453 and use it. (Bug#9820)
13454
134552013-06-18 Juri Linkov <juri@jurta.org>
13456
13457 * emulation/vi.el (vi-shell-op):
13458 * emulation/vip.el (vip-execute-com, ex-command):
13459 * emulation/viper-cmd.el (viper-exec-bang):
13460 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
13461 the call of `shell-command-on-region'. (Bug#14637)
13462
13463 * simple.el (shell-command-on-region): Doc fix.
13464
134652013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13466
13467 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
13468 (bug#14633).
13469
134702013-06-18 Glenn Morris <rgm@gnu.org>
13471
13472 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
13473
13474 * newcomment.el (comment-search-forward, comment-search-backward):
13475 Doc fix. (Bug#14376)
13476
134772013-06-18 Juanma Barranquero <lekktu@gmail.com>
13478
13479 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
13480 (buffer-face-mode-invoke): Doc fix.
13481
134822013-06-18 Matthias Meulien <orontee@gmail.com>
13483
13484 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
13485 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
13486
134872013-06-18 Glenn Morris <rgm@gnu.org>
13488
13489 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
13490 Replace obsolete function generic-make-keywords with its expansion.
13491
13492 * progmodes/python.el (ffap-alist): Declare.
13493
13494 * textmodes/reftex.el (bibtex-mode-map): Declare.
13495
134962013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13497
13498 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
13499 (package-unpack, package-unpack-single): Return the pkg-dir.
13500 (package-download-transaction): Use it to update package-alist.
13501
135022013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
13503
13504 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
13505 possible choice.
13506
135072013-06-17 Juri Linkov <juri@jurta.org>
13508
13509 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
13510
135112013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13512
13513 * emacs-lisp/package.el (package-load-descriptor):
13514 Remove `with-syntax-table' call, `read' doesn't need it.
13515 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
13516
135172013-06-17 Juanma Barranquero <lekktu@gmail.com>
13518
13519 * startup.el (command-line): Expand package name returned by
13520 `package--description-file' (bug#14639).
13521
135222013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13523
13524 * emacs-lisp/package.el (package-load-descriptor): Do not call
13525 `emacs-lisp-mode', just use its syntax table.
13526
135272013-06-17 Juanma Barranquero <lekktu@gmail.com>
13528
13529 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
13530 `font-lock-extra-managed-props' if any prettifying keyword is added.
13531 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
13532 (prog-mode): Use `setq-local'.
13533
135342013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13535
13536 * international/characters.el (standard-case-table): Set syntax of ?»
13537 and ?« to punctuation.
13538
135392013-06-16 Juanma Barranquero <lekktu@gmail.com>
13540
13541 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
13542 Save relevant match data before calling `syntax-ppss' (bug#14595).
13543
135442013-06-15 Juri Linkov <juri@jurta.org>
13545
13546 * files-x.el (modify-file-local-variable-prop-line): Add local
13547 variables to the end of the existing comment on the first line.
13548 Use `file-auto-mode-skip' to skip interpreter magic line,
13549 and also skip XML declaration.
13550
135512013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13552
13553 * startup.el (package--builtin-versions): New var.
13554 (package-subdirectory-regexp): Remove.
13555 (package--description-file): Hard code its value instead.
13556
13557 * emacs-lisp/package.el: Don't activate packages older than builtin.
13558 (package-obsolete-list): Rename from package-obsolete-alist, and make
13559 it into a simple list of package-desc.
13560 (package-strip-version): Remove.
13561 (package-built-in-p): Use package--builtin-versions.
13562 (package-mark-obsolete): Simplify.
13563 (package-process-define-package): Mark it obsolete if older than the
13564 builtin version.
13565 (package-handle-response): Use line-end-position.
13566 (package-read-archive-contents, package--download-one-archive):
13567 Simplify.
13568 (package--add-to-archive-contents): Skip if older than the builtin or
13569 installed version.
13570 (package-menu-describe-package): Fix last change.
13571 (package-list-unversioned): New var.
13572 (package-menu--generate): Use it.
13573
13574 * emacs-lisp/autoload.el: Manage package--builtin-versions.
13575 (autoload--insert-text, autoload--insert-cookie-text): New functions.
13576 (autoload-builtin-package-versions): New variable.
13577 (autoload-generate-file-autoloads): Use them.
13578 Remove the list of autoloaded functions/macros from the
13579 (autoload...) comments.
13580
13581 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
13582
135832013-06-15 Eli Zaretskii <eliz@gnu.org>
13584
13585 * simple.el (line-move-partial): Don't jump to the next screen
13586 line as soon as it becomes visible. Instead, continue enlarging
13587 the vscroll until the portion of a tall screen line that's left on
13588 display is about the height of the frame's default font.
13589 (Bug#14567)
13590
135912013-06-15 Glenn Morris <rgm@gnu.org>
13592
13593 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
13594 compilation-error-regexp-alist void, or local while let-bound.
13595
13596 * progmodes/make-mode.el (makefile-mode-syntax-table):
13597 Treat "=" as punctuation. (Bug#14614)
13598
135992013-06-15 Juanma Barranquero <lekktu@gmail.com>
13600
13601 * help-fns.el (describe-variable):
13602 Add extra line for permanent-local variables.
13603
136042013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
13605
13606 * progmodes/scheme.el (scheme-font-lock-keywords-2):
13607 Add export, import, library. (Bug#9164)
13608 (library): Set indent function.
13609
136102013-06-14 Glenn Morris <rgm@gnu.org>
13611
13612 * term/xterm.el (xterm--query):
13613 Stop after first matching handler. (Bug#14615)
13614
136152013-06-14 Ivan Kanis <ivan@kanis.fr>
13616
13617 Add support for dired in saveplace.
13618 * dired.el (dired-initial-position-hook): New variable.
13619 (dired-initial-position): Call hook to place cursor position.
13620 * saveplace.el (save-place-to-alist): Add dired position.
13621 (save-place-dired-hook): New function.
13622
136232013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
13624
13625 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
13626 through a symbol rather than letrec.
13627
13628 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
13629 (package-desc): Add `dir' field.
13630 (package-desc-full-name): New function.
13631 (package-load-descriptor): Combine the two arguments. Don't use `load'.
13632 (package-maybe-load-descriptor): Remove.
13633 (package-load-all-descriptors): Just call package-load-descriptor.
13634 (package--disabled-p): New function.
13635 (package-desc-vers, package-desc-doc): Remove aliases.
13636 (package--dir): Remove function.
13637 (package-activate): Check if a package is disabled.
13638 (package-process-define-package): New function, extracted from
13639 define-package.
13640 (define-package): Turn into a place holder.
13641 (package-unpack-single, package-tar-file-info):
13642 Use package--description-file.
13643 (package-compute-transaction): Use package--disabled-p.
13644 (package-download-transaction): Don't call
13645 package-maybe-load-descriptor since they're all loaded anyway.
13646 (package-install): Change argument to be a pkg-desc.
13647 (package-delete): Use a single pkg-desc argument.
13648 (describe-package-1): Use package-desc-dir instead of package--dir.
13649 Use package-desc property instead of package-symbol.
13650 (package-install-button-action): Adjust accordingly.
13651 (package--push): Rewrite.
13652 (package-menu--print-info): Adjust accordingly. Change the ID format
13653 to be a pkg-desc.
13654 (package-menu-describe-package, package-menu-get-status)
13655 (package-menu--find-upgrades, package-menu-mark-upgrades)
13656 (package-menu-execute, package-menu--name-predicate):
13657 Adjust accordingly.
13658 * startup.el (package--description-file): New function.
13659 (command-line): Use it.
13660 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13661 Use package-desc-version.
13662
13663 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
13664 (byte-compile-preprocess): Use it.
13665 (byte-compile-file-form-defalias): Try a bit harder to use macros we
13666 can't quite recognize.
13667 (byte-compile-add-to-list): Remove.
13668 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
13669 (cconv-closure-convert): Add assertion.
13670
13671 * emacs-lisp/map-ynp.el: Use lexical-binding.
13672 (map-y-or-n-p): Remove unused vars `tail' and `object'.
13673 Factor out some repeated code.
13674
136752013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13676
13677 * subr.el (with-eval-after-load): New macro.
13678 (eval-after-load): Allow form to be a function.
13679 take advantage of lexical-binding.
13680 (do-after-load-evaluation): Use dolist and adjust to new format.
13681 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
13682
136832013-06-13 Juri Linkov <juri@jurta.org>
13684
13685 * replace.el (perform-replace): Display "symbol " and other search
13686 modes from `isearch-message-prefix' in the *Help* buffer.
13687
13688 * isearch.el (isearch-query-replace): Add " symbol" and other
13689 possible search modes from `isearch-message-prefix' to the prompt.
13690 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
13691 when reading a regexp to collect.
13692
136932013-06-13 Juri Linkov <juri@jurta.org>
13694
13695 * isearch.el (word-search-regexp): Match whitespace if the search
13696 string begins or ends in whitespace. The LAX arg is applied to
13697 both ends of the search string. Use `regexp-quote' and explicit
13698 \< and \> instead of \b. Use \` and \' instead of ^ and $.
13699 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
13700 boundaries are replaced with symbol boundaries, and characters
13701 between symbols match non-word non-symbol syntax. (Bug#14602)
13702
137032013-06-13 Juri Linkov <juri@jurta.org>
13704
13705 * isearch.el (isearch-del-char): Don't exceed the length of
13706 `isearch-string' by the prefix arg. (Bug#14563)
13707
137082013-06-13 Juri Linkov <juri@jurta.org>
13709
13710 * isearch.el (isearch-yank-word, isearch-yank-line)
13711 (isearch-char-by-name, isearch-quote-char)
13712 (isearch-printing-char, isearch-process-search-char):
13713 Add optional count prefix arg. (Bug#14563)
13714
13715 * international/isearch-x.el
13716 (isearch-process-search-multibyte-characters):
13717 Add optional count prefix arg.
13718
137192013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13720
13721 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
13722 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
13723 lexical-binding.
13724
137252013-06-13 Vitalie Spinu <spinuvit@gmail.com>
13726
13727 * subr.el (set-temporary-overlay-map): Add on-exit argument.
13728
137292013-06-13 Glenn Morris <rgm@gnu.org>
13730
13731 * startup.el (tty-handle-args):
13732 Don't just discard "--" and anything after. (Bug#14608)
13733
13734 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
13735
137362013-06-13 Michael Albinus <michael.albinus@gmx.de>
13737
13738 Implement changes in Secret Service API. Make it backward compatible.
13739 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
13740 (secrets-create-item): Use it. Prefix properties with interface.
13741
137422013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
13743
13744 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
13745 (term-emulate-terminal): Respect term-suppress-hard-newline.
13746
137472013-06-13 E Sabof <esabof@gmail.com> (tiny change)
13748
13749 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
13750 Only remove a `thumb-file' overlay. (Bug#14548)
13751
137522013-06-12 Grégoire Jadi <daimrod@gmail.com>
13753
13754 * mail/reporter.el (reporter-submit-bug-report):
13755 Handle missing package-name. (Bug#14600)
13756
137572013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13758
13759 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
13760 (reftex-citation-prompt, reftex-default-bibliography)
13761 (reftex-bib-or-thebib, reftex-get-bibfile-list)
13762 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
13763 (reftex-bib-sort-author, reftex-bib-sort-year)
13764 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
13765 (reftex-extract-bib-entries-from-thebibliography)
13766 (reftex-get-bibkey-default, reftex-get-bib-names)
13767 (reftex-parse-bibtex-entry, reftex-get-bib-field)
13768 (reftex-format-bib-entry, reftex-parse-bibitem)
13769 (reftex-format-bibitem, reftex-do-citation)
13770 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
13771 (reftex-restrict-bib-matches, reftex-extract-bib-file)
13772 (reftex-insert-bib-matches, reftex-format-citation)
13773 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
13774 (reftex-create-bibtex-file): Add docstrings, mostly by converting
13775 existing comments into docstrings.
13776
137772013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13778
13779 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
13780
137812013-06-12 Andreas Schwab <schwab@suse.de>
13782
13783 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
13784 for auto-save files.
13785
137862013-06-12 Glenn Morris <rgm@gnu.org>
13787
13788 * ido.el (ido-delete-ignored-files): Remove.
13789 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
13790 Go back to calling ido-ignore-item-p directly.
13791
137922013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
13793
13794 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
13795
13796 * ido.el (ido-delete-ignored-files): New function,
13797 split from ido-make-file-list-1.
13798 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
13799 (ido-make-file-list-1): Use ido-delete-ignored-files.
13800
138012013-06-12 Leo Liu <sdl.web@gmail.com>
13802
13803 * progmodes/octave.el (inferior-octave-startup)
13804 (inferior-octave-completion-table)
13805 (inferior-octave-track-window-width-change)
13806 (octave-eldoc-function-signatures, octave-help)
13807 (octave-find-definition): Use single quoted strings.
13808 (inferior-octave-startup-args): Change default value.
13809 (inferior-octave-startup): Do not hard code "-i" and
13810 "--no-line-editing".
13811 (inferior-octave-resync-dirs): Add optional arg NOERROR.
13812 (inferior-octave-directory-tracker): Use it.
13813 (octave-goto-function-definition): Robustify.
13814 (octave-help): Support highlighting operators in 'See also'.
13815 (octave-find-definition): Find subfunctions only in Octave mode.
13816
138172013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13818
13819 * help-fns.el (help-fns--compiler-macro): If the handler function is
13820 named, then put a link to it.
13821 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
13822 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
13823 (cl-typep): Use it.
13824 (cl-eval-when): Simplify debug spec.
13825 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
13826 compiler-macro function instead of setting `compiler-macro-file'.
13827
138282013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13829
13830 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
13831 * vc/vc-hooks.el (vc-stay-local): Doc fix.
13832
138332013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13834 Daniel Hackney <dan@haxney.org>
13835
13836 First part of Daniel Hackney's patch to package.el.
13837 * emacs-lisp/package.el: Use defstruct.
13838 (package-desc): New, main struct.
13839 (package--bi-desc, package--ac-desc): New structs, used to describe the
13840 format in external files.
13841 (package-desc-vers): Replace with package-desc-version accessor.
13842 (package-desc-doc): Replace with package-desc-summary accessor.
13843 (package-activate-1): Remove `package' arg since the pkg-vec now
13844 includes the name.
13845 (define-package): Use package-desc-from-define.
13846 (package-unpack-single): Change file-name arg to be a symbol.
13847 (package--add-to-archive-contents): Use package-desc-create and new
13848 accessor functions to package--ac-desc.
13849 (package-buffer-info, package-tar-file-info): Return a package-desc.
13850 (package-install-from-buffer): Remove `type' argument. Change pkg-info
13851 arg to be a package-desc.
13852 (package-install-file): Adjust accordingly. Use \' to match EOS.
13853 (package--from-builtin): New function.
13854 (describe-package-1, package-menu--generate): Use it.
13855 (package--make-autoloads-and-compile): Change name arg to be a symbol.
13856 (package-generate-autoloads): Idem and return the name of the file.
13857 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13858 Change pkg-info arg to be a package-desc.
13859 Use package-make-ac-desc.
13860 (package-upload-file): Use \' to match EOS.
13861 * finder.el (finder-compile-keywords): Use package-make-builtin.
13862
138632013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13864
13865 * vc/vc.el (vc-deduce-fileset): Change error message.
13866 (vc-read-backend): New function.
13867 (vc-next-action): Use it.
13868
13869 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
13870
13871 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
13872 (prolog-font-lock-keywords): Use regexp-opt instead.
13873 Don't manually highlight strings.
13874 (prolog-mode-variables): Simplify comment-start-skip.
13875 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
13876
13877 * emacs-lisp/generic.el (generic--normalise-comments)
13878 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
13879 (generic-mode-set-comments): Use them.
13880 (generic-bracket-support): Use setq-local.
13881 (generic-make-keywords-list): Declare obsolete.
13882
138832013-06-11 Glenn Morris <rgm@gnu.org>
13884
13885 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13886 Prettify after setting font-lock-defaults. (Bug#14574)
13887
138882013-06-11 Juanma Barranquero <lekktu@gmail.com>
13889
13890 * replace.el (query-replace, occur-read-regexp-defaults-function)
13891 (replace-search):
13892 * subr.el (declare-function, number-sequence, local-set-key)
13893 (substitute-key-definition, locate-user-emacs-file)
13894 (with-silent-modifications, split-string, eval-after-load):
13895 Fix typos, remove unneeded backslashes and reflow some docstrings.
13896
138972013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13898
13899 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13900 default for Elisp files.
13901
139022013-06-11 Glenn Morris <rgm@gnu.org>
13903
13904 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13905 although define-derived-mode was doing this anyway. (Bug#14583)
13906
139072013-06-10 Juanma Barranquero <lekktu@gmail.com>
13908
13909 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13910 Fix make-variable-buffer-local call to refer to the correct variable.
13911
139122013-06-10 Aidan Gauland <aidalgol@amuri.net>
13913
13914 * eshell/em-term.el (eshell-visual-commands)
13915 (eshell-visual-subcommands, eshell-visual-options):
13916 Add summary line to docstrings. Add cross-references.
13917
139182013-06-10 Glenn Morris <rgm@gnu.org>
13919
13920 * epa.el (epa-read-file-name): New function. (Bug#14510)
13921 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13922
139232013-06-09 Aidan Gauland <aidalgol@amuri.net>
13924
13925 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13926 output redirection to be ignored with visual commands.
13927
139282013-06-09 Aidan Gauland <aidalgol@amuri.net>
13929
13930 * eshell/em-term.el (eshell-visual-command-p): New function.
13931 (eshell-term-initialize): Move long lambda to separate function
13932 eshell-visual-command-p.
13933 * eshell/em-dirs.el (eshell-dirs-initialize):
13934 * eshell/em-script.el (eshell-script-initialize):
13935 Add missing #' to lambda.
13936
139372013-06-08 Leo Liu <sdl.web@gmail.com>
13938
13939 * progmodes/octave.el (octave-add-log-current-defun): New function.
13940 (octave-mode): Set add-log-current-defun-function.
13941 (octave-goto-function-definition): Do not move point if not found.
13942 (octave-find-definition): Enhance to try subfunctions first.
13943
139442013-06-08 Glenn Morris <rgm@gnu.org>
13945
13946 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13947 (byte-compile-backward-char, byte-compile-backward-word):
13948 Improve previous change, to handle non-explicit nil.
13949
139502013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13951
13952 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13953 (smie--opener/closer-at-point): New function.
13954 (smie--matching-block-data): Use it. Don't match from right after an
13955 opener or right before a closer. Obey smie-blink-matching-inners.
13956 Don't signal a mismatch for repeated inners like "switch..case..case".
13957
139582013-06-07 Leo Liu <sdl.web@gmail.com>
13959
13960 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13961 to t. (Bug#14303)
13962 (octave-function-header-regexp): Fix. (Bug#14570)
13963 (octave-help-mode-finish-hook, octave-help-mode-finish):
13964 Remove. Just use temp-buffer-show-hook.
13965
13966 * newcomment.el (comment-search-backward): Revert last change.
13967 (Bug#14434)
13968
13969 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13970
139712013-06-07 Eli Zaretskii <eliz@gnu.org>
13972
13973 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13974 through xargs, to avoid failure due to MS-Windows limitations on
13975 command-line length.
13976
139772013-06-06 Glenn Morris <rgm@gnu.org>
13978
13979 * font-lock.el (lisp-font-lock-keywords-2):
13980 Treat user-error like error.
13981
13982 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13983 (byte-compile-backward-char, byte-compile-backward-word):
13984 Handle explicit nil arguments. (Bug#14565)
13985
139862013-06-05 Alan Mackenzie <acm@muc.de>
13987
13988 * isearch.el (isearch-allow-prefix): New user option.
13989 (isearch-other-meta-char): Don't exit isearch when a prefix
13990 argument is typed whilst `isearch-allow-prefix' is non-nil.
13991 (Bug#9706)
13992
139932013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13994
13995 * autorevert.el (auto-revert-notify-handler): Use memq.
13996 Hide assertion failure.
13997
13998 * skeleton.el: Use cl-lib.
13999 (skeleton-further-elements): Use defvar-local.
14000 (skeleton-insert): Use cl-progv.
14001
140022013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
14003
14004 * progmodes/prog-mode.el (prog-prettify-symbols)
14005 (prog-prettify-install): Update docstrings.
14006
140072013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14008
14009 * simple.el: Move all the prog-mode code to prog-mode.el.
14010 * progmodes/prog-mode.el: New file.
14011 * loadup.el: Add prog-mode.el.
14012
140132013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
14014
14015 * simple.el (prog-prettify-symbols): Add version.
14016 (prog-prettify-install): Add convenience function to prettify symbols.
14017
14018 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
14019 (perl--augmented-font-lock-keywords-1)
14020 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
14021 variables and use it.
14022
14023 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
14024 (cfengine3-mode): Remove unneeded variable and use it.
14025
14026 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
14027 (lisp--augmented-font-lock-keywords-1)
14028 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
14029 Remove unneeded variables and use it.
14030
140312013-06-05 João Távora <joaotavora@gmail.com>
14032
14033 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
14034 to point when opening the connection. (Bug#14380)
14035
140362013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14037
14038 * subr.el (load-history-regexp, load-history-filename-element)
14039 (eval-after-load, after-load-functions, do-after-load-evaluation)
14040 (eval-next-after-load, display-delayed-warnings)
14041 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
14042 definition of save-match-data.
14043 (overriding-local-map): Remove accidental obsolescence declaration.
14044
14045 * emacs-lisp/edebug.el (edebug-result): Move before first use.
14046
140472013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
14048
14049 Generalize symbol prettify support to prog-mode and implement it
14050 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
14051 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
14052 (prog--prettify-font-lock-compose-symbol)
14053 (prog-prettify-font-lock-symbols-keywords): New variables and
14054 functions to support symbol prettification.
14055 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
14056 (lisp--augmented-font-lock-keywords-1)
14057 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
14058 (lisp--prettify-symbols-alist): Implement prettify of lambda.
14059 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
14060 (cfengine3--prettify-symbols-alist, cfengine3-mode):
14061 Implement prettify of -> => :: strings.
14062 * progmodes/perl-mode.el (perl-prettify-symbols)
14063 (perl--font-lock-compose-symbol)
14064 (perl--font-lock-symbols-keywords): Move to prog-mode.
14065 (perl--prettify-symbols-alist): Prettify -> => :: strings.
14066 (perl-font-lock-keywords-1)
14067 (perl-font-lock-keywords-2): Remove explicit prettify support.
14068 (perl--augmented-font-lock-keywords)
14069 (perl--augmented-font-lock-keywords-1)
14070 (perl--augmented-font-lock-keywords-2, perl-mode):
14071 Implement prettify support.
14072
140732013-06-05 Leo Liu <sdl.web@gmail.com>
14074
14075 Re-implement SMIE matching block highlight using
14076 show-paren-data-function. (Bug#14395)
14077 * emacs-lisp/smie.el (smie-matching-block-highlight)
14078 (smie--highlight-matching-block-overlay)
14079 (smie--highlight-matching-block-lastpos)
14080 (smie-highlight-matching-block)
14081 (smie-highlight-matching-block-mode): Remove.
14082 (smie--matching-block-data-cache): New variable.
14083 (smie--matching-block-data): New function.
14084 (smie-setup): Use smie--matching-block-data for
14085 show-paren-data-function.
14086
14087 * progmodes/octave.el (octave-mode-menu): Fix.
14088 (octave-find-definition): Skip garbage lines.
14089
140902013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14091
14092 Fix compilation error with simultaneous dynamic+lexical scoping.
14093 Add warning when a defvar appears after the first let-binding.
14094 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
14095 (byte-compile-close-variables): Initialize it.
14096 (byte-compile--declare-var): New function.
14097 (byte-compile-file-form-defvar)
14098 (byte-compile-file-form-define-abbrev-table)
14099 (byte-compile-file-form-custom-declare-variable): Use it.
14100 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
14101 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
14102 (byte-compile-bind): Handle dynamic bindings that shadow
14103 lexical bindings.
14104 (byte-compile-unbind): Make arg non-optional.
14105 (byte-compile-let): Simplify.
14106 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
14107 (cconv--analyse-function, cconv-analyse-form): Populate it.
14108 Protect byte-compile-bound-variables to limit the scope of defvars.
14109 (cconv-analyse-form): Add missing rule for (defvar <foo>).
14110 Remove unneeded rule for `declare'.
14111
14112 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
14113 so as to avoid depending on cl-adjoin at run-time.
14114 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
14115
14116 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
14117 (macroexp--warn-and-return): Use it.
14118
141192013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14120
14121 * subr.el: Convert to lexical binding.
14122 (overriding-local-map): Make obsolete.
14123 (add-to-list): Doc fix. Add compiler macro.
14124 (read-key): Swap values of local maps.
14125
141262013-06-05 Leo Liu <sdl.web@gmail.com>
14127
14128 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
14129
141302013-06-04 Leo Liu <sdl.web@gmail.com>
14131
14132 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
14133 (compilation-auto-jump): Suppress the "Mark set" message to give
14134 way to exit message.
14135
141362013-06-04 Alan Mackenzie <acm@muc.de>
14137
14138 Remove faulty optimisation from indentation calculation.
14139 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
14140 search limit based on 2000 characters back from indent-point.
14141
141422013-06-03 Tassilo Horn <tsdh@gnu.org>
14143
14144 * eshell/em-term.el (cl-lib): Require `cl-lib'.
14145
141462013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
14147
14148 * emacs-lisp/lisp.el: Use lexical-binding.
14149 (lisp--local-variables-1, lisp--local-variables): New functions.
14150 (lisp--local-variables-completion-table): New var.
14151 (lisp-completion-at-point): Use it complete let-bound vars.
14152
14153 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
14154 eagerly (bug#14422).
14155
141562013-06-03 Michael Albinus <michael.albinus@gmx.de>
14157
14158 * autorevert.el (auto-revert-notify-enabled)
14159 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
14160 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
14161 (auto-revert-notify-handler): Handle also gfilenotify.
14162
14163 * subr.el (file-notify-handle-event): New defun. Replacing ...
14164 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
14165 Remove.
14166
141672013-06-03 Juri Linkov <juri@jurta.org>
14168
14169 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
14170 `M-s h .'. (Bug#14427)
14171
14172 * hi-lock.el (highlight-symbol-at-point): New alias for the new
14173 command `hi-lock-face-symbol-at-point'.
14174 (hi-lock-face-symbol-at-point): New command.
14175 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
14176 (hi-lock-menu): Add `highlight-symbol-at-point'.
14177 (hi-lock-mode): Doc fix.
14178
14179 * isearch.el (isearch-forward-symbol-at-point): New command.
14180 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
14181 (isearch-highlight-regexp): Add a regexp which matches
14182 words/symbols for word/symbol mode.
14183
14184 * subr.el (find-tag-default-bounds): New function with the body
14185 mostly moved from `find-tag-default'.
14186 (find-tag-default): Move most code to `find-tag-default-bounds',
14187 call it and apply `buffer-substring-no-properties' afterwards.
14188
141892013-06-03 Tassilo Horn <tsdh@gnu.org>
14190
14191 * eshell/em-term.el (eshell-term-initialize):
14192 Use `cl-intersection' rather than `intersection'.
14193
141942013-06-02 Xue Fuqiao <xfq.free@gmail.com>
14195
14196 * vc/log-view.el: Doc fix.
14197 (log-view-mode-map): Copy keymap from `special-mode-map'.
14198
141992013-06-02 Eric Ludlam <zappo@gnu.org>
14200
14201 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
14202 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
14203 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
14204 (eieio-unbound, eieio-default-superclass)
14205 (eieio--define-field-accessors, method-static, method-before)
14206 (method-primary, method-after, method-num-lists)
14207 (method-generic-before, method-generic-primary)
14208 (method-generic-after, method-num-slots)
14209 (eieio-specialized-key-to-generic-key)
14210 (eieio--check-type, class-v, class-p)
14211 (eieio-class-name, define-obsolete-function-alias)
14212 (eieio-class-parents-fast, eieio-class-children-fast)
14213 (same-class-fast-p, class-constructor, generic-p)
14214 (generic-primary-only-p, generic-primary-only-one-p)
14215 (class-option-assoc, class-option, eieio-object-p)
14216 (class-abstract-p, class-method-invocation-order)
14217 (eieio-defclass-autoload-map, eieio-defclass-autoload)
14218 (eieio-class-un-autoload, eieio-defclass)
14219 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
14220 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
14221 (eieio--defgeneric-init-form, eieio-defgeneric-form)
14222 (eieio-defgeneric-reset-generic-form)
14223 (eieio-defgeneric-form-primary-only)
14224 (eieio-defgeneric-reset-generic-form-primary-only)
14225 (eieio-defgeneric-form-primary-only-one)
14226 (eieio-defgeneric-reset-generic-form-primary-only-one)
14227 (eieio-unbind-method-implementations)
14228 (eieio--defmethod, eieio--typep)
14229 (eieio-perform-slot-validation, eieio-validate-slot-value)
14230 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
14231 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
14232 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
14233 (eieio-slot-name-index, eieio-class-slot-name-index)
14234 (eieio-set-defaults, eieio-initarg-to-attribute)
14235 (eieio-attribute-to-initarg, eieio-c3-candidate)
14236 (eieio-c3-merge-lists, eieio-class-precedence-c3)
14237 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
14238 (eieio-class-precedence-list, eieio-generic-call-methodname)
14239 (eieio-generic-call-arglst, eieio-generic-call-key)
14240 (eieio-generic-call-next-method-list)
14241 (eieio-pre-method-execution-functions, eieio-generic-call)
14242 (eieio-generic-call-primary-only, eieiomt-method-list)
14243 (eieiomt-optimizing-obarray, eieiomt-install)
14244 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
14245 (eieio-generic-form, eieio-defmethod, make-obsolete)
14246 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
14247 (defclass): Remove `eval-and-compile' from macro.
14248 (call-next-method, shared-initialize): Instead of using
14249 `scoped-class' variable, use new eieio--scoped-class, and
14250 eieio--with-scoped-class.
14251 (initialize-instance): Rename local variable 'scoped-class' to
14252 'this-class' to remove ambiguitity from old global.
14253
14254 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
14255 eieio.el.
14256 (eieio--scoped-class-stack): New variable.
14257 (eieio--scoped-class): New fcn.
14258 (eieio--with-scoped-class): New scoping macro.
14259 (eieio-defclass): Use pushnew instead of add-to-list.
14260 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
14261 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
14262 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
14263 `scoped-class' variable, use new eieio--scoped-class, and
14264 eieio--with-scoped-class.
14265
14266 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
14267
142682013-06-02 Tassilo Horn <tsdh@gnu.org>
14269
14270 * eshell/esh-ext.el (eshell-external-command): Pass args to
14271 `eshell-find-interpreter'.
14272 (eshell-find-interpreter): Add new second parameter ARGS.
14273
14274 * eshell/em-script.el (eshell-script-initialize): Add second arg
14275 to the function added as MATCH to `eshell-interpreter-alist'.
14276
14277 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
14278 the function added as MATCH to `eshell-interpreter-alist'.
14279
14280 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
14281 (eshell-visual-options): New defcustom.
14282 (eshell-escape-control-x): Adapt docstring.
14283 (eshell-term-initialize): Test `eshell-visual-subcommands' and
14284 `eshell-visual-options' in addition to `eshell-visual-commands'.
14285 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
14286
142872013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
14288
14289 * progmodes/python.el (python-indent-block-enders): Add break,
14290 continue and raise keywords.
14291
142922013-06-01 Glenn Morris <rgm@gnu.org>
14293
14294 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
14295
14296 Plain (f)boundp silences compilation warnings since Emacs 22.1.
14297 * progmodes/cc-cmds.el (delete-forward-p):
14298 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
14299 * progmodes/cc-engine.el (buffer-syntactic-context):
14300 * progmodes/cc-fonts.el (face-property-instance):
14301 * progmodes/cc-mode.el (set-keymap-parents):
14302 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
14303 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
14304 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
14305 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
14306 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
14307
14308 * progmodes/cc-vars.el (other): Emacs has this widget since
14309 at least 21.1, so don't (re)define it.
14310
14311 * eshell/em-cmpl.el (eshell-cmpl-initialize):
14312 Replace the obsolete alias pcomplete-arg-quote-list.
14313
143142013-06-01 Leo Liu <sdl.web@gmail.com>
14315
14316 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
14317 punctuation syntax.
14318 (inferior-octave-minimal-columns)
14319 (inferior-octave-last-column-width): New variables.
14320 (inferior-octave-track-window-width-change): New function.
14321 (inferior-octave-mode): Adjust column width so that Octave output,
14322 for example from 'ls', can fit into the window nicely.
14323
143242013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14325
14326 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14327 Highlight expansions inside regexp literals.
14328
143292013-05-31 Glenn Morris <rgm@gnu.org>
14330
14331 * obsolete/sym-comp.el (symbol-complete):
14332 Replace obsolete completion-annotate-function.
14333
14334 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
14335
143362013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14337
14338 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14339 New function, checks if point is inside a literal that allows
14340 expression expansion.
14341 (ruby-syntax-propertize-expansion): Use it.
14342 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
14343 around the body.
14344
143452013-05-30 Juri Linkov <juri@jurta.org>
14346
14347 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
14348 to "\M-si".
14349 (isearch-invisible): New variable.
14350 (isearch-forward): Doc fix.
14351 (isearch-mode): Set `isearch-invisible'
14352 to the value of `search-invisible'.
14353 (isearch-toggle-case-fold): Doc fix.
14354 (isearch-toggle-invisible): New command.
14355 (isearch-query-replace): Let-bind `search-invisible'
14356 to the value of `isearch-invisible'.
14357 (isearch-search): Use `isearch-invisible' instead of
14358 `search-invisible'. Let-bind `search-invisible'
14359 to the value of `isearch-invisible'. (Bug#11378)
14360
143612013-05-30 Juri Linkov <juri@jurta.org>
14362
14363 * replace.el (perform-replace): Avoid `isearch-range-invisible'
14364 call when `query-flag' is nil and `search-invisible' is non-nil.
14365 (Bug#11746)
14366
143672013-05-30 Glenn Morris <rgm@gnu.org>
14368
14369 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
14370
14371 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
14372 (cc-require): Suppress spurious "noruntime" warnings.
14373 (cc-require-when-compile): Use fboundp, for sake of compiler.
14374
14375 * progmodes/cc-mode.el: Move load of cc-vars before that of
14376 cc-langs (which in turn loads cc-vars), to quieten compiler.
14377
143782013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14379
14380 * paren.el: Simplify the code.
14381 (show-paren-mode): Always start the timer.
14382 (show-paren--idle-timer): Rename from show-paren-idle-timer.
14383 (show-paren--overlay, show-paren--overlay-1): Rename from
14384 show-paren-overlay and show-paren-overlay-1, and initialize to an
14385 overlay rather than to nil.
14386 (show-paren-function): Misc cleanup and simplifications.
14387
143882013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14389
14390 * paren.el (show-paren-data-function): New hook.
14391 (show-paren--default): New function, extracted from show-paren-function.
14392 (show-paren-function): Use show-paren-data-function.
14393
143942013-05-30 Glenn Morris <rgm@gnu.org>
14395
14396 * ielm.el (ielm-map, ielm-complete-symbol):
14397 Use completion-at-point rather than obsolete functions.
14398 (inferior-emacs-lisp-mode): Doc fix.
14399 Set completion-at-point-functions, rather than
14400 comint-dynamic-complete-functions.
14401
14402 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
14403 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
14404 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
14405
14406 * image.el (image-animated-p): Tweak definition.
14407
14408 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
14409 (rlogin-process-connection-type): Tweak default. Add set-after.
14410 (rlogin-host): Doc fix.
14411 (rlogin): Tweak prompt.
14412 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
14413
14414 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
14415 * progmodes/tcl.el (inferior-tcl-mode-map):
14416 Use completion-at-point rather than obsolete alias.
14417
14418 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
14419
14420 * minibuffer.el (read-file-name-completion-ignore-case):
14421 Move before completion--in-region, for eager macro expansion.
14422
144232013-05-29 Juri Linkov <juri@jurta.org>
14424
14425 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
14426 for total count of matching lines. Add `global-matches' for total
14427 count of matches. Rename `matches' to `lines' for count of
14428 matching lines. Add `matches' for count of matches.
14429 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
14430 to `prev-line' for line number of prev match endpt.
14431 Increment `matches' for every match. Print the number of
14432 matching lines in the header.
14433 (occur-context-lines): Rename `lines' to `curr-line'.
14434 Rename `prev-lines' to `prev-line'. (Bug#14017)
14435
144362013-05-29 Juri Linkov <juri@jurta.org>
14437
14438 * replace.el (perform-replace): Add `skip-read-only-count',
14439 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
14440 Increment them for corresponding conditions and report the number
14441 of skipped occurrences in the final message. (Bug#11746)
14442 (query-replace, query-replace-regexp, query-replace-regexp-eval)
14443 (replace-string, replace-regexp): Doc fix.
14444
144452013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14446
14447 * emacs-lisp/trace.el (trace--read-args): Provide a default.
14448
14449 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
14450 prog-mode-map (bug#14504).
14451
144522013-05-29 Leo Liu <sdl.web@gmail.com>
14453
14454 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
14455 (octave-help): Small simplification.
14456
14457 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
14458 off the highlight first.
14459
144602013-05-29 Glenn Morris <rgm@gnu.org>
14461
14462 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
14463 Handle idlwave-last-system-routine-info-cons-cell being nil.
14464
14465 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
14466 (idlwave-write-paths): Simplify via with-temp-buffer.
14467
14468 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
14469 * emulation/cua-rect.el: Also load cua-base at run time.
14470
14471 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
14472 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
14473 (cperl-imenu-on-info): Require imenu.
14474
144752013-05-28 Alan Mackenzie <acm@muc.de>
14476
14477 Handle "capitalised keywords" correctly.
14478 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
14479
144802013-05-28 Aidan Gauland <aidalgol@amuri.net>
14481
14482 * eshell/em-unix.el: Add -r option to cp.
14483
144842013-05-28 Glenn Morris <rgm@gnu.org>
14485
14486 * vc/vc-arch.el (vc-exec-after): Declare.
14487 (vc-switches): Autoload.
14488 * vc/vc-bzr.el: No need to require vc when compiling.
14489 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
14490 (vc-resynch-buffer, vc-dir-refresh): Declare.
14491 (vc-setup-buffer, vc-switches): Autoload.
14492 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
14493 (vc-resynch-buffer): Declare.
14494 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
14495 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
14496 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
14497 (grep-read-regexp, grep-read-files, grep-expand-template)
14498 (vc-dir-refresh): Declare.
14499 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
14500 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
14501 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
14502 * vc/vc-mtn.el (vc-exec-after): Declare.
14503 (vc-switches): Autoload.
14504 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
14505 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
14506 (vc-file-tree-walk): Declare.
14507 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
14508 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
14509 (vc-tag-precondition, vc-rename-master): Autoload.
14510 * vc/vc-svn.el (vc-exec-after): Declare.
14511 (vc-switches, vc-setup-buffer): Autoload.
14512 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
14513 Autoload.
14514 (vc-resynch-buffer): Declare.
14515
14516 * obsolete/fast-lock.el (byte-compile-warnings):
14517 Don't warn about obsolete features in this obsolete file.
14518
14519 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
14520 Move definition before use.
14521
14522 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
14523 (dun-unix-verbs): Remove dun-zippy.
14524 (dun-zippy): Remove function.
14525
14526 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
14527
145282013-05-27 Juri Linkov <juri@jurta.org>
14529
14530 * replace.el (replace-search): New function with code moved out
14531 from `perform-replace'.
14532 (replace-highlight, replace-dehighlight): Move function definitions
14533 up closer to `replace-search'. (Bug#11746)
14534
145352013-05-27 Juri Linkov <juri@jurta.org>
14536
14537 * replace.el (perform-replace): Ignore invisible matches.
14538 In addition to checking `query-replace-skip-read-only', also
14539 filter out matches by calling `run-hook-with-args-until-failure'
14540 on `isearch-filter-predicates', and also check `search-invisible'
14541 for t or call `isearch-range-invisible'.
14542 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
14543
145442013-05-27 Juri Linkov <juri@jurta.org>
14545
14546 * isearch.el (isearch-filter-predicates): Rename from
14547 `isearch-filter-predicate'. Doc fix. (Bug#11378)
14548 (isearch-message-prefix): Display text from the property
14549 `isearch-message-prefix' of the currently active filters.
14550 (isearch-search): Don't compare `isearch-filter-predicate' with
14551 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
14552 on `isearch-filter-predicates'. Also check `search-invisible' for t
14553 or call `isearch-range-invisible'.
14554 (isearch-filter-visible): Make obsolete.
14555 (isearch-lazy-highlight-search):
14556 Call `run-hook-with-args-until-failure' on
14557 `isearch-filter-predicates' and use `isearch-range-invisible'.
14558
14559 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
14560 `isearch-filter-predicates' instead of `funcall'ing
14561 `isearch-filter-predicate'.
14562 (Info-mode): Set `Info-isearch-filter' to
14563 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
14564
14565 * dired-aux.el (dired-isearch-filter-predicate-orig):
14566 Remove variable.
14567 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
14568 (dired-isearch-filenames-end): Add and remove
14569 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
14570 instead of changing the value of `isearch-filter-predicate'.
14571 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
14572 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
14573 Put property `isearch-message-prefix' to "filename " on
14574 `dired-isearch-filter-filenames'.
14575
14576 * wdired.el (wdired-change-to-wdired-mode):
14577 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
14578 locally instead of changing `isearch-filter-predicate'.
14579 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
14580
145812013-05-27 Dmitry Gutov <dgutov@yandex.ru>
14582
14583 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
14584 return the commit hash (Bug#14459). Also set the
14585 `vc-git-detached' property.
14586 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
14587 (vc-git-mode-line-string): Use the same help-echo format whether
14588 in detached mode or not, because we know the actual revision now.
14589 When in detached mode, shorten the revision to 7 chars.
14590
145912013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14592
14593 * emacs-lisp/easy-mmode.el (define-minor-mode):
14594 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
14595 mode hook and provide a docstring.
14596
145972013-05-27 Alan Mackenzie <acm@muc.de>
14598
14599 Remove spurious syntax-table text properties inserted by C-y.
14600 * progmodes/cc-mode.el (c-after-change): Also clear hard
14601 syntax-table property with value nil.
14602
146032013-05-27 Michael Albinus <michael.albinus@gmx.de>
14604
14605 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
14606 when reading the events; the buffer layout shall not be changed.
14607
146082013-05-27 Leo Liu <sdl.web@gmail.com>
14609
14610 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
14611 New variable.
14612 (inferior-octave-directory-tracker): Automatically re-sync
14613 default-directory.
14614 (octave-help): Improve handling of 'See also'.
14615
146162013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14617
14618 * doc-view.el: Minor naming convention tweaks.
14619 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
14620
14621 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
14622 even if there's no `display' property yet (bug#14435).
14623
146242013-05-25 Eli Zaretskii <eliz@gnu.org>
14625
14626 * subr.el (unmsys--file-name): Rename from reveal-filename.
14627
14628 * Makefile.in (custom-deps, finder-data, autoloads)
14629 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14630 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14631 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
14632
146332013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14634
14635 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
14636 error-completion on the first 2 args of condition-case (bug#14446).
14637 Don't burp at EOB.
14638
146392013-05-25 Leo Liu <sdl.web@gmail.com>
14640
14641 * comint.el (comint-previous-matching-input): Do not flood the
14642 *Messages* buffer with trivial messages.
14643
146442013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14645
14646 * progmodes/flymake.el (flymake-nop): Don't return a string.
14647 (flymake-set-at): Fix typo.
14648
14649 * simple.el (read--expression): New function, extracted from
14650 eval-expression. Set completion-at-point-functions (bug#14465).
14651 (eval-expression, eval-minibuffer): Use it.
14652
146532013-05-25 Xue Fuqiao <xfq.free@gmail.com>
14654
14655 * progmodes/flymake.el (flymake-save-buffer-in-file)
14656 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
14657 (flymake-selected-frame, flymake-log, flymake-ins-after)
14658 (flymake-set-at, flymake-get-buildfile-from-cache)
14659 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
14660 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
14661 Refine the doc string.
14662 (flymake-get-file-name-mode-and-masks): Reformat.
14663 (flymake-get-real-file-name-function): Fix a minor bug.
14664
146652013-05-24 Juri Linkov <juri@jurta.org>
14666
14667 * progmodes/grep.el (grep-mode-font-lock-keywords):
14668 Support =linenumber= format used by git-grep for lines with
14669 function names. (Bug#13549)
14670
146712013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14672
14673 * progmodes/octave.el (octave-smie-rules): Return nil rather than
14674 0 after a semi-colon; it works better for smie-auto-fill.
14675 (octave--indent-new-comment-line): New function.
14676 (octave-indent-new-comment-line): Use it (indirectly).
14677 (octave-mode): Don't disable smie-auto-fill. Use add-function to
14678 modify comment-line-break-function.
14679
14680 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
14681 (smie-setup): Use add-function to set it.
14682
146832013-05-24 Sam Steingold <sds@gnu.org>
14684
14685 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
14686 argument (before the `interactive' argument).
14687
146882013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14689
14690 * image-mode.el (image-mode-winprops): Add winprops to
14691 image-mode-winprops-alist before running
14692 image-mode-new-window-functions.
14693 * doc-view.el (doc-view-new-window-function): Don't delay
14694 doc-view-goto-page via timers (bug#14435).
14695
146962013-05-24 Tassilo Horn <tsdh@gnu.org>
14697
14698 * doc-view.el: Integrate with desktop.el. (Bug#14435)
14699 (doc-view-desktop-save-buffer): New function.
14700 (doc-view-restore-desktop-buffer): New function.
14701 (desktop-buffer-mode-handlers):
14702 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
14703 handler.
14704 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
14705 `desktop-save-buffer' function.
14706
147072013-05-24 Michael Albinus <michael.albinus@gmx.de>
14708
14709 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
14710 (tramp-gvfs-file-name-handler): Raise a user error when
14711 `tramp-gvfs-enabled' is nil.
14712 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
14713 Do not raise a user error when loading package. (Bug#14447)
14714
14715 * net/xesam.el: Move to obsolete/.
14716
147172013-05-24 Glenn Morris <rgm@gnu.org>
14718
14719 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
14720
14721 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
14722
14723 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
14724 (Info-find-node, Man-getpage-in-background): Declare.
14725
14726 * mail/unrmail.el (unrmail):
14727 Replace obsolete detect-coding-with-priority.
14728
14729 * net/socks.el (socks-split-string): Use this rather than split-string.
14730 (socks-nslookup-host): Update for above change.
14731 (dynamic-choice, s5-dynamic-choice-match)
14732 (s5-dynamic-choice-match-inline, s5-widget-value-create):
14733 Comment out unused code.
14734
14735 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
14736 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
14737 (gud-tooltip-echo-area): Make obsolete.
14738 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
14739
14740 * progmodes/js.el (js--optimize-arglist): Declare.
14741
14742 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
14743
14744 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
14745 (ediff-window-C): Declare.
14746
14747 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
14748 Tweak requires to silence compiler.
14749
14750 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
14751 (he-search-string, he-tried-table, he-expand-list)
14752 (he-init-string, he-string-member, he-substitute-string)
14753 (he-reset-string): Declare.
14754
14755 * obsolete/options.el (list-options): Use custom-variable-p,
14756 rather than obsolete alias.
14757
147582013-05-23 Sam Steingold <sds@gnu.org>
14759
14760 * simple.el (shell-command-on-region): Pass the `replace' argument
14761 down to `call-process-region' to comply with the doc as reported on
14762 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
14763
147642013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14765
14766 * emacs-lisp/smie.el (smie-indent-forward-token)
14767 (smie-indent-backward-token): Handle string tokens (bug#14381).
14768
147692013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14770
14771 * ielm.el (ielm-menu): New menu.
14772 (inferior-emacs-lisp-mode): Set comment-start.
14773
147742013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14775
14776 * textmodes/reftex.el (reftex-ref-style-toggle):
14777 Fix deactivate action.
14778
14779 * textmodes/reftex-vars.el (reftex-ref-style-alist):
14780 Add cleveref macros.
14781
14782 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
14783 Accept options for bibliography commands.
14784 * textmodes/reftex-vars.el (reftex-bibliography-commands):
14785 Add addbibresource. Basic Biblatex support.
14786
147872013-05-23 Michael Albinus <michael.albinus@gmx.de>
14788
14789 * net/tramp-gvfs.el (top):
14790 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
14791 when loading package. (Bug#14447)
14792
147932013-05-23 Glenn Morris <rgm@gnu.org>
14794
14795 * progmodes/js.el: No need to load comint when compiling.
14796 (ring-insert, comint-send-string, comint-send-input)
14797 (comint-last-input-end, ido-chop): Declare.
14798
14799 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
14800 * vc/ediff-mult.el: Adjust requires.
14801 (ediff-directories-internal, ediff-directory-revisions-internal)
14802 (ediff-patch-file-internal): Declare.
14803 * vc/ediff-ptch.el: Adjust requires.
14804 (ediff-use-last-dir, ediff-buffers-internal): Declare.
14805 (ediff-find-file): Autoload.
14806 * vc/ediff-util.el: No need to load ediff when compiling.
14807 (ediff-regions-internal): Declare.
14808 * vc/ediff-wind.el: Adjust requires.
14809 (ediff-compute-toolbar-width): Define when compiling.
14810 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
14811 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
14812 (dired-get-filename, dired-get-marked-files)
14813 (ediff-last-dir-patch, ediff-patch-default-directory)
14814 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
14815 (ediff-patch-buffer-internal): Declare.
14816
14817 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
14818 (ispell-process, ispell-buffer-local-words, lm-summary)
14819 (lm-section-start, lm-section-end): Declare.
14820 (checkdoc-ispell-init): Simplify.
14821
14822 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
14823 (he-string-member, he-reset-string, he-substitute-string): Declare.
14824
14825 * eshell/em-ls.el: Adjust requires.
14826 (eshell-glob-regexp): Declare.
14827 * eshell/em-tramp.el: Adjust requires.
14828 (eshell-parse-command): Autoload.
14829 * eshell/em-xtra.el: Adjust requires.
14830 (eshell-parse-command): Autoload.
14831 * eshell/esh-ext.el: Adjust requires.
14832 (eshell-parse-command, eshell-close-handles): Autoload.
14833 * eshell/esh-io.el: Adjust requires.
14834 (eshell-output-filter): Autoload.
14835 * eshell/esh-util.el: No need to load tramp when compiling.
14836 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
14837 Declare.
14838 (eshell-parse-ange-ls): Require ange-ftp and tramp.
14839 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
14840 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
14841 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
14842 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
14843 * eshell/esh-opt.el, eshell/esh-proc.el:
14844 * eshell/esh-var.el: Adjust requires.
14845 * eshell/eshell.el: Do not require esh-util twice.
14846 (eshell-add-input-to-history): Declare.
14847 (eshell-command): Check history module is active before using it.
14848
14849 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
14850
148512013-05-22 Leo Liu <sdl.web@gmail.com>
14852
14853 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
14854
148552013-05-22 Michael Albinus <michael.albinus@gmx.de>
14856
14857 * autorevert.el (auto-revert-notify-add-watch)
14858 (auto-revert-notify-handler): Add `attrib' for the inotify case,
14859 it indicates changes in file modification time.
14860
148612013-05-22 Glenn Morris <rgm@gnu.org>
14862
14863 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14864 Always delete the autoloaded function from the noruntime and
14865 unresolved functions lists.
14866
14867 * allout.el: No need to load epa, epg, overlay when compiling.
14868 (epg-context-set-passphrase-callback, epg-list-keys)
14869 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
14870 (epg-key-user-id-list): Declare.
14871
14872 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14873 (viper-set-parsing-style-toggling-macro)
14874 (viper-set-emacs-state-searchstyle-macros):
14875 Use called-interactively-p on Emacs.
14876 (viper-looking-back): Make it an obsolete alias. Update callers.
14877 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
14878 Use looking-back rather than viper-looking-back.
14879 (viper-tmp-insert-at-eob, viper-enlarge-region)
14880 (viper-read-string-with-history, viper-register-to-point)
14881 (viper-append-to-register, viper-change-state-to-vi)
14882 (viper-backward-char-carefully, viper-forward-char-carefully)
14883 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
14884 (viper-change-state-to-emacs): Declare.
14885 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
14886 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14887 * emulation/viper-mous.el: Do not load viper-cmd.
14888 (viper-backward-char-carefully, viper-forward-char-carefully)
14889 (viper-forward-word, viper-adjust-window): Declare.
14890
14891 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14892
14893 * progmodes/idlw-help.el (idlwave-help-fontify):
14894 Use called-interactively-p.
14895
14896 * term/w32console.el (w32-get-console-codepage)
14897 (w32-get-console-output-codepage): Declare.
14898
14899 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14900 Remove unnecessary declarations.
14901 (dframe-message): Doc fix.
14902
14903 * info.el (dframe-select-attached-frame, dframe-current-frame):
14904 Declare.
14905
14906 * speedbar.el (speedbar-message): Make it an obsolete alias.
14907 Update all callers.
14908 (speedbar-with-attached-buffer)
14909 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14910 (speedbar-with-writable): Use backquote.
14911 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14912 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14913 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14914 rather than speedbar- aliases.
14915 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14916 (speedbar-make-specialized-keymap, speedbar-insert-button)
14917 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14918 (speedbar-do-function-pointer): Declare.
14919 (rmail-speedbar-button, rmail-speedbar-find-file)
14920 (rmail-speedbar-move-message):
14921 Use dframe-with-attached-buffer rather than speedbar- alias.
14922 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14923 (dframe-message, speedbar-make-specialized-keymap)
14924 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14925 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14926 (speedbar-insert-button, dframe-select-attached-frame)
14927 (dframe-maybee-jump-to-attached-frame)
14928 (speedbar-change-initial-expansion-list)
14929 (speedbar-previously-used-expansion-list-name): Declare.
14930 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14931 Use dframe-message, dframe-with-attached-buffer rather than
14932 speedbar- aliases.
14933 (gud-sentinel): Silence compiler.
14934 * progmodes/vhdl-mode.el (speedbar-refresh)
14935 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14936 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14937 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14938 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14939 (speedbar-file-lists, speedbar-make-tag-line)
14940 (speedbar-line-directory, speedbar-goto-this-file)
14941 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14942 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14943 (speedbar-make-button, speedbar-reset-scanners)
14944 (speedbar-files-item-info, speedbar-line-text)
14945 (speedbar-find-file-in-frame, speedbar-set-timer)
14946 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14947 (speedbar-with-writable): Do not (re)define it.
14948 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14949 rather than speedbar- alias.
14950
149512013-05-21 Leo Liu <sdl.web@gmail.com>
14952
14953 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14954 menu items.
14955 (octave-mode): Tweak fill-nobreak-predicate.
14956 (inferior-octave-startup): Check process to avoid infinite loop.
14957 (inferior-octave): Pop to buffer first to show abornmal process
14958 exit information.
14959
149602013-05-21 Glenn Morris <rgm@gnu.org>
14961
14962 * printing.el (pr-menu-bar): Define when compiling.
14963
149642013-05-21 Leo Liu <sdl.web@gmail.com>
14965
14966 * progmodes/octave.el (octave-auto-fill): Remove.
14967 (octave-indent-new-comment-line): Improve.
14968 (octave-mode): Use auto fill mode through
14969 comment-line-break-function and fill-nobreak-predicate.
14970 (octave-goto-function-definition): Support DEFUN_DLD.
14971 (octave-beginning-of-defun): Small tweak.
14972 (octave-help): Show parent directory.
14973
149742013-05-21 Glenn Morris <rgm@gnu.org>
14975
14976 * files.el (dired-unmark):
14977 * progmodes/gud.el (gdb-input): Update declarations.
14978
14979 * calculator.el (electric, ehelp): No need to load when compiling.
14980 (Electric-command-loop, electric-describe-mode): Declare.
14981
14982 * doc-view.el (doc-view-current-converter-processes): Move before use.
14983
14984 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14985 Move MODE-set-explicitly definition before use.
14986
14987 * international/mule-diag.el (mule-diag):
14988 Don't use obsolete window-system-version.
14989
14990 * mail/feedmail.el (smtpmail): No need to load when compiling.
14991 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14992
14993 * mail/mail-utils.el (rfc822): No need to load when compiling.
14994 (rfc822-addresses): Autoload it.
14995 (mail-strip-quoted-names): Trivial simplification.
14996
14997 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14998 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14999
15000 * net/snmp-mode.el (tempo): Don't duplicate requires.
15001
15002 * progmodes/prolog.el (info): No need to load when compiling.
15003 (comint): Require before shell requires it.
15004 (Info-goto-node): Autoload it.
15005 (Info-follow-nearest-node): Declare.
15006 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
15007
15008 * textmodes/artist.el (picture-mode-exit): Declare.
15009
15010 * textmodes/reftex-parse.el (reftex-parse-from-file):
15011 Trivial rewrite so the compiler can parse it better.
15012
150132013-05-20 Leo Liu <sdl.web@gmail.com>
15014
15015 * progmodes/octave.el (octave-help-mode-map)
15016 (octave-help-mode-finish-hook): New variables.
15017 (octave-help-mode, octave-help-mode-finish): New functions.
15018 (octave-help): Use octave-help-mode.
15019
150202013-05-20 Glenn Morris <rgm@gnu.org>
15021
15022 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
15023
150242013-05-19 Dmitry Gutov <dgutov@yandex.ru>
15025
15026 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
15027 start at point, so that expansion starting right after opening
15028 slash in a regexp is recognized.
15029 (ruby-syntax-before-regexp-re): New defvar, extracted from
15030 ruby-syntax-propertize-function. Since the value of this regexp
15031 is looked up at runtime now, we should be able to turn
15032 `ruby-syntax-methods-before-regexp' into a defcustom later.
15033 (ruby-syntax-propertize-function): Split regexp matching into two
15034 parts, for opening and closing slashes. That allows us to skip
15035 over string interpolations and support multiline regexps.
15036 Don't call `ruby-syntax-propertize-expansions', instead use another rule
15037 for them, which calls `ruby-syntax-propertize-expansion'.
15038 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
15039 call to `ruby-syntax-propertize-function'.
15040 (ruby-syntax-propertize-expansion): Extracted from
15041 `ruby-syntax-propertize-expansions'. Handles one expansion.
15042 (ruby-syntax-propertize-percent-literal): Leave point right after
15043 the percent symbol, so that the expression expansion rule can
15044 propertize the contents.
15045 (ruby-syntax-propertize-heredoc): Leave point at bol following the
15046 heredoc openers.
15047 (ruby-syntax-propertize-expansions): Remove.
15048
150492013-05-18 Juri Linkov <juri@jurta.org>
15050
15051 * man.el (Man-default-man-entry): Remove `-' from the end
15052 of the default value. (Bug#14400)
15053
150542013-05-18 Glenn Morris <rgm@gnu.org>
15055
15056 * comint.el (comint-password-prompt-regexp):
15057 Allow "password for XXX" where XXX contains colons (eg https://...).
15058
150592013-05-18 Leo Liu <sdl.web@gmail.com>
15060
15061 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
15062 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
15063 (octave-source-directories): Don't check process.
15064 (octave-source-directories, octave-find-definition): Doc fix.
15065
150662013-05-18 Glenn Morris <rgm@gnu.org>
15067
15068 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
15069 Remove backspace/delete bindings. (Bug#14392)
15070
15071 * cus-dep.el (custom-make-dependencies): Sort the output.
15072 (custom-versions-load-alist): Convert comment to doc.
15073
150742013-05-17 Leo Liu <sdl.web@gmail.com>
15075
15076 * newcomment.el (comment-search-backward): Stricter in finding
15077 comment start. (Bug#14303)
15078
15079 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
15080 (octave-comment-start-skip): Properly anchored.
15081
150822013-05-17 Leo Liu <sdl.web@gmail.com>
15083
15084 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
15085 Clean up when turned off. (Bug#14395)
15086 (smie--highlight-matching-block-overlay): No longer buffer-local.
15087 (smie-highlight-matching-block): Adjust.
15088
150892013-05-17 Paul Eggert <eggert@cs.ucla.edu>
15090
15091 Doc string fix for "nanoseconds" (Bug#14406).
15092 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
15093 Fix doc string typo that had "nanoseconds" instead of "microseconds".
15094
150952013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
15096
15097 * calc/calc-units.el (math-extract-units): Preserve powers
15098 of units.
15099
151002013-05-17 Leo Liu <sdl.web@gmail.com>
15101
15102 * subr.el (delete-consecutive-dups): New function.
15103 * ido.el (ido-set-matches-1): Use it.
15104 * progmodes/octave.el (inferior-octave-completion-table): Use it.
15105 * ido.el (ido-remove-consecutive-dups): Remove.
15106
151072013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
15108
15109 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
15110 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
15111 regexp-opt's `words'.
15112
151132013-05-16 Leo Liu <sdl.web@gmail.com>
15114
15115 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
15116 (smie--highlight-matching-block-overlay)
15117 (smie--highlight-matching-block-lastpos)
15118 (smie--highlight-matching-block-timer): New variables.
15119 (smie-highlight-matching-block): New function.
15120 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
15121 (smie-setup): Conditionally enable smie-blink-matching-open.
15122
151232013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
15124
15125 Sync with upstream verilog-mode r840.
15126 * progmodes/verilog-mode.el (verilog-mode-version)
15127 (verilog-mode-release-date): Update.
15128 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
15129 (verilog-sig-tieoff): Fix string error on
15130 AUTORESET with colon define, bug594. Reported by Andrew Hou.
15131 (verilog-read-decls): Fix parameters confusing
15132 AUTOINST interfaces, bug565. Reported by Leith Johnson.
15133
151342013-05-16 Eli Zaretskii <eliz@gnu.org>
15135
15136 * subr.el (reveal-filename): New function.
15137
15138 * loadup.el: Compute Emacs executable versions on MS-Windows,
15139 where executables have the .exe extension. Add a hard link
15140 emacs-XX.YY.ZZ.exe on MS-Windows.
15141
15142 * Makefile.in (XARGS_LIMIT): New variable.
15143 (custom-deps, finder-data, autoloads)
15144 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15145 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15146 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
15147 (compile-main): Limit xargs according to $(XARGS_LIMIT).
15148
151492013-05-16 Leo Liu <sdl.web@gmail.com>
15150
15151 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
15152 (octave-mode-menu, octave-mode-map): Remove its uses.
15153
151542013-05-16 Reto Zimmermann <reto@gnu.org>
15155
15156 Sync with upstream vhdl mode v3.34.2.
15157 * progmodes/vhdl-mode.el: Use `push' throughout.
15158 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
15159 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
15160 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
15161 (vhdl-actual-generic-name): New option to derive actual generic name.
15162 (vhdl-port-paste-signals): Replace formal by actual generics.
15163 (vhdl-beautify): New name for old group vhdl-align. Update users.
15164 (vhdl-beautify-options): New option.
15165 (vhdl-last-input-event): New compat alias. Use throughout.
15166 (vhdl-goto-line): Replace user level function `goto-line'.
15167 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
15168 vhdl-fix-statement-buffer.
15169 (vhdl-create-mode-menu): Add some entries.
15170 (vhdl-align-region-groups): Respect vhdl-beautify-options.
15171 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
15172 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
15173 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
15174 to force statements on one line.
15175 (vhdl-remove-trailing-spaces-region):
15176 New, split from vhdl-remove-trailing-spaces.
15177 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
15178 Respect vhdl-beautify-options.
15179 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
15180 (vhdl-update-sensitivity-list): Not add with index if exists without.
15181 Not include array index with signal. Ignore keywords in comments.
15182 (vhdl-get-visible-signals): Regexp tweaks.
15183 (vhdl-template-component-inst): Handle empty library.
15184 (vhdl-template-type): Add template for 'enum' type.
15185 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
15186 Use vhdl-replace-string.
15187 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
15188 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
15189 (vhdl-speedbar-initialize): Update for above name change.
15190 (vhdl-compose-wire-components): Fix in handling of constants.
15191 (vhdl-error-regexp-emacs-alist): New variable.
15192 (vhdl-error-regexp-add-emacs): New function;
15193 adds support for new compile.el (Emacs 22+)
15194 (vhdl-generate-makefile-1): Change target order for single lib. units.
15195 Allow use of absolute file names.
15196
151972013-05-16 Leo Liu <sdl.web@gmail.com>
15198
15199 * simple.el (prog-indent-sexp): Indent enclosing defun.
15200
152012013-05-15 Glenn Morris <rgm@gnu.org>
15202
15203 * cus-start.el (show-trailing-whitespace): Move to editing basics.
15204 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
15205 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
15206 (whitespace-highlight): Move to whitespace group.
15207
15208 * comint.el (comint-source):
15209 * pcmpl-linux.el (pcmpl-linux):
15210 * shell.el (shell-faces):
15211 * eshell/esh-opt.el (eshell-opt):
15212 * international/ccl.el (ccl): Remove empty custom groups.
15213
15214 * completion.el (dynamic-completion-mode):
15215 * jit-lock.el (jit-lock-debug-mode):
15216 * minibuffer.el (completion-in-region-mode):
15217 * type-break.el (type-break-mode-line-message-mode)
15218 (type-break-query-mode):
15219 * emulation/tpu-edt.el (tpu-edt-mode):
15220 * progmodes/subword.el (global-subword-mode, global-superword-mode):
15221 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
15222 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
15223
15224 * term/xterm.el (xterm): Change parent group to terminals.
15225
15226 * master.el (master): Remove empty custom group.
15227 (master-mode): Remove unused :group argument.
15228 * textmodes/refill.el (refill): Remove empty custom group.
15229 (refill-mode): Remove unused :group argument.
15230
15231 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
15232
15233 * cus-dep.el: Provide a feature.
15234 (custom-make-dependencies): Ignore dotfiles (dir-locals).
15235 Don't mistakenly ignore files whose basenames match a basename
15236 from preloaded-file-list (eg cedet/ede/simple.el).
15237 Add a fallback method for getting :group.
15238
152392013-05-15 Juri Linkov <juri@jurta.org>
15240
15241 * isearch.el (isearch-char-by-name): Rename from
15242 `isearch-insert-char-by-name'. Doc fix.
15243 (isearch-forward): Mention `isearch-char-by-name' in
15244 the docstring. (Bug#13348)
15245
15246 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
15247 `exit-minibuffer' instead of
15248 `isearch-nonincremental-exit-minibuffer'.
15249 (isearch-edit-string): Remove mention of
15250 `isearch-nonincremental-exit-minibuffer' from docstring.
15251 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
15252 (isearch-forward-exit-minibuffer)
15253 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
15254
152552013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15256
15257 * loadup.el: Just use unversioned DOC.
15258
15259 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
15260 literals as extending to EOB.
15261 (nxml-last-fontify-end): Remove unused variable.
15262 (nxml-after-change1): Use with-silent-modifications.
15263 (nxml-extend-after-change-region): Simplify.
15264 (nxml-extend-after-change-region1): Remove function.
15265 (nxml-after-change1): Don't adjust for dependent regions.
15266 (nxml-fontify-matcher): Simplify.
15267 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
15268 (xmltok-add-dependent): Remove function.
15269 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
15270 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
15271 (xmltok-scan-prolog-after-processing-instruction-open): Treat
15272 unclosed <[[, <?, comment, and other literals as extending to EOB.
15273 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
15274 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
15275 Remove functions.
15276 (rng-do-some-validation-1): Don't mark dependent regions.
15277 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
15278 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
15279 (nxml-clear-dependent-regions): Remove functions.
15280 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
15281 (nxml-ensure-scan-up-to-date):
15282 Don't clear&mark dependent regions.
15283
152842013-05-15 Leo Liu <sdl.web@gmail.com>
15285
15286 * progmodes/octave.el (octave-goto-function-definition):
15287 Improve and fix callers.
15288
152892013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15290
15291 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
15292 the setter (bug#14387).
15293
15294 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
15295 surrounding group (bug#14402).
15296
152972013-05-14 Juri Linkov <juri@jurta.org>
15298
15299 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
15300 (Bug#14390)
15301
153022013-05-14 Glenn Morris <rgm@gnu.org>
15303
15304 * progmodes/f90.el (f90-imenu-generic-expression):
15305 Fix typo in 2013-05-08 change. (Bug#14402)
15306
153072013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15308
15309 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
15310 Remove signals for which replies are never received.
15311
153122013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15313
15314 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
15315 (gdb-handler-alist, gdb-handler-number): Remove variables.
15316 (gdb-handler-list): New variable.
15317 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
15318 (gdb-pending-handler-p, gdb-handle-reply)
15319 (gdb-remove-all-pending-triggers): New functions.
15320 (gdb-discard-unordered-replies): New defcustom.
15321 (gdb-handler): New defstruct.
15322 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
15323 instead of gdb-pending-triggers. Update docstring.
15324 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
15325 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
15326 (gdb-var-update-handler, def-gdb-auto-update-trigger)
15327 (def-gdb-auto-update-handler, gdb-get-changed-registers)
15328 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
15329 (gdb-frame-handler): Pending triggers are now automatically managed.
15330 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
15331 Remove argument.
15332 (gdb-input): Automatically handles pending triggers. Update docstring.
15333 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
15334 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
15335 Update comments.
15336 (gdb-done-or-error): Now use gdb-handle-reply.
15337
153382013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15339
15340 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
15341 gdb-debug-log.
15342
153432013-05-14 Glenn Morris <rgm@gnu.org>
15344
15345 * subr.el (user-emacs-directory-warning): New option.
15346 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
15347
153482013-05-14 Leo Liu <sdl.web@gmail.com>
15349
15350 * progmodes/octave.el (octave-font-lock-keywords): Fix error
15351 during redisplay.
15352 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
15353 (octave-font-lock-texinfo-comment): Fix invalid search bound
15354 error: wrong side of point.
15355
153562013-05-14 Glenn Morris <rgm@gnu.org>
15357
15358 * progmodes/flymake.el (flymake-xml-program): New option.
15359 (flymake-xml-init): Use it.
15360
15361 * term/xterm.el: Provide a feature.
15362
15363 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
15364
153652013-05-13 Glenn Morris <rgm@gnu.org>
15366
15367 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
15368 Add compat aliases as a hack workaround. (Bug#14384)
15369
153702013-05-13 Leo Liu <sdl.web@gmail.com>
15371
15372 * progmodes/octave.el (octave-indent-comment): Fix indentation for
15373 ###, and %!.
15374 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
15375 C-M-q.
15376 (octave-comment-start-skip): Include %!.
15377 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
15378
153792013-05-12 Leo Liu <sdl.web@gmail.com>
15380
15381 * progmodes/octave.el (inferior-octave-startup): Store the value
15382 of __octave_srcdir__ for octave-source-directories.
15383 (inferior-octave-check-process): New function refactored out of
15384 inferior-octave-send-list-and-digest.
15385 (octave-source-directories)
15386 (octave-find-definition-filename-function): New variables.
15387 (octave-source-directories)
15388 (octave-find-definition-default-filename): New functions.
15389 (octave-find-definition): Improve to find functions implemented in C++.
15390
153912013-05-12 Glenn Morris <rgm@gnu.org>
15392
15393 * calendar/diary-lib.el (diary-outlook-format-1):
15394 Don't include dayname in the output. (Bug#14349)
15395
153962013-05-11 Glenn Morris <rgm@gnu.org>
15397
15398 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
15399
15400 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
15401 Treat cc-provide like provide.
15402
154032013-05-11 Kevin Ryde <user42@zip.com.au>
15404
15405 * cus-dep.el (custom-make-dependencies):
15406 Use generated-autoload-load-name for the sake of files such
15407 such cedet/semantic/bovine/c.el, where the base file name
15408 is not in load-path. (Bug#5277)
15409
154102013-05-11 Glenn Morris <rgm@gnu.org>
15411
15412 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
15413 Provide features.
15414
154152013-05-11 Leo Liu <sdl.web@gmail.com>
15416
15417 * progmodes/octave.el (octave-indent-comment): Improve.
15418 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
15419 (octave-eldoc-function-signatures, octave-eldoc-function):
15420 New functions.
15421 (octave-mode, inferior-octave-mode): Add eldoc support.
15422
154232013-05-11 Richard Stallman <rms@gnu.org>
15424
15425 * epa.el (epa-decrypt-file): Take output file name as argument
15426 and read it using `interactive'.
15427
154282013-05-11 Leo Liu <sdl.web@gmail.com>
15429
15430 * progmodes/octave.el (octave-beginning-of-line)
15431 (octave-end-of-line): Check before using up-list because it jumps
15432 out of more syntactic contructs since moving to smie.
15433 (octave-indent-comment): New function.
15434 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
15435 (octave-begin-keywords, octave-end-keywords)
15436 (octave-reserved-words, octave-smie-bnf-table)
15437 (octave-smie-rules): Add new keywords from Octave 3.6.4.
15438
154392013-05-11 Glenn Morris <rgm@gnu.org>
15440
15441 * faces.el (internal-face-x-get-resource):
15442 * frame.el (ns-display-monitor-attributes-list):
15443 * calc/calc-aent.el (math-to-radians-2):
15444 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
15445 Fix declarations.
15446
15447 * calc/calc-menu.el: Make it loadable in isolation.
15448
15449 * net/eudcb-bbdb.el: Make it loadable without bbdb.
15450 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
15451 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
15452 (eudc-bbdb-query-internal): Require 'bbdb.
15453
15454 * lpr.el (lpr-headers-switches):
15455 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
15456
15457 * progmodes/sql.el (sql-login-params): Fix and improve :type.
15458
15459 * emulation/edt-mapper.el: In batch mode, error rather than hang.
15460
15461 * term.el (term-set-escape-char): Make it idempotent.
15462
154632013-05-10 Leo Liu <sdl.web@gmail.com>
15464
15465 * progmodes/octave.el (inferior-octave-completion-table):
15466 No longer a function and all uses changed. Use cache to speed up
15467 completion due to bug#11906.
15468 (octave-beginning-of-defun): Re-write to be more general.
15469
154702013-05-10 Glenn Morris <rgm@gnu.org>
15471
15472 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
15473
154742013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15475
15476 * comint.el (comint-redirect-send-command-to-process): Use :around
15477 rather than :override for comint-redirect-filter.
15478 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
15479 Call it instead of comint-redirect-original-filter-function (which
15480 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
15481
154822013-05-09 Jan Djärv <jan.h.d@swipnet.se>
15483
15484 * frame.el (display-monitor-attributes-list): Add NS case.
15485 (ns-display-monitor-attributes-list): Declare.
15486
154872013-05-09 Ulrich Mueller <ulm@gentoo.org>
15488
15489 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
15490
154912013-05-09 Glenn Morris <rgm@gnu.org>
15492
15493 * international/fontset.el (vertical-centering-font-regexp):
15494 Set standard-value.
15495
15496 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
15497
15498 * bookmark.el (bookmark-search-delay):
15499 * cus-start.el (vertical-centering-font-regexp):
15500 * ps-mule.el (ps-mule-font-info-database-default):
15501 * ps-print.el (ps-default-fg, ps-default-bg):
15502 * type-break.el (type-break-good-break-interval):
15503 * whitespace.el (whitespace-indentation-regexp)
15504 (whitespace-space-after-tab-regexp):
15505 * emacs-lisp/testcover.el (testcover-1value-functions)
15506 (testcover-noreturn-functions, testcover-progn-functions)
15507 (testcover-prog1-functions):
15508 * emulation/viper-init.el (viper-emacs-state-cursor-color):
15509 * eshell/em-glob.el (eshell-glob-translate-alist):
15510 * play/tetris.el (tetris-tty-colors):
15511 * progmodes/cpp.el (cpp-face-default-list):
15512 * progmodes/flymake.el (flymake-allowed-file-name-masks):
15513 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
15514 (idlwave-help-browser-generic-args):
15515 * progmodes/make-mode.el (makefile-special-targets-list):
15516 * progmodes/python.el (python-shell-virtualenv-path):
15517 * progmodes/verilog-mode.el (verilog-active-low-regexp)
15518 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
15519 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
15520 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
15521 * textmodes/reftex-vars.el (reftex-format-label-function):
15522 * textmodes/remember.el (remember-diary-file): Fix custom types.
15523
15524 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
15525 Add :version.
15526
155272013-05-09 Leo Liu <sdl.web@gmail.com>
15528
15529 * progmodes/octave.el (inferior-octave-completion-at-point):
15530 Restore file completion. (Bug#14300)
15531 (inferior-octave-startup): Fix incorrect highlighting for the
15532 first prompt.
15533
155342013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15535
15536 * progmodes/ruby-mode.el: First cut at SMIE support.
15537 (ruby-use-smie): New var.
15538 (ruby-smie-grammar): New constant.
15539 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
15540 (ruby-smie--forward-token, ruby-smie--backward-token)
15541 (ruby-smie-rules): New functions.
15542 (ruby-mode-variables): Setup SMIE if applicable.
15543
155442013-05-08 Eli Zaretskii <eliz@gnu.org>
15545
15546 * simple.el (line-move-visual): Signal beginning/end of buffer
15547 only if vertical-motion moved less than it was requested. Avoids
15548 silly incorrect error messages when there are display strings with
15549 multiple newlines at EOL.
15550
155512013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15552
15553 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
15554 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
15555 (prolog-char-quote-workaround):
15556 * progmodes/cperl-mode.el (cperl-under-as-char):
15557 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
15558 Mark as obsolete.
15559 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
15560 their declaration.
15561 (vhdl-mode-syntax-table-init): Remove.
15562
15563 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
15564 last change.
15565
15566 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
15567 syntax for "_".
15568 (ld-script-font-lock-keywords):
15569 Change regexps to use things like \_< and \_>.
15570
15571 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
15572 Change all regexps to use things like \_< and \_>.
15573
15574 * progmodes/autoconf.el (autoconf-definition-regexp)
15575 (autoconf-font-lock-keywords, autoconf-current-defun-function):
15576 Handle a _ with symbol syntax.
15577 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
15578
15579 * progmodes/ada-mode.el (ada-mode-abbrev-table):
15580 Consolidate declaration.
15581 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
15582 the declaration.
15583 (ada-create-syntax-table): Remove.
15584 (ada-capitalize-word): Don't mess with the syntax of "_" since it
15585 already has the right syntax nowadays.
15586 (ada-goto-next-word): Don't change the syntax of "_".
15587
15588 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
15589 with-wrapper-hook.
15590
155912013-05-08 Sam Steingold <sds@gnu.org>
15592
15593 * thingatpt.el (thing-at-point): Accept optional second argument
15594 NO-PROPERTIES to strip the text properties from the return value.
15595 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
15596 to `thing-at-point' instead of stripping the properties ourselves.
15597 Also, when `thing-at-point' fails to find a url, prepend "http://"
15598 to the filename at point on the assumption that the user is
15599 pointing at something like gnu.org/gnu.
15600
156012013-05-08 Juanma Barranquero <lekktu@gmail.com>
15602
15603 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15604 * faces.el (crm-separator):
15605 Silence byte-compiler.
15606
15607 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
15608 (tool-bar-map): Remove unneeded defvars.
15609
156102013-05-08 Leo Liu <sdl.web@gmail.com>
15611
15612 Re-work a fix for bug#10994 based on Le Wang's patch.
15613 * ido.el (ido-remove-consecutive-dups): New helper.
15614 (ido-completing-read): Use it.
15615 (ido-chop): Revert fix for bug#10994.
15616
156172013-05-08 Adam Spiers <emacs@adamspiers.org>
15618
15619 * cus-edit.el (custom-save-variables):
15620 Pretty-print long values. (Bug#14187)
15621
156222013-05-08 Glenn Morris <rgm@gnu.org>
15623
15624 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
15625 (m4-mode-syntax-table): Init in the defvar.
15626 (m4-mode-abbrev-table): Let define-derived-mode define it.
15627
156282013-05-08 Tom Tromey <tromey@redhat.com>
15629
15630 * progmodes/m4-mode.el (m4-mode-syntax-table):
15631 Do not treat "_" as word constituent. (Bug#14167)
15632
156332013-05-07 Glenn Morris <rgm@gnu.org>
15634
15635 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
15636 Remove explicit eshell-isearch-cancel-map.
15637
15638 * progmodes/f90.el (f90-smart-end-names): New option.
15639 (f90-smart-end): Doc fix.
15640 (f90-end-block-optional-name): New constant.
15641 (f90-block-match): Respect f90-smart-end-names.
15642
156432013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15644
15645 * progmodes/octave.el (octave-smie-forward-token): Be more careful
15646 about implicit semi-colons (bug#14218).
15647
156482013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15649
15650 * frame.el (display-monitor-attributes-list)
15651 (frame-monitor-attributes): New functions.
15652
156532013-05-06 Leo Liu <sdl.web@gmail.com>
15654
15655 * progmodes/octave.el (octave-syntax-propertize-function): Change
15656 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
15657 (octave-font-lock-keywords): Use octave-operator-regexp.
15658 (octave-completion-at-point): Rename from
15659 octave-completion-at-point-function.
15660 (inferior-octave-directory-tracker): Robustify.
15661 (octave-text-functions): Remove and fix its uses. No such things
15662 any more.
15663
156642013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15665
15666 * emacs-lisp/trace.el (trace--display-buffer): New function.
15667 (trace-make-advice): Use it.
15668
156692013-05-06 Juri Linkov <juri@jurta.org>
15670
15671 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
15672 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
15673 Doc fix.
15674 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
15675 in the help string. (Bug#12985)
15676
156772013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
15678
15679 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
15680
156812013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15682
15683 * progmodes/perl-mode.el: Add support for here documents.
15684 (perl-syntax-propertize-function): Match here-doc markers.
15685 (perl-syntax-propertize-special-constructs): Find their end.
15686 (perl-imenu-generic-expression): Use [:alnum:].
15687
15688 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
15689 (advice--add-function): Refresh the advice if already present
15690 (bug#14317).
15691
156922013-05-06 Ivan Andrus <darthandrus@gmail.com>
15693
15694 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
15695
156962013-05-06 Glenn Morris <rgm@gnu.org>
15697
15698 * w32-fns.el (w32-charset-info-alist): Declare.
15699
15700 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
15701 of its defcustom properties.
15702 (eshell-cmpl-initialize): No need to load pcomplete.
15703
15704 * generic-x.el: No need to require comint when compiling.
15705
15706 * net/eudc-export.el: Make it loadable without bbdb.
15707 (top-level): Use require rather than load-library.
15708 (eudc-create-bbdb-record, eudc-bbdbify-phone)
15709 (eudc-batch-export-records-to-bbdb)
15710 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
15711 Require bbdb.
15712
157132013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15714
15715 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
15716 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
15717 some tweaks, instead.
15718
157192013-05-05 Leo Liu <sdl.web@gmail.com>
15720
15721 * progmodes/octave.el (octave-font-lock-keywords)
15722 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
15723 (inferior-octave-send-list-and-digest): Improve error message.
15724 (octave-mode, inferior-octave-mode): Use setq-local.
15725 (octave-help): Set info-lookup-mode.
15726
157272013-05-05 Richard Stallman <rms@gnu.org>
15728
15729 * vc/compare-w.el (compare-windows-whitespace):
15730 Treat no-break space as whitespace.
15731
15732 * mail/rmailsum.el (rmail-summary-rmail-update):
15733 Detect empty summary and don't change selected message.
15734 (rmail-summary-goto-msg): Likewise.
15735
15736 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
15737 Doc fixes, rename args.
15738
157392013-05-05 Alan Mackenzie <acm@muc.de>
15740
15741 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
15742
157432013-05-05 Juri Linkov <juri@jurta.org>
15744
15745 * info.el (Info-read-subfile): Use (point-min) instead of (point)
15746 to not add the length of the summary segment to the return value.
15747 (Bug#14125)
15748
157492013-05-05 Leo Liu <sdl.web@gmail.com>
15750
15751 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
15752 (inferior-octave-output-filter): Remove.
15753 (octave-send-region, inferior-octave-startup): Fix callers.
15754 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
15755 (octave-binary-file-extensions): New user variable.
15756 (octave-find-definition): Confirm if opening binary files.
15757 (octave-help-file): Use octave-find-definition to get the binary
15758 confirmation.
15759 (octave-help): Adjust for octave-help-file change.
15760
157612013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15762
15763 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
15764 Merge the two entries that handle function definitions.
15765 (pascal--syntax-propertize): New const.
15766 (pascal-mode): Use it. Use setq-local.
15767
157682013-05-04 Glenn Morris <rgm@gnu.org>
15769
15770 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
15771 (diary-from-outlook): Respect diary-from-outlook-function.
15772
157732013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15774
15775 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
15776 Move the declaration from C.
15777 (read-minibuffer, eval-minibuffer): Move from C.
15778 (completion-setup-function): Avoid minibuffer-completion-contents.
15779
157802013-05-03 Leo Liu <sdl.web@gmail.com>
15781
15782 * progmodes/octave.el (octave-font-lock-keywords): Do not
15783 dehighlight 'end' in comments or strings.
15784 (octave-completing-read, octave-goto-function-definition):
15785 New helpers.
15786 (octave-help-buffer): New user variable.
15787 (octave-help-file, octave-help-function): New button types.
15788 (octave-help): New command and bind it to C-h ;.
15789 (octave-find-definition): New command and bind it to M-.
15790 (user-error): Alias to error if not defined.
15791
157922013-05-02 Leo Liu <sdl.web@gmail.com>
15793
15794 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
15795 for \. (bug#14332)
15796 (octave-font-lock-keywords): Include [ and {.
15797
157982013-05-02 Leo Liu <sdl.web@gmail.com>
15799
15800 * progmodes/octave.el (inferior-octave-startup-file): Change default.
15801 (inferior-octave): Remove calling comint-mode and return the buffer.
15802 (inferior-octave-startup): Cosmetic changes.
15803
158042013-05-02 Leo Liu <sdl.web@gmail.com>
15805
15806 * progmodes/octave.el (octave-syntax-propertize-function):
15807 Include the case when ' is at line beginning. (Bug#14336)
15808
158092013-05-02 Glenn Morris <rgm@gnu.org>
15810
15811 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
15812 * desktop.el (vc-dir-mode): Just autoload it here.
15813
158142013-05-02 Alan Mackenzie <acm@muc.de>
15815
15816 Eliminate variable c-standard-font-lock-fontify-region-function.
15817 * progmodes/cc-mode.el
15818 (c-standard-font-lock-fontify-region-function): Remove.
15819 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
15820
158212013-05-01 Leo Liu <sdl.web@gmail.com>
15822
15823 * progmodes/octave.el: Compatible with older emacs-24 releases.
15824 (inferior-octave-has-built-in-variables): Remove. Built-in
15825 variables were removed from Octave in 2007.
15826 (inferior-octave-startup): Fix uses.
15827 (comint-line-beginning-position): Remove compatibility code for
15828 emacs 21.
15829
158302013-05-01 Juri Linkov <juri@jurta.org>
15831
15832 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
15833
158342013-05-01 Juri Linkov <juri@jurta.org>
15835
15836 * comint.el (comint-previous-matching-input): Don't print message
15837 "History item: %d" when `isearch-mode' is active.
15838 (comint-history-isearch-message): Print message "History item: %d"
15839 when `comint-input-ring-index' is not empty and this function is
15840 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
15841
158422013-05-01 Leo Liu <sdl.web@gmail.com>
15843
15844 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
15845 definitions. Use completion-at-point to insert keywords.
15846 (octave-abbrev-start): Remove.
15847 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
15848
158492013-04-30 Leo Liu <sdl.web@gmail.com>
15850
15851 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
15852 change.
15853
158542013-04-30 Alan Mackenzie <acm@muc.de>
15855
15856 Handle arbitrarily long C++ member initialisation lists.
15857 * progmodes/cc-engine.el (c-back-over-member-initializers):
15858 new function.
15859 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
15860 (most) member init lists.
15861
158622013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15863
15864 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
15865 variable.
15866
158672013-04-30 Leo Liu <sdl.web@gmail.com>
15868
15869 * progmodes/octave.el (octave-variables): Remove. No builtin
15870 variables any more. All converted to functions.
15871 (octave-font-lock-keywords, octave-completion-at-point-function):
15872 Fix uses.
15873 (octave-font-lock-texinfo-comment): New user variable.
15874 (octave-texinfo-font-lock-keywords): New variable for texinfo
15875 comment block.
15876 (octave-function-comment-block): New face.
15877 (octave-font-lock-texinfo-comment): New function.
15878 (octave-mode): Font lock texinfo comment block.
15879
158802013-04-29 Leo Liu <sdl.web@gmail.com>
15881
15882 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
15883 indexing expression.
15884 (octave-continuation-string): Do not use \.
15885 (inferior-octave-complete-impossible): Remove.
15886 (inferior-octave-completion-table)
15887 (inferior-octave-completion-at-point): Remove its uses.
15888 (inferior-octave-startup): completion_matches was introduced to
15889 Octave in 1996 so safe to assume it.
15890 (octave-function-file-comment): Improve to follow how Octave does it.
15891 (octave-update-function-file-comment): Tweak.
15892
158932013-04-29 Leo Liu <sdl.web@gmail.com>
15894
15895 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15896 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15897 (octave-function-file-comment): Fix typo.
15898 (octave-sync-function-file-names): Use read-char-choice.
15899
159002013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15901
15902 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15903 to t for the less important warnings.
15904
159052013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15906
15907 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15908
159092013-04-27 Glenn Morris <rgm@gnu.org>
15910
15911 * vc/log-view.el (log-view-current-entry):
15912 Treat "---" separator lines as part of the following rev. (Bug#14169)
15913
159142013-04-27 Juri Linkov <juri@jurta.org>
15915
15916 * subr.el (read-number): Doc fix about using it by interactive
15917 code letter `n'. (Bug#14254)
15918
159192013-04-27 Juri Linkov <juri@jurta.org>
15920
15921 * desktop.el (desktop-auto-save-timeout): New option.
15922 (desktop-file-checksum): New variable.
15923 (desktop-save): Add optional arg `auto-save' and don't auto-save
15924 if nothing changed.
15925 (desktop-auto-save-timer): New variable.
15926 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15927 (after-init-hook): Call `desktop-auto-save-set-timer'.
15928 Suggested by Reuben Thomas <rrt@sc3d.org> in
15929 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15930
159312013-04-27 Leo Liu <sdl.web@gmail.com>
15932
15933 * progmodes/octave.el (octave-function-file-p)
15934 (octave-skip-comment-forward, octave-function-file-comment)
15935 (octave-update-function-file-comment): New functions.
15936 (octave-mode-map): Bind C-c ; to
15937 octave-update-function-file-comment.
15938 (octave-mode-menu): Add octave-update-function-file-comment.
15939 (octave-mode, inferior-octave-mode): Fix doc-string.
15940 (octave-insert-defun): Conform to Octave's coding convention.
15941 (Bug#14285)
15942
15943 * files.el (basic-save-buffer): Don't let errors in
15944 before-save-hook prevent saving buffer.
15945
159462013-04-20 Roland Winkler <winkler@gnu.org>
15947
15948 * faces.el (read-face-name): Use completing-read if arg multiple
15949 is nil.
15950
159512013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15952
15953 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15954 displayed, move point to after the totals line.
15955 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15956 for the details.
15957
159582013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15959
15960 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15961 Add current dir to the load-path.
15962 (package-generate-autoloads): Don't rely on
15963 autoload-ensure-default-file.
15964
159652013-04-26 Reuben Thomas <rrt@sc3d.org>
15966
15967 * textmodes/remember.el (remember-store-in-files): Document that
15968 the file name format is passed to `format-time-string'.
15969
159702013-04-26 Leo Liu <sdl.web@gmail.com>
15971
15972 * progmodes/octave.el (octave-sync-function-file-names): New function.
15973 (octave-mode): Use it in before-save-hook.
15974
159752013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15976
15977 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15978 (bug#14274).
15979
15980 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15981 \n and comment, even if it's not an implicit ; (bug#14218).
15982
159832013-04-26 Glenn Morris <rgm@gnu.org>
15984
15985 * subr.el (read-number): Once more use `read' rather than
15986 `string-to-number', to trap non-numeric input. (Bug#14254)
15987
159882013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15989
15990 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15991 Use `syntax-multiline' text property consistently instead of
15992 `font-lock-multiline'. (Bug#14237)
15993
159942013-04-26 Glenn Morris <rgm@gnu.org>
15995
15996 * emacs-lisp/shadow.el (list-load-path-shadows):
15997 No longer necessary to check for duplicate simple.el, since
15998 2012-07-07 change to init_lread to not include installation lisp
15999 directories in load-path when running uninstalled. (Bug#14270)
16000
160012013-04-26 Leo Liu <sdl.web@gmail.com>
16002
16003 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
16004 (octave-mode, inferior-octave-mode): Use setq-local.
16005 (octave-not-in-string-or-comment-p): Rename to
16006 octave-in-string-or-comment-p.
16007 (octave-in-comment-p, octave-in-string-p)
16008 (octave-in-string-or-comment-p): Replace defsubst with defun.
16009
160102013-04-25 Paul Eggert <eggert@cs.ucla.edu>
16011
16012 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
16013
160142013-04-25 Bastien Guerry <bzg@gnu.org>
16015
16016 * textmodes/remember.el (remember-data-directory)
16017 (remember-directory-file-name-format): Fix custom types.
16018
160192013-04-25 Leo Liu <sdl.web@gmail.com>
16020
16021 * progmodes/octave.el (octave-completion-at-point-function):
16022 Make use of inferior octave process.
16023 (octave-initialize-completions): Remove.
16024 (inferior-octave-completion-table): New function.
16025 (inferior-octave-completion-at-point): Use it.
16026 (octave-completion-alist): Remove.
16027
160282013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16029
16030 * progmodes/opascal.el: Use font-lock and syntax-propertize.
16031 (opascal-mode-syntax-table): New var.
16032 (opascal-literal-kind, opascal-is-literal-end)
16033 (opascal-literal-token-at): Rewrite.
16034 (opascal--literal-start-re, opascal-font-lock-keywords)
16035 (opascal--syntax-propertize): New constants.
16036 (opascal-font-lock-defaults): Adjust.
16037 (opascal-mode): Use them. Set comment-<foo> variables as well.
16038 (delphi-comment-face, opascal-comment-face, delphi-string-face)
16039 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
16040 (delphi-other-face, opascal-other-face): Remove face variables.
16041 (opascal-save-state): Remove macro.
16042 (opascal-fontifying-progress-step): Remove constant.
16043 (opascal--ignore-changes): Remove var.
16044 (opascal-set-token-property, opascal-parse-next-literal)
16045 (opascal-is-stable-literal, opascal-complete-literal)
16046 (opascal-is-literal-start, opascal-face-of)
16047 (opascal-parse-region, opascal-parse-region-until-stable)
16048 (opascal-fontify-region, opascal-after-change)
16049 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
16050 (opascal-debug-parse-region, opascal-debug-parse-window)
16051 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
16052 (opascal-debug-fontify-buffer): Remove.
16053 (opascal-debug-mode-map): Adjust accordingly.
16054
160552013-04-25 Leo Liu <sdl.web@gmail.com>
16056
16057 Merge octave-mod.el and octave-inf.el into octave.el with some
16058 cleanups.
16059 * progmodes/octave.el: New file renamed from octave-mod.el.
16060 * progmodes/octave-inf.el: Merged into octave.el.
16061 * progmodes/octave-mod.el: Renamed to octave.el.
16062
160632013-04-25 Tassilo Horn <tsdh@gnu.org>
16064
16065 * textmodes/reftex-vars.el
16066 (reftex-label-ignored-macros-and-environments): New defcustom.
16067
16068 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
16069
160702013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16071
16072 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
16073 (smie-indent-keyword): Improve the check to ensure that the next
16074 comment is really on the same line.
16075 (smie-indent-comment): Don't align with a subsequent closer (or eob).
16076
16077 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
16078 semi-colons if the line is not otherwise empty (bug#14218).
16079
160802013-04-25 Glenn Morris <rgm@gnu.org>
16081
16082 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
16083
160842013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
16085
16086 * progmodes/opascal.el (opascal-set-token-property): Rename from
16087 opascal-set-text-properties and only set `token' (bug#14134).
16088 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
16089 (opascal-literal-text-properties): Remove.
16090 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
16091 Adjust callers.
16092
160932013-04-24 Reuben Thomas <rrt@sc3d.org>
16094
16095 * textmodes/remember.el (remember-handler-functions): Add an
16096 option for a new handler `remember-store-in-files'.
16097 (remember-data-directory, remember-directory-file-name-format):
16098 New options.
16099 (remember-store-in-files): New function to store remember notes
16100 as separate files within a directory.
16101
161022013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
16103
16104 * progmodes/compile.el (compilation-next-error-function):
16105 Pass "formats" to compilation-find-file (bug#11777).
16106
161072013-04-24 Glenn Morris <rgm@gnu.org>
16108
16109 * vc/vc-bzr.el (vc-bzr-print-log):
16110 * vc/vc-hg.el (vc-hg-print-log):
16111 * vc/vc-svn.el (vc-svn-print-log):
16112 Fix START-REVISION with LIMIT != 1. (Bug#14168)
16113
16114 * vc/vc-bzr.el (vc-bzr-print-log):
16115 * vc/vc-cvs.el (vc-cvs-print-log):
16116 * vc/vc-git.el (vc-git-print-log):
16117 * vc/vc-hg.el (vc-hg-print-log):
16118 * vc/vc-mtn.el (vc-mtn-print-log):
16119 * vc/vc-rcs.el (vc-rcs-print-log):
16120 * vc/vc-sccs.el (vc-sccs-print-log):
16121 * vc/vc-svn.el (vc-svn-print-log):
16122 * vc/vc.el (vc-print-log-internal): Doc fixes.
16123
161242013-04-23 Glenn Morris <rgm@gnu.org>
16125
16126 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
16127 Remove venerable code attempting to avoid substitute-command-keys.
16128
161292013-04-23 Tassilo Horn <tsdh@gnu.org>
16130
16131 * textmodes/reftex-vars.el (reftex-label-regexps):
16132 Call `reftex-compile-variables' after changes to this variable.
16133
161342013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
16135
16136 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
16137 Use lexical-binding.
16138 (jit-lock-force-redisplay): Use markers, check buffer's continued
16139 existence and beware narrowed buffers.
16140 (jit-lock-fontify-now): Adjust call accordingly.
16141
161422013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
16143
16144 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
16145 to avoid misleading the user.
16146
161472013-04-22 Leo Liu <sdl.web@gmail.com>
16148
16149 * info-look.el: Prefer latex2e.info. (Bug#14240)
16150
161512013-04-22 Michael Albinus <michael.albinus@gmx.de>
16152
16153 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
16154
16155 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
16156 * net/tramp.el (tramp-call-process): ... here.
16157 (tramp-set-completion-function, tramp-parse-putty):
16158 * net/tramp-adb.el (tramp-adb-execute-adb-command):
16159 * net/tramp-gvfs.el (tramp-gvfs-send-command):
16160 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
16161 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
16162 (tramp-call-local-coding-command): Use `tramp-call-process'
16163 instead of `tramp-compat-call-process'.
16164
16165 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
16166 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
16167 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
16168 (tramp-find-inline-compress): Improve traces.
16169 (tramp-maybe-send-script): Check for Perl binary.
16170 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
16171
161722013-04-22 Daiki Ueno <ueno@gnu.org>
16173
16174 * epg.el (epg-context-pinentry-mode): New function.
16175 (epg-context-set-pinentry-mode): New function.
16176 (epg--start): Pass --pinentry-mode option to gpg command.
16177
161782013-04-21 Xue Fuqiao <xfq.free@gmail.com>
16179
16180 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
16181 `comint-dynamic-complete' is obsolete since 24.1, replaced by
16182 `completion-at-point'. (Bug#13774)
16183
16184 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
16185 default key binding for `describe-distribution' has been moved to
16186 `C-h C-o'. (Bug#13970)
16187
161882013-04-21 Glenn Morris <rgm@gnu.org>
16189
16190 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
16191 Add doc strings.
16192 (vc-print-log): Clarify interactive prompt.
16193
161942013-04-20 Glenn Morris <rgm@gnu.org>
16195
16196 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
16197 No longer include timestamp etc information.
16198
161992013-04-20 Roland Winkler <winkler@gnu.org>
16200
16201 * faces.el (read-face-name): Bug fix, return just one face if arg
16202 multiple is nil. (Bug#14209)
16203
162042013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16205
16206 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
16207 (remove-function): Autoload.
16208
16209 * comint.el (comint-redirect-original-filter-function): Remove.
16210 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
16211 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
16212 (vc-cvs-annotate-command):
16213 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
16214 * progmodes/prolog.el (prolog-consult-compile):
16215 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
16216 Use add/remove-function instead.
16217 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
16218 (gud-tooltip-process-output, gud-tooltip-tips):
16219 Use add/remove-function instead.
16220 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
16221 (scheme-interaction-mode, exit-scheme-interaction-mode):
16222 Use add/remove-function instead.
16223
16224 * vc/vc-dispatcher.el: Use lexical-binding.
16225 (vc--process-sentinel): Rename from vc-process-sentinel.
16226 Change last arg to be the code to run. Don't use vc-previous-sentinel
16227 and vc-sentinel-commands any more.
16228 (vc-exec-after): Allow code to be a function. Use add/remove-function.
16229 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
16230
162312013-04-19 Masatake YAMATO <yamato@redhat.com>
16232
16233 * progmodes/sh-script.el (sh-imenu-generic-expression):
16234 Handle function names with a single character. (Bug#14111)
16235
162362013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
16237
16238 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
16239 for subroutines defined in an eval (bug#14182).
16240
162412013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16242
16243 * bookmark.el (bookmark-completing-read): Improve handling of empty
16244 string (bug#14176).
16245
162462013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16247
16248 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
16249
162502013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
16251
16252 New faster Imenu implementation (bug#14058).
16253 * progmodes/python.el (python-imenu-prev-index-position)
16254 (python-imenu-format-item-label-function)
16255 (python-imenu-format-parent-item-label-function)
16256 (python-imenu-format-parent-item-jump-label-function):
16257 New vars.
16258 (python-imenu-format-item-label)
16259 (python-imenu-format-parent-item-label)
16260 (python-imenu-format-parent-item-jump-label)
16261 (python-imenu--put-parent, python-imenu--build-tree)
16262 (python-imenu-create-index, python-imenu-create-flat-index)
16263 (python-util-popn): New functions.
16264 (python-mode): Set imenu-create-index-function to
16265 python-imenu-create-index.
16266
162672013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16268
16269 * winner.el (winner-active-region): Use region-active-p, activate-mark
16270 and deactivate-mark (bug#14225).
16271
16272 * simple.el (deactivate-mark): Don't inline it.
16273
162742013-04-18 Michael Albinus <michael.albinus@gmx.de>
16275
16276 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
16277
162782013-04-18 Tassilo Horn <tsdh@gnu.org>
16279
16280 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
16281 file extensions from the archive-mode entry in order to prefer
16282 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
16283
162842013-04-18 Leo Liu <sdl.web@gmail.com>
16285
16286 * bindings.el (help-event-list): Add ?\?.
16287
162882013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16289
16290 * subr.el (with-wrapper-hook): Declare obsolete.
16291 * simple.el (filter-buffer-substring-function): New hook.
16292 (filter-buffer-substring): Use it.
16293 (filter-buffer-substring-functions): Mark obsolete.
16294 * minibuffer.el (completion-in-region-function): New hook.
16295 (completion-in-region): Use it.
16296 (completion-in-region-functions): Mark obsolete.
16297 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
16298 * abbrev.el (abbrev-expand-function): New hook.
16299 (expand-abbrev): Use it.
16300 (abbrev-expand-functions): Mark obsolete.
16301 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
16302 and :filter-return.
16303
163042013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16305
16306 * progmodes/python.el (python-nav--syntactically): Fix cornercases
16307 and do not care about match data.
16308
163092013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16310
16311 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
16312 completion tables when completing error conditions and
16313 `declare' arguments.
16314 (lisp-complete-symbol, field-complete): Mark as obsolete.
16315 (check-parens): Unmatched parens are user errors.
16316 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
16317
163182013-04-17 Michal Nazarewicz <mina86@mina86.com>
16319
16320 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
16321 command changed buffer (ie. `flyspell-pre-buffer' is not current
16322 buffer), which prevents making decisions based on invalid value of
16323 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
16324 cause an error when `flyspell-pre-point' was nil after switching
16325 buffers.
16326 (flyspell-post-command-hook): No longer needs to change buffers when
16327 checking pre-word. While at it remove unnecessary progn.
16328
163292013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
16330
16331 * textmodes/ispell.el (ispell-add-per-file-word-list):
16332 Fix `flyspell-correct-word-before-point' error when accepting
16333 words and `coment-padding' is an integer by using
16334 `comment-normalize-vars' (Bug #14214).
16335
163362013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16337
16338 New defun movement commands.
16339 * progmodes/python.el (python-nav--syntactically)
16340 (python-nav--forward-defun, python-nav-backward-defun)
16341 (python-nav-forward-defun): New functions.
16342
163432013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16344
16345 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
16346 (python-syntax-context): Use named compiler-macro for backwards
16347 compatibility with Emacs 24.x.
16348
163492013-04-17 Leo Liu <sdl.web@gmail.com>
16350
16351 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
16352 octave-hide-process-buffer.
16353
163542013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16355
16356 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
16357 (bug#14216).
16358
163592013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
16360
16361 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
16362 Fix adjustment of offset when receiving incomplete responses from GDB
16363 (bug#14129).
16364
163652013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16366
16367 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
16368 python-mode-abbrev-table.
16369 (python-skeleton-define): Adjust accordingly.
16370 (python-mode-abbrev-table): New table that inherits from it so that
16371 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
16372
16373 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
16374 (abbrev-symbol): Use it.
16375 (abbrev--before-point): Use it since we already handle inheritance.
16376
163772013-04-16 Leo Liu <sdl.web@gmail.com>
16378
16379 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
16380 binding to info-lookup-symbol.
16381
163822013-04-16 Juanma Barranquero <lekktu@gmail.com>
16383
16384 * minibuffer.el (completion--twq-all):
16385 * term/ns-win.el (ns-initialize-window-system):
16386 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
16387
163882013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16389
16390 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
16391 global bindings.
16392
16393 * doc-view.el (doc-view-start-process): Handle url-handler directories.
16394
163952013-04-15 Dmitry Gutov <dgutov@yandex.ru>
16396
16397 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
16398 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
16399 to nil.
16400 (ruby-end-of-defun): Remove the unused arg, change the docstring
16401 to reflect that this function is only used as the value of
16402 `end-of-defun-function'.
16403 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
16404 to reflect an earlier change that beginning/end-of-defun functions
16405 jump between methods in a class definition, as well as top-level
16406 functions.
16407
164082013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16409
16410 * minibuffer.el (minibuffer-complete): Don't just scroll
16411 a *Completions* that's been iconified.
16412 (minibuffer-force-complete): Make sure repetitions do cycle when going
16413 through completion-in-region -> minibuffer-complete.
16414
164152013-04-15 Alan Mackenzie <acm@muc.de>
16416
16417 Correct the placement of c-cpp-delimiters when there're #s not at
16418 col 0.
16419
16420 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
16421 place a submatch around the #.
16422 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
16423 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
16424 on the #, not BOL.
16425
164262013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16427
16428 * emacs-lisp/nadvice.el: Properly test names when adding advice.
16429 (advice--member-p): New arg `name'.
16430 (advice--add-function, advice-member-p): Use it (bug#14202).
16431
164322013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
16433
16434 Reformulate java imenu-generic-expression.
16435 The old expression contained ill formed regexps.
16436
16437 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
16438 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
16439 (cc-imenu-java-method-arg-regexp): New defconsts.
16440 (cc-imenu-java-build-type-args-regex): New defun.
16441 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
16442 handling of spaces in the regexp.
16443
164442013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16445
16446 * textmodes/ispell.el (ispell-command-loop): Remove
16447 flyspell highlight of a word when ispell accepts it (bug #14178).
16448
164492013-04-15 Michael Albinus <michael.albinus@gmx.de>
16450
16451 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
16452 uses code from the previous `ange-ftp-run-real-handler'.
16453 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
16454 only in case that function exist. This is needed for proper
16455 unloading of Tramp.
16456
164572013-04-15 Tassilo Horn <tsdh@gnu.org>
16458
16459 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
16460
16461 * textmodes/reftex.el (reftex-compile-variables): Use it.
16462
164632013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16464
16465 * files.el (normal-mode): Only use default major-mode if no other mode
16466 was specified.
16467
16468 * emacs-lisp/trace.el (trace-values): New function.
16469
16470 * files.el: Allow : in local variables (bug#14089).
16471 (hack-local-variable-regexp): New var.
16472 (hack-local-variables-prop-line, hack-local-variables): Use it.
16473
164742013-04-13 Roland Winkler <winkler@gnu.org>
16475
16476 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
16477 data before it gets modified by bibtex-beginning-of-entry.
16478
164792013-04-13 Roland Winkler <winkler@gnu.org>
16480
16481 * textmodes/bibtex.el (bibtex-url): Doc fix.
16482
164832013-04-13 Roland Winkler <winkler@gnu.org>
16484
16485 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
16486 does not visit a BibTeX file, exclude it from the list of buffers
16487 returned by bibtex-initialize.
16488
164892013-04-13 Stephen Berman <stephen.berman@gmx.net>
16490
16491 * window.el (split-window): Remove interactive form, since as a
16492 command this function is a special case of split-window-below.
16493 Correct doc string.
16494
164952013-04-12 Roland Winkler <winkler@gnu.org>
16496
16497 * faces.el (read-face-name): Do not override value of arg default.
16498 Allow single faces and strings as default values. Remove those
16499 elements from return value that are not faces.
16500 (describe-face): Simplify.
16501 (face-at-point): New optional args thing and multiple so that this
16502 function can provide the same functionality previously provided by
16503 read-face-name.
16504 (make-face-bold, make-face-unbold, make-face-italic)
16505 (make-face-unitalic, make-face-bold-italic, invert-face)
16506 (modify-face, read-face-and-attribute): Use face-at-point.
16507
16508 * cus-edit.el (customize-face, customize-face-other-window)
16509 * cus-theme.el (custom-theme-add-face)
16510 * face-remap.el (buffer-face-set)
16511 * facemenu.el (facemenu-set-face): Use face-at-point.
16512
165132013-04-12 Michael Albinus <michael.albinus@gmx.de>
16514
16515 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
16516
165172013-04-10 Tassilo Horn <tsdh@gnu.org>
16518
16519 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
16520 off leading { and trailing } from field values.
16521
165222013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16523
16524 * emacs-lisp/timer.el (timer--check): New function.
16525 (timer--time, timer-set-function, timer-event-handler): Use it.
16526 (timer-set-idle-time): Simplify.
16527 (timer--activate): CSE.
16528 (timer-event-handler): Give more info in error message.
16529 (internal-timer-start-idle): New function, moved from C.
16530
16531 * mpc.el (mpc-proc): Add `restart' argument.
16532 (mpc-proc-cmd): Use it.
16533 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
16534 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
16535 less often.
16536
165372013-04-10 Masatake YAMATO <yamato@redhat.com>
16538
16539 * progmodes/sh-script.el: Implement `sh-mode' own
16540 `add-log-current-defun-function' (bug#14112).
16541 (sh-current-defun-name): New function.
16542 (sh-mode): Use the function.
16543
165442013-04-09 Bastien Guerry <bzg@gnu.org>
16545
16546 * simple.el (choose-completion-string): Fix docstring (bug#14163).
16547
165482013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
16549
16550 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
16551
16552 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
16553 timer (bug#14156).
16554
165552013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
16556
16557 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
16558 declaration.
16559
165602013-04-07 Leo Liu <sdl.web@gmail.com>
16561
16562 * pcmpl-x.el: New file.
16563
165642013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
16565
16566 Do not set x-display-name until X connection is established.
16567 This is needed to prevent from weird situation described at
16568 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
16569 * frame.el (make-frame): Set x-display-name after call to
16570 window system initialization function, not before.
16571 * term/x-win.el (x-initialize-window-system): Add optional
16572 display argument and use it.
16573 * term/w32-win.el (w32-initialize-window-system):
16574 * term/ns-win.el (ns-initialize-window-system):
16575 * term/pc-win.el (msdos-initialize-window-system):
16576 Add compatible optional display argument.
16577
165782013-04-06 Eli Zaretskii <eliz@gnu.org>
16579
16580 * files.el (normal-backup-enable-predicate): On MS-Windows and
16581 MS-DOS compare truenames of temporary-file-directory and of the
16582 file, so that 8+3 aliases (usually found in $TEMP on Windows)
16583 don't fail comparison by compare-strings. Also, compare file
16584 names case-insensitively on MS-Windows and MS-DOS.
16585
165862013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16587
16588 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
16589 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
16590
165912013-04-05 Dmitry Gutov <dgutov@yandex.ru>
16592
16593 * whitespace.el (whitespace-color-on, whitespace-color-off):
16594 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
16595
165962013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
16597
16598 * ispell.el (ispell-set-spellchecker-params):
16599 Really set `ispell-args' for all equivs.
16600
166012013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16602
16603 * ido.el (ido-completions): Use extra elements of ido-decorations
16604 (bug#14143).
16605 (ido-decorations): Update docstring.
16606
166072013-04-05 Michael Albinus <michael.albinus@gmx.de>
16608
16609 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16610 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
16611 nil during initialization, in order not to miss changes since the
16612 file was opened. (Bug#14140)
16613
166142013-04-05 Leo Liu <sdl.web@gmail.com>
16615
16616 * kmacro.el (kmacro-call-macro): Fix bug#14135.
16617
166182013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
16619
16620 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
16621
166222013-04-04 Glenn Morris <rgm@gnu.org>
16623
16624 * electric.el (electric-pair-inhibit-predicate): Add :version.
16625
166262013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16627
16628 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
16629 when a package is required several times (bug#14082).
16630
166312013-04-04 Roland Winkler <winkler@gnu.org>
16632
16633 * faces.el (read-face-name): Behave as promised by the docstring.
16634 Assume that arg default is a list of faces.
16635 (describe-face): Call read-face-name with list of default faces.
16636
166372013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16638
16639 * bookmark.el: Fix deletion of bookmarks (bug#13972).
16640 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
16641 (bookmark-bmenu-execute-deletions): Only skip first line if it's
16642 the header.
16643 (bookmark-exit-hook-internal): Save even if list is empty.
16644
166452013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
16646
16647 * emacs-lisp/package.el (package-pinned-packages): New var.
16648 (package--add-to-archive-contents): Obey it (bug#14118).
16649
166502013-04-03 Alan Mackenzie <acm@muc.de>
16651
16652 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
16653 Also adapt to the new values of element 7 of a parse state.
16654
16655 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
16656 parameter `not-in-delimiter'. Handle being inside comment opener.
16657 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
16658 character in case we're typing a '*' after a '/'.
16659 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
16660 instead by passing the parameter to c-state-pp-to-literal.
16661
16662 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
16663 for elt. 7 of a parse state.
16664
166652013-04-01 Paul Eggert <eggert@cs.ucla.edu>
16666
16667 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
16668 * international/latin1-disp.el, international/mule-util.el:
16669 * language/cyril-util.el, language/european.el, language/ind-util.el:
16670 * language/lao-util.el, language/thai.el, language/tibet-util.el:
16671 * language/tibetan.el, language/viet-util.el:
16672 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
16673
166742013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16675
16676 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
16677 (electric-pair-post-self-insert-function): Use it.
16678 (electric-pair-default-inhibit): New function, extracted from
16679 electric-pair-post-self-insert-function.
16680
166812013-03-31 Roland Winkler <winkler@gnu.org>
16682
16683 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
16684
166852013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16686
16687 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
16688
166892013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
16690
16691 Un-indent after "pass" and "return" statements (Bug#13888)
16692 * progmodes/python.el (python-indent-block-enders): New var.
16693 (python-indent-calculate-indentation): Use it.
16694
166952013-03-30 Michael Albinus <michael.albinus@gmx.de>
16696
16697 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
16698 defun. Defining it as defalias could introduce too eager
16699 byte-compiler optimization. (Bug#14030)
16700
167012013-03-30 Chong Yidong <cyd@gnu.org>
16702
16703 * iswitchb.el (iswitchb-read-buffer): Fix typo.
16704
167052013-03-30 Leo Liu <sdl.web@gmail.com>
16706
16707 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
16708 (kmacro-execute-from-register): Pass the keyboard macro to
16709 kmacro-call-macro or repeating won't work correctly.
16710
167112013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
16712
16713 * progmodes/subword.el: Back to using `forward-symbol'.
16714
16715 * subr.el (forward-whitespace, forward-symbol)
16716 (forward-same-syntax): Move from thingatpt.el.
16717
167182013-03-29 Leo Liu <sdl.web@gmail.com>
16719
16720 * kmacro.el (kmacro-to-register): New command.
16721 (kmacro-execute-from-register): New function.
16722 (kmacro-keymap): Bind to 'x'. (Bug#14071)
16723
167242013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16725
16726 * mpc.el: Use defvar-local and setq-local.
16727 (mpc--proc-connect): Connection failures are not bugs.
16728 (mpc-mode-map): `follow-link' only applies to the buffer's content.
16729 (mpc-volume-map): Bind to the up-events.
16730
167312013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
16732
16733 * progmodes/subword.el (superword-mode): Use `forward-sexp'
16734 instead of `forward-symbol'.
16735
167362013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16737
16738 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
16739 (edebug--recursive-edit): Use it.
16740 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
16741 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
16742
167432013-03-28 Leo Liu <sdl.web@gmail.com>
16744
16745 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
16746
167472013-03-27 Eli Zaretskii <eliz@gnu.org>
16748
16749 * facemenu.el (list-colors-callback): New defvar.
16750 (list-colors-redisplay): New function.
16751 (list-colors-display): Install list-colors-redisplay as the
16752 revert-buffer-function. (Bug#14063)
16753
167542013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16755
16756 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
16757 and suffixes don't overlap (bug#14061).
16758
16759 * case-table.el: Use lexical-binding.
16760 (case-table-get-table): New function.
16761 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
16762
167632013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
16764
16765 * progmodes/subword.el: Add `superword-mode' to do word motion
16766 over symbol_words (parallels and leverages `subword-mode' which
16767 does word motion inside MixedCaseWords).
16768
167692013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
16770
16771 * eshell/em-unix.el: Move su and sudo to...
16772 * eshell/em-tramp.el: ...Eshell tramp module.
16773
167742013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16775
16776 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
16777 Change return value to be a sexp. Delay `get-buffer' to after
16778 restoring the desktop (bug#13951).
16779
167802013-03-26 Leo Liu <sdl.web@gmail.com>
16781
16782 * register.el: Move semantic tag handling back to
16783 cedet/semantic/senator.el. (Bug#14052)
16784
167852013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16786
16787 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
16788 into the prompt either (bug#13963).
16789
167902013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16791
16792 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
16793 part of "(error-foo)".
16794
167952013-03-24 Juri Linkov <juri@jurta.org>
16796
16797 * replace.el (list-matching-lines-prefix-face): New defcustom.
16798 (occur-1): Pass `list-matching-lines-prefix-face' to the function
16799 `occur-engine' if `face-differs-from-default-p' returns t.
16800 (occur-engine): Add `,' inside backquote construct to evaluate
16801 `prefix-face'. Propertize the prefix with the `prefix-face' face.
16802 Pass `prefix-face' to the functions `occur-context-lines' and
16803 `occur-engine-add-prefix'.
16804 (occur-engine-add-prefix, occur-context-lines): Add optional arg
16805 `prefix-face' and propertize the prefix with `prefix-face'.
16806 (Bug#14017)
16807
168082013-03-24 Leo Liu <sdl.web@gmail.com>
16809
16810 * nxml/rng-valid.el (rng-validate-while-idle)
16811 (rng-validate-quick-while-idle): Guard against deleted buffer.
16812 (Bug#13999)
16813
16814 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
16815 is the last entry in kill-buffer-hook.
16816
16817 * files.el (kill-buffer-hook): Doc fix.
16818
168192013-03-23 Dmitry Gutov <dgutov@yandex.ru>
16820
16821 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
16822 Make it safe-local.
16823
16824 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
16825
168262013-03-23 Leo Liu <sdl.web@gmail.com>
16827
16828 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
16829 Remove.
16830
16831 * nxml/rng-valid.el (rng-validate-mode)
16832 (rng-after-change-function, rng-do-some-validation):
16833 * nxml/rng-maint.el (rng-validate-buffer):
16834 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
16835 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
16836 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
16837 (nxml-extend-after-change-region): Use with-silent-modifications.
16838
16839 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
16840 timer-idle-list.
16841
16842 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
16843 (rng-next-error-1, rng-previous-error-1): Do not let-bind
16844 timer-idle-list. (Bug#13999)
16845
168462013-03-23 Juri Linkov <juri@jurta.org>
16847
16848 * info.el (info-index-match): New face.
16849 (Info-index, Info-apropos-matches): Add a nested subgroup to the
16850 main pattern and add text properties with the new face to matches
16851 in index entries relative to the beginning of the index entry.
16852 (Bug#14015)
16853
168542013-03-21 Eric Ludlam <zappo@gnu.org>
16855
16856 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
16857 Inhibit read only while inserting objects.
16858
168592013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
16860
16861 * progmodes/cfengine.el: Update docs to mention
16862 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
16863 symbol motion. Remove "_" from the word syntax.
16864
168652013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
16866
16867 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
16868 syntax for both `cfengine2-mode' and `cfengine3-mode'.
16869
168702013-03-20 Juri Linkov <juri@jurta.org>
16871
16872 * info.el (Info-next-reference-or-link)
16873 (Info-prev-reference-or-link): New functions.
16874 (Info-next-reference, Info-prev-reference): Use them.
16875 (Info-try-follow-nearest-node): Handle footnote navigation.
16876 (Info-fontify-node): Fontify footnotes. (Bug#13989)
16877
168782013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
16881 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
16882
168832013-03-20 Paul Eggert <eggert@cs.ucla.edu>
16884
16885 Suppress unnecessary non-ASCII chatter during build process.
16886 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16887 (batch-skkdic-convert): Suppress most of the chatter.
16888 It's not needed so much now that machines are faster,
16889 and its non-ASCII component was confusing; see Dmitry Gutov in
16890 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16891
168922013-03-20 Leo Liu <sdl.web@gmail.com>
16893
16894 * ido.el (ido-chop): Fix bug#10994.
16895
168962013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16897
16898 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16899 Remove vars.
16900 (whitespace-color-on, whitespace-color-off):
16901 Use `font-lock-fontify-buffer' (Bug#13817).
16902
169032013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16904
16905 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16906 remapping in mode-line.
16907 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16908
169092013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16910
16911 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16912 value for `whitespace-line' face (Bug#13875).
16913 (whitespace-font-lock-keywords): Change description.
16914 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16915 the constructed keywords instead.
16916 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16917
169182013-03-19 Leo Liu <sdl.web@gmail.com>
16919
16920 * progmodes/compile.el (compilation-display-error): New command.
16921 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16922 C-o. (Bug#13992)
16923
169242013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16925
16926 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16927
169282013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16929
16930 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16931
169322013-03-18 Michael Albinus <michael.albinus@gmx.de>
16933
16934 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16935
16936 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16937 * net/tramp-gvfs.el (top):
16938 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16939 (tramp-handle-shell-command): Use it.
16940 (tramp-dissect-file-name): Raise an error when hostname is a
16941 method name, and neither method nor user is specified.
16942
16943 * net/trampver.el: Update release number.
16944
169452013-03-18 Leo Liu <sdl.web@gmail.com>
16946
16947 Make sure eldoc can be turned off properly.
16948 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16949 eldoc-mode.
16950 (eldoc-display-message-p): Revert last change.
16951 (eldoc-display-message-no-interference-p)
16952 (eldoc-print-current-symbol-info): Tweak.
16953
169542013-03-18 Tassilo Horn <tsdh@gnu.org>
16955
16956 * doc-view.el (doc-view-new-window-function): Check the new window
16957 overlay's display property instead the char property of the
16958 buffer's first char. Use `with-selected-window' instead of
16959 `save-window-excursion' with `select-window'.
16960 (doc-view-document->bitmap): Check the current doc-view overlay's
16961 display property instead the char property of the buffer's first char.
16962
169632013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16964
16965 Automate the build of ja-dic.el (Bug#13984).
16966 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16967 from the input, rather than assume that it's been done for us by the
16968 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16969 the current date into a ja-dic.el comment, as that complicates
16970 regression testing.
16971
169722013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16973
16974 * whitespace.el: Fix double evaluation.
16975 (whitespace-space, whitespace-hspace, whitespace-tab)
16976 (whitespace-newline, whitespace-trailing, whitespace-line)
16977 (whitespace-space-before-tab, whitespace-indentation)
16978 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16979 obsolete defvars.
16980 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16981 (whitespace-color-on): Use a single font-lock-add-keywords call.
16982 Fix double-evaluation of face variables.
16983
169842013-03-17 Michael Albinus <michael.albinus@gmx.de>
16985
16986 * net/tramp-adb.el (tramp-adb-parse-device-names):
16987 Use `start-process' instead of `call-process'. Otherwise, the
16988 function might be blocked under MS Windows. (Bug#13299)
16989
169902013-03-17 Leo Liu <sdl.web@gmail.com>
16991
16992 Extend eldoc to display info in the mode-line. (Bug#13978)
16993 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16994 (eldoc-mode-line-string): New variable.
16995 (eldoc-minibuffer-message): New function.
16996 (eldoc-message-function): New variable.
16997 (eldoc-message): Use it.
16998 (eldoc-display-message-p)
16999 (eldoc-display-message-no-interference-p):
17000 Support eldoc-post-insert-mode.
17001
17002 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
17003 (eval-expression): Run it.
17004
170052013-03-17 Roland Winkler <winkler@gnu.org>
17006
17007 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
17008 strings in the list of return values.
17009
170102013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
17011
17012 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
17013 radix before checking for HMS forms.
17014
170152013-03-16 Leo Liu <sdl.web@gmail.com>
17016
17017 * progmodes/scheme.el: Add indentation and font-locking for λ.
17018 (Bug#13975)
17019
170202013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
17021
17022 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
17023 token before point (bug#13942).
17024
170252013-03-16 Leo Liu <sdl.web@gmail.com>
17026
17027 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
17028
170292013-03-16 Eli Zaretskii <eliz@gnu.org>
17030
17031 * startup.el (command-line-normalize-file-name): Fix handling of
17032 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
17033 <xfq.free@gmail.com> in
17034 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
17035
170362013-03-15 Michael Albinus <michael.albinus@gmx.de>
17037
17038 Sync with Tramp 2.2.7.
17039
17040 * net/trampver.el: Update release number.
17041
170422013-03-14 Tassilo Horn <tsdh@gnu.org>
17043
17044 * doc-view.el: Fix bug#13887.
17045 (doc-view-insert-image): Don't modify overlay associated to
17046 non-live windows, and implement horizontal centering of image in
17047 case it's smaller than the window.
17048 (doc-view-new-window-function): Force redisplay of new windows on
17049 doc-view buffers.
17050
170512013-03-13 Karl Fogel <kfogel@red-bean.com>
17052
17053 * saveplace.el (save-place-alist-to-file): Don't sort
17054 `save-place-alist', just pretty-print it (bug#13882).
17055
170562013-03-13 Michael Albinus <michael.albinus@gmx.de>
17057
17058 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
17059 Check whether `default-file-name-coding-system' is bound.
17060 It isn't in XEmacs.
17061
170622013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
17063
17064 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
17065 backquotes for `obsolete' (bug#13929).
17066
17067 * international/mule.el (find-auto-coding): Include file name in
17068 obsolescence warning (bug#13922).
17069
170702013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
17071
17072 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
17073 for CFEngine 3-specific indentation.
17074 (cfengine3-indent-line): Use it. Fix up category regex.
17075 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
17076
170772013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17078
17079 * type-break.el (type-break-file-name):
17080 * textmodes/remember.el (remember-data-file):
17081 * strokes.el (strokes-file):
17082 * shadowfile.el (shadow-initialize):
17083 * saveplace.el (save-place-file):
17084 * ps-bdf.el (bdf-cache-file):
17085 * progmodes/idlwave.el (idlwave-config-directory):
17086 * net/quickurl.el (quickurl-url-file):
17087 * international/kkc.el (kkc-init-file-name):
17088 * ido.el (ido-save-directory-list-file):
17089 * emulation/viper.el (viper-custom-file-name):
17090 * emulation/vip.el (vip-startup-file):
17091 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
17092 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
17093
170942013-03-12 Paul Eggert <eggert@cs.ucla.edu>
17095
17096 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
17097 * language/thai-word.el: Switch to UTF-8.
17098
17099See ChangeLog.16 for earlier changes.
17100
17101;; Local Variables:
17102;; coding: utf-8
17103;; End:
17104
17105 Copyright (C) 2011-2014 Free Software Foundation, Inc.
17106
17107 This file is part of GNU Emacs.
17108
17109 GNU Emacs is free software: you can redistribute it and/or modify
17110 it under the terms of the GNU General Public License as published by
17111 the Free Software Foundation, either version 3 of the License, or
17112 (at your option) any later version.
17113
17114 GNU Emacs is distributed in the hope that it will be useful,
17115 but WITHOUT ANY WARRANTY; without even the implied warranty of
17116 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17117 GNU General Public License for more details.
17118
17119 You should have received a copy of the GNU General Public License
17120 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.