* skeleton.el (skeleton-end-hook): Default to nil and move the
[bpt/emacs.git] / lisp / ChangeLog
1 2014-06-26 Leo Liu <sdl.web@gmail.com>
2
3 * skeleton.el (skeleton-end-hook): Default to nil and move the
4 work to skeleton-insert. (Bug#17850)
5
6 2014-06-26 Dmitry Antipov <dmantipov@yandex.ru>
7
8 * calc/calc-alg.el (math-beforep):
9 * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
10 Simplify because string-lessp can accept symbols as args.
11
12 2014-06-26 Daiki Ueno <ueno@gnu.org>
13
14 * emacs-lisp/package.el (package--check-signature): If
15 package-check-signature is allow-unsigned, don't signal error when
16 we can't verify signature because of missing public key
17 (bug#17625).
18
19 2014-06-26 Glenn Morris <rgm@gnu.org>
20
21 * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
22 Remove outdated declaration.
23
24 * emacs-lisp/authors.el (authors-valid-file-names)
25 (authors-renamed-files-alist): Additions.
26
27 2014-06-26 Leo Liu <sdl.web@gmail.com>
28
29 * textmodes/picture.el (picture-set-tab-stops):
30 * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
31 (ruler-mode-ruler): Fix to work with nil tab-stop-list.
32
33 * progmodes/asm-mode.el (asm-calculate-indentation): Use
34 indent-next-tab-stop.
35
36 * indent.el (indent-accumulate-tab-stops): New function.
37
38 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
39
40 * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
41 (package-desc-status): Obey it.
42
43 2014-06-26 Stephen Berman <stephen.berman@gmx.net>
44
45 * calendar/todo-mode.el: Fix two bugs.
46 (todo-insert-item--basic): If user cancels item insertion to
47 another category before setting priority, show original category
48 whether it is in the same or a different file.
49 (todo-set-item-priority): After selecting category, instead of
50 moving point to top, which extends an active region, restore it.
51
52 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
53
54 * help-fns.el (describe-function-1): Check file-name is a string before
55 calling help-fns--autoloaded-p (bug#17564).
56
57 2014-06-26 Juri Linkov <juri@jurta.org>
58
59 * desktop.el (desktop-auto-save-enable)
60 (desktop-auto-save-disable): New functions.
61 (desktop-save-mode, desktop-auto-save-timeout): Use them.
62 (desktop-read): Disable the autosave before loading the desktop,
63 and enable afterwards. (Bug#17351)
64
65 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
66
67 Fix some indentation problem with \; and pipes (bug#17842).
68 * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
69 (sh-smie--default-forward-token, sh-smie--default-backward-token):
70 New functions.
71 (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
72 (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
73 (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
74
75 2014-06-26 Glenn Morris <rgm@gnu.org>
76
77 * emacs-lisp/find-func.el (find-function-C-source-directory):
78 Use file-accessible-directory-p.
79
80 * ps-samp.el: Make it slightly less awful.
81 (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
82 (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
83 Only set local values.
84 (ps-article-subject, ps-article-author): Use standard functions
85 like mail-fetch-field.
86 (ps-info-file, ps-info-node): Use match-string.
87 (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
88 (ps-samp-ps-setup): ... new function.
89
90 * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
91 Optimize away code unneeded on any modern Emacs.
92
93 * emacs-lisp/authors.el: Move to ../admin.
94
95 * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
96
97 2014-06-25 Glenn Morris <rgm@gnu.org>
98
99 * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
100 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
101 ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
102 files. They are not relevant to the original issue (bug#1004),
103 and cause unnecessary recompilation (bug#2151).
104
105 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
106
107 * play/landmark.el: Use lexical-binding and avoid `intangible'.
108 (landmark--last-pos): New var.
109 (landmark--intangible-chars): New const.
110 (landmark--intangible): New function.
111 (landmark-mode, landmark-move): Use it.
112 (landmark-mode): Remove properties.
113 (landmark-plot-square, landmark-point-square, landmark-goto-xy)
114 (landmark-cross-qtuple):
115 Don't worry about `intangible' any more.
116 (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
117 (landmark-init-display): Don't set `intangible' and `point-entered'.
118 (square): Remove. Inline it instead.
119 (landmark--distance): Rename from `distance'.
120 (landmark-calc-distance-of-robot-from): Rename from
121 calc-distance-of-robot-from.
122 (landmark-calc-smell-internal): Rename from calc-smell-internal.
123
124 2014-06-25 Dmitry Antipov <dmantipov@yandex.ru>
125
126 * files.el (dir-locals-find-file, file-relative-name):
127 * info.el (Info-complete-menu-item):
128 * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
129 to compare-strings to avoid out-of-range errors.
130 * subr.el (string-prefix-p): Adjust to match strict range
131 checking in compare-strings.
132
133 2014-06-24 Leonard Randall <leonard.a.randall@gmail.com> (tiny change)
134
135 * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
136 for comment lines non-greedy and stopping at newlines to fix stack
137 overflows with large files.
138
139 2014-06-24 Eli Barzilay <eli@barzilay.org>
140
141 * calculator.el (calculator-last-input): Drop 'ascii-character property
142 lookup.
143
144 2014-06-24 Leo Liu <sdl.web@gmail.com>
145
146 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
147 tab-stop-list to nil. (Bug#16381)
148
149 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
150 (indent-rigidly-left-to-tab-stop)
151 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
152 (move-to-tab-stop): Change callers.
153
154 2014-06-24 Eli Zaretskii <eliz@gnu.org>
155
156 * skeleton.el (skeleton-insert): Yet another fix of the doc string
157 wrt behavior of \n as the first/last element of a skeleton.
158
159 2014-06-24 Michael Albinus <michael.albinus@gmx.de>
160
161 * net/tramp-adb.el (tramp-adb-handle-process-file):
162 * net/tramp-sh.el (tramp-sh-handle-process-file):
163 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
164 the output buffer when DISPLAY is non-nil. (Bug#17815)
165
166 2014-06-24 Glenn Morris <rgm@gnu.org>
167
168 * play/landmark.el (landmark-move-down, landmark-move-up):
169 Fix 2007-10-20 change - preserve horizontal position.
170
171 2014-06-23 Sam Steingold <sds@gnu.org>
172
173 * simple.el (kill-append): Remove undo boundary depending on ...
174 (kill-append-merge-undo): New user option.
175
176 2014-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
177
178 * simple.el (handle-shift-selection, exchange-point-and-mark)
179 (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
180 (transient-mark-mode): Use&set the global value.
181 * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
182 * emulation/edt.el (edt-emulation-off): Save&restore the global
183 transient-mark-mode setting.
184 * obsolete/pc-select.el (pc-selection-mode): Use the
185 transient-mark-mode function.
186
187 2014-06-23 Eli Zaretskii <eliz@gnu.org>
188
189 * international/fontset.el (script-representative-chars):
190 Add representative characters for scripts added in Unicode 7.0.
191 (otf-script-alist): Synchronize with the latest registry of OTF
192 script tags.
193
194 * international/characters.el (char-script-table): Update for
195 scripts added and codepoint ranges changed in Unicode 7.0.
196
197 2014-06-23 Eli Barzilay <eli@barzilay.org>
198
199 * calculator.el (calculator-standard-displayer): Fix bug in use of
200 `calculator-groupize-number'.
201 (calculator-funcall): Fix broken `cl-flet' use by moving it into the
202 `eval' code, so it works in v24.3.1 too.
203 (calculator-last-input): Comment to clarify purpose.
204
205 2014-06-22 Mario Lang <mlang@delysid.org>
206
207 * textmodes/rst.el (rst-comment-region): From from -> from.
208
209 * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
210
211 2013-06-22 Dmitry Antipov <dmantipov@yandex.ru>
212
213 * electric.el (electric-layout-post-self-insert-function):
214 * emacs-lisp/ert.el (ert--insert-infos):
215 * obsolete/vi.el (vi-set-mark):
216 * term.el (term-handle-scroll):
217 * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
218 * wid-edit.el (widget-editable-list-value-create):
219 Prefer point-marker to copy-marker of point.
220
221 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
222
223 Fix completion retrieval parsing (bug#17209).
224 * progmodes/python.el (python-mode):
225 (python-util-strip-string): New function.
226 (python-shell-completion-get-completions): Use it.
227
228 2014-06-21 Eli Zaretskii <eliz@gnu.org>
229
230 * skeleton.el (skeleton-insert): Fix last change.
231
232 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
233
234 Enhancements for outline integration (bug#17796).
235 * progmodes/python.el (python-mode): Properly set
236 outline-heading-end-regexp so that comments after colons for
237 defuns are supported.
238
239 2014-06-21 Eli Zaretskii <eliz@gnu.org>
240
241 * skeleton.el (skeleton-insert): Doc fix.
242
243 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
244
245 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
246 (smie-config-guess): Use smie-config-local so the rules are obeyed
247 (bug#17818).
248
249 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
250 since it's already done inside the loop (bug#17819).
251
252 2014-06-21 Martin Rudalics <rudalics@gmx.at>
253
254 * mouse.el (mouse-drag-line): Re-remove code initially removed
255 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
256 (Bug#17819).
257
258 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
259
260 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
261 align with the surrounding parent (bug#17721).
262
263 2014-06-21 Eli Zaretskii <eliz@gnu.org>
264
265 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
266 locally to nil.
267 (texinfo-insert-block, texinfo-insert-@end)
268 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
269 local setting of skeleton-end-newline by adding an explicit \n to
270 the skeletons where appropriate. (Bug#17801)
271
272 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
273
274 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
275 (smie-indent--hanging-p): Use it.
276 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
277
278 2014-06-21 Leo Liu <sdl.web@gmail.com>
279
280 * simple.el (read-quoted-char): Don't let help chars pop up help
281 buffer. (Bug#16617)
282
283 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
284
285 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
286 for | (bug#17621).
287
288 * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
289 Drop unknown events instead of burping.
290
291 2014-06-21 Eli Zaretskii <eliz@gnu.org>
292
293 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
294 and later. (Bug#17790)
295
296 2014-06-21 Juri Linkov <juri@jurta.org>
297
298 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
299 to `soft'. (Bug#17554)
300
301 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
302
303 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
304 (bug#17737).
305
306 2014-06-21 Dmitry Gutov <dgutov@yandex.ru>
307
308 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
309 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
310
311 2014-06-21 Michael Albinus <michael.albinus@gmx.de>
312
313 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
314 `unread-command-events'.
315
316 2014-06-19 William Xu <william.xwl@gmail.com>
317
318 * progmodes/hideif.el (hif-string-to-number): Don't return float for
319 hex integer constants (bug#17807).
320
321 2014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
322
323 * international/mule-util.el (truncate-string-ellipsis): New var.
324 (truncate-string-to-width): Use it.
325
326 2014-06-19 Robert Brown <robert.brown@gmail.com> (tiny change)
327
328 * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
329 (lisp-string-in-doc-position-p): New function, extracted from
330 lisp-font-lock-syntactic-face-function.
331 (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
332
333 2014-06-19 Grégoire Jadi <daimrod@gmail.com>
334
335 * net/rcirc.el (rcirc-omit-mode): Fix recenter error. (Bug#17769)
336
337 2014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
338
339 * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
340 (bubbles--game-over): Don't add `intangible' properties since they
341 didn't work anyway.
342
343 2014-06-18 Juri Linkov <juri@jurta.org>
344
345 * vc/ediff-init.el (ediff-current-diff-Ancestor)
346 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
347 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
348 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
349 Add `min-colors 88' version with removed black/white foregrounds.
350 (Bug#10181)
351
352 2014-06-18 Juri Linkov <juri@jurta.org>
353
354 * vc/diff-mode.el (diff-changed): Empty face definition to use
355 `diff-removed' and `diff-added' on tty as well. (Bug#10181)
356 (diff-context): Use darker color on light background and
357 lighter color on dark background.
358
359 2014-06-18 Juri Linkov <juri@jurta.org>
360
361 * vc/diff-mode.el (diff-refine-changed): Rename from
362 `diff-refine-change' for consistency with `diff-changed'.
363 (diff-refine-change): Add obsolete face alias. (Bug#10181)
364
365 * vc/smerge-mode.el (smerge-refined-changed): Rename from
366 `smerge-refined-change'.
367 (smerge-refined-change): Add obsolete face alias.
368
369 2014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
370
371 * rect.el (rectangle-preview): New custom.
372 (rectangle): New group.
373 (rectangle--pos-cols): Add `window' argument.
374 (rectangle--string-preview-state, rectangle--string-preview-window):
375 New vars.
376 (rectangle--string-flush-preview, rectangle--string-erase-preview)
377 (rectangle--space-to, rectangle--string-preview): New functions.
378 (string-rectangle): Use them.
379 (rectangle--inhibit-region-highlight): New var.
380 (rectangle--highlight-for-redisplay): Obey it. Make sure
381 `apply-on-region' uses the point-crutches of the right window.
382 Use :align-to rather than multiple spaces.
383
384 2014-06-16 Andrea Rossetti <andrea.rossetti@gmail.com> (tiny change)
385
386 * ruler-mode.el (ruler-mode-window-col)
387 (ruler-mode-mouse-set-left-margin)
388 (ruler-mode-mouse-set-right-margin): Fix calculation of column
389 from mouse position (Bug#17768).
390
391 2014-06-16 Ron Schnell <ronnie@driver-aces.com>
392
393 * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
394 without varname or rhs causes crash.
395 (dun-ftp): Fix bug where blank ftp password is allowed, making it
396 impossible to win endgame.
397 (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
398 rlogin is anymore.
399 (dun-help): Bump version number; update contact info.
400
401 2014-06-15 Eli Barzilay <eli@barzilay.org>
402
403 * calculator.el (calculator-prompt, calculator-remove-zeros)
404 (calculator-mode-hook, calculator-operators, calculator-stack)
405 (calculator-mode): Tweak docstring.
406 (calculator-user-operators): Tweak docstring, fix a bug in the last
407 example.
408 (calculator-displayer): `std' case has an optional boolean.
409 (calculator-displayers): Use the new boolean to group in decimal mode.
410 (calculator-mode-map, calculator, calculator-message)
411 (calculator-op-arity, calculator-add-operators)
412 (calculator-string-to-number, calculator-displayer-prev)
413 (calculator-displayer-next, calculator-remove-zeros)
414 (calculator-eng-display, calculator-number-to-string)
415 (calculator-update-display, calculator-last-input)
416 (calculator-clear-fragile, calculator-digit, calculator-decimal)
417 (calculator-exp, calculator-saved-move, calculator-clear)
418 (calculator-copy, calculator-put-value, calculator-help)
419 (calculator-expt, calculator-truncate): Minor code improvements.
420 (calculator-need-3-lines): New function pulling out code from
421 `calculator'.
422 (calculator-get-display): Rename from `calculator-get-prompt', and
423 improved.
424 (calculator-push-curnum): Rename from `calculator-curnum-value', and
425 extended for all uses of it. All callers changed.
426 (calculator-groupize-number): New utility for splitting a number into
427 groups.
428 (calculator-standard-displayer): Improve code, new optional argument to
429 use comma-split groups, make second argument optional too to use with
430 'left/'right inputs. All callers changed.
431 (calculator-reduce-stack-once): New utility, doing the meat of what
432 `calculator-reduce-stack' used to do, much improved (mostly using
433 `pcase' for conciseness and clarity).
434 (calculator-reduce-stack): Now doing just the reduction loop using
435 `calculator-reduce-stack-once'.
436 (calculator-funcall): Improve code, make it work in v24.3.1 too.
437 (calculator-last-input): Improve code, remove some old cruft.
438 (calculator-quit): Kill `calculator-buffer' in electric mode too.
439 (calculator-integer-p): Remove.
440 (calculator-fact): Improve code, make it work on non-integer values
441 too (using truncated numbers).
442
443 2014-06-15 Michael Albinus <michael.albinus@gmx.de>
444
445 Sync with Tramp 2.2.10.
446
447 * net/tramp.el (tramp-methods): Tweak docstring.
448 (tramp-handle-file-accessible-directory-p): Check for
449 `file-readable-p' instead of `file-executable-p'.
450 (tramp-check-cached-permissions):
451 Use `tramp-compat-file-attributes'.
452 (tramp-call-process): Add new argument VEC. Adapt callees in all
453 tramp*.el files.
454
455 * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
456 (tramp-adb-maybe-open-connection): Don't set
457 `tramp-current-*' variables.
458
459 * net/tramp-cache.el (tramp-flush-file-function): Do not flush
460 file properties of temporary buffers.
461
462 * net/tramp-ftp.el (top): Remove special handling for URL syntax.
463
464 * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
465 (tramp-gvfs-handle-delete-file): Flush file
466 properties, not directory properties.
467 (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
468 reading "unix::mode".
469 (tramp-gvfs-handle-file-name-all-completions):
470 Use "-h" option for "gvfs-ls".
471 (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
472 (tramp-gvfs-send-command): Simplify traces.
473
474 * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
475 (vc-git-program, vc-hg-program): Declare.
476 (tramp-methods) <sftp>: Remove. It has never worked satisfactorily.
477 (tramp-methods) <nc>: Add new method.
478 (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
479 (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
480 `tramp-login-args'.
481 (tramp-default-user-alist): Add "nc".
482 (top): Remove completion function for "sftp". Add completion
483 functions for "nc" and "psftp".
484 (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
485 Implement support for "nc" method.
486 (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
487 (tramp-remote-coding-commands, tramp-call-local-coding-command):
488 Tweak docstring.
489 (tramp-sh-handle-write-region): Tweak error message.
490 (tramp-sh-handle-vc-registered): Remove backends when the remote
491 binary does not exist.
492 (tramp-find-inline-encoding): Do not raise an error.
493 (tramp-make-copy-program-file-name): Tweak docstring. Handle also
494 the "nc" case. Quote result also locally.
495
496 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
497 (tramp-smb-handle-set-file-acl): Use `start-process'.
498 (tramp-smb-handle-insert-directory): Use progress reporter.
499 (tramp-smb-handle-rename-file): Flush also file properties of
500 FILENAME.
501
502 * net/trampver.el: Update release number.
503
504 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
505
506 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
507 add-to-list.
508 (ses-localvars): Remove ses--local-printer-list, unused.
509 (ses--metaprogramming): New macro. Use it to defvar variables.
510 (ses-set-localvars): Simplify.
511 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
512 property-list into an alist.
513 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
514 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
515 Remove; use defstruct accessors/setters instead.
516 (ses-cell-formula-aset, ses-cell-printer-aset)
517 (ses-cell-references-aset): Remove, use setf instead.
518 (ses--alist-get): New function.
519 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
520 Use an alist instead of a plist and don't do move-to-front since the
521 list is always short.
522 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
523 (ses-cell-property-set-fun, ses-cell-property-set)
524 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
525 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
526 (ses--letref): New macro.
527 (ses-cell-property-pop): Rewrite.
528 (ses--cell): Rename from ses-cell and make it into a function.
529 Make `formula' fallback on `value' if nil.
530 (ses--local-printer): Rename from ses-local-printer and make it into
531 a function.
532 (ses-set-cell): Turn it into a macro so finding the accessor from the
533 field name is done at compile time.
534 (ses-repair-cell-reference-all): Test presence of `sym' rather than
535 `ref' before adding `sym' to :ses-repair-reference.
536 (ses-calculate-cell): Use ses--letref rather than
537 ses-cell-property-get-handle.
538 (ses-write-cells): Use a single prin1-to-string.
539 (ses-setter-with-undo): New function.
540 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
541 (ses-unset-with-undo): Remove.
542 (ses-load): Prefer apply' over `eval'.
543 (ses-read-printer, ses-set-column-width): Use standard "(default
544 foo)" format.
545
546 2014-06-15 Glenn Morris <rgm@gnu.org>
547
548 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
549
550 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
551 Replace delete-duplicates and mapcan by cl- versions throughout.
552 And cl-macroexpand-all by macroexpand-all.
553 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
554
555 2014-06-15 Eli Zaretskii <eliz@gnu.org>
556
557 * subr.el (posn-col-row): Doc fix. (Bug#17768)
558
559 2014-06-15 Juri Linkov <juri@jurta.org>
560
561 * bindings.el: Put `ascii-character' property on keypad keys
562 mapped to characters. (Bug#17759)
563
564 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
565
566 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
567 bumping forward into a closing paren (bug#17761).
568
569 * term/xterm.el (xterm--version-handler): Work around for OSX
570 Terminal.app (bug#17607).
571
572 2014-06-14 Ron Schnell <ronnie@driver-aces.com>
573
574 * play/dunnet.el (dun-describe-room, dun-mode):
575 If a lamp is in the room, you won't be eaten by a grue.
576
577 2014-06-13 Glenn Morris <rgm@gnu.org>
578
579 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
580 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
581 (compile-always): GNU make automatically passes
582 command-line arguments to sub-makes.
583
584 * calendar/calendar.el (calendar-generate-window):
585 Remove pointless call to font-lock-fontify-buffer.
586
587 2014-06-13 Matthias Meulien <orontee@gmail.com>
588
589 * simple.el (completion-list-mode-map): Navigate with tab and backtab
590 (bug#17767).
591
592 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * simple.el (set-mark-command): Simplify a bit.
595
596 2014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
597
598 * help.el (help--key-binding-keymap): New function.
599 (help--binding-locus): New function.
600 (describe-key): Mention the keymap in which the binding was
601 found. (bug#13948)
602
603 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
604
605 * hippie-exp.el (he--all-buffers): New function.
606 (try-expand-line-all-buffers, try-expand-list-all-buffers)
607 (try-expand-dabbrev-all-buffers): Use it.
608
609 2014-06-12 Emilio C. Lopes <eclig@gmx.net>
610
611 * hippie-exp.el (try-expand-line-all-buffers)
612 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
613 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
614 original buffer, in case they're buffer-local.
615
616 2014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
617
618 * ses.el (ses-initial-global-parameters-re): New defconst, a
619 specific regexp is needed now that ses.el can handle both
620 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
621 local printers.
622 (ses-localvars): Add local variables needed for local printer handling.
623 (ses-set-localvars): Handle hashmap initialisation.
624 (ses-paramlines-plist): Add param-line for number of local printers.
625 (ses-paramfmt-plist): New defconst, needed for code factorization
626 between functions `ses-set-parameter' and
627 `ses-file-format-extend-paramter-list'
628 (ses-make-local-printer-info): New defsubst.
629 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
630 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
631 (ses-cell-printer-aset): New defmacro.
632 (ses-local-printer-compile): New defun.
633 (ses-local-printer): New defmacro.
634 (ses-printer-validate, ses-call-printer): Add support for local
635 printer functions.
636 (ses-file-format-extend-paramter-list): New defun.
637 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
638 factorization.
639 (ses-load): Add support for local printer functions.
640 (ses-read-printer): Update docstring and add support for local printer
641 functions.
642 (ses-refresh-local-printer, ses-define-local-printer): New defun.
643 (ses-safe-printer): Add support for local printer functions.
644
645 2014-06-12 Ivan Andrus <darthandrus@gmail.com>
646
647 * ffap.el (ffap-lax-url): New var (bug#17723).
648 (ffap-url-at-point): Use it.
649 (ffap-file-at-point): Avoid returning just "/".
650
651 2014-06-12 Matthias Meulien <orontee@gmail.com>
652
653 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
654 (python-mode-map): Bind it.
655
656 * progmodes/python.el (class skeleton): Don't erase last char of class
657 name (bug#17683).
658
659 2014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
660
661 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
662
663 2014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
664
665 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
666 (bug#17745).
667
668 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * international/mule-cmds.el: Use lexical-binding.
671 (ucs-names): Simplify.
672
673 2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
674
675 * progmodes/python.el (run-python): Use read-shell-command.
676
677 2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
678
679 * rect.el: Make it possible to move bounds past EOL or into TABs.
680 (operate-on-rectangle): Use apply-on-rectangle.
681 (rectangle--mark-crutches): New var.
682 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
683 (rectangle--crutches, rectangle--reset-crutches): New functions.
684 (apply-on-rectangle): Obey crutches. Avoid setq.
685 Fix missing final iteration if end is at EOB&BOL.
686 (rectangle-mark-mode-map): Add remap bindings for
687 exchange-point-and-mark and char/line movements.
688 (rectangle--*-char): New function.
689 (rectangle-exchange-point-and-mark, rectangle-right-char)
690 (rectangle-left-char, rectangle-forward-char)
691 (rectangle-backward-char, rectangle-next-line)
692 (rectangle-previous-line): New commands.
693 (rectangle--place-cursor): New function.
694 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
695
696 2014-06-08 Glenn Morris <rgm@gnu.org>
697
698 * startup.el (initial-buffer-choice): Doc fix.
699 Reset :version (adding an option does not merit a :version bump).
700
701 * bookmark.el (bookmark-load):
702 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
703
704 2014-06-08 Juri Linkov <juri@jurta.org>
705
706 * desktop.el: Activate auto-saving on window configuration changes.
707 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
708 `desktop-auto-save-set-timer' to/from
709 `window-configuration-change-hook'.
710 (desktop-auto-save-set-timer): Change REPEAT arg of
711 `run-with-idle-timer' from t to nil.
712 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
713
714 2014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
715
716 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
717 vc-hg-command (bug#17570).
718
719 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
720
721 * international/mule-cmds.el (ucs-names): Add special entry for BEL
722 (bug#17702).
723
724 2014-06-08 Glenn Morris <rgm@gnu.org>
725
726 * startup.el (window-setup-hook): Doc fix.
727
728 * emacs-lisp/package.el (package-check-signature)
729 (package-unsigned-archives): Doc fixes.
730
731 2014-06-08 Martin Rudalics <rudalics@gmx.at>
732
733 * window.el (display-buffer-use-some-window): Don't make window
734 used smaller than it was before (Bug#17671).
735
736 2014-06-08 Eli Zaretskii <eliz@gnu.org>
737
738 * menu-bar.el (menu-bar-open): Fix last change: use the PC
739 'redisplay' instead of '(sit-for 0)'.
740
741 2014-06-08 Michael Albinus <michael.albinus@gmx.de>
742
743 * net/tramp.el (tramp-ssh-controlmaster-options):
744 Improve search regexp. (Bug#17653)
745
746 2014-06-08 Glenn Morris <rgm@gnu.org>
747
748 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
749
750 2014-06-08 Eli Zaretskii <eliz@gnu.org>
751
752 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
753
754 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
755
756 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
757 (bug#17586).
758
759 * vc/vc-hg.el (vc-hg-log-graph): New var.
760 (vc-hg-print-log): Use it.
761 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
762 graph output (bug#17515).
763
764 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
765
766 * mouse.el (mouse-posn-property): Ignore buffer position info when the
767 even happened elsewhere.
768
769 2014-06-06 Mario Lang <mlang@delysid.org>
770
771 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
772 `recenter' if `current-buffer' is equal to `window-buffer'.
773
774 2014-06-05 Leo Liu <sdl.web@gmail.com>
775
776 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
777
778 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
779
780 * textmodes/tildify.el (tildify-foreach-region-outside-env):
781 New function which calls a callback on portions of the buffer that are
782 outside of ignored environments.
783 (tildify-build-regexp): Remove function since it is now
784 incorporated in `tildify-foreach-region-outside-env' where it is
785 optimised and simplified by the use of `mapconcat'.
786 (tildify-tildify): Return number of substitutions made so that…
787 (tildify-count): …can be removed.
788 (tildify-find-env): Accept a new PAIRS argument which was
789 previously looked up in `tildify-ignored-environments-alist' each
790 time the function was called. With this change, the lookup is
791 performed only once in `tildify-foreach-region-outside-env'.
792 (tildify-region): Greatly simplify the function since now most of
793 the work is done by `tildify-foreach-region-outside-env'.
794 (tildify-mode-alist): Simplify slightly by avoiding if and setq
795 and instead using or.
796
797 * textmodes/tildify.el (tildify-ignored-environments-alist):
798 Optimise environments regexes
799
800 Each time beginning of an environment to ignore is found,
801 `tildify-find-env' needs to identify regexp for the ending
802 of the environment. This is done by trying all the opening
803 regexes on matched text in a loop, so to speed that up, this
804 loop should have fewer things to match, which can be done by
805 using alternatives in the opening regexes.
806
807 Coincidentally, this should make matching of the opening
808 regexp faster as well thanks to the use of `regexp-opt' and
809 having common prefix pulled from many regexes.
810
811 * textmodes/tildify.el (tildify-string-alist)
812 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
813 of supported modes since `xml-mode' is no longer a thing but just
814 an alias to the former. Also include comments and insides of tags
815 in `tildify-ignored-environments-alist' for XML modes. Finally,
816 since XML does not define “&nbsp;”[1], use a numeric reference for
817 a no-break space (namely “&#160;”)
818
819 [1] XML specification defines only a handful of predefined entities.
820 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
821 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
822 >, &, ' and " respectively). This is in contrast to HTML and even
823 XHTML which defined a whole bunch of entities including “&nbsp;”.
824
825 * textmodes/tildify.el (tildify-pattern-alist)
826 (tildify-string-alist, tildify-ignored-environments-alist):
827 Improve defcustom's types by adding more tags explaining what each
828 value means and replace “sexp” used in
829 `tildify-ignored-environments-alist' with a full type declaration.
830
831 * textmodes/tildify.el (tildify-find-env): Fix matched group
832 indexes in end-regex building
833
834 When looking for a start of an ignore-environment, the regex is built
835 by concatenating regexes of all the environments configured in
836 `tildify-ignored-environments-alist'. So for example, the following
837 list could be used to match TeX's \verb and \verb* commands:
838
839 (("\\\\verb\\(.\\)" . (1))
840 ("\\\\verb\\*\\(.\\)" . (1)))
841
842 This would result in the following regex being used to find the start
843 of any of the variants of the \verb command:
844
845 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
846
847 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
848 won't match anything, and thus (match-string 1) will be nil, which
849 will cause building of the end-matching regex to fail.
850
851 Fix this by using capture groups from the time when the opening
852 regexes are matched individually.
853
854 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
855 in `tildify-find-env'
856
857 The `tildify-ignored-environments-alist' allows the end-regex to
858 be provided not as a static string but mix of strings and indexes
859 of groups matched the begin-regex. For example, the “\verb!…!”
860 TeX-command (where “!” is an arbitrary character) is handled
861 using:
862
863 ("\\\\verb\\*?\\(.\\)" . (1))
864
865 In the same way, the following should be supported as well:
866
867 ("open-\\(.\\)" . ("end-" 1))
868
869 However the tildify-find-env function fails at
870
871 (concat result
872 (if (stringp (setq aux (car expression)))
873 expression ; BUG: expression is a list
874 (regexp-quote (match-string aux))))
875
876 where the string part is handled incorrectly.
877
878 The most trivial fix would be to replace `expression' in the
879 true-part of the if-statement with `aux', but instead, this commit
880 optimises `tildify-find-env' by changing it to use `mapconcat'
881 rather than open-coded while-loop.
882
883 2014-06-05 Mario Lang <mlang@delysid.org>
884
885 * woman.el (woman-mapcan): Remove.
886 (woman-parse-colon-path): Use cl-mapcan instead.
887
888 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
889
890 * register.el: Add link to Emacs manual in Commentary.
891
892 2014-06-02 Sam Steingold <sds@gnu.org>
893
894 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
895 (popup-menu): ...here.
896 (menu-bar-open): Use it to avoid an error when `lookup-key'
897 returns a number.
898
899 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
900
901 * net/tramp.el (tramp-call-process): Add traces.
902 (tramp-handle-unhandled-file-name-directory): Return "/".
903
904 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
905
906 Sync with upstream verilog-mode revision 3cd8144.
907 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
908 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
909 (verilog-type-font-keywords): Add nor.
910 (verilog-batch-execute-func): Force reading of Local Variables.
911 Fix printing "no changes to be saved" with verilog-batch.
912 (verilog-auto-arg-ports): Doc fix.
913 Add verilog-auto-arg-format to support newlines in AUTOARG.
914 (verilog-auto-arg): Doc fix.
915
916 2014-06-02 Glenn Morris <rgm@gnu.org>
917
918 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
919 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
920 * emulation/ws-mode.el: Move to obsolete/.
921 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
922
923 2014-06-02 Eli Zaretskii <eliz@gnu.org>
924
925 * simple.el (keyboard-quit): Force update of mode lines, to remove
926 the "Def" indicator, if we were defining a macro. (Bug#17615)
927
928 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
929
930 * minibuffer.el (minibuffer-force-complete-and-exit):
931 Obey minibuffer-default (bug#17545).
932
933 * progmodes/js.el (js-indent-line): Don't mix columns and chars
934 (bug#17619).
935
936 * subr.el (set-transient-map): Don't wait for some "nested"
937 transient-map to finish if we're only supposed to be active for
938 the next command (bug#17642).
939
940 2014-06-02 Leo Liu <sdl.web@gmail.com>
941
942 * emacs-lisp/gv.el (window-buffer, window-display-table)
943 (window-dedicated-p, window-hscroll, window-point, window-start):
944 Fix gv-expander. (Bug#17630)
945
946 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
947
948 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
949 clicks (bug#17633).
950
951 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
952 for the single comma, since ", " is *very* common in normal French text
953 (bug#17643).
954
955 2014-06-02 Glenn Morris <rgm@gnu.org>
956
957 * emacs-lisp/package.el (package-check-signature)
958 (package-unsigned-archives): Fix :version.
959
960 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
961
962 * subr.el (sit-for): Don't run input-methods (bug#15614).
963
964 2014-06-02 Glenn Morris <rgm@gnu.org>
965
966 * cus-start.el: Fix some :version numbers.
967
968 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * simple.el (deactivate-mark): Set mark-active to nil even if
971 deactivation is done via setting transient-mark-mode to nil,
972 since one is buffer-local and the other is global.
973
974 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
975 there can't be more than 2 arguments (bug#17584).
976
977 2014-06-02 Glenn Morris <rgm@gnu.org>
978
979 * simple.el (filter-buffer-substring-functions)
980 (filter-buffer-substring-function, buffer-substring-filters)
981 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
982
983 * minibuffer.el (completion-in-region-functions, completion-in-region)
984 (completion--in-region): Doc fixes.
985
986 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
987 (expand-abbrev, abbrev--default-expand): Doc fixes.
988
989 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
990
991 Include sources used to create macuvs.h.
992 * international/README: Refer to the Unicode Terms of Use rather
993 than copying it bodily here, as that simplifies maintenance.
994
995 2014-06-01 Glenn Morris <rgm@gnu.org>
996
997 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
998
999 2014-05-31 Glenn Morris <rgm@gnu.org>
1000
1001 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
1002
1003 2014-05-30 Glenn Morris <rgm@gnu.org>
1004
1005 * loadup.el: Treat `command-line-args' more flexibly.
1006
1007 2014-05-30 Alan Mackenzie <acm@muc.de>
1008
1009 Guard (looking-at "\\s!") from XEmacs.
1010 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
1011
1012 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
1013
1014 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
1015 The argument COUNT is now optional, to be more backward-compatible.
1016 Doc fix. (Bug#17560)
1017
1018 2014-05-29 Reuben Thomas <rrt@sc3d.org>
1019
1020 * whitespace.el (whitespace-report-region):
1021 Simplify documentation.
1022 (whitespace-report-region): Allow report-if-bogus to take the
1023 value `never', for non-interactive use.
1024 (whitespace-report): Refer to whitespace-report-region's
1025 documentation.
1026
1027 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1028
1029 * whitespace.el: Use font-lock-flush. Minimize refontifications.
1030 Side benefit: it works without jit-lock.
1031 (whitespace-point--used): New buffer-local var.
1032 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
1033 (whitespace-color-off): Use font-lock-flush.
1034 (whitespace-point--used, whitespace-point--flush-used): New functions.
1035 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
1036 (whitespace-empty-at-eob-regexp): Use them.
1037 (whitespace-post-command-hook): Rewrite.
1038
1039 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
1040 (font-lock-fontify-buffer): Mark interactive-only.
1041 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
1042 Make buffer-local.
1043 (font-lock-specified-p): Remove redundant boundp check.
1044 (font-lock-flush-function, font-lock-ensure-function): New vars.
1045 (font-lock-turn-on-thing-lock): Set them.
1046 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
1047 (font-lock-after-change-function): Make `old-len' optional.
1048 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
1049 Call font-lock-flush, just in case.
1050 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
1051 recent Emacsen.
1052 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
1053 (vera-mode-map, vera-mode-menu): Remove bindings to it.
1054 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
1055 and with-syntax-table.
1056 * textmodes/conf-mode.el (conf-quote-normal):
1057 * progmodes/sh-script.el (sh-set-shell):
1058 * progmodes/prog-mode.el (prettify-symbols-mode):
1059 * progmodes/f90.el (f90-font-lock-n):
1060 * progmodes/cwarn.el (cwarn-mode):
1061 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
1062 * progmodes/compile.el (compilation-setup, compilation--unsetup):
1063 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
1064 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
1065 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
1066 font-lock-fontify-buffer-function and
1067 font-lock-unfontify-buffer-function.
1068 (rmail-unfontify-buffer-function, rmail-fontify-message):
1069 Use with-silent-modifications.
1070 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
1071 and font-lock-ensure.
1072 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
1073
1074 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
1075
1076 * emacs-lisp/package.el (package-generate-autoloads):
1077 Inhibit backup files.
1078
1079 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1080
1081 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
1082 (bug#17608).
1083
1084 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
1085
1086 * textmodes/tildify.el (tildify-buffer, tildify-region):
1087 Add dont-ask option.
1088
1089 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1090
1091 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
1092 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
1093
1094 * subr.el (internal--funcall-interactively): New.
1095 (internal--call-interactively): Remove.
1096 (called-interactively-p): Detect funcall-interactively instead of
1097 call-interactively.
1098 * simple.el (repeat-complex-command): Use funcall-interactively.
1099 (repeat-complex-command--called-interactively-skip): Remove.
1100
1101 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1102
1103 * register.el (register-read-with-preview): Don't burp on
1104 frame switches (e.g. due to the frame we just popped).
1105
1106 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
1107 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
1108
1109 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
1110
1111 * cus-face.el (custom-face-attributes): Add :distant-foreground.
1112
1113 2014-05-26 Martin Rudalics <rudalics@gmx.at>
1114
1115 * window.el (window--dump-frame): Remove interactive specification.
1116
1117 2014-05-26 Glenn Morris <rgm@gnu.org>
1118
1119 * hippie-exp.el (he-line-search-regexp):
1120 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
1121
1122 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
1123
1124 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
1125 to avoid errors when trying to create or visit a file foo.todo
1126 located outside to todo-directory, and to allow having such files
1127 without them being tied to Todo mode (bug#17482).
1128 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
1129 (todo-archive-done-item, todo-find-filtered-items-file)
1130 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
1131 (todo-category-completions, todo-read-category): When visiting a
1132 Todo file, make sure we're in the right mode and the buffer local
1133 variables are set.
1134 (todo-make-categories-list, todo-reset-nondiary-marker)
1135 (todo-reset-done-string, todo-reset-comment-string):
1136 After processing all Todo files, kill the buffers of those files that
1137 weren't being visited before the processing.
1138 (todo-display-as-todo-file, todo-add-to-buffer-list)
1139 (todo-visit-files-commands): Comment out.
1140 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
1141 (auto-mode-alist): Remove add-to-list calls making Todo file
1142 extensions unrestrictedly tied to Todo modes.
1143
1144 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1145
1146 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
1147 (advice-function-member-p): Tell it to check both names and functions
1148 (bug#17531).
1149 (advice--add-function): Adjust call accordingly.
1150
1151 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
1152
1153 * calendar/todo-mode.el: Miscellaneous bug fixes.
1154 (todo-delete-file): When deleting an archive but not its todo
1155 file, make sure to update the todo file's category sexp.
1156 (todo-move-category): Keep the moved category's name unless the
1157 file moved to already has a category with that name. If the
1158 numerically last category of the source file was moved, make the
1159 first category current to avoid selecting a nonexisting category.
1160 (todo-merge-category): Fix implementation to make merging to a
1161 category in another file work as documented. Eliminate now
1162 insufficient and unnecessary renaming of archive category, correct
1163 document string accordingly, and clarify it. If the numerically
1164 last category of the source file was merged, make the first
1165 category current to avoid selecting a nonexisting category.
1166 (todo-archive-done-item): When there are marked items and point
1167 happens to be on an unmarked item, ignore the latter. Don't leave
1168 point below last item after archiving marked items.
1169 (todo-unarchive-items): Fix logic to ensure unarchiving an item
1170 from an archive with only one category deletes the archive only
1171 when the category is empty after unarchiving. Make sure the todo
1172 file's category sexp is updated.
1173 (todo-read-file-name): Allow an existing file name even when it is
1174 not required (todo-move-category needs this to work as documented).
1175 (todo-add-file): Call todo-validate-name to reject the name of an
1176 existing todo file (needed due to fix in todo-read-file-name).
1177 (todo-reset-nondiary-marker): Also reset in filtered items files.
1178 (todo-reset-done-string, todo-reset-comment-string): Also reset in
1179 regexp filtered items files.
1180 (todo-reset-highlight-item): Also reset in filtered items files.
1181 Fix incorrect variable reference in document string.
1182
1183 2014-05-26 Glenn Morris <rgm@gnu.org>
1184
1185 * window.el (window--dump-frame): Avoid error in --without-x builds.
1186
1187 2014-05-26 Glenn Morris <rgm@gnu.org>
1188
1189 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
1190
1191 2014-05-26 Eli Zaretskii <eliz@gnu.org>
1192
1193 * frame.el (set-frame-font): Doc fix.
1194
1195 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
1196
1197 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
1198
1199 * emacs-lisp/package.el (package--download-one-archive):
1200 Use `write-region' instead of `save-buffer' to avoid running various
1201 hooks. (Bug#17155)
1202 (describe-package-1): Same. Insert newline at the end of the
1203 buffer if appropriate.
1204
1205 2014-05-26 Juri Linkov <juri@jurta.org>
1206
1207 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
1208 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
1209 Add more modifiers: meta, control, shift, hyper, super, alt.
1210 (Bug#17439)
1211
1212 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
1213 to allow changing its value with `set-variable'.
1214
1215 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1216
1217 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
1218 #; comments.
1219 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
1220 New functions.
1221 (scheme-mode-variables): Set syntax-propertize-function instead of
1222 font-lock-syntactic-face-function.
1223 (scheme-font-lock-syntactic-face-function): Delete.
1224
1225 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
1226
1227 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
1228 (bug#17392).
1229
1230 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
1231
1232 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
1233 for a temporary file name.
1234
1235 2014-05-26 Eli Zaretskii <eliz@gnu.org>
1236
1237 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
1238
1239 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
1240
1241 * net/dbus.el (dbus-init-bus, dbus-call-method)
1242 (dbus-call-method-asynchronously, dbus-send-signal)
1243 (dbus-method-return-internal, dbus-method-error-internal):
1244 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
1245
1246 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1247
1248 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
1249 methods which do not have a doc string. (Bug#17490)
1250
1251 2014-05-25 Tassilo Horn <tsdh@gnu.org>
1252
1253 * textmodes/reftex-ref.el (reftex-format-special): Make it work
1254 also for AMS Math's \eqref macro.
1255
1256 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1257
1258 Arrange to never byte-compile the generated -pkg.el file.
1259
1260 * emacs-lisp/package.el (package-generate-description-file):
1261 Output first-line comment to set buffer-local var `no-byte-compile'.
1262 Suggested by Dmitry Gutov:
1263 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
1264
1265 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1266
1267 Fix bug: Properly quote args to generated -pkg.el `define-package'.
1268
1269 * emacs-lisp/package.el (package-generate-description-file):
1270 Inline `package--alist-to-plist'; rewrite to selectively
1271 quote alist values that are not self-quoting.
1272 (package--alist-to-plist): Delete func.
1273
1274 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
1275
1276 * term/xterm.el (xterm-function-map): Add mapping for shifted
1277 keypad keys.
1278
1279 2014-05-24 Daniel Colascione <dancol@dancol.org>
1280
1281 * progmodes/subword.el (subword-find-word-boundary): Move point to
1282 correct spot before search. (Bug#17580)
1283
1284 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
1285 breaking the build.
1286
1287 2014-05-24 Leo Liu <sdl.web@gmail.com>
1288
1289 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
1290
1291 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1292
1293 * minibuffer.el (completion--sreverse): Remove.
1294 (completion--common-suffix): Use `reverse' instead.
1295 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
1296
1297 2014-05-22 Glenn Morris <rgm@gnu.org>
1298
1299 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
1300
1301 2014-05-21 Daniel Colascione <dancol@dancol.org>
1302
1303 * files.el (interpreter-mode-alist): Add mksh.
1304
1305 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
1306 derivative.
1307 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
1308 mksh. Improve custom spec; allow regular expressions.
1309 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
1310 (sh-after-hack-local-variables): New function.
1311 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
1312 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
1313 the normalization.
1314 (sh-canonicalize-shell): Rewrite to support regexes.
1315
1316 2014-05-21 Leo Liu <sdl.web@gmail.com>
1317
1318 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
1319
1320 2014-05-19 Leo Liu <sdl.web@gmail.com>
1321
1322 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
1323
1324 2014-05-18 Glenn Morris <rgm@gnu.org>
1325
1326 * loadup.el:
1327 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
1328
1329 2014-05-14 Sam Steingold <sds@gnu.org>
1330
1331 * progmodes/python.el (python-shell-get-or-create-process):
1332 Do not bind `current-prefix-arg' so that C-c C-z does not talk
1333 back unless requested.
1334
1335 2014-05-14 Glenn Morris <rgm@gnu.org>
1336
1337 * subr.el (with-file-modes): New macro.
1338 * printing.el (pr-save-file-modes): Make obsolete.
1339 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
1340 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
1341 Add with-file-modes.
1342 * doc-view.el (doc-view-make-safe-dir):
1343 * epg.el (epg--start):
1344 * files.el (locate-user-emacs-file, make-temp-file)
1345 (backup-buffer-copy, move-file-to-trash):
1346 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
1347 * eshell/esh-util.el (eshell-with-private-file-modes)
1348 (eshell-make-private-directory):
1349 * net/browse-url.el (browse-url-mosaic):
1350 * obsolete/mailpost.el (post-mail-send-it):
1351 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
1352 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
1353 Use with-file-modes.
1354
1355 * vc/emerge.el (emerge-make-temp-file): Simplify.
1356
1357 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
1358 Stefan Monnier <monnier@iro.umontreal.ca>
1359
1360 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
1361 suffix (bug#15419).
1362
1363 2014-05-14 Glenn Morris <rgm@gnu.org>
1364
1365 * vc/emerge.el (emerge-temp-file-prefix):
1366 Make pointless option obsolete.
1367 (emerge-temp-file-mode): Make non-functional option obsolete.
1368
1369 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
1370
1371 * net/browse-url.el (browse-url):
1372 Use `unhandled-file-name-directory' when setting `default-directory',
1373 in order to circumvent stalled remote connections. (Bug#17425)
1374
1375 2014-05-14 Glenn Morris <rgm@gnu.org>
1376
1377 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
1378 Optimize on Emacs, which has the relevant functions for ages.
1379
1380 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * simple.el (undo-make-selective-list): Obey undo-no-redo.
1383
1384 2014-05-12 Sam Steingold <sds@gnu.org>
1385
1386 * calendar/time-date.el (seconds-to-string): New function to
1387 pretty print time delay in seconds.
1388
1389 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1390
1391 * mpc.el (mpc-format): Trim Date to the year.
1392 (mpc-songs-hashcons): Shorten the Date field.
1393
1394 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
1395 into autoloading just because of a silly indirection.
1396
1397 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
1398
1399 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
1400
1401 2014-05-12 Glenn Morris <rgm@gnu.org>
1402
1403 * emacs-lisp/find-gc.el: Move to ../admin.
1404
1405 * printing.el (pr-version):
1406 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
1407
1408 * net/browse-url.el (browse-url-mosaic):
1409 Create /tmp/Mosaic.PID as a private file.
1410
1411 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1412
1413 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
1414 (advice--member-p): If name is given, only compare the name.
1415 (advice--remove-function): Don't stop at the first match.
1416 (advice--normalize-place): New function.
1417 (add-function, remove-function): Use it.
1418 (advice--add-function): Pass the name, if any, to
1419 advice--remove-function.
1420
1421 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
1422
1423 * electric.el (electric-indent-post-self-insert-function): Don't use
1424 `pos' after modifying the buffer (bug#17449).
1425
1426 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
1427
1428 * calendar/todo-mode.el (todo-insert-item-from-calendar):
1429 Correct argument list to conform to todo-insert-item--basic.
1430
1431 2014-05-12 Glenn Morris <rgm@gnu.org>
1432
1433 * files.el (cd-absolute): Test if directory is accessible
1434 rather than executable. (Bug#17330)
1435
1436 * progmodes/compile.el (recompile):
1437 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
1438
1439 * net/browse-url.el (browse-url-mosaic):
1440 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
1441 This is CVE-2014-3423.
1442
1443 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1444
1445 * mouse.el: Use the normal toplevel loop while dragging.
1446 (mouse-set-point): Handle multi-clicks.
1447 (mouse-set-region): Handle multi-clicks for drags.
1448 (mouse-drag-region): Update call accordingly.
1449 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
1450 Use the normal event loop instead of a local while/read-event loop.
1451 (global-map): Remove redundant bindings for double/triple-mouse-1.
1452 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
1453 Generate synthetic down events when the protocol only sends up events.
1454 (xterm-mouse-last): Remove.
1455 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
1456 terminal parameter instead.
1457 (xterm-mouse--set-click-count): New function.
1458 (xterm-mouse-event): Detect/generate double/triple clicks.
1459 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
1460
1461 * info.el (Info-quoted): New face.
1462 (Info-mode-font-lock-keywords): New var.
1463 (Info-mode): Use it.
1464
1465 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
1466 are a hindrance for C-x C-e.
1467
1468 2014-05-11 Leo Liu <sdl.web@gmail.com>
1469
1470 * net/rcirc.el (rcirc-sentinel): Fix last change.
1471
1472 2014-05-08 Sam Steingold <sds@gnu.org>
1473
1474 * net/rcirc.el (rcirc-reconnect-delay): New user option.
1475 (rcirc-sentinel): Auto-reconnect to the server if
1476 `rcirc-reconnect-delay' is non-0 (but not more often than its
1477 value in case the host is off-line).
1478
1479 2014-05-09 Eli Zaretskii <eliz@gnu.org>
1480
1481 * progmodes/grep.el (lgrep): Fix a typo in last commit.
1482
1483 2014-05-09 Glenn Morris <rgm@gnu.org>
1484
1485 * files.el (file-expand-wildcards):
1486 * man.el (Man-support-local-filenames):
1487 * printing.el (pr-i-directory, pr-interface-directory):
1488 * progmodes/grep.el (lgrep, rgrep):
1489 * textmodes/ispell.el (ispell-call-process)
1490 (ispell-call-process-region, ispell-start-process)
1491 (ispell-init-process): Use file-accessible-directory-p.
1492
1493 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1494
1495 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
1496 (xterm-mouse--read-event-sequence-1000): Return nil if something
1497 looks fishy.
1498 (xterm-mouse-event): Propagate it.
1499 (xterm-mouse-translate-1): Handle it.
1500
1501 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
1502
1503 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
1504 four slots of the parameter list are filled, make sure to pass it
1505 to the argument list of todo-insert-item--basic.
1506
1507 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1508
1509 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
1510 Add optional `seen' argument to detect and break infinite loops.
1511
1512 2014-05-08 Eli Zaretskii <eliz@gnu.org>
1513
1514 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
1515 (trace-unsafe, trace-use-tree): Make parentheses style be
1516 according to Emacs style.
1517
1518 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
1519
1520 * net/tramp-sh.el (tramp-remote-process-environment):
1521 Remove HISTFILE and HISTSIZE; it's too late to set them here.
1522 Add :version entry.
1523 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
1524 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
1525 extra "PSx=..." commands.
1526 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
1527 (Bug#17295)
1528
1529 (tramp-uudecode): Replace the hard-coded temporary file name by a
1530 format specifier.
1531 (tramp-remote-coding-commands): Enhance docstring.
1532 (tramp-find-inline-encoding): Replace "%t" by a temporary file
1533 name. (Bug#17415)
1534 This is CVE-2014-3424.
1535
1536 2014-05-08 Glenn Morris <rgm@gnu.org>
1537
1538 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
1539 (find-gc-source-files): Update some names.
1540 (trace-call-tree): Simplify and update.
1541 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
1542 This is CVE-2014-3422.
1543
1544 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1545
1546 * minibuffer.el (completion--try-word-completion): Revert fix for
1547 Bug#15980 (bug#17375).
1548
1549 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
1550 Always store button numbers in the same way in xterm-mouse-last;
1551 Don't burp is xterm-mouse-last is not set as expected.
1552 Never return negative indices.
1553
1554 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
1555
1556 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1557 Backtrack one char if the global/char-literal var matcher hits
1558 inside a string. The next char could be the beginning of an
1559 expression expansion.
1560
1561 2014-05-08 Glenn Morris <rgm@gnu.org>
1562
1563 * help-fns.el (describe-function-1): Test for an autoload before a
1564 macro, since `macrop' works on autoloads. (Bug#17410)
1565
1566 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1567
1568 * electric.el (electric-indent-functions-without-reindent): Add yaml.
1569
1570 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
1571 Make sure the new point we return is within the new string (bug#17239).
1572
1573 2014-05-05 Daniel Colascione <dancol@dancol.org>
1574
1575 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1576 Port `gnu' pattern to rx.
1577
1578 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
1579
1580 Remove unneeded prompt when closing a buffer with active
1581 emacsclient ("Buffer ... still has clients"), #16548.
1582 * server.el (server-start): Remove the only call to:
1583 (server-kill-buffer-query-function): Remove.
1584
1585 2014-05-04 Leo Liu <sdl.web@gmail.com>
1586
1587 * calendar/diary-lib.el (calendar-chinese-month-name-array):
1588 Defvar to pacify compiler.
1589
1590 2014-05-04 Eli Zaretskii <eliz@gnu.org>
1591
1592 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
1593
1594 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1595
1596 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1597 Use nil rather than `default' for the "default" appearance (bug#17388).
1598 * vc/ediff-util.el (ediff-inferior-compare-regions)
1599 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
1600 a misleading `default' value when it's really a boolean.
1601 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
1602 overlay is not visible.
1603
1604 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1605
1606 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
1607 (todo-menu): Uncomment and update.
1608
1609 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1610
1611 * calendar/todo-mode.el: Reimplement item editing to have the same
1612 basic user interface as item insertion, and make small UI and
1613 larger internal improvements to the latter.
1614 (todo-insert-item): Add reference to the Todo mode user manual to
1615 the documentation string.
1616 (todo-insert-item--basic): Rename from todo-basic-insert-item and
1617 adjust all callers. Change signature to combine diary and
1618 nonmarking arguments. Incorporate functionality of deleted item
1619 copying command and add error checking. Remove detailed
1620 descriptions of the arguments from the documentation string, since
1621 this is treated in the Todo mode user manual.
1622 (todo-copy-item, todo-edit-multiline-item)
1623 (todo-edit-done-item-comment, todo-edit-item-header)
1624 (todo-edit-item-time, todo-edit-item-date-from-calendar)
1625 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
1626 (todo-edit-item-date-year, todo-edit-item-date-month)
1627 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
1628 Remove.
1629 (todo-edit-item): Reimplement as wrapper command for
1630 todo-edit-item--next-key and make it distinguish done and not done
1631 todo items.
1632 (todo-edit-item--text): New function, replacing old command
1633 todo-edit-item and incorporating deleted commands
1634 todo-edit-multiline-item and todo-edit-done-item-comment.
1635 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
1636 Use only numeric value of prefix argument. Remove detailed
1637 descriptions of the arguments from the documentation string, since
1638 this is treated in the Todo mode user manual.
1639 (todo-edit-item--diary-inclusion): New function, replacing old
1640 command todo-edit-item-diary-inclusion and incorporating and fixing
1641 functionality of deleted command todo-edit-item-diary-nonmarking,
1642 making sure to remove todo-nondiary-marker when adding
1643 diary-nonmarking-symbol.
1644 (todo-edit-category-diary-inclusion): Make sure to delete
1645 diary-nonmarking-symbol when adding todo-nondiary-marker.
1646 (todo-edit-category-diary-nonmarking): Fix indentation.
1647 (todo-insert-item--parameters): Group diary and nonmarking
1648 parameters together.
1649 (todo-insert-item--apply-args): Adjust to signature of
1650 todo-insert-item--basic and incorporate copy parameter.
1651 Make small code improvements.
1652 (todo-insert-item--next-param): Improve prompt and adjust it to
1653 new parameter grouping. Remove obsolete code.
1654 (todo-edit-item--param-key-alist)
1655 (todo-edit-item--date-param-key-alist)
1656 (todo-edit-done-item--param-key-alist): New defconsts.
1657 (todo-edit-item--prompt): New variable.
1658 (todo-edit-item--next-key): New function.
1659 (todo-key-bindings-t): Bind "e" to todo-edit-item.
1660 Remove bindings of deleted commands.
1661
1662 2014-05-04 Leo Liu <sdl.web@gmail.com>
1663
1664 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
1665
1666 2014-05-04 Glenn Morris <rgm@gnu.org>
1667
1668 * allout-widgets.el (allout-widgets-tally)
1669 (allout-decorate-item-guides):
1670 * menu-bar.el (menu-bar-positive-p):
1671 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
1672 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
1673 * progmodes/js.el (js--inside-param-list-p)
1674 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
1675 * progmodes/prolog.el (region-exists-p):
1676 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
1677 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
1678 Doc fixes (replace `iff').
1679
1680 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1681
1682 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
1683
1684 2014-05-04 Leo Liu <sdl.web@gmail.com>
1685
1686 Support Chinese diary entries in calendar and diary. (Bug#17393)
1687 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
1688 (calendar-chinese-from-absolute-for-diary)
1689 (calendar-chinese-to-absolute-for-diary)
1690 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
1691 (diary-chinese-list-entries): New functions to list and mark
1692 Chinese diary entries in the calendar window.
1693 (diary-chinese-anniversary)
1694 (diary-chinese-insert-anniversary-entry)
1695 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
1696 (diary-chinese-insert-yearly-entry): New commands to insert
1697 Chinese diary entries.
1698
1699 * calendar/diary-lib.el (diary-font-lock-keywords):
1700 Support font-locking Chinese dates.
1701
1702 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
1703 inserting Chinese diary entries.
1704
1705 * calendar/calendar.el (diary-chinese-entry-symbol):
1706 New customizable variable.
1707 (calendar-mode-map): Add bindings for inserting Chinese diary
1708 entries.
1709
1710 2014-05-03 Juri Linkov <juri@jurta.org>
1711
1712 * dired.el (dired-check-switches, dired-switches-recursive-p):
1713 New functions. (Bug#17218)
1714 (dired-switches-escape-p, dired-move-to-end-of-filename):
1715 Use `dired-check-switches'.
1716 (dired-insert-old-subdirs, dired-build-subdir-alist)
1717 (dired-sort-R-check): Use `dired-switches-recursive-p'.
1718
1719 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
1720
1721 * simple.el (undo-make-selective-list): New algorithm fixes
1722 incorrectness of position adjustments when undoing in region.
1723 (Bug#17235)
1724 (undo-elt-crosses-region): Make obsolete.
1725 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
1726 New functions to adjust positions using undo-deltas.
1727
1728 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1729
1730 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
1731 the last consecutive closing paren (bug#17345).
1732
1733 2014-04-30 Reuben Thomas <rrt@sc3d.org>
1734
1735 * dired.el (dired-mode): make terminology for eXpunge command
1736 consistent. (Bug#17276)
1737
1738 2014-04-30 Eli Zaretskii <eliz@gnu.org>
1739
1740 * dired.el (dired-initial-position-hook, dired-initial-position):
1741 Doc string fixes.
1742
1743 2014-04-30 Glenn Morris <rgm@gnu.org>
1744
1745 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
1746
1747 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
1748
1749 * faces.el (face-spec-recalc): Apply X resources only after the
1750 defface spec has been applied. Thus, X resources are no longer
1751 overriden by the defface spec which also fixes issues on win32 where
1752 the toolbar coloring was wrong because it is set through X resources
1753 and was (wrongfully) overriden. (Bug#16694)
1754
1755 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * textmodes/rst.el (electric-pair-pairs): Declare.
1758 (rst-mode): Set it (bug#17131).
1759
1760 2014-04-30 Juri Linkov <juri@jurta.org>
1761
1762 * desktop.el (desktop-value-to-string): Let-bind `print-length'
1763 and `print-level' to nil. (Bug#17351)
1764
1765 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1766
1767 * battery.el (battery-update): Handle the case where battery
1768 status is "N/A" (bug#17319).
1769
1770 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1771
1772 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
1773 to syntax-propertize.
1774 (ps-mode-auto-indent): Mark as obsolete.
1775 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
1776 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
1777 word regexp operators.
1778 (ps-mode-map): Move initialization into declaration. Remove binding
1779 for TAB, RET, >, ], and }.
1780 (ps-mode-syntax-table): Move initialization into declaration.
1781 Don't give word syntax to non-word chars.
1782 (ps-run-mode-map): Move initialization into declaration.
1783 (ps-mode-menu-main): Remove auto-indent entry.
1784 (ps-mode-smie-rules): New function.
1785 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
1786 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
1787 (ps-mode--string-syntax-table): New const.
1788 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
1789 New functions.
1790 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
1791 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
1792
1793 2014-04-27 Daniel Colascione <dancol@dancol.org>
1794
1795 * term/xterm.el (xterm-paste): Use large finite timeout when
1796 reading event to avoid putting keys in this-command-keys.
1797
1798 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1799
1800 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
1801 (perl-syntax-propertize-function): Use it. Extend handling of
1802 here-docs to the unquoted case.
1803
1804 2014-04-25 Eli Zaretskii <eliz@gnu.org>
1805
1806 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
1807 Use equal-including-properties to compare help-echo strings (bug#17331).
1808
1809 2014-04-25 Leo Liu <sdl.web@gmail.com>
1810
1811 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1812 Fix syntax for @. (Bug#17325)
1813
1814 2014-04-25 Daniel Colascione <dancol@dancol.org>
1815
1816 * emacs-lisp/cl.el (gv): Require gv early to break eager
1817 macro-expansion cycles.
1818
1819 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1820
1821 * simple.el (region-active-p): Check there's a mark (bug#17324).
1822
1823 * simple.el (completion-list-mode-map): Use choose-completion for the
1824 mouse binding as well (bug#17302).
1825 (completion-list-mode, completion-setup-function): Adjust docstring and
1826 echo area message accordingly.
1827 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
1828 calling convention of choose-completion.
1829 * comint.el (comint-dynamic-list-completions):
1830 * term.el (term-dynamic-list-completions): Accept choose-completion.
1831
1832 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
1833 &, |, +, - and * can't be a division (bug#17317).
1834
1835 * term/xterm.el (xterm--version-handler): Don't use modern xterm
1836 features on gnome-terminal (bug#16988).
1837
1838 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
1839
1840 Improve Scheme font-locking for (define ((foo ...) ...) ...).
1841
1842 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
1843 the declared object, ignore zero or more parens, not zero or one.
1844
1845 2014-04-24 Leo Liu <sdl.web@gmail.com>
1846
1847 * progmodes/xscheme.el (xscheme-expressions-ring)
1848 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
1849 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
1850 (xscheme-allow-output-p, xscheme-prompt)
1851 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1852
1853 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1854 Comment out unused functions.
1855
1856 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1857
1858 * info.el: Use lexical-binding and cl-lib.
1859 Use defvar-local and setq-local instead of make-local-variable.
1860 (Info-apropos-matches): Avoid add-to-list.
1861 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1862
1863 2014-04-24 Daniel Colascione <dancol@dancol.org>
1864
1865 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1866
1867 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1868
1869 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1870
1871 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1872
1873 * dired.el (dired-insert-set-properties): Do not consider
1874 subdirectory headings and empty lines to be information that
1875 `dired-hide-details-mode' should hide. (Bug#17228)
1876
1877 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1878
1879 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1880 Remove test messages.
1881 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1882 and `target' twice.
1883
1884 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1885
1886 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1887 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1888
1889 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1890
1891 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1892
1893 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1894 Set "IFS=" when using read builtin, in order to preserve spaces in
1895 the file name. Add test messages for hunting a bug on hydra.
1896 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1897
1898 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1899
1900 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1901 Don't prettify a word within a symbol.
1902
1903 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1904
1905 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1906 possible.
1907
1908 2014-04-22 Daniel Colascione <dancol@dancol.org>
1909
1910 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1911 use defun to define `function-put'.
1912
1913 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1914
1915 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1916 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1917 (lisp-mode-variables): Set font-lock-extra-managed-props.
1918
1919 * emacs-lisp/byte-run.el (function-put): New function.
1920 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1921 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1922 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1923 Use them.
1924
1925 2014-04-22 Daniel Colascione <dancol@dancol.org>
1926
1927 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1928 Add `full-p' parameter; when nil, call `macroexpand' instead of
1929 `macroexpand-all'.
1930
1931 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1932 Improve docstrings.
1933
1934 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1935 Use lambda function values, not quoted lambdas.
1936 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1937
1938 * emacs-lisp/cl-macs.el
1939 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1940 (cl-struct-slot-value): Conditionally use aref or nth so that the
1941 compiler produces optimal code.
1942
1943 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1944
1945 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1946 (inline): Don't inline cl--set-elt.
1947 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1948 Define as inlinable instead.
1949 (cl-struct-set-slot-value): Remove.
1950
1951 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1952 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1953 Use setf instead.
1954
1955 2014-04-21 Daniel Colascione <dancol@dancol.org>
1956
1957 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1958 last two parameters after all.
1959 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1960 (cl--compiler-macro-assoc,cl-struct-slot-value)
1961 (cl-struct-set-slot-value): Stop using them.
1962
1963 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1964
1965 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
1966 entry in image-mode-winprops-alist.
1967
1968 2014-04-21 Daniel Colascione <dancol@dancol.org>
1969
1970 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
1971 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
1972 (byte-compile-toplevel-file-form): Use it.
1973
1974 * emacs-lisp/cl-macs.el:
1975 (cl--loop-let): Properly destructure `while' clauses.
1976
1977 2014-04-20 Daniel Colascione <dancol@dancol.org>
1978
1979 * vc/vc.el (vc-root-dir): New public autoloaded function for
1980 generically finding the current VC root.
1981 * vc/vc-hooks.el (vc-not-supported): New error.
1982 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
1983
1984 2014-04-20 Daniel Colascione <dancol@dancol.org>
1985
1986 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
1987 argument.
1988 (cl--const-expr-val): cl--const-expr-val should macroexpand its
1989 argument in case we're inside a symbol-macrolet.
1990 (cl--do-arglist, cl--compiler-macro-typep)
1991 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
1992 environment to `cl--const-expr-val'.
1993 (cl-struct-sequence-type,cl-struct-slot-info)
1994 (cl-struct-slot-offset, cl-struct-slot-value)
1995 (cl-struct-set-slot-value): New functions.
1996
1997 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1998
1999 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
2000 assignments such as "case=hello" (bug#17297).
2001
2002 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
2003
2004 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
2005 Do not autoload.
2006 (tramp-file-name-handler, tramp-completion-file-name-handler):
2007 Revert patch from 2014-04-10, it isn't necessary anymore.
2008 (tramp-autoload-file-name-handler)
2009 (tramp-register-autoload-file-name-handlers): New defuns.
2010 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
2011 (tramp-register-file-name-handlers): Remove also
2012 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
2013 Do not autoload its invocation, but eval it after loading of 'tramp.
2014
2015 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
2016
2017 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
2018
2019 2014-04-17 Daniel Colascione <dancol@dancol.org>
2020
2021 Add support for bracketed paste mode; add infrastructure for
2022 managing terminal mode enabling and disabling automatically.
2023
2024 * xt-mouse.el:
2025 (xterm-mouse-mode): Simplify.
2026 (xterm-mouse-tracking-enable-sequence)
2027 (xterm-mouse-tracking-disable-sequence): New constants.
2028 (turn-on-xterm-mouse-tracking-on-terminal)
2029 (turn-off-xterm-mouse-tracking-on-terminal):
2030 Use tty-mode-set-strings and tty-mode-reset-strings terminal
2031 parameters instead of random hooks.
2032 (turn-on-xterm-mouse-tracking)
2033 (turn-off-xterm-mouse-tracking): Delete.
2034
2035 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
2036 (xterm-paste-ending-sequence): New constant.
2037 (xterm-paste): New command used for bracketed paste support.
2038
2039 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
2040 (terminal-init-xterm-bracketed-paste-mode): New function.
2041 (terminal-init-xterm): Call it.
2042 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
2043 and tty-mode-reset-strings instead of random hooks.
2044 (xterm-turn-on-modify-other-keys)
2045 (xterm-turn-off-modify-other-keys)
2046 (xterm-remove-modify-other-keys): Delete obsolete functions.
2047
2048 * term/screen.el: Rewrite to just use the xterm code.
2049 Add copyright notice. Mention tmux.
2050
2051 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
2052
2053 * image-mode.el (image-mode-window-put): Also update the property of
2054 the "default window".
2055 * doc-view.el (doc-view-new-window-function): If no window
2056 exists, move to the last known page.
2057
2058 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2059
2060 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
2061 here-documents (bug#17262).
2062
2063 2014-04-16 Eli Zaretskii <eliz@gnu.org>
2064
2065 * term/pc-win.el (x-list-fonts, x-get-selection-value):
2066 Provide doc strings, as required by snarf-documentation.
2067
2068 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2069
2070 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
2071 arg of overlays-at. Use `invisible-p'.
2072
2073 * obsolete/lucid.el (extent-at):
2074 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
2075 overlays-at.
2076 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
2077
2078 2014-04-16 João Távora <joaotavora@gmail.com>
2079
2080 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
2081 links. (Bug#17217).
2082
2083 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2084
2085 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
2086 Use mapc to loop over a vector. (Bug#17257).
2087
2088 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
2089
2090 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
2091 patch, there are new problems with file names containing spaces.
2092 Get rid of backticks. (Bug#17238)
2093
2094 2014-04-16 João Távora <joaotavora@gmail.com>
2095
2096 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
2097 possible bug.
2098
2099 2014-04-16 Eli Zaretskii <eliz@gnu.org>
2100
2101 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
2102 (blink-cursor-mode): Mention customization variables and the
2103 effect of 'blink-cursor-blinks'.
2104
2105 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
2106
2107 * simple.el (undo): Prevent insertion of identity mapping into
2108 undo-equiv-table so as undo-only does not inf loop in the presence
2109 of consecutive nils in undo list.
2110
2111 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
2112
2113 * faces.el (make-face): Deprecate optional argument as it is no
2114 longer needed/used since the conditional X resources handling
2115 has been pushed down to make-face-x-resource-internal itself.
2116 (make-empty-face): Don't pass optional argument to make-face.
2117
2118 2014-04-16 Karl Fogel <kfogel@red-bean.com>
2119
2120 * savehist.el (savehist-save): Remove workaround for a read-passwd
2121 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
2122 noticing that the shim was still present.
2123
2124 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2125
2126 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
2127
2128 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
2129
2130 * faces.el (face-set-after-frame-default): Remove unused local variable.
2131
2132 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2133
2134 * progmodes/grep.el: Use lexical-binding.
2135 (grep-expand-template): Pass explicit lexical env to `eval'.
2136 (zrgrep): Let-bind grep-find-template explicitly.
2137
2138 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
2139 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
2140
2141 2014-04-12 Eli Zaretskii <eliz@gnu.org>
2142
2143 * international/characters.el <standard-case-table>: Add entries
2144 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
2145 Set category of Coptic characters be 'g' (Greek).
2146
2147 2014-04-12 Leo Liu <sdl.web@gmail.com>
2148
2149 * progmodes/octave.el (completion-table-with-cache):
2150 Define if not available.
2151 (octave-goto-function-definition, octave-sync-function-file-names)
2152 (octave-find-definition-default-filename):
2153 Backquote upattern for compatibility.
2154
2155 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
2156
2157 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
2158 name twice due to backticks. (Bug#17238)
2159
2160 2014-04-12 Glenn Morris <rgm@gnu.org>
2161
2162 * term/w32-win.el (x-win-suspend-error):
2163 * term/x-win.el (x-win-suspend-error): Sync docs.
2164
2165 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
2166
2167 * faces.el (make-face): Remove deprecated optional argument.
2168 The conditional application of X resources is handled directly by
2169 make-face-x-resource-internal since Emacs 24.4.
2170 (make-empty-face): Don't pass optional argument to make-face.
2171
2172 2014-04-11 Glenn Morris <rgm@gnu.org>
2173
2174 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
2175
2176 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2177
2178 Ediff's overlay priorities cause more trouble than they solve.
2179 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
2180 (ediff-highest-priority): Remove function (bug#17234).
2181 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
2182 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
2183 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
2184 overlay priorities.
2185
2186 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
2187
2188 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
2189 entry; use symbol boundaries to avoid mis-matches.
2190
2191 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
2192
2193 * net/tramp.el (tramp-file-name-handler)
2194 (tramp-completion-file-name-handler): Avoid recursive loading.
2195
2196 * net/tramp-sh.el (tramp-make-copy-program-file-name):
2197 Quote result also locally.
2198
2199 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
2202 Remove left-over code.
2203
2204 * newcomment.el (comment-indent-new-line): Sink code where it's used.
2205 Reuse the previous comment's indentation unconditionally if it's on its
2206 own line.
2207
2208 2014-04-09 Daniel Colascione <dancol@dancol.org>
2209
2210 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
2211 `no-syntax-crossing' arguments. Forward to `up-list'.
2212 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
2213 Implement logic for escaping from strings. Use narrowing to deal
2214 with corner cases.
2215
2216 2014-04-09 Leo Liu <sdl.web@gmail.com>
2217
2218 * net/rcirc.el (rcirc-connection-info): New variable.
2219 (rcirc-connect): Use it to store connection info.
2220 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
2221 for killed process.
2222 (rcirc-cmd-reconnect): New command. (Bug#17045)
2223 (rcirc-mode, set-rcirc-encode-coding-system)
2224 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
2225
2226 2014-04-09 Daniel Colascione <dancol@dancol.org>
2227
2228 * emacs-lisp/cl-indent.el: Add comment claiming
2229 facility is also good for elisp.
2230 (lisp-indent-find-method): New function.
2231 (common-lisp-indent-function): Recognize cl-loop.
2232 (common-lisp-indent-function-1): Recognize cl constructs; use
2233 `lisp-indent-find-method' instead of `get' directly.
2234 (if): Use else-body style for elisp.
2235
2236 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
2237
2238 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
2239 Module methods. (Bug#17216)
2240
2241 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2242
2243 * help.el (describe-bindings): Fix buffer handling (bug#17210).
2244 (describe-bindings-internal): Mark obsolete.
2245
2246 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2247
2248 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
2249 buffer-file-name, and buffer-file-truename any more.
2250
2251 2014-04-08 Leo Liu <sdl.web@gmail.com>
2252
2253 Use lexical-binding and require cl-lib.
2254 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
2255 (rcirc-handler-generic, rcirc-fill-paragraph)
2256 (rcirc-format-response-string, rcirc-target-buffer)
2257 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
2258 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
2259 (rcirc-ctcp-sender-PING, rcirc-browse-url)
2260 (rcirc-markup-timestamp, rcirc-markup-attributes)
2261 (rcirc-markup-my-nick, rcirc-markup-urls)
2262 (rcirc-markup-bright-nicks, rcirc-markup-fill)
2263 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
2264 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
2265 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
2266 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
2267 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
2268 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
2269 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
2270 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
2271 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
2272 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
2273 use cl-lib.
2274
2275 2014-04-07 João Távora <joaotavora@gmail.com>
2276
2277 * elec-pair.el (electric-pair--syntax-ppss):
2278 When inside comments parse from comment beginning.
2279 (electric-pair--balance-info): Fix typo in comment.
2280 (electric-pair--in-unterminated-string-p): Delete.
2281 (electric-pair--unbalanced-strings-p): New function.
2282 (electric-pair-string-bound-function): New var.
2283 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2284 according to `electric-pair--in-unterminated-string-p'
2285
2286 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2287 Inhibit quote pairing if point-max is inside an unterminated string.
2288 (electric-pair--looking-at-unterminated-string-p): Delete.
2289 (electric-pair--in-unterminated-string-p): New function.
2290
2291 2014-04-07 Glenn Morris <rgm@gnu.org>
2292
2293 * shell.el (shell-directory-tracker):
2294 Go back to just ignoring failures. (Bug#17159)
2295
2296 2014-04-07 João Távora <joaotavora@gmail.com>
2297
2298 Fix `electric-pair-delete-adjacent-pairs' in modes binding
2299 backspace. (bug#16981)
2300 * elec-pair.el (electric-pair-backward-delete-char): Delete.
2301 (electric-pair-backward-delete-char-untabify): Delete.
2302 (electric-pair-mode-map): Bind backspace to a menu item filtering
2303 a new `electric-pair-delete-pair' command.
2304 (electric-pair-delete-pair): New command.
2305
2306 * progmodes/python.el (python-electric-pair-string-delimiter):
2307 Fix triple-quoting electricity. (Bug#17192)
2308
2309 * elec-pair.el (electric-pair-post-self-insert-function):
2310 Don't skip whitespace when `electric-pair-text-pairs' and
2311 `electric-pair-pairs' were used. syntax to
2312 electric-pair--skip-whitespace. (Bug#17183)
2313
2314 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2315
2316 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
2317 "<F>". (Bug#17199)
2318
2319 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2320
2321 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
2322 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
2323
2324 2014-04-07 Glenn Morris <rgm@gnu.org>
2325
2326 * help.el (view-lossage): Doc tweak.
2327
2328 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
2329
2330 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
2331 only when inhibit-x-resources is nil, and do that earlier in the
2332 function. Doc fix. (Bug#16694)
2333 (face-spec-choose): Accept additional optional argument, whose
2334 value is returned if no matching attributes are found.
2335 (face-spec-recalc): Use the new optional argument when calling
2336 face-spec-choose. (Bug#16378)
2337 (make-face-x-resource-internal): Do nothing when
2338 inhibit-x-resources is non-nil. Don't touch the default face if
2339 reversed video is given--as was done in previous versions of Emacs.
2340 (face-set-after-frame-default): Don't call
2341 make-face-x-resource-internal here. (Bug#16434)
2342
2343 2014-04-07 Tassilo Horn <tsdh@gnu.org>
2344
2345 * doc-view.el (doc-view-bookmark-jump):
2346 Use `bookmark-after-jump-hook' to jump to the right page after the
2347 buffer is shown in a window. (bug#16090)
2348
2349 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2350
2351 * international/characters.el (mirroring): Fix last change:
2352 instead of loading uni-mirrored.el explicitly, do that implicitly
2353 by creating the 'mirroring' uniprop table. This avoids announcing
2354 the loading of uni-mirrored.el.
2355
2356 2014-04-07 Glenn Morris <rgm@gnu.org>
2357
2358 * files.el (buffer-stale--default-function)
2359 (buffer-stale-function, revert-buffer--default):
2360 * autorevert.el (auto-revert-buffers): Doc tweaks.
2361
2362 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2363
2364 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
2365
2366 2014-04-07 Glenn Morris <rgm@gnu.org>
2367
2368 * files.el (make-backup-file-name-function)
2369 (make-backup-file-name, make-backup-file-name--default-function)
2370 (make-backup-file-name-1, find-backup-file-name)
2371 (revert-buffer-function, revert-buffer-insert-file-contents-function)
2372 (buffer-stale--default-function, buffer-stale-function)
2373 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
2374 (revert-buffer, revert-buffer--default)
2375 (revert-buffer-insert-file-contents--default-function):
2376 Doc fixes related to defaults no longer being nil.
2377 (make-backup-file-name-function): Bump :version.
2378 Restore nil as a valid but deprecated custom type.
2379
2380 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2381
2382 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2383 Handle $' used as a variable (bug#17174).
2384
2385 * progmodes/perl-mode.el (perl-indent-new-calculate):
2386 Handle forward-sexp failure (bug#16985).
2387 (perl-syntax-propertize-function): Add "foreach" and "for" statement
2388 modifiers introducing expressions (bug#17116).
2389
2390 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
2391
2392 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
2393
2394 2014-04-05 Leo Liu <sdl.web@gmail.com>
2395
2396 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2397 Add define-compilation-mode.
2398
2399 2014-04-04 João Távora <joaotavora@gmail.com>
2400
2401 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
2402 parse from comment beginning.
2403 (electric-pair--balance-info): Fix typo in comment.
2404 (electric-pair--in-unterminated-string-p): Delete.
2405 (electric-pair--unbalanced-strings-p): New function.
2406 (electric-pair-string-bound-function): New var.
2407 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2408 according to `electric-pair--in-unterminated-string-p'.
2409
2410 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2411
2412 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
2413 Move declaration before first use.
2414 (reftex-move-to-next-arg): Silence compiler warning.
2415
2416 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
2417
2418 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
2419 Use `window-total-width' instead of `window-width'.
2420
2421 2014-04-03 Daniel Colascione <dancol@dancol.org>
2422
2423 * subr.el (set-transient-map): Remove rms's workaround entirely;
2424 use new `suspicious-object' subr to mark our lambda for closer
2425 scrutiny during gc.
2426
2427 2014-04-02 Richard Stallman <rms@gnu.org>
2428
2429 * subr.el (set-transient-map): Comment out previous change.
2430
2431 2014-04-02 Glenn Morris <rgm@gnu.org>
2432
2433 * menu-bar.el (menu-bar-file-menu):
2434 * vc/ediff.el (ediff-current-file):
2435 Update for revert-buffer-function no longer being nil by default.
2436
2437 * simple.el (command-execute): Respect nil disabled-command-function.
2438
2439 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2440
2441 * simple.el (command-execute): Do not execute the command when it
2442 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
2443
2444 2014-04-02 Juri Linkov <juri@jurta.org>
2445
2446 * dired-aux.el (dired-compress-file): Don't use string-match-p
2447 because its match data is used afterwards.
2448
2449 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
2450
2451 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
2452 0 like nil.
2453
2454 2014-04-02 João Távora <joaotavora@gmail.com>
2455
2456 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2457 Inhibit quote pairing if point-max is inside an unterminated string.
2458 (electric-pair--looking-at-unterminated-string-p):
2459 Delete.
2460 (electric-pair--in-unterminated-string-p): New function.
2461
2462 2014-04-01 Daniel Colascione <dancol@dancol.org>
2463
2464 * minibuffer.el (minibuffer-complete): Prevent assertion failure
2465 when trying to complete the prompt.
2466
2467 2014-03-31 Leo Liu <sdl.web@gmail.com>
2468
2469 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2470 Refactor out eldoc-documentation-function-default.
2471 (eldoc-documentation-function-default): New function.
2472 (eldoc-documentation-function): Change value.
2473
2474 2014-03-31 Glenn Morris <rgm@gnu.org>
2475
2476 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
2477
2478 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
2479 (vhdl-compose-components-package, vhdl-compose-configuration):
2480 Abbreviate default-directory (missing from some previous upstream sync).
2481
2482 2014-03-31 Reto Zimmermann <reto@gnu.org>
2483
2484 Sync with upstream vhdl mode v3.35.2.
2485 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2486 (top-level): No longer require assoc.
2487 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
2488 New functions. Use throughout to replace aget etc.
2489 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
2490 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
2491 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
2492 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
2493 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
2494 except `vhdl-compiler'.
2495 (vhdl-error-regexp-add-emacs): Remove all other compilers,
2496 when appropriate.
2497
2498 2014-03-31 Glenn Morris <rgm@gnu.org>
2499
2500 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
2501 Revert 2014-03-26 merge goof; go back to using defalias.
2502
2503 2014-03-30 Daniel Colascione <dancol@dancol.org>
2504
2505 * comint.el (comint-send-input):
2506 Deactivate completion-in-region-mode before we send comint input.
2507 (Bug#17139).
2508
2509 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
2510 on keyboard-quit.
2511
2512 2014-03-29 Glenn Morris <rgm@gnu.org>
2513
2514 * textmodes/reftex.el: Manage most autoloads automatically.
2515 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
2516 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
2517 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
2518 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
2519 * textmodes/reftex-toc.el: Set generated-autoload-file,
2520 and add autoload cookies for reftex.el.
2521 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
2522
2523 2014-03-28 Glenn Morris <rgm@gnu.org>
2524
2525 * cus-start.el (report-emacs-bug-address): Set custom properties.
2526 * mail/emacsbug.el (report-emacs-bug-address):
2527 Variable is now defined in emacs.c.
2528
2529 * mail/emacsbug.el (report-emacs-bug):
2530 Include system-configuration-features.
2531
2532 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
2533
2534 * simple.el (cycle-spacing): Never delete spaces on first run by
2535 default, but do so in a new 'fast mode and if there are already
2536 N spaces (the previous behavior).
2537 Compare N with its value in previous invocation so that changing
2538 prefix argument restarts `cycle-spacing' sequence.
2539 The idea is that with this change, binding M-SPC to
2540 `cycle-spacing' should not introduce any changes in behavior of
2541 the binding so long as users do not type M-SPC twice in a raw with
2542 the same prefix argument or lack thereof.
2543
2544 2014-03-28 Glenn Morris <rgm@gnu.org>
2545
2546 * faces.el (term-file-aliases): New variable.
2547 (tty-run-terminal-initialization): Respect term-file-aliases.
2548 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
2549 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
2550 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
2551
2552 2014-03-27 Glenn Morris <rgm@gnu.org>
2553
2554 * startup.el (inhibit-startup-hooks): Doc tweak.
2555 (normal-top-level): Simplify running of hooks.
2556 For window-setup-hook, respect inhibit-startup-hooks.
2557 (command-line-1): Don't set window-setup-hook to nil.
2558
2559 Allow selective autoloading from obsolete/ directory.
2560 * Makefile.in (obsolete-autoloads): New rule.
2561 (autoloads): Run obsolete-autoloads.
2562 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
2563 * simple.el (iswitchb-mode): Remove hand-written autoloads.
2564
2565 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
2566
2567 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2568 Highlight special globals with font-lock-builtin-face. (Bug#17057)
2569
2570 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2571 Don't propertize `?' or `!' as symbol constituent when after
2572 colon. (Bug#17097)
2573
2574 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
2575
2576 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
2577 which is no longer needed and causes trouble in GTK builds (bug#17046).
2578
2579 * emacs-lisp/package-x.el (package--archive-contents-from-url):
2580 Use url-insert-file-contents; package-handle-response no longer exists.
2581
2582 2014-03-26 Daniel Colascione <dancol@dancol.org>
2583
2584 * simple.el (process-menu-mode-map): New variable.
2585 (process-menu-delete-process): New command.
2586
2587 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2588
2589 * emacs-lisp/package.el: Fix bug#16733 (again).
2590 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
2591 (url-http-target-url): Remove unused declarations.
2592 (package-handle-response): Remove.
2593 (package--with-work-buffer): Use url-insert-file-contents and simplify.
2594 (package--download-one-archive): Use current-buffer instead of
2595 dynamic binding of `buffer'.
2596 (describe-package-1): Do not decode readme-string.
2597
2598 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
2599
2600 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
2601
2602 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
2603 from 2014-03-07, it decreases performance unnecessarily. Let-bind
2604 `remote-file-name-inhibit-cache' to nil in the second pass.
2605 (tramp-find-executable): Do not call "which" on SunOS.
2606 (tramp-send-command-and-check): Fix docstring.
2607 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
2608 check whether source directory has set the sticky bit.
2609
2610 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
2611
2612 * simple.el (primitive-undo): Only process marker adjustments
2613 validated against their corresponding (TEXT . POS). Issue warning
2614 for lone marker adjustments in undo history. (Bug#16818)
2615 (undo-make-selective-list): Add marker adjustments to selective
2616 undo list based on whether their corresponding (TEXT . POS) is in
2617 the region. Remove variable adjusted-markers, which was unused
2618 and only non nil during undo-make-selective-list.
2619 (undo-elt-in-region): Return nil when passed a marker adjustment
2620 and explain in function doc.
2621
2622 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2623
2624 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
2625
2626 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2627
2628 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
2629 Match special global variables without curlies, too.
2630 (ruby-font-lock-keywords): Simplify the matcher for special global
2631 variables. Don't require a non-word character after the variable.
2632 (Bug#17057)
2633
2634 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2635
2636 * simple.el (redisplay-highlight-region-function): Increase priority of
2637 overlay to make sure boundaries are visible (bug#15899).
2638
2639 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2640
2641 * frameset.el (frameset--initial-params): Fix typo in parameter name.
2642 (frameset-restore): Compare display strings with equal.
2643
2644 * frame.el (make-frame): Don't quote display name in error message,
2645 it is already a string.
2646
2647 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2648
2649 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
2650 the password.
2651
2652 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2653
2654 * emacs-lisp/package.el (package--add-to-archive-contents):
2655 Include already installed and built-in packages in
2656 `package-archive-contents'.
2657 (package-install): Don't include already installed packages in the
2658 options during interactive invocation. (Bug#16762)
2659 (package-show-package-list): If the buffer is already displayed in
2660 another window, switch to that window.
2661
2662 2014-03-26 Reto Zimmermann <reto@gnu.org>
2663
2664 Sync with upstream vhdl mode v3.35.1.
2665 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2666 (vhdl-compiler-alist): Doc fix.
2667 (vhdl-goto-line): Remove.
2668 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
2669 (vhdl-mode) <paragraph-start>: Fix value.
2670 (vhdl-fix-statement-region): Not `for' in wait-statement.
2671 (vhdl-beautify-region): Also (un)tabify.
2672 (vhdl-get-visible-signals):
2673 Scan declarative part of generate statements.
2674 (vhdl-template-record): Fix indentation for record type declaration.
2675 (vhdl-expand-abbrev, vhdl-expand-paren):
2676 Revert to using fset again rather than defalias.
2677 (vhdl-scan-directory-contents): Tweak.
2678 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
2679 (vhdl-compose-components-package):
2680 Replace vhdl-goto-line with forward-line.
2681 (top-level): Tweak speedbar frame selection.
2682 (vhdl-generate-makefile-1): Support for compilers with no
2683 unit-to-file name mapping (create directory with dummy files).
2684
2685 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
2686
2687 Sync with upstream verilog-mode revision 702457d.
2688 * progmodes/verilog-mode.el (verilog-mode-version): Update.
2689 (create-lockfiles): Declare.
2690 (verilog-read-decls): Fix module header imports, bug709.
2691 Reported by Victor Lau.
2692 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
2693 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
2694 interface-only modules, bug721. Reported by Dean Hoyt.
2695
2696 2014-03-26 Glenn Morris <rgm@gnu.org>
2697
2698 * obsolete/gulp.el: Move here from emacs-lisp/.
2699
2700 * files.el (lock-buffer, unlock-buffer, file-locked-p):
2701 Remove fallback aliases, since they are always defined now.
2702
2703 2014-03-24 Daniel Colascione <dancol@dancol.org>
2704
2705 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
2706 instead of cl-loop search function.
2707
2708 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2709
2710 * calendar/parse-time.el (parse-time-iso8601-regexp)
2711 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
2712 it more generally.
2713
2714 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2715
2716 * net/dns.el (network-interface-list): Define for XEmacs.
2717
2718 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
2719
2720 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
2721 the network interfaces changed.
2722 (dns-query): Use it to flush the data.
2723
2724 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
2725
2726 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
2727
2728 2014-03-23 Daniel Colascione <dancol@dancol.org>
2729
2730 Change subword-mode to use `find-word-boundary-function-table' and
2731 replace `capitalized-words-mode'. Also, convert to lexical
2732 binding.
2733
2734 * progmodes/cap-words.el: Delete now-obsolete file.
2735 * progmodes/subword.el: Reimplement using
2736 `find-word-boundary-function-table'.
2737 (subword-mode-map): Hollow out.
2738 (capitalized-words-mode): Define as obsolete alias for
2739 `subword-mode'.
2740 (subword-mode, superword-mode): Tweak documentation to reflect new
2741 implementation; call `subword-setup-buffer'.
2742 (subword-forward, subword-capitalize): Add underscore to indicate
2743 unused variable.
2744 (subword-find-word-boundary-function-table): New constant.
2745 (subword-empty-char-table): New constant.
2746 (subword-setup-buffer): New function.
2747 (subword-find-word-boundary): New function.
2748
2749 2014-03-23 Daniel Colascione <dancol@dancol.org>
2750
2751 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
2752 list to look for keyword arguments instead of `memq', fixing
2753 (Bug#3647) --- unfortunately, only for freshly-compiled code.
2754 Please make bootstrap.
2755
2756 2014-03-22 Glenn Morris <rgm@gnu.org>
2757
2758 * dired.el (dired-read-regexp): Make obsolete.
2759 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
2760 (dired-flag-files-regexp):
2761 * dired-aux.el (dired-mark-read-regexp):
2762 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
2763
2764 * startup.el (fancy-startup-text):
2765 * help.el (describe-gnu-project): Visit online info about GNU project.
2766
2767 * help-fns.el (help-fns--interactive-only): New function.
2768 (help-fns-describe-function-functions): Add the above function.
2769 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
2770 (next-line, previous-line): Remove hand-written interactive-only
2771 information from doc strings, it is auto-generated now.
2772 * bookmark.el (bookmark-write):
2773 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
2774 (epa-mail-import-keys): Mark interactive-only,
2775 and remove hand-written interactive-only information from doc strings.
2776 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
2777 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
2778 * files.el (not-modified):
2779 * simple.el (mark-whole-buffer): Mark interactive-only.
2780
2781 * emacs-lisp/byte-run.el (defun-declarations-alist):
2782 Add interactive-only. Doc tweak.
2783 (macro-declarations-alist): Doc tweak.
2784 * subr.el (declare): Doc tweak (add xref to manual).
2785 * comint.el (comint-run):
2786 * files.el (insert-file-literally, insert-file):
2787 * replace.el (replace-string, replace-regexp):
2788 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
2789 (delete-forward-char, goto-line, insert-buffer, next-line)
2790 (previous-line): Set interactive-only via declare.
2791
2792 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
2793
2794 * emacs-lisp/package.el (package-desc): Use the contents of the
2795 quoted form, not its cdr. (Bug#16873)
2796
2797 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
2798
2799 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
2800 benefit of doc.c; change parameter profile to match the X function.
2801
2802 2014-03-22 Leo Liu <sdl.web@gmail.com>
2803
2804 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
2805 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
2806
2807 2014-03-21 Richard Stallman <rms@gnu.org>
2808
2809 * battery.el (battery-linux-sysfs): Search for each field
2810 from the beginning of the buffer.
2811
2812 * subr.el (set-transient-map): Clear out function and value
2813 of the temporary symbol when we're done with it.
2814
2815 * mail/rmailsum.el (rmail-summary-delete-forward):
2816 Optimize case of reaching end and handling count.
2817 (rmail-summary-mark-deleted): Optimize when N is current msg.
2818 Don't create new summary line.
2819 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
2820 (rmail-summary-undelete-many): Rewrite for speed.
2821 (rmail-summary-msg-number): New function.
2822
2823 * mail/rmail.el (rmail-delete-message): Update summary.
2824 (rmail-undelete-previous-message): Handle repeat count arg.
2825 (rmail-delete-backward, rmail-delete-forward): Likewise.
2826
2827 2014-03-21 Daniel Colascione <dancol@dancol.org>
2828
2829 * mail/emacsbug.el (report-emacs-bug): Include memory usage
2830 information in bug reports.
2831
2832 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
2833
2834 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
2835 and `tramp-copy-env'.
2836
2837 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
2838 (tramp-maybe-open-connection): Handle `tramp-login-env'.
2839
2840 2014-03-21 Glenn Morris <rgm@gnu.org>
2841
2842 * electric.el (electric-indent-post-self-insert-function): Add doc.
2843
2844 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
2845
2846 * emacs-lisp/package.el (package-compute-transaction):
2847 Use `version-list-<=' to compare the requirement version against
2848 the version of package already to be installed. Update the error
2849 message. (Bug#16826)
2850
2851 * progmodes/ruby-mode.el (ruby-smie-rules):
2852 Add indentation rule for ` @ '. (Bug#17050)
2853
2854 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2855
2856 * align.el (align-regexp): Remove superfluous backslash.
2857
2858 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2859 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2860 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2861 Fix docstring typos.
2862 (ffap-next): Use C-u in docstring.
2863 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2864 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2865 Remove superfluous backslashes.
2866 (ffap-string-at-point): Reflow docstring.
2867
2868 * server.el (server-host): Reflow docstring.
2869 (server-unload-function): Fix docstring typo.
2870 (server-eval-at): Remove superfluous backslash.
2871
2872 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2873 (skeleton-insert): Doc fix.
2874 (skeleton-insert): Reflow docstring.
2875
2876 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2877 (tty-color-approximate, tty-color-by-index, tty-color-values)
2878 (tty-color-desc): Remove superfluous backslashes.
2879
2880 2014-03-21 Glenn Morris <rgm@gnu.org>
2881
2882 * cus-start.el (history-length): Bump :version.
2883
2884 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2885 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2886 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2887 Don't set `make-backup-files'.
2888
2889 * info.el (info--prettify-description): New function,
2890 to give info-finder descriptions consistent case, punctuation.
2891 (Info-finder-find-node): Use it. Sort packages.
2892 Refer to "description" rather than "commentary".
2893
2894 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2895
2896 * frameset.el (frameset--print-register): New function.
2897 (frameset-to-register): Use it.
2898
2899 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
2900
2901 * progmodes/hideif.el (hif-string-to-number): New function.
2902 (hif-tokenize): Use it to understand non-decimal floats.
2903
2904 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2905
2906 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2907
2908 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2909
2910 * electric.el (electric-newline-and-maybe-indent): New command.
2911 Bind it globally to C-j.
2912 (electric-indent-mode): Don't mess with the global map any more.
2913 Don't drop the post-self-insert-hook is some buffer is still using it
2914 (bug#16770).
2915
2916 * bindings.el (global-map): Remove C-j binding.
2917
2918 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2919 the docstring of functions advised before dumping (bug#16993).
2920
2921 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2922
2923 * ps-print.el (ps-generate-postscript-with-faces):
2924 Explicitly deactivate the mark (bug#16866).
2925 * simple.el (deactivate-mark): Update region highlight.
2926
2927 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
2928
2929 * emacs-lisp/package.el (describe-package-1):
2930 Decode commentary (bug#16733).
2931
2932 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
2933
2934 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2935 modification of the value argument of :set (bug#16755).
2936
2937 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2938
2939 * simple.el (newline-and-indent): Do autofill (bug#17031).
2940
2941 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2942
2943 * newcomment.el (comment-normalize-vars): Only add escaping check
2944 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2945 (comment-beginning): Use `narrow-to-region' instead of moving back
2946 one character.
2947 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2948 (comment-start-skip): Update the docstring.
2949
2950 2014-03-18 Richard Stallman <rms@gnu.org>
2951
2952 * dired.el (dired-display-file): Force use of other window.
2953
2954 2014-03-18 Daniel Colascione <dancol@dancol.org>
2955
2956 * startup.el (tty-handle-args): Remove debug message from 2007.
2957
2958 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2959
2960 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2961 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2962 (advice--make-1, advice-add, advice-remove):
2963 Remove braindead :advice-pending hack.
2964
2965 2014-03-17 Glenn Morris <rgm@gnu.org>
2966
2967 * calendar/calendar.el (calendar-generate-month): Apply weekend
2968 face to the right days; fixes 2013-08-06 change. (Bug#17028)
2969
2970 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
2971
2972 * net/tramp.el (tramp-action-out-of-band): Read pending output.
2973 (tramp-call-process): Trace also DESTINATION.
2974
2975 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2976 Quote file names when they are local. Remove superfluous trace.
2977
2978 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
2979
2980 * newcomment.el (comment-beginning): If `comment-start-skip'
2981 doesn't match, move back one char and try again. (Bug#16971)
2982
2983 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2984 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
2985 Set `comment-start-skip' to a simpler value that doesn't try to
2986 check if the semicolon is escaped (this is handled by
2987 `syntax-ppss' now). (Bug#16971)
2988
2989 * progmodes/scheme.el (scheme-mode-variables): Same.
2990
2991 2014-03-16 Martin Rudalics <rudalics@gmx.at>
2992
2993 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
2994 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
2995 current (Bug#16816, Bug#17007).
2996 (with-current-buffer-window): New macro doing the same as
2997 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
2998 * help.el (help-print-return-message): Warn in doc-string to not
2999 use this in `with-help-window'.
3000 (describe-bindings-internal): Call `describe-buffer-bindings'
3001 from within help buffer. See Juanma's scenario in (Bug#16816).
3002 (with-help-window): Update doc-string.
3003 * dired.el (dired-mark-pop-up):
3004 * files.el (save-buffers-kill-emacs):
3005 * register.el (register-preview): Use `with-current-buffer-window'
3006 instead of `with-temp-buffer-window'.
3007
3008 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
3009
3010 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
3011 Implement inserting into current buffer, documented in their docstrings.
3012 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
3013 (rst-section-tree-point, rst-forward-section, rst-indent)
3014 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
3015 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
3016 (rst-font-lock-handle-adornment-pre-match-form)
3017 (rst-repeat-last-character): Reflow docstrings.
3018 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
3019 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
3020 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
3021 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
3022 Fix docstring typos.
3023 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
3024 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
3025 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
3026
3027 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
3028
3029 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
3030 for compatibility with other ports.
3031 (ns-initialize-window-system): Use it. It is set in term/common-win.el
3032 from the -xrm command line argument, but in the Nextstep port its value
3033 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
3034
3035 * progmodes/python.el (defconst, python-syntax-count-quotes)
3036 (python-indent-region, python-indent-shift-right)
3037 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
3038 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
3039 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
3040 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
3041 (inferior-python-mode, python-shell-make-comint, run-python-internal)
3042 (python-shell-buffer-substring, python-shell-send-buffer)
3043 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
3044 (python-completion-complete-at-point, python-fill-docstring-style)
3045 (python-eldoc-function, python-imenu-format-item-label)
3046 (python-imenu-format-parent-item-label)
3047 (python-imenu-format-parent-item-jump-label)
3048 (python-imenu--build-tree, python-imenu-create-index)
3049 (python-imenu-create-flat-index): Fix docstring typos.
3050 (python-indent-context, python-shell-prompt-regexp, run-python):
3051 Remove superfluous backslashes.
3052 (python-indent-line, python-nav-beginning-of-defun)
3053 (python-shell-get-buffer, python-shell-get-process)
3054 (python-info-current-defun, python-info-current-line-comment-p)
3055 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
3056 (python-indent-post-self-insert-function, python-shell-send-file)
3057 (python-shell-completion-get-completions)
3058 (python-shell-completion-complete-or-indent)
3059 (python-eldoc--get-doc-at-point): Reflow docstrings.
3060
3061 2014-03-14 Glenn Morris <rgm@gnu.org>
3062
3063 * emacs-lisp/package.el (package-menu-mode-map):
3064 Replace use of obsolete function alias. Tweak menu item text.
3065
3066 * info.el (Info-finder-find-node):
3067 Ignore the `emacs' metapackage. (Bug#10813)
3068
3069 * finder.el (finder-list-matches): Include unversioned packages
3070 in the result of a keyword search.
3071
3072 * finder.el (finder--builtins-descriptions): New constant.
3073 (finder-compile-keywords): Use finder--builtins-descriptions.
3074
3075 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
3076
3077 * simple.el (blink-matching-paren): Describe the new value,
3078 `jump', enabling the old behavior.
3079 (blink-matching-open): Use that value. (Bug#17008)
3080
3081 2014-03-14 Glenn Morris <rgm@gnu.org>
3082
3083 * finder.el (finder-no-scan-regexp): Add leim-list.
3084 (finder-compile-keywords):
3085 Don't skip files with same basename. (Bug#14010)
3086 * Makefile.in (setwins_finder): New, excluding leim.
3087 (finder-data): Use setwins_finder.
3088
3089 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
3090 (help-function-arglist, help-make-usage): Move from here...
3091 * help.el (help-split-fundoc, help-add-fundoc-usage)
3092 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
3093 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
3094
3095 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
3096
3097 * net/socks.el (socks, socks-override-functions)
3098 (socks-find-services-entry):
3099 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
3100 (hif-find-ifdef-block):
3101 * progmodes/modula2.el (m2-indent): Fix docstring typos.
3102
3103 * net/tls.el (tls-program): Reflow docstring.
3104
3105 * progmodes/pascal.el (pascal-mode-abbrev-table)
3106 (pascal-imenu-generic-expression, pascal-auto-endcomments)
3107 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
3108 (pascal-outline-mode): Fix docstring typos.
3109 (pascal-mode): Let define-derived-mode document mode hook.
3110 (pascal-uncomment-area): Reflow.
3111 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
3112
3113 * progmodes/opascal.el (opascal-compound-block-indent)
3114 (opascal-case-label-indent): Fix docstring typos.
3115 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
3116
3117 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
3118
3119 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3120 Fontify multiple adjacent negation chars. (Bug#17004)
3121
3122 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
3123
3124 * emacs-lisp/package.el (package--prepare-dependencies):
3125 Accept requirements without explicit version (bug#14941).
3126
3127 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3128
3129 * register.el (register-separator, copy-to-register): Doc fixes.
3130 (register-preview-default): Remove unnecessary call to concat.
3131
3132 * frameset.el (frameset-restore): When checking for a visible frame,
3133 use the action map instead of calling visible-frame-list.
3134
3135 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
3136
3137 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
3138
3139 2014-03-12 Martin Rudalics <rudalics@gmx.at>
3140
3141 * window.el (fit-frame-to-buffer): Get maximum width from
3142 display's width instead of height.
3143
3144 2014-03-12 Glenn Morris <rgm@gnu.org>
3145
3146 * desktop.el (desktop-restore-frames)
3147 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
3148 (desktop-restore-reuses-frames): Doc tweaks.
3149
3150 * electric.el (electric-indent-mode): Doc fix.
3151
3152 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3153
3154 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
3155 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
3156 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
3157 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
3158 (cvs-dired-use-hook): Fix docstring typos.
3159 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
3160 Doc fixes.
3161
3162 * vc/pcvs-defs.el (cvs-auto-remove-handled)
3163 (cvs-auto-remove-directories, cvs-default-ignore-marks)
3164 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
3165 (cvs-execute-single-dir): Fix docstring typos.
3166
3167 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
3168 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
3169
3170 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
3171
3172 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
3173 Fix docstring typos.
3174
3175 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3176
3177 * frameset.el (frameset--jump-to-register): Add autoload; it could be
3178 called from jump-to-register after unloading the frameset package.
3179
3180 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3181
3182 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
3183 (bug#16975). Deactivate the mark before setting it to nil.
3184 (activate-mark): Do nothing if region is already active.
3185
3186 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
3187
3188 * frameset.el (frameset--target-display): Remove definition; declare.
3189 (frameset-save, frameset-restore): Let-bind frameset--target-display.
3190
3191 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3192
3193 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
3194 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
3195 when the advice is pending.
3196 (advice-remove): Remove this marker when not needed any more.
3197
3198 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
3199
3200 * frameset.el: Separate options for reusing frames and cleaning up.
3201 (frameset--reuse-list): Remove definition; declare.
3202 (frameset--action-map): Declare.
3203 (frameset--find-frame-if): Doc fix.
3204 (frameset--restore-frame): Cache frame action.
3205 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
3206 how to clean up the frame list after restoring. Remove cleaning
3207 options from REUSE-FRAMES. Change all keyword values to symbols.
3208 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
3209
3210 * desktop.el (desktop-restore-forces-onscreen)
3211 (desktop-restore-reuses-frames): Use non-keyword values.
3212 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
3213
3214 2014-03-10 Glenn Morris <rgm@gnu.org>
3215
3216 * files.el (find-file): Doc fix: update info node name.
3217
3218 * emacs-lisp/advice.el (ad-add-advice, defadvice):
3219 Doc fix: remove references to deleted info nodes.
3220
3221 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
3222
3223 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3224 Do not add `nil' to the environment, when there's no remote `locale'.
3225 (tramp-find-inline-encoding): Check, that the remote host has
3226 installed perl, before sending scripts.
3227
3228 2014-03-10 Leo Liu <sdl.web@gmail.com>
3229
3230 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
3231 Clear eldoc-last-message. (Bug#16920)
3232
3233 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3234
3235 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
3236 (bug#14430).
3237
3238 2014-03-09 Juri Linkov <juri@jurta.org>
3239
3240 * ansi-color.el (ansi-color-names-vector): Copy default colors
3241 from `xterm-standard-colors' that look well on the default white
3242 background (and also on the black background) to avoid illegible
3243 color combinations like yellow-on-white and white-on-white.
3244 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
3245
3246 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
3247
3248 * frameset.el (frameset-restore): When no frame is visible, do not
3249 generate a list of frames, just make visible the selected one.
3250
3251 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
3252
3253 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
3254 it only contains the repository root. (Bug#16897)
3255
3256 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
3257
3258 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
3259 only when `remote-file-name-inhibit-cache' is nil.
3260 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
3261
3262 2014-03-06 Martin Rudalics <rudalics@gmx.at>
3263
3264 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
3265 Fix doc-strings.
3266 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
3267 fit-frame-to-buffer variable. Fix doc-string.
3268 (fit-window-to-buffer): Set ONLY argument in call of
3269 fit-frame-to-buffer. Fix doc-string.
3270
3271 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
3272
3273 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
3274 (tramp-action-password): Clear password cache if needed.
3275 (tramp-read-passwd): Do not clear password cache.
3276
3277 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
3278 cache unless it is the first password request.
3279
3280 2014-03-06 Glenn Morris <rgm@gnu.org>
3281
3282 * simple.el (newline): Doc tweak.
3283
3284 * emacs-lisp/shadow.el (load-path-shadows-find):
3285 Ignore dir-locals. (Bug#12357)
3286
3287 2014-03-05 Glenn Morris <rgm@gnu.org>
3288
3289 * files.el (interpreter-mode-alist):
3290 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
3291
3292 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
3293
3294 * frameset.el (frameset--initial-params): Filter out null entries.
3295
3296 2014-03-05 Martin Rudalics <rudalics@gmx.at>
3297
3298 * window.el (window-min-height, window-min-width):
3299 Rewrite doc-strings.
3300 (window-body-size): Add PIXELWISE argument to make it consistent
3301 with its callees.
3302
3303 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
3304
3305 * finder.el (finder-mode-map, finder-mode-syntax-table):
3306 Revert part of 2014-02-28 change.
3307
3308 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
3309
3310 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
3311 (eww-setup-buffer): Clear next/prev/etc more reliably.
3312 (eww-textarea-map): [tab] doesn't work on tty.
3313 Reported by Mario Lang.
3314
3315 * net/shr.el (shr-map): Ditto.
3316
3317 2014-03-04 Glenn Morris <rgm@gnu.org>
3318
3319 * minibuffer.el (completion-hilit-commonality):
3320 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
3321
3322 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
3323
3324 * hilit-chg.el (hilit-chg-unload-function): New function.
3325 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
3326 (hilit-chg-map-changes): Prefer cardinal number to digit.
3327 (hilit-chg-display-changes): Reflow docstring.
3328 (highlight-changes-rotate-faces): Remove superfluous backslash.
3329
3330 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
3331
3332 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
3333 `tramp-send-command-and-check'.
3334
3335 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
3336
3337 * hexl.el (hexl-address-region, hexl-ascii-region)
3338 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
3339 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
3340 (hexl-forward-word, hexl-previous-line, hexl-next-line):
3341 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
3342 (hexl-mode): Doc fix.
3343 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
3344 (hexl-mode-ruler): Fix typos in docstrings.
3345
3346 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
3347 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
3348 Remove superfluous backslashes.
3349 (strokes-last-stroke, strokes-global-map, strokes-mode):
3350 Reflow docstrings.
3351 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
3352 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
3353 (strokes-distance-squared, strokes-global-set-stroke)
3354 (strokes-global-set-stroke-string): Doc fixes.
3355 (strokes-help): Fix typos; reflow docstring.
3356
3357 2014-03-04 Martin Rudalics <rudalics@gmx.at>
3358
3359 * window.el (window-in-direction): Fix doc-string.
3360
3361 2014-03-04 Glenn Morris <rgm@gnu.org>
3362
3363 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
3364 Explicit error if no grammar.
3365 (smie-config-save): Doc fix. Fix quote typo.
3366
3367 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
3368
3369 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
3370 electric-indent-mode-hook if we obey electric-indent-mode.
3371 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
3372 decide whether we obey electric-indent-mode.
3373 (c-change-set-fl-decl-start, c-extend-after-change-region):
3374 Silence warnings.
3375 (c-electric-indent-mode-hook): Assume we do want to obey
3376 electric-indent-mode.
3377
3378 * electric.el (electric-indent-mode-has-been-called): Remove.
3379 (electric-indent-mode): Fix accordingly.
3380
3381 * files.el (hack-local-variables): Mention file name in warning.
3382
3383 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
3384
3385 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
3386
3387 * bindings.el: Add comment describing why C-d binds to `delete-char'.
3388 * simple.el (delete-forward-char): Mark as interactive-only.
3389
3390 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
3391
3392 * icomplete.el (icomplete-completions):
3393 Follow-up to 2014-03-01 change.
3394
3395 * icomplete.el: Miscellaneous doc fixes.
3396 Use Icomplete everywhere instead of icomplete for consistency.
3397 (icomplete-max-delay-chars): Fix typo.
3398 (icomplete-mode): Use \[].
3399 (icomplete-tidy, icomplete-exhibit): Reflow.
3400 (icomplete-minibuffer-setup-hook, icomplete-completions):
3401 Remove superfluous backlashes.
3402
3403 * ido.el: Miscellaneous doc fixes.
3404 Use Ido everywhere instead of ido or `ido' for consistency.
3405 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
3406 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
3407 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
3408 (ido-separator): Extract obsolescence info from docstring and declare
3409 with make-obsolete-variable.
3410 (ido-minibuffer-setup-hook): Simplify example.
3411 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
3412 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
3413 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
3414 (ido-everywhere): Reflow docstring.
3415 (ido-toggle-vc): Doc fix.
3416 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
3417 of long list of keybindings.
3418
3419 2014-03-03 Glenn Morris <rgm@gnu.org>
3420
3421 * frame.el (display-pixel-height, display-pixel-width)
3422 (display-mm-dimensions-alist, display-mm-height)
3423 (display-mm-width): Doc tweaks.
3424
3425 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
3426
3427 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
3428 case of undo in region.
3429
3430 2014-03-02 Martin Rudalics <rudalics@gmx.at>
3431
3432 * window.el (fit-window-to-buffer): Fix argument in window-size
3433 call when window is horizontally combined.
3434
3435 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
3436
3437 * icomplete.el (icomplete-completions): Use string-width.
3438 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3439
3440 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
3441
3442 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3443 Highlight regexp options. (Bug#16914)
3444
3445 2014-03-01 Martin Rudalics <rudalics@gmx.at>
3446
3447 * window.el (window--max-delta-1): Round down when calculating
3448 how many lines/columns we can get from a window.
3449
3450 2014-03-01 Glenn Morris <rgm@gnu.org>
3451
3452 * isearch.el (search-invisible): Doc fix.
3453
3454 * minibuffer.el (completion-hilit-commonality):
3455 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
3456 * comint.el (comint-dynamic-list-completions): Doc fix.
3457 * comint.el (comint-dynamic-list-completions):
3458 * filecache.el (file-cache-minibuffer-complete):
3459 * tempo.el (tempo-display-completions):
3460 * eshell/em-hist.el (eshell-list-history):
3461 Replace use of obsolete argument of display-completion-list.
3462
3463 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
3464
3465 * icomplete.el (icomplete-completions):
3466 Revert back to using "..." when ?… cannot be displayed.
3467
3468 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
3469
3470 * finder.el (finder-unload-function): New function.
3471
3472 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
3473
3474 * dframe.el (dframe-detach):
3475 * find-dired.el (find-dired, find-name-dired):
3476 * finder.el (finder-mode-map, finder-mode-syntax-table)
3477 (finder-headmark, finder-select, finder-mouse-select):
3478 Fix docstring typos.
3479
3480 2014-02-28 Martin Rudalics <rudalics@gmx.at>
3481
3482 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
3483 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
3484 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
3485 Fix doc-string based on a suggestion by Nicolas Richard
3486 <theonewiththeevillook@yahoo.fr>.
3487 * help.el (with-help-window): Fix doc-string.
3488
3489 2014-02-28 Ivan Kanis <ivan@kanis.fr>
3490
3491 * net/shr.el (shr-image-animate): New option.
3492 (shr-put-image): Respect shr-image-animate.
3493
3494 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
3495
3496 * net/tramp-adb.el (tramp-adb-parse-device-names):
3497 Use `accept-process-output'.
3498 (tramp-adb-handle-file-truename): Cache the localname only.
3499 (tramp-adb-handle-make-directory)
3500 (tramp-adb-handle-delete-directory): Flush file properties correctly.
3501 (tramp-adb-handle-set-file-modes): Do not raise an error when file
3502 modes cannot be changed.
3503
3504 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
3505 file properties of symlinks.
3506
3507 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
3508
3509 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
3510 required/optional fields to match development biblatex. (Bug#16781)
3511
3512 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
3513
3514 * saveplace.el (toggle-save-place):
3515 Fix argument handling. (Bug#16673)
3516
3517 2014-02-28 Glenn Morris <rgm@gnu.org>
3518
3519 * minibuffer.el (completions-first-difference)
3520 (completions-common-part, completion-hilit-commonality): Doc fixes.
3521
3522 2014-02-28 Karl Berry <karl@gnu.org>
3523
3524 * info.el (Info-mode-map): Add H for describe-mode,
3525 to synchronize with standalone Info.
3526
3527 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
3528
3529 * progmodes/sql.el (sql-interactive-mode):
3530 Avoid setting global comint-input-ring-separator. (Bug#16814)
3531
3532 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3533
3534 * net/dbus.el (dbus--init-bus): Declare function.
3535 (dbus-path-local, dbus-interface-local): New defconst.
3536 (dbus-init-bus): Use them.
3537 (dbus-return-values-table): Extend doc.
3538 (dbus-handle-bus-disconnect): Extend error message.
3539
3540 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
3541
3542 * subr.el (y-or-n-p): Fix double space issue in message.
3543
3544 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3545
3546 * net/tramp.el (tramp-call-process): Improve trace message.
3547 (tramp-handle-insert-file-contents): Trace error case.
3548
3549 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3550 <insert-directory>: Use `tramp-handle-insert-directory'.
3551 (tramp-adb-handle-insert-directory): Remove function.
3552 (tramp-adb-send-command-and-check): New defun, replacing
3553 `tramp-adb-command-exit-status'. Change all callees.
3554 (tramp-adb-handle-file-attributes)
3555 (tramp-adb-handle-directory-files-and-attributes): Use it.
3556 (tramp-adb-ls-output-name-less-p):
3557 Use `directory-listing-before-filename-regexp'.
3558 (tramp-adb-handle-delete-directory): Flush also file properties of
3559 the truename of directory.
3560 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
3561 (tramp-adb-handle-file-local-copy): Make the local copy readable.
3562 (tramp-adb-handle-write-region): Implement APPEND.
3563 (tramp-adb-handle-rename-file): Make it more robust. Flush file
3564 properties correctly.
3565 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
3566 variables. Check for connected devices only when needed.
3567
3568 2014-02-27 Glenn Morris <rgm@gnu.org>
3569
3570 * minibuffer.el (completion-table-dynamic)
3571 (completion-table-with-cache): Doc fixes.
3572
3573 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
3574 (completing-read-multiple): Doc fixes.
3575
3576 2014-02-27 Daniel Colascione <dancol@dancol.org>
3577
3578 * minibuffer.el (completion--nth-completion): Fix indentation.
3579
3580 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
3581 explicit tramp path is empty.
3582
3583 2014-02-27 Glenn Morris <rgm@gnu.org>
3584
3585 * emacs-lisp/crm.el (completing-read-multiple):
3586 Empower help-enable-auto-load.
3587
3588 2014-02-26 Glenn Morris <rgm@gnu.org>
3589
3590 * startup.el (command-line): Don't init the tty in daemon mode.
3591
3592 Avoid calling tty-setup-hook twice, eg if a term file
3593 explicitly calls tty-run-terminal-initialization. (Bug#16859)
3594 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
3595 (tty-create-frame-with-faces): Use it.
3596 * startup.el (command-line): Pass run-hook argument
3597 to tty-run-terminal-initialization.
3598
3599 * dired.el (dired-restore-desktop-buffer): Demote errors;
3600 eg in case a glob match fails. (Bug#16884)
3601
3602 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
3603
3604 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
3605 error from `read-from-string'. (Bug#16850)
3606
3607 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
3608 result of `completing-read' in the interactive form. (Bug#16854)
3609
3610 2014-02-25 Glenn Morris <rgm@gnu.org>
3611
3612 * image.el (image-animate, image-animate-timeout):
3613 Stop animating images in dead buffers. (Bug#16878)
3614
3615 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
3616
3617 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
3618 Doc fixes.
3619 * startup.el (term-setup-hook): Doc fix. Make obsolete.
3620 * term/sun.el (sun-raw-prefix-hooks):
3621 Use tty-setup-hook instead of term-setup-hook.
3622 (terminal-init-sun): Construct message from bytecomp plist.
3623 * term/wyse50.el (enable-arrow-keys): Doc fix.
3624
3625 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3626
3627 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
3628 Fix docstring typos.
3629
3630 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
3631
3632 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
3633
3634 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3635
3636 * minibuffer.el (completion--try-word-completion):
3637 Fix error when completing M-x commands (bug#16808).
3638
3639 2014-02-24 Leo Liu <sdl.web@gmail.com>
3640
3641 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
3642
3643 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3644
3645 * apropos.el (apropos-print): Avoid formatting error when
3646 apropos-do-all and apropos-compact-layout are both t.
3647
3648 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3649
3650 * apropos.el (apropos-property, apropos-all-words-regexp)
3651 (apropos-true-hit, apropos-variable, apropos-print):
3652 Fix docstring typos, and remove obsolete comment.
3653
3654 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
3655
3656 * net/tramp-sh.el (tramp-sh-handle-file-truename):
3657 Preserve trailing "/". (Bug#16851)
3658
3659 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
3660
3661 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
3662 after `=>' (bug#16811).
3663 (ruby-smie-rules): Handle the inconsistent second element of the
3664 list returned by `smie-indent--parent'.
3665 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
3666 method call.
3667
3668 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3669
3670 * elec-pair.el (electric-pair-text-syntax-table)
3671 (electric-pair-syntax-info, electric-pair--syntax-ppss)
3672 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
3673 (electric-pair--looking-at-unterminated-string-p): Doc fix.
3674 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
3675
3676 2014-02-22 Glenn Morris <rgm@gnu.org>
3677
3678 * imenu.el (imenu--generic-function): Doc fix.
3679
3680 * register.el (frame-configuration-to-register): Make obsolete.
3681
3682 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
3683
3684 * desktop.el (desktop-save-buffer-p): Do not fail when
3685 desktop-files-not-to-save is nil. Return t for true result
3686 as the doc says.
3687
3688 2014-02-22 Daniel Colascione <dancol@dancol.org>
3689
3690 * net/secrets.el (secrets-create-item, secrets-search-items):
3691 Check that attribute values are strings, avoiding the construction
3692 of invalid dbus messages.
3693
3694 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3695
3696 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
3697 defun-declarations-alist.
3698
3699 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
3700
3701 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
3702 (bug#16829).
3703
3704 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3705
3706 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
3707 (whitespace-newline, whitespace-trailing, whitespace-line)
3708 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
3709 (whitespace-space-after-tab): Fix typo in docstrings.
3710
3711 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
3712
3713 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
3714
3715 * electric.el (electric-indent-functions-without-reindent):
3716 Add `yaml-indent-line'.
3717
3718 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3719
3720 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
3721 It has done nothing for years; should be removed after the release.
3722
3723 * simple.el (choose-completion): Fix docstring typo.
3724 (read-quoted-char-radix): Remove unneeded * in docstring.
3725 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
3726 Don't escape parentheses unnecessarily in docstrings.
3727
3728 2014-02-21 Martin Rudalics <rudalics@gmx.at>
3729
3730 Fix handling of window-min-height/-width (Bug#16738).
3731 * window.el (window--dump-window, window--dump-frame):
3732 New functions.
3733 (window--min-size-1): Account for window dividers.
3734 When window-resize-pixelwise is nil, delay rounding till after the
3735 sum of the window components has been calculated.
3736 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
3737 nil make sure at least one text line and two text columns remain
3738 fully visible.
3739 (window-resize): Signal an error when window-resize-apply fails.
3740 (window--resize-child-windows): Fix calculation of by how many
3741 pixels a window can still be shrunk via window-new-normal.
3742 (adjust-window-trailing-edge): Call window--resizable with
3743 correct TRAIL argument.
3744
3745 (with-temp-buffer-window): Don't evaluate BODY within
3746 with-current-buffer (Bug#16816).
3747
3748 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
3749
3750 * net/tramp.el (tramp-check-cached-permissions):
3751 Call `file-attributes' with `suffix' being a symbol but a string.
3752
3753 2014-02-21 Daniel Colascione <dancol@dancol.org>
3754
3755 * net/dbus.el (dbus-init-bus-1): Declare new subr.
3756 (dbus-init-bus): New function: call into dbus-init-bus-1
3757 and installs a handler for the disconnect signal.
3758 (dbus-call-method): Rewrite to look for result in cons.
3759 (dbus-call-method-handler): Store result in cons.
3760 (dbus-check-event): Recognize events with nil sender as valid.
3761 (dbus-handle-bus-disconnect): New function. React to bus
3762 disconnection signal by synthesizing dbus error for each
3763 pending synchronous or asynchronous call.
3764 (dbus-notice-synchronous-call-errors): New function.
3765 (dbus-handle-event): Raise errors directly only when `dbus-debug'
3766 is true, not all the time.
3767
3768 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3769
3770 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
3771 Remove obsolescence declarations, these variables do not exist anymore.
3772
3773 * savehist.el (savehist-save-minibuffer-history)
3774 (savehist-additional-variables, savehist-file, savehist-mode-hook)
3775 (savehist-save-hook, savehist-coding-system, savehist-loaded)
3776 (savehist-load, savehist-install, savehist-autosave): Fix typos;
3777 mostly, refer to "Savehist mode" when talking about the mode,
3778 and not the function.
3779
3780 * saveplace.el (save-place): Remove redundant info in docstring.
3781 (save-place-forget-unreadable-files, toggle-save-place)
3782 (save-place-forget-unreadable-files, save-place-dired-hook):
3783 Fix typos and remove unneeded backslashes.
3784
3785 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
3786
3787 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
3788 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
3789
3790 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3791 <insert-directory>: Use `tramp-handle-insert-directory'.
3792 (tramp-gvfs-handle-insert-directory): Remove function.
3793
3794 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3795 Call `tramp-handle-insert-directory'.
3796
3797 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
3798
3799 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
3800 before the start of buffer/region (bug#16799).
3801
3802 2014-02-20 Glenn Morris <rgm@gnu.org>
3803
3804 * isearch.el (search-invisible): Doc fix.
3805
3806 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
3807
3808 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
3809 (bug#16657).
3810
3811 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3812
3813 * frameset.el (frameset-restore): Delay removing an old frame's
3814 duplicate id until the new frame has been correctly created.
3815
3816 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
3817
3818 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
3819 (tramp-check-cached-permissions): Call `file-attributes' if the
3820 cache is empty.
3821
3822 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3823 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3824
3825 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3826 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3827 (tramp-gvfs-maybe-open-connection): Set always connection
3828 properties, even if target is mounted already.
3829
3830 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
3831 Set tramp-autoload cookie.
3832 (tramp-get-remote-touch): New defun.
3833 (tramp-sh-handle-set-file-times): Use it.
3834 (tramp-sh-handle-directory-files-and-attributes):
3835 Use `tramp-handle-directory-files-and-attributes' if neither stat
3836 nor perl are available on the remote host.
3837
3838 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
3839 "/". Write long listing only when "l" belongs to the switches.
3840
3841 * net/trampver.el: Update release number.
3842
3843 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3844
3845 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
3846
3847 2014-02-19 Martin Rudalics <rudalics@gmx.at>
3848
3849 * window.el (window-state-put): Allow WINDOW to refer to an
3850 internal window (Bug#16793).
3851
3852 2014-02-19 Glenn Morris <rgm@gnu.org>
3853
3854 * textmodes/remember.el: Move provide statement to end.
3855 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3856 (remember-notes): Doc fixes.
3857
3858 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3859
3860 * delsel.el (delete-char): Restore incorrectly erased property
3861 (bug#16795).
3862
3863 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
3864
3865 * frameset.el (frameset--restore-frame): When a frame is being reused
3866 and its root window is not alive, delete all the frame's windows before
3867 restoring the window state. This works around the issue in bug#16793.
3868
3869 2014-02-18 Glenn Morris <rgm@gnu.org>
3870
3871 * textmodes/remember.el (remember-data-directory)
3872 (remember-directory-file-name-format, remember-store-in-files)
3873 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3874 (remember-notes-save-and-bury-buffer)
3875 (remember-notes--kill-buffer-query): Doc fixes.
3876
3877 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3878
3879 2014-02-17 Alan Mackenzie <acm@muc.de>
3880
3881 Connect electric-indent-mode up with CC Mode. Bug #15478.
3882 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3883 to electric-indent-{,local-}-mode.
3884 (c-basic-common-init): Set electric-indent-inhibit.
3885 Initialise c-electric-flag from electric-indent-mode.
3886 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3887 New hook functions which propagate electric-indent-mode to CC mode.
3888
3889 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3890 hit, toggle electric-indent-local-mode.
3891
3892 * electric.el (electric-indent-mode-has-been-called):
3893 New variable.
3894
3895 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
3896
3897 * frameset.el (frameset-cfg-id): New function.
3898 (frameset--reuse-frame, frameset-restore): Use it.
3899 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3900
3901 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3902
3903 * ido.el (ido-file-internal): Remove unused var `d'.
3904 Use \` for to match BoS. Fit within 80n columns.
3905
3906 2014-02-17 Daniel Colascione <dancol@dancol.org>
3907
3908 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3909 dbus-call-method check for completion using a busy-wait loop with
3910 gradual backoff.
3911
3912 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
3913
3914 Sync with Tramp 2.2.9.
3915
3916 * net/trampver.el: Update release number.
3917
3918 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3919
3920 * ido.el (ido-file-internal): Don't add the name of an existing
3921 directory twice. (Bug#16747)
3922
3923 2014-02-16 Glenn Morris <rgm@gnu.org>
3924
3925 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3926 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3927
3928 2014-02-15 Michael R. Mauger <michael@mauger.com>
3929
3930 * progmodes/sql.el: Version 3.4
3931 (sql-oracle-options): New default value ("-L").
3932 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3933 (sql-placeholders-filter): Correct placeholder pattern.
3934 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3935 (sql-login-delay): New variable.
3936 (sql-product-interactive): Use it.
3937
3938 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
3939
3940 * frameset.el (frameset--jump-to-register): Check that buffer is live
3941 (bug#16749).
3942
3943 2014-02-15 Glenn Morris <rgm@gnu.org>
3944
3945 * info.el (info-initialize): Revert 2014-01-10 change.
3946
3947 2014-02-14 Glenn Morris <rgm@gnu.org>
3948
3949 * replace.el (map-query-replace-regexp)
3950 (read-regexp-defaults-function, read-regexp): Doc fixes.
3951
3952 * dired.el (dired-read-regexp):
3953 * faces.el (list-faces-display):
3954 * misearch.el (multi-isearch-read-matching-buffers)
3955 (multi-isearch-read-matching-files):
3956 * play/cookie1.el (cookie-apropos):
3957 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3958
3959 * textmodes/remember.el (remember): Use frameset-to-register
3960 rather than frame-configuration-to-register.
3961
3962 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3963
3964 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3965 incorrect keybinding.
3966
3967 2014-02-13 Daniel Colascione <dancol@dancol.org>
3968
3969 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
3970 when adding overlays so that line numbers from compiler match line
3971 numbers we use.
3972
3973 2014-02-13 Glenn Morris <rgm@gnu.org>
3974
3975 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
3976
3977 * jit-lock.el (jit-lock-mode): Doc fix.
3978
3979 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
3980
3981 * apropos.el (apropos-read-pattern): When the user passes an empty
3982 string, give a more helpful error message than "Wrong type
3983 argument: stringp, nil".
3984
3985 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
3988
3989 2014-02-13 Glenn Morris <rgm@gnu.org>
3990
3991 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
3992
3993 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
3994
3995 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
3996 shift-select commands.
3997
3998 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
3999
4000 * progmodes/js.el (js-indent-line): Don't widen.
4001 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
4002
4003 2014-02-12 Glenn Morris <rgm@gnu.org>
4004
4005 * icomplete.el (icomplete): Add info-link to defgroup.
4006 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
4007 (icomplete-minibuffer-map, icomplete-mode)
4008 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
4009
4010 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
4011 (package-menu-filter): Rename from package-menu-filter-interactive.
4012 Doc fix.
4013
4014 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
4015
4016 * frameset.el (frameset--jump-to-register): Select the required
4017 window and buffer before restoring position (bug#16696).
4018
4019 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
4020
4021 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
4022
4023 2014-02-10 Glenn Morris <rgm@gnu.org>
4024
4025 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
4026
4027 2014-02-10 Eli Zaretskii <eliz@gnu.org>
4028
4029 * w32-common-fns.el (x-get-selection): Doc fix.
4030 * select.el (x-get-selection): Doc fix. (Bug#15109)
4031
4032 * face-remap.el (face-remap-add-relative)
4033 (face-remap-remove-relative, face-remap-reset-base)
4034 (face-remap-set-base): Call force-mode-line-update to redisplay
4035 the current buffer due to potential change in faces. (Bug#16709)
4036
4037 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
4038
4039 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
4040 script more robustly.
4041
4042 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
4043
4044 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
4045
4046 * simple.el (choose-completion): Doc fix (bug#14160).
4047
4048 * subr.el (event-start): Say what a nil EVENT value means.
4049
4050 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
4051 (bug#14197).
4052
4053 * progmodes/grep.el (find-program): Doc fix (bug#14289).
4054
4055 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
4056
4057 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
4058
4059 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
4060 predicate function (bug#15455).
4061
4062 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
4063
4064 * ielm.el (inferior-emacs-lisp-mode): Instead of
4065 `comment-use-global-state', set `comment-use-syntax'.
4066
4067 2014-02-10 Glenn Morris <rgm@gnu.org>
4068
4069 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
4070
4071 2014-02-09 Alan Mackenzie <acm@muc.de>
4072
4073 Fix c-invalidate-state-cache on narrowed buffers.
4074 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
4075 Widen when setting and clearing the CPP delimiter properties.
4076
4077 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
4078
4079 * help.el (describe-bindings): Doc fix (bug#9888).
4080
4081 * files.el (save-buffer): Use ARG as the parameter name for
4082 consistency (bug#10346).
4083 (save-buffer): Clarify the 0 argument (bug#10346).
4084
4085 * cus-edit.el (customize-apropos): Fix error string.
4086 (custom-buffer-create): Doc fix (bug#11122).
4087 (custom-sort-items): Doc fix (bug#11121).
4088
4089 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
4090
4091 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
4092 (icomplete-simple-completing-p): Mention the previous variable.
4093
4094 * font-lock.el (font-lock-value-in-major-mode): Clarify the
4095 meaning of the parameter (bug#12282).
4096
4097 * files.el (find-file-noselect): Clarify prompt when changing
4098 readedness (bug#13261).
4099 (locate-file): Suffixes aren't returned, so don't say that they
4100 are (bug#12674).
4101 (backup-inhibited): Doc clarification (bug#12525).
4102
4103 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
4104 before we actually start to delete things (bug#16331).
4105
4106 * subr.el (event-start): Doc fix (bug#14228).
4107 (event-end): Ditto.
4108
4109 2014-02-09 Glenn Morris <rgm@gnu.org>
4110
4111 * emacs-lisp/warnings.el (lwarn):
4112 Empower help-enable-auto-load. (Bug#15940)
4113
4114 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
4115
4116 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
4117 (Bug#16690)
4118
4119 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
4120
4121 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4122 Insert output at end of buffer. (Bug#16120)
4123
4124 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4125
4126 * simple.el (choose-completion-string-functions): Document new
4127 calling convention (bug#14153).
4128 (execute-extended-command): Clarify doc string (bug#13373).
4129
4130 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
4131
4132 * find-dired.el (find-name-dired): Doc fix (bug#14290).
4133 (find-grep-dired): Doc fix (bug#14288).
4134
4135 2014-02-08 Juri Linkov <juri@jurta.org>
4136
4137 * isearch.el (isearch-quote-char): Check character validity
4138 like in `quoted-insert' (bug#16677).
4139
4140 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4141
4142 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
4143
4144 * isearch.el (isearch-hide-immediately): Doc clarification
4145 (bug#14723).
4146
4147 * simple.el (line-move): Document utility function used many
4148 places in the Emacs sources (bug#14843).
4149
4150 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
4151 (dired-prev-marked-file): Doc fix (bug#14855).
4152 (dired-up-directory): Doc fix (bug#14848).
4153
4154 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
4155
4156 * files.el (file-relative-name): Doc fix (bug#15159).
4157
4158 * fringe.el (fringe-styles): Doc fix (bug#15239).
4159
4160 * isearch.el (isearch-filter-predicate): Documentation typo fix
4161 (bug#15474).
4162
4163 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
4164
4165 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
4166
4167 * replace.el (replace-match-maybe-edit): Doc clarification
4168 (bug#15632).
4169
4170 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
4171
4172 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
4173
4174 2014-02-08 Glenn Morris <rgm@gnu.org>
4175
4176 * help-fns.el (describe-variable):
4177 Check {file,dir}-local-variables-alist, and buffer-file-name,
4178 in the correct buffer.
4179
4180 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
4181
4182 * help-fns.el (describe-variable): Fix the case where
4183 a value is directory-local with no dir-locals file. (Bug#16635)
4184
4185 2014-02-08 Glenn Morris <rgm@gnu.org>
4186
4187 * abbrev.el (edit-abbrevs-mode):
4188 Derive from fundamental-mode. (Bug#16682)
4189
4190 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
4191
4192 * simple.el (quoted-insert): Check character validity (bug#16677).
4193
4194 2014-02-07 Juri Linkov <juri@jurta.org>
4195
4196 * desktop.el (desktop-read): Claim the lock when the owner is not
4197 the current process. (Bug#16157)
4198
4199 2014-02-07 Juri Linkov <juri@jurta.org>
4200
4201 * desktop.el (desktop-buffers-not-to-save): Change default from nil
4202 to "\\` ". (Bug#16651)
4203
4204 2014-02-07 Juri Linkov <juri@jurta.org>
4205
4206 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
4207 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
4208 (desktop-auto-save-cancel-timer): New function with some code from
4209 `desktop-auto-save-set-timer'.
4210 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
4211 Instead of setting `desktop-save-mode' to nil, call
4212 `desktop-save-mode' with arg 0. (Bug#16630)
4213
4214 2014-02-07 Glenn Morris <rgm@gnu.org>
4215
4216 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
4217 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
4218 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
4219
4220 * obsolete/iswitchb.el: Move to obsolete/.
4221 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
4222 since obsolete/ is not scanned for autoloads.
4223 * emacs-lisp/authors.el (authors-valid-file-names):
4224 Add iswitchb.el.
4225
4226 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
4227 Disable now non-functional find-file-hook.
4228
4229 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
4230
4231 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
4232 instead of ";" in order to avoid additional prompts. Let heredoc
4233 scripts read from tty. (Bug#16582)
4234 (tramp-send-command): No special handling of heredocs, it isn't
4235 necessary anymore.
4236
4237 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
4238
4239 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
4240 with a space (bug#16664). Limit the symbols considered to the ones
4241 that are bound or fbound (bug#16646).
4242
4243 2014-02-06 Glenn Morris <rgm@gnu.org>
4244
4245 * epa.el (epa-mail-aliases): Doc fix.
4246
4247 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
4248
4249 * emacs-lisp/lisp.el (lisp-completion-at-point):
4250 Use `completion-table-merge' instead of `completion-table-in-turn'
4251 (bug#16604).
4252
4253 * minibuffer.el (completion-table-merge): New function.
4254
4255 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
4256
4257 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
4258 (tramp-sh-handle-set-file-acl)
4259 (tramp-sh-handle-start-file-process)
4260 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
4261 (tramp-find-executable, tramp-send-command): Use it.
4262
4263 2014-02-05 Glenn Morris <rgm@gnu.org>
4264
4265 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
4266
4267 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
4268
4269 * progmodes/python.el (python-shell-send-string)
4270 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
4271
4272 2014-02-04 Anders Lindgren <andlind@gmail.com>
4273
4274 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
4275 the names (bug#16620).
4276
4277 2014-02-03 Martin Rudalics <rudalics@gmx.at>
4278
4279 * faces.el (window-divider): New default value. Rewrite doc-string.
4280 (window-divider-first-pixel, window-divider-last-pixel): New faces.
4281
4282 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
4283
4284 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
4285 `protected' and `public' can also be called without arguments.
4286
4287 2014-02-03 Glenn Morris <rgm@gnu.org>
4288
4289 * register.el (window-configuration-to-register)
4290 (frame-configuration-to-register): Unadvertise unused argument.
4291 * frameset.el (frameset-to-register): Remove unused argument.
4292
4293 * frameset.el (frameset-to-register):
4294 * kmacro.el (kmacro-to-register):
4295 * register.el (increment-register):
4296 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
4297 (calc-append-to-register, calc-prepend-to-register):
4298 * play/gametree.el (gametree-layout-to-register)
4299 (gametree-apply-register-layout):
4300 * textmodes/picture.el (picture-clear-rectangle-to-register)
4301 (picture-yank-rectangle-from-register):
4302 * vc/emerge.el (emerge-combine-versions-register):
4303 Use register-read-with-preview to read registers.
4304
4305 2014-02-03 João Távora <joaotavora@gmail.com>
4306
4307 * elec-pair.el (electric-pair-backward-delete-char): Don't error
4308 when at beginning of (possibly narrowed) buffer.
4309
4310 2014-02-02 Daniel Colascione <dancol@dancol.org>
4311
4312 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
4313 Also try to display local help from just before point.
4314
4315 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
4316
4317 c-parse-state. Don't "append-lower-brace-pair" in certain
4318 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
4319 recognised as a comment.
4320
4321 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
4322 as well as normal comment starter.
4323 (c-parse-state-get-strategy): Extra return possibility
4324 'back-and-forward.
4325 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
4326 return value list to indicate replacement of a brace-pair cons
4327 with its car.
4328 (c-parse-state-1): With 'back-and-forward, only call
4329 c-append-lower-brace-pair-to state-cache when cons-separated.
4330
4331 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
4332
4333 * term/ns-win.el (ns-suspend-error): New function.
4334 (ns-initialize-window-system): Add ns-suspend-error to
4335 suspend-hook (Bug#16612).
4336
4337 2014-02-02 Daniel Colascione <dancol@dancol.org>
4338
4339 * progmodes/cc-defs.el (c-find-assignment-for-mode):
4340 Make loading cc-mode silent.
4341
4342 2014-02-02 Daniel Colascione <dancol@dancol.org>
4343
4344 * comint.el (comint-prompt-read-only): Change doc to suggest
4345 remap keybinding.
4346
4347 2014-02-02 Glenn Morris <rgm@gnu.org>
4348
4349 * register.el (register-read-with-preview, point-to-register)
4350 (window-configuration-to-register, frame-configuration-to-register)
4351 (jump-to-register, number-to-register, view-register, insert-register)
4352 (copy-to-register, append-to-register, prepend-to-register)
4353 (copy-rectangle-to-register): Doc fixes.
4354
4355 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4356
4357 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
4358 * emacs-lisp/find-func.el (find-function-C-source): Idem.
4359 * emacs-lisp/nadvice.el (advice--cd*r): New function.
4360 * help-fns.el (describe-function-1): Use it.
4361
4362 2014-02-02 Glenn Morris <rgm@gnu.org>
4363
4364 * register.el (register-preview-default): New function,
4365 split from register-preview.
4366 (register-preview-function): Rename from register-preview-functions,
4367 make it not a hook.
4368 (register-preview): Use register-preview-function.
4369 (register-read-with-preview): Error on non-character event. (Bug#16595)
4370
4371 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
4372
4373 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
4374 `:' before binary operators (bug#16609). Don't check for `:'
4375 before `[' and `(', or their syntax status. A percent literal
4376 can't end with either.
4377 (ruby-font-lock-keywords): For built-ins that require arguments,
4378 check that they're followed by something that looks like argument
4379 (bug#16610).
4380
4381 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
4382
4383 * subr.el (butlast): Document what an omitted N means (bug#13437).
4384 (nbutlast): Ditto.
4385
4386 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
4387
4388 * net/shr.el (shr-generic): Make into a defsubst to make the stack
4389 depth shallower (bug#16587).
4390 (shr-tag-svg): Respect `shr-inhibit-images'.
4391 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
4392
4393 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
4394
4395 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
4396 (ruby-smie-grammar): Make "." right-associative. Make its priority
4397 lower than the ternary and all binary operators.
4398 (ruby-smie-rules): Indent "(" relative to the first non-"."
4399 parent, or the first "." parent at indentation.
4400 Use `ruby-align-chained-calls' for indentation of "." tokens.
4401 (Bug#16593)
4402
4403 2014-01-31 Juri Linkov <juri@jurta.org>
4404
4405 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
4406 from `make-hash-table'.
4407
4408 * textmodes/ispell.el (ispell-init-process): Change message format
4409 to be consistent with other messages.
4410
4411 2014-01-31 Glenn Morris <rgm@gnu.org>
4412
4413 * delsel.el (delete-selection-mode): Doc fix.
4414
4415 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
4416 (trace-function-background): Doc fixes.
4417
4418 * ido.el (ido-use-virtual-buffers): Doc fix.
4419 Reset :version, since the default value has not changed.
4420
4421 * register.el (register-preview-delay, register-read-with-preview):
4422 Doc fixes.
4423
4424 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
4425 do not mess with mail-buffer position (fixes 2009-11-03 change).
4426 * progmodes/cc-mode.el (c-submit-bug-report):
4427 Check auto-fill-mode is bound. (Bug#16592)
4428
4429 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
4430
4431 * startup.el (fancy-splash-image-file): New function,
4432 split from fancy-splash-head.
4433 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
4434 so that we are both using the same image. (Bug#16574)
4435
4436 2014-01-30 Glenn Morris <rgm@gnu.org>
4437
4438 * simple.el (eval-expression): Doc fix.
4439
4440 * hexl.el (hexl-mode-hook):
4441 * ielm.el (ielm-mode-hook):
4442 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
4443 (lisp-interaction-mode-hook):
4444 * progmodes/cfengine.el (cfengine3-documentation-function):
4445 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
4446
4447 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4448
4449 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
4450 is a symbol (bug#16584).
4451
4452 2014-01-30 Glenn Morris <rgm@gnu.org>
4453
4454 * help.el (help-for-help-internal): Add "P" to text.
4455
4456 2014-01-29 Glenn Morris <rgm@gnu.org>
4457
4458 * simple.el (just-one-space, cycle-spacing): Doc fixes.
4459
4460 2014-01-28 Martin Rudalics <rudalics@gmx.at>
4461
4462 * window.el (fit-frame-to-buffer): Fix calculations for margins and
4463 height constraints.
4464
4465 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
4466
4467 * progmodes/hideif.el: Extend to full CPP expression syntax.
4468 (hif-token-alist): Add missing tokens.
4469 (hif-token-regexp): Add support for float/octal/hex immediates.
4470 (hif-string-literal-regexp): New const.
4471 (hif-tokenize): Recognize strings and float/octal/hex immediates.
4472 (hif-exprlist): New function.
4473 (hif-parse-if-exp): Use it.
4474 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
4475 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
4476 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
4477 (hif-logxor, hif-comma): New functions.
4478
4479 2014-01-28 Glenn Morris <rgm@gnu.org>
4480
4481 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
4482
4483 * indent.el (tab-stop-list): Doc fix. Add :version.
4484
4485 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
4486 (cvs-append-to-ignore): Add compatibility alias.
4487
4488 2014-01-27 Glenn Morris <rgm@gnu.org>
4489
4490 * dired.el (dired-hide-details-mode): Don't autoload it,
4491 since it cannot be used outside Dired buffers anyway.
4492
4493 * emulation/cua-base.el (cua-mode): Doc fix.
4494
4495 * dired.el (dired-hide-details-hide-symlink-targets)
4496 (dired-hide-details-hide-information-lines)
4497 (dired-hide-details-mode): Doc fixes.
4498
4499 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
4500 * strokes.el (strokes-file): Doc fix. Bump :version.
4501 (strokes-help): Doc fix.
4502 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
4503 * emulation/viper.el (viper): Doc fix for custom group.
4504 (top-level): Remove oh-so-no-longer-relevant text about vip.
4505 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
4506
4507 * ido.el (ido-save-directory-list-file):
4508 * saveplace.el (save-place-file):
4509 * calendar/timeclock.el (timeclock-file):
4510 * net/quickurl.el (quickurl-url-file):
4511 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
4512 * progmodes/idlwave.el (idlwave-config-directory):
4513 * textmodes/remember.el (remember-data-file):
4514 Bump :version.
4515
4516 2014-01-26 Glenn Morris <rgm@gnu.org>
4517
4518 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
4519 Doc fix. Make obsolete.
4520 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
4521
4522 * sort.el (delete-duplicate-lines): Doc fix.
4523
4524 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4525
4526 * progmodes/ada-mode.el (ada):
4527 * woman.el (woman): Link to info manual and Commentary section.
4528
4529 * progmodes/flymake.el (flymake):
4530 * nxml/nxml-mode.el (nxml):
4531 * net/eww.el (eww):
4532 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
4533 * htmlfontify.el (htmlfontify):
4534 * ses.el (ses):
4535 * epa.el (epa):
4536 * ido.el (ido): Link to info manual.
4537
4538 2014-01-25 Leo Liu <sdl.web@gmail.com>
4539
4540 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
4541
4542 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
4543
4544 * net/shr.el (shr-tag-img): Prefer the title over the alt text
4545 (bug#16537).
4546
4547 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
4548
4549 * net/eww.el (eww-download-callback):
4550 Fix reference to eww-download-directory.
4551
4552 * emacs-lisp/bytecomp.el (byte-compile-file):
4553 Remove unused local variable `file-name'.
4554
4555 2014-01-24 Glenn Morris <rgm@gnu.org>
4556
4557 * woman.el (woman-default-faces, woman-monochrome-faces):
4558 Fix obsolescence specification.
4559
4560 * subr.el (with-demoted-errors): Doc fix.
4561
4562 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
4563
4564 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
4565 (cl--macroexp-fboundp): New function.
4566 (cl--make-type-test): Use it.
4567
4568 2014-01-23 Glenn Morris <rgm@gnu.org>
4569
4570 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
4571 * simple.el (eval-expression): Doc fixes.
4572
4573 2014-01-22 Glenn Morris <rgm@gnu.org>
4574
4575 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
4576
4577 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
4578
4579 * emacs-lisp/package.el: Write files silently.
4580 (package-autoload-ensure-default-file, package--write-file-no-coding)
4581 (package-generate-description-file, package--download-one-archive)
4582 (package-install-from-archive): Tell `write-region' to stay quiet.
4583 (package-menu-mode, package-menu--print-info): Omit the Archive column
4584 if there's only one archive.
4585 (package-all-keywords, package--has-keyword-p): Remove dead code.
4586
4587 2014-01-22 Glenn Morris <rgm@gnu.org>
4588
4589 * version.el (emacs-bzr-version-bzr): Fix typo.
4590
4591 * version.el (emacs-repository-get-version):
4592 Check either .bzr or .git, but not both.
4593 Make the git case actually use the DIR argument, and return nil
4594 rather than the empty string.
4595 Avoid error if .git exists but the git executable is not found.
4596
4597 2014-01-22 Martin Rudalics <rudalics@gmx.at>
4598
4599 Fixes in window size functions around Bug#16430 and Bug#16470.
4600 * window.el (window-total-size, window-size): New argument ROUND.
4601 (window--min-delta-1, window-min-delta, window--max-delta-1):
4602 Be more conservative when calculating the numbers of lines or
4603 columns a window can shrink (Bug#16430).
4604 (fit-window-to-buffer): Simplify code.
4605 * term.el (term-window-width): Call window-body-width again.
4606
4607 2014-01-22 Glenn Morris <rgm@gnu.org>
4608
4609 * image.el (image-format-suffixes): Doc fix.
4610
4611 * international/quail.el (quail-define-package): Doc fix.
4612
4613 * emacs-lisp/authors.el (authors-valid-file-names)
4614 (authors-renamed-files-alist): Additions.
4615
4616 * vc/vc-git.el (vc-git-print-log): Remove --follow;
4617 reverts 2014-01-09 change. (Bug#16422)
4618
4619 * calc/calc-embed.el (thing-at-point-looking-at):
4620 * emacs-lisp/map-ynp.el (x-popup-dialog):
4621 * obsolete/lmenu.el (x-popup-dialog):
4622 * emacs-lisp/package.el (url-recreate-url):
4623 * mail/mailclient.el (clipboard-kill-ring-save):
4624 * subr.el (x-popup-dialog): Update declaration.
4625 * mail/rmail.el (rmail-mime-message-p):
4626 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
4627
4628 2014-01-21 Daniel Colascione <dancol@dancol.org>
4629
4630 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4631 Correctly detect when we're inside an arithmetic expansion form
4632 containing nested parenthesis.
4633 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
4634 to detect cases where we shouldn't expand "<<" to a heredoc
4635 skeleton.
4636
4637 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
4638
4639 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
4640 (eldoc--message-command-p): New function.
4641 (eldoc-display-message-p): Use it.
4642 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
4643 message is not automatically erased for us.
4644 (eldoc-print-current-symbol-info): Erase previous message, if any.
4645
4646 2014-01-21 Tassilo Horn <tsdh@gnu.org>
4647
4648 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
4649 specify it's an interactive function.
4650
4651 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
4652 Fix regex used for scanning for citation keys which failed for
4653 citations with optional arguments.
4654
4655 2014-01-21 Leo Liu <sdl.web@gmail.com>
4656
4657 * simple.el (read--expression): Don't enable eldoc-mode.
4658
4659 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
4660
4661 * simple.el (move-beginning-of-line): Make sure we don't move forward
4662 (bug#16497).
4663
4664 2014-01-20 Juri Linkov <juri@jurta.org>
4665
4666 * saveplace.el (toggle-save-place, save-place-to-alist)
4667 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
4668 'dired-mode) before checking for dired-directory. (Bug#16477)
4669
4670 2014-01-20 Juri Linkov <juri@jurta.org>
4671
4672 * indent.el (indent-line-to): Use backward-to-indentation
4673 instead of back-to-indentation. (Bug#16461)
4674
4675 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
4676
4677 Revert some of the CANNOT_DUMP fix (Bug#16494).
4678 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
4679 but fixing this can wait until after the next release.
4680 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
4681
4682 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
4683
4684 * eshell/esh-mode.el (eshell-password-prompt-regexp):
4685 Use `password-word-equivalents'.
4686 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
4687 to t. (Bug#5664, Bug#13124)
4688
4689 2014-01-19 Alan Mackenzie <acm@muc.de>
4690
4691 Bind open-paren-in-column-0-is-defun-start to nil at some entry
4692 points.
4693 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
4694 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
4695 * progmodes/cc-mode.el (c-before-change, c-after-change)
4696 (c-font-lock-fontify-region): Bind it here.
4697
4698 2014-01-19 Martin Rudalics <rudalics@gmx.at>
4699
4700 * term.el (term-window-width): Call window-text-width instead of
4701 window-width (Bug#16470).
4702
4703 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
4704
4705 * simple.el (password-word-equivalents): Remove duplicates.
4706 Sort, to make this easier next time.
4707 Downcase. Omit ": " after "jelszó".
4708
4709 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
4710
4711 * term/common-win.el (saved-region-selection): Defvar it.
4712 (x-select-text): Set saved-region-selection (Bug#16382).
4713
4714 2014-01-18 Glenn Morris <rgm@gnu.org>
4715
4716 * emacs-lisp/authors.el (authors-aliases)
4717 (authors-renamed-files-alist): Add some entries.
4718
4719 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
4720
4721 * net/tramp.el (tramp-password-prompt-regexp):
4722 Use `password-word-equivalents' if available.
4723 (tramp-action-password, tramp-process-one-action)
4724 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
4725
4726 2014-01-17 Chong Yidong <cyd@gnu.org>
4727
4728 * simple.el (password-word-equivalents): New defcustom.
4729 * comint.el (comint-password-prompt-regexp): Use it. Bump version
4730 to 24.4.
4731 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
4732 to t. (Bug#13124)
4733
4734 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
4735
4736 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
4737 (ruby-align-to-stmt-keywords): Change the default value.
4738 Use `ruby-alignable-keywords' to generate the possible customization
4739 choices.
4740 (ruby-smie-rules): Instead of using a hardcoded list of alignable
4741 keywords, check against the value of `ruby-alignable-keywords'
4742 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
4743
4744 2014-01-17 Glenn Morris <rgm@gnu.org>
4745
4746 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
4747
4748 Make M-x authors return zero *Authors Errors* from current logs.
4749 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
4750 (authors-ignored-files): Add some entries, remove others.
4751 (authors-ambiguous-files, authors-valid-file-names):
4752 Add some entries.
4753 (authors-renamed-files-alist): Add, remove, and adjust entries.
4754 (authors-renamed-files-regexps): Add some entries.
4755 Remove some very broad ones. Make some entries `lax'.
4756 (authors-lax-changelogs): New constant.
4757 (authors-disambiguate-file-name): Treat top-level specially.
4758 (authors-lax-changelog-p): New function.
4759 (authors-canonical-file-name): Check file as written against
4760 authors-valid-file-names. Do not special-case etc/.
4761 Handle `lax' logs and authors-renamed-files-regexps elements.
4762
4763 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
4764
4765 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
4766 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
4767 callers.
4768
4769 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4770
4771 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
4772 Assume we're already in the proper buffer.
4773 Inspired by Anders Lindgren <andlind@gmail.com>.
4774 (follow-post-command-hook): Call it from the right buffer.
4775 (follow-comint-scroll-to-bottom): Adjust call.
4776 (follow-all-followers): Use get-buffer-window-list.
4777
4778 2014-01-15 Daniel Colascione <dancol@dancol.org>
4779
4780 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
4781 `buffer-file-name' in interactive-form so that we don't leave
4782 pathless file names in `file-name-history'.
4783
4784 2014-01-15 Juri Linkov <juri@jurta.org>
4785
4786 * indent.el (indent-rigidly): Set deactivate-mark to nil
4787 in transient indentation mode. (Bug#16438)
4788
4789 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
4790
4791 * emacs-lisp/package.el (package-desc-keywords): New function
4792 (Bug#16222).
4793 (describe-package-1, package-all-keywords)
4794 (package--has-keyword-p): Use it.
4795
4796 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4797
4798 * simple.el (define-alternatives): When creating the
4799 COMMAND-alternatives variable, assign COMMAND as its definition
4800 name so that `describe-variable' can relocate it.
4801
4802 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
4803
4804 * font-lock.el (font-lock-keywords): Fix typo in docstring
4805 (bug#16307).
4806
4807 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4808
4809 * ispell.el (ispell-region): Reset `in-comment' for new line
4810 instead of wrongly reset `add-coment' (bug#13577).
4811
4812 2014-01-14 Daiki Ueno <ueno@gnu.org>
4813
4814 * epa-file.el (epa-file-write-region): Encode the region according
4815 to `buffer-file-format'. Problem reported at:
4816 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
4817
4818 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4819
4820 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
4821 so it applies in the right buffer (bug#16410).
4822
4823 2014-01-13 Daniel Colascione <dancol@dancol.org>
4824
4825 * textmodes/rst.el (rst-define-key): Provide deprecated
4826 keybindings through named functions instead of anonymous ones so
4827 that "??" doesn't appear in describe-mode output.
4828
4829 2014-01-13 Bastien Guerry <bzg@gnu.org>
4830
4831 * simple.el (define-alternatives): Call the selected command
4832 interactively. When setting `COMMAND--implementation' for the
4833 first time, tell the user how to chose another implementation.
4834 Enhance the docstring.
4835
4836 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4837
4838 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
4839 (log-edit--match-first-line): New function.
4840 (log-edit-font-lock-keywords): Use it.
4841 (log-edit-mode): Make jit-lock-defer-multiline work.
4842
4843 2014-01-13 Bastien Guerry <bzg@gnu.org>
4844
4845 * rect.el (rectangle-mark-mode): When the region is not active,
4846 display a message saying that the mark as been set and that
4847 rectangle mode is in use.
4848 (rectangle--highlight-for-redisplay): Only put an overlay with a
4849 visible vertical bar when (display-graphic-p) is non-nil.
4850 This partially fixes Bug#16403.
4851
4852 2014-01-13 Juri Linkov <juri@jurta.org>
4853
4854 * info.el (Info-find-file): Go to DIR before displaying the error
4855 about a nonexistent file if no previous Info file is visited.
4856 Use `user-error' instead of `error' for "Info file %s does not exist".
4857 (Info-find-node-2): In case of a nonexistent node in unwind forms
4858 go to the Top node if there is no previous node to revert to.
4859 (Bug#16405)
4860
4861 2014-01-13 Martin Rudalics <rudalics@gmx.at>
4862
4863 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4864 * window.el (fit-frame-to-buffer): Fix doc-string.
4865 Respect window-min-height/-width. Fit pixelwise when
4866 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4867 when avoiding that frame goes partially off-screen.
4868 (fit-window-to-buffer): Respect window-min-height/-width
4869 (Bug#14096).
4870
4871 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4872
4873 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4874 after an empty line.
4875
4876 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4877
4878 * net/shr.el (shr-render-region): Autoload.
4879
4880 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4881
4882 * net/eww.el (eww-download-directory): Rename from
4883 `eww-download-path' (Bug#16419).
4884
4885 2014-01-12 Leo Liu <sdl.web@gmail.com>
4886
4887 * dired-x.el (dired-mode-map): Fix last change.
4888
4889 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4890
4891 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4892
4893 Spelling fixes.
4894 * emacs-lisp/generic.el (generic--normalize-comments):
4895 Rename from generic--normalise-comments. All uses changed.
4896 * play/bubbles.el (bubbles--neighborhood-score)
4897 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4898 (bubbles--neighborhood-available)
4899 (bubbles--update-neighborhood-score):
4900 Rename from names with 'neighbourhood'. All uses changed.
4901
4902 2014-01-12 Leo Liu <sdl.web@gmail.com>
4903
4904 Re-implement the feature of showing eldoc info after editing.
4905 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4906 (eldoc-edit-message-commands): New function.
4907 (eldoc-print-after-edit): New variable.
4908 (eldoc-pre-command-refresh-echo-area): Emit message only by
4909 eldoc-message-commands.
4910 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4911 if eldoc-print-after-edit is set. (Bug#16346)
4912 * simple.el (read--expression): Enable eldoc-mode.
4913 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4914
4915 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4916 Eric S. Raymond <esr@thyrsus.com>
4917
4918 * version.el (emacs-repository-get-version): Enhance so the
4919 function works correctly in either a Bazaar or Git repo.
4920
4921 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
4922
4923 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4924 Goes with removal of the joke manpages from /etc.
4925
4926 2014-01-10 Kenichi Handa <handa@gnu.org>
4927
4928 * mail/rmail.el (rmail-get-coding-system):
4929 Check rmail-get-coding-function before "funcall"ing it.
4930
4931 2014-01-10 Glenn Morris <rgm@gnu.org>
4932
4933 * emacs-lisp/authors.el (authors-fixed-entries):
4934 Update for files that no longer exist.
4935
4936 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
4937
4938 * version.el (emacs-bzr-get-version): Restore compatibilty with
4939 24.3 (Tested).
4940
4941 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4942
4943 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4944 and Podfile.
4945
4946 2014-01-10 Eli Zaretskii <eliz@gnu.org>
4947
4948 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4949
4950 2014-01-10 Chong Yidong <cyd@gnu.org>
4951
4952 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4953
4954 2014-01-10 Anders Lindgren <andlind@gmail.com>
4955
4956 * follow.el (follow-cache-command-list): Include right-char and
4957 left-char.
4958
4959 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4960
4961 Spelling fixes.
4962 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4963 * woman.el (woman-mark-horizontal-position):
4964 Rename from woman-mark-horizonal-position. Use changed.
4965
4966 2014-01-10 Glenn Morris <rgm@gnu.org>
4967
4968 * info.el (info-initialize): If running uninstalled, ensure our
4969 own info files are always found first, even if INFOPATH is set.
4970
4971 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
4972
4973 2014-01-09 David Engster <deng@randomsample.de>
4974
4975 * emacs-lisp/eieio-custom.el:
4976 * emacs-lisp/eieio-opt.el: Set generated autoload file to
4977 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
4978 * emacs-lisp/eieio.el: Regenerate autoloads.
4979
4980 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
4981
4982 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
4983 following renames. (Bug#8756)
4984
4985 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
4986
4987 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
4988 (bug#16382).
4989 (activate-mark): Add `no-tmm' argument.
4990 (set-mark, push-mark-command): Use it instead of running
4991 activate-mark-hook by hand.
4992
4993 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
4994
4995 In preparation for the move to git, sanitize out some
4996 Bazaar-specific names.
4997
4998 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
4999
5000 * version.el (emacs-bzr-version): Name changed to
5001 emacs-repository-version. Obsolete-variable alias made.
5002 * loadup.el: Follow through on this name change.
5003 * mail/emacsbug.el (report-emacs-bug): Factor out any
5004 assumption about the version control system in use.
5005
5006 2014-01-08 David Engster <deng@randomsample.de>
5007
5008 * help-fns.el (help-fns-describe-function-functions):
5009 New variable to call functions for augmenting help buffers.
5010 (describe-function-1): Remove explicit calls to
5011 `help-fns--compiler-macro', `help-fns--parent-mode' and
5012 `help-fns--obsolete'. Put them in above new variable instead, and
5013 call them through `run-hook-with-args'.
5014 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
5015 `eieio-describe-class'. Not meant for interactive use anymore,
5016 but to augment existing help buffers. Remove optional second
5017 argument. Create proper button for file location.
5018 Rewrite function to use `insert' instead of `princ' and `prin1' where
5019 possible.
5020 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
5021 (eieio-method-def, eieio-class-def): Move further up.
5022 (describe-method, describe-generic, eieio-describe-method):
5023 Remove aliases.
5024 (eieio-help-constructor, eieio-help-generic): Rename from
5025 `eieio-describe-constructor' and `eieio-describe-generic', resp.
5026 Rewrite to use `insert' in the current buffer and use proper help
5027 buttons.
5028 (eieio-help-find-method-definition)
5029 (eieio-help-find-class-definition): Also accept symbols as
5030 arguments.
5031 (eieio-help-mode-augmentation-maybee): Remove.
5032 (eieio-describe-class-sb): Use `describe-function'.
5033 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
5034 Add `eieio-help-generic' and `eieio-help-constructor'.
5035
5036 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
5037
5038 Spelling fixes.
5039 * language/china-util.el (hz-ascii-designation):
5040 Rename from hz-ascii-designnation.
5041 (hz-ascii-designation): Rename from hz-ascii-designnation.
5042 All uses changed.
5043
5044 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5045
5046 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
5047 package-alist.
5048
5049 2014-01-08 Bastien Guerry <bzg@gnu.org>
5050
5051 * emacs-lisp/package.el (package-delete):
5052 Correctly delete the package from package-alist.
5053
5054 2014-01-08 Daiki Ueno <ueno@gnu.org>
5055
5056 * emacs-lisp/package.el (url-recreate-url): Declare.
5057 (url-http-target-url): Declare.
5058 (package-handle-response): Include requested URL in the error message.
5059 (package--check-signature): Don't re-signal errors from
5060 package--with-work-buffer. Suggested by Stefan Monnier.
5061
5062 2014-01-07 Bastien Guerry <bzg@gnu.org>
5063
5064 * minibuffer.el (completion--try-word-completion): When both a
5065 hyphen and a space are possible candidates for the character
5066 following a word, display both candidates. (Bug#15980)
5067
5068 2014-01-07 Martin Rudalics <rudalics@gmx.at>
5069
5070 * window.el (balance-windows-2): While rounding don't give a
5071 window more than the remainder. Bug#16351, bug#16383.
5072
5073 2014-01-07 Glenn Morris <rgm@gnu.org>
5074
5075 * menu-bar.el (menu-bar-help-extra-packages): Remove.
5076 (menu-bar-help-menu): Use view-external-packages instead.
5077
5078 2014-01-07 Bastien Guerry <bzg@gnu.org>
5079
5080 * emacs-lisp/package.el (package-delete): Also delete the package
5081 name from `package-alist', not its description only.
5082
5083 2014-01-07 Glenn Morris <rgm@gnu.org>
5084
5085 * help.el (view-external-packages):
5086 * menu-bar.el (menu-bar-help-extra-packages):
5087 Visit efaq.info rather than etc/MORE.STUFF.
5088
5089 2014-01-07 Juri Linkov <juri@jurta.org>
5090
5091 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
5092 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
5093
5094 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
5095 that shadows RET. (Bug#16342)
5096
5097 2014-01-07 Chong Yidong <cyd@gnu.org>
5098
5099 * isearch.el (isearch-yank-char, isearch-yank-word)
5100 (isearch-yank-line): Doc fix.
5101
5102 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5103
5104 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
5105 * emacs-lisp/elint.el (elint-find-builtins):
5106 * emacs-lisp/eldoc.el (eldoc-symbol-function):
5107 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
5108 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
5109 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5110 * apropos.el (apropos-safe-documentation):
5111 * subr.el (symbol-file): Remove redundant fboundp.
5112 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
5113
5114 2014-01-06 Bastien Guerry <bzg@gnu.org>
5115
5116 * hl-line.el (global-hl-line-overlay): Make a local variable.
5117 (global-hl-line-overlays): New variable to store all overlays.
5118 (global-hl-line-mode): Don't delete overlays from the current
5119 buffer when `global-hl-line-sticky-flag' is non-nil.
5120 (global-hl-line-highlight): Add new overlays to
5121 `global-hl-line-overlays'.
5122 (global-hl-line-unhighlight-all): New function to delete all
5123 overlays when turning off `global-hl-line-mode'.
5124 This fixes Bug#16183.
5125
5126 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5127
5128 * subr.el (set-transient-map): Fix nested case and docstring.
5129
5130 2014-01-06 Tassilo Horn <tsdh@gnu.org>
5131
5132 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
5133 `Texinfo' entry.
5134
5135 2014-01-06 Daniel Colascione <dancol@dancol.org>
5136
5137 Fix defun navigation in vc log view.
5138
5139 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
5140 like `beginning-of-defun'.
5141 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
5142 log-view-end-of-defun to log-view-end-of-defun-1. Replace
5143 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
5144 (log-view-extract-comment): Call `log-view-current-entry' directly
5145 instead of relying on broken `log-view-beginning-of-defun' behavior.
5146
5147 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
5148
5149 Spelling fixes.
5150 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
5151 * emacs-lisp/debug.el (cancel-debug-on-entry):
5152 * epg.el (epg-error-to-string):
5153 * files.el (recover-file):
5154 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
5155 * mail/emacsbug.el (report-emacs-bug-hook):
5156 * mail/sendmail.el (mail-recover):
5157 * ses.el (ses-yank-resize):
5158 * term/ns-win.el (ns-print-buffer):
5159 Spelling fixes in diagnostics, mostly for "canceled" with one L.
5160 * epg.el (epg-key-capability-alist): Rename from misspelled version.
5161 All uses changed.
5162 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
5163
5164 2014-01-06 Leo Liu <sdl.web@gmail.com>
5165
5166 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
5167 to avoid shadowing global key. (Bug#16354)
5168
5169 2014-01-06 Daniel Colascione <dancol@dancol.org>
5170
5171 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
5172 rst-mode.
5173
5174 2014-01-05 Martin Rudalics <rudalics@gmx.at>
5175
5176 * window.el (balance-windows): Add mising t to fix Bug#16351.
5177
5178 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5179
5180 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
5181 (bug#16285).
5182 (shr-insert): If we have a word that's longer than `shr-width',
5183 break after it anyway. Otherwise we'll do no breaking once we get
5184 such a long word.
5185
5186 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5187
5188 * net/eww.el (eww): Support single/double quote for search.
5189 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
5190 (eww-history-quit): Delete and use quit-window.
5191 (eww-history-kill): Delete, because it doesn't work well and
5192 not necessary.
5193 (eww-history-mode-map): Delete some keys and add easy-menu.
5194
5195 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
5196
5197 Fix misspelling of 'chinese' in rx (Bug#16237).
5198 * emacs-lisp/rx.el (rx-categories): Correct spelling of
5199 chinese-two-byte.
5200
5201 Change subword regexps back to vars (Bug#16296).
5202 * progmodes/subword.el (subword-forward-regexp)
5203 (subword-backward-regexp): Change these back to variables.
5204
5205 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5206
5207 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
5208 syntax-begin-function (bug#16247).
5209
5210 2014-01-03 Chong Yidong <cyd@gnu.org>
5211
5212 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
5213 (advice--docstring): Delete variable.
5214 (advice--make-1): Leave the docstring empty.
5215 (advice-add): Use function-documentation for advised docstring.
5216
5217 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
5218 Ignore function-documentation property when getting documentation.
5219 (ad-activate-advised-definition): Use function-documentation
5220 generate the docstring.
5221 (ad-make-advised-definition): Don't call
5222 ad-make-advised-definition-docstring.
5223 (ad-make-advised-definition-docstring, ad-advised-definition-p):
5224 Delete functions.
5225
5226 * progmodes/sql.el (sql-help): Use function-documentation instead
5227 of dynamic-docstring-function property. No need to autoload now.
5228 (sql--help-docstring): New variable.
5229 (sql--make-help-docstring): Use it.
5230
5231 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5232
5233 * ielm.el (ielm-tab): Retarget.
5234 (ielm-map): Use ielm-tab for tab.
5235 (ielm-complete-filename): Use comint-filename-completion.
5236 (ielm-complete-symbol): Remove.
5237 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
5238 remove ielm-tab from completion-at-point-functions (bug#16224).
5239
5240 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
5241 Beware signals raised by predicates (bug#16201).
5242
5243 2014-01-02 Richard Stallman <rms@gnu.org>
5244
5245 * dired-aux.el (dired-do-print): Handle printer-name.
5246
5247 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
5248 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
5249 (rmail-epa-decrypt): Turn off mime processing.
5250
5251 * mail/rmail.el (rmail-make-in-reply-to-field):
5252 Add parens in message-id.
5253
5254 * mail/rmail.el (rmail-get-coding-function): Variable.
5255 (rmail-get-coding-system): Use it.
5256
5257 2013-12-31 Eli Zaretskii <eliz@gnu.org>
5258
5259 * international/mule-conf.el: Unify the charset indian-is13194.
5260 (indian-is13194): Specify unify-map.
5261
5262 2013-12-31 Leo Liu <sdl.web@gmail.com>
5263
5264 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
5265
5266 2013-12-30 Daniel Colascione <dancol@dancol.org>
5267
5268 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
5269 of printing a useless when we resume from sleep.
5270
5271 * progmodes/sh-script.el
5272 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
5273 in indentation code. (Bug#16233)
5274
5275 2013-12-28 João Távora <joaotavora@gmail.com>
5276
5277 * elec-pair.el (electric-pair-post-self-insert-function):
5278 Don't open extra newlines at beginning of buffer. (Bug#16272)
5279
5280 2013-12-28 Eli Zaretskii <eliz@gnu.org>
5281
5282 * frame.el (window-system-for-display): Don't allow to create a
5283 GUI frame from a -nw session on MS-Windows. (Bug#14739)
5284
5285 2013-12-28 Glenn Morris <rgm@gnu.org>
5286
5287 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
5288 Update callers.
5289
5290 * apropos.el (apropos-match-face):
5291 * calculator.el (calculator-displayer):
5292 * dabbrev.el (dabbrev-search-these-buffers-only):
5293 * face-remap.el (buffer-face-mode-face):
5294 * simple.el (yank-handled-properties):
5295 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
5296 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
5297 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
5298 (hashcash-double-spend-database):
5299 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
5300 (ruby-deep-indent-paren-style):
5301 * textmodes/flyspell.el (flyspell-auto-correct-binding):
5302 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
5303 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
5304 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
5305 Specify custom types.
5306
5307 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
5308 * bookmark.el (bookmark-bmenu-use-header-line):
5309 * doc-view.el (doc-view-scale-internally):
5310 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
5311 * register.el (register-preview-delay):
5312 * net/shr.el (shr-bullet):
5313 * progmodes/cfengine.el (cfengine-cf-promises)
5314 (cfengine-parameters-indent):
5315 * progmodes/octave.el (inferior-octave-error-regexp-alist):
5316 * textmodes/reftex-vars.el (reftex-label-regexps):
5317 * vc/log-edit.el (log-edit-setup-add-author): Add version.
5318
5319 * net/tls.el (tls-certtool-program): Fix default value.
5320
5321 * desktop.el (desktop-restore-in-current-display):
5322 * newcomment.el (comment-empty-lines):
5323 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
5324 (idlwave-pad-keyword):
5325 * progmodes/tcl.el (tcl-tab-always-indent):
5326 * textmodes/reftex-vars.el (reftex-index-default-tag):
5327 * elec-pair.el (electric-pair-skip-whitespace):
5328 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
5329
5330 * emacs-lisp/authors.el (authors-ignored-files)
5331 (authors-valid-file-names, authors-renamed-files-alist): Additions.
5332
5333 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
5334
5335 * shell.el (shell-dynamic-complete-command): Doc fix.
5336 (shell--command-completion-data): Shell completion now matches
5337 executable filenames from the current buffer's directory, on
5338 systems in which this behavior is the default (windows-nt, ms-dos).
5339
5340 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5341
5342 * net/shr.el (shr-insert): Don't infloop if the width is zero.
5343
5344 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
5345
5346 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
5347 (bug#16251).
5348
5349 * electric.el: Move all electric-pair-* to elec-pair.el.
5350 * elec-pair.el: New file, split from electric.el.
5351
5352 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5353
5354 * net/shr.el (shr-find-fill-point): Don't try to fill if the
5355 indentation level is larger than the width, because that will
5356 infloop.
5357 (shr-insert): Fill repeatedly long texts, so that Japanese is
5358 formatted correctly (bug#16263).
5359 (shr-find-fill-point): Off by one error in comparison with the
5360 indentation.
5361
5362 2013-12-26 João Távora <joaotavora@gmail.com>
5363
5364 * electric.el (electric-pair-mode): More flexible engine for skip-
5365 and inhibit predicates, new options for pairing-related functionality.
5366 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
5367 if that keeps or improves their balance in buffers.
5368 (electric-pair-delete-adjacent-pairs): Delete the pair when
5369 backspacing over adjacent matched delimiters.
5370 (electric-pair-open-extra-newline): Open extra newline when
5371 inserting newlines between adjacent matched delimiters.
5372 (electric--sort-post-self-insertion-hook):
5373 Sort post-self-insert-hook according to priority values when
5374 minor-modes are activated.
5375 * simple.el (newline-and-indent): Call newline with interactive
5376 set to t.
5377 (blink-paren-post-self-insert-function): Set priority to 100.
5378 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5379 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
5380 comments. Locally set electric-pair-skip-whitespace to 'chomp and
5381 electric-pair-open-newline-between-pairs to nil.
5382
5383 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
5384
5385 * progmodes/python.el: Use lexical-binding.
5386 (python-nav-beginning-of-defun): Stop searching ASAP.
5387
5388 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
5389
5390 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
5391 Fix interactive spec. Doc fix. (Bug#15754)
5392
5393 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
5394
5395 * emacs-lisp/byte-run.el (eval-when-compile):
5396 * progmodes/cc-defs.el (cc-eval-when-compile):
5397 Fix edebug spec (bug#16184).
5398
5399 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5400
5401 * net/shr.el (shr-visit-file): Remove debugging function.
5402 (shr-insert): Don't infloop if we can't find a good place to break
5403 the line (bug#16256).
5404
5405 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
5406
5407 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
5408 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
5409 python-nav-lisp-forward-sexp-safe.
5410 (python-nav--forward-sexp): New argument SAFE allows switching
5411 forward sexp movement behavior for parens.
5412 (python-nav-forward-sexp): Throw errors on unterminated parens
5413 (Bug#16191).
5414 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
5415 (python-nav-backward-sexp-safe): New functions.
5416 (python-shell-buffer-substring):
5417 Use `python-nav-forward-sexp-safe'.
5418
5419 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5420
5421 * net/shr.el (shr-find-fill-point): Don't break lines before a
5422 quotation mark.
5423 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
5424 (shr-find-fill-point): Remove the special checks for the quotation
5425 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
5426
5427 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5428
5429 * net/eww.el (eww-form-textarea): Use a different face for
5430 textareas than text input since they have different keymaps
5431 (bug#16142).
5432
5433 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
5434
5435 * progmodes/python.el (python-nav-beginning-of-statement):
5436 Speed up (Bug#15295).
5437
5438 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5439
5440 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
5441 the window configuration.
5442
5443 2013-12-24 Eli Zaretskii <eliz@gnu.org>
5444
5445 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
5446 we run on MS-Windows or MS-DOS.
5447
5448 2013-12-24 Martin Rudalics <rudalics@gmx.at>
5449
5450 * window.el (balance-windows-area): Call window-size instead of
5451 window-height and window-width. Bug#16241.
5452
5453 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5454
5455 * net/eww.el (eww-bookmark-quit): Remove.
5456 (eww-bookmark-browse): Restore the window configuration when you
5457 choose a bookmark (bug#16144).
5458
5459 2013-12-24 Daniel Colascione <dancol@dancol.org>
5460
5461 * icomplete.el: Remove redundant :group arguments to `defcustom'
5462 throughout.
5463 (icomplete-show-matches-on-no-input): New customizable variable.
5464 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
5465 we have something to show.
5466 (icomplete-exhibit): Compute completions even if we have no user input.
5467
5468 2013-12-23 Daniel Colascione <dancol@dancol.org>
5469
5470 * icomplete.el: Move `provide' to end of file.
5471
5472 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
5473
5474 * net/gnutls.el (gnutls-verify-error): Add version tag.
5475
5476 2013-12-23 Chong Yidong <cyd@gnu.org>
5477
5478 * subr.el (set-transient-map): Rename from
5479 set-temporary-overlay-map. Doc fix.
5480
5481 * face-remap.el (text-scale-adjust):
5482 * indent.el (indent-rigidly):
5483 * kmacro.el (kmacro-call-macro):
5484 * minibuffer.el (minibuffer-force-complete):
5485 * repeat.el (repeat):
5486 * simple.el (universal-argument--mode):
5487 * calendar/todo-mode.el (todo-insert-item--next-param):
5488 * progmodes/f90.el (f90-abbrev-start): Callers changed.
5489
5490 * indent.el (indent-rigidly): Use substitute-command-keys.
5491
5492 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5493
5494 * net/eww.el (eww-tag-select): Add text-property to jump to next
5495 select field.
5496 (eww): Add non-supported ftp error.
5497
5498 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5499
5500 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
5501 comments. Handle electric indent after typing `?' and `!'.
5502
5503 2013-12-22 Chong Yidong <cyd@gnu.org>
5504
5505 * faces.el (face-spec-recalc): If the theme specs are not
5506 applicable to a frame, fall back on the defface spec.
5507 This prevents themes from obliterating faces on low-color terminals.
5508
5509 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5510
5511 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5512 after `{'. We need it after block openers, and it doesn't seem
5513 to hurt after hash openers.
5514
5515 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5516
5517 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
5518 extracted from `ruby-smie-rules'.
5519 (ruby--electric-indent-chars): New variable.
5520 (ruby--electric-indent-p): New function.
5521 (ruby-mode): Use `electric-indent-functions' instead of
5522 `electric-indent-chars'.
5523
5524 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5525
5526 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
5527 docstring.
5528 (ruby-smie-rules): Indent plus one level after `=>'.
5529
5530 2013-12-21 Richard Stallman <rms@gnu.org>
5531
5532 * simple.el (newline): Doc fix.
5533
5534 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5535
5536 * net/eww.el (eww-list-histories, eww-list-histories)
5537 (eww-history-browse, eww-history-quit, eww-history-kill)
5538 (eww-history-mode-map, eww-history-mode): New command and
5539 functions to list browser histories.
5540 (eww-form-text): Support text form with disabled
5541 and readonly attributes.
5542 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
5543
5544 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5545
5546 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
5547 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
5548 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
5549 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
5550 Use `user-error'.
5551 (eww-bookmark-mode-map): Add menu.
5552 (eww-render, eww-mode): Use `setq-local'.
5553 (eww-tool-bar-map): New variable.
5554 (eww-mode): Set `tool-bar-map'.
5555 (eww-view-source): Check for `html-mode' with `fboundp'.
5556
5557 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5558
5559 * net/shr.el (shr--extract-best-source): Don't bug out on audio
5560 elements with text inside. Also remove debugging.
5561
5562 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
5563
5564 * cus-start.el (all): Add ns-use-srgb-colorspace.
5565
5566 2013-12-21 Chong Yidong <cyd@gnu.org>
5567
5568 * custom.el (custom-theme-recalc-face): Do nothing if the face is
5569 undefined. Thus, theme settings for undefined faces do not take
5570 effect until the faces are defined with defface, the same as with
5571 theme variables.
5572
5573 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
5574 (face-spec-reset-face): Don't assign extra properties in temacs.
5575 (face-spec-recalc): Apply X resources too.
5576
5577 2013-12-21 Chong Yidong <cyd@gnu.org>
5578
5579 * faces.el (face-spec-set):
5580 * cus-face.el (custom-theme-set-faces, custom-set-faces):
5581 * custom.el (defface): Doc fixes (Bug#16203).
5582
5583 * indent.el (indent-rigidly-map): Add docstring, and move commands
5584 into named functions.
5585 (indent-rigidly-left, indent-rigidly-right)
5586 (indent-rigidly-left-to-tab-stop)
5587 (indent-rigidly-right-to-tab-stop): New functions. Decide on
5588 indentation direction based on bidi direction, and accumulate
5589 sequential commands in a single undo boundary.
5590 (indent-rigidly--pop-undo): New utility function.
5591
5592 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
5593
5594 * faces.el (read-face-name): Require crm.el when using crm-separator.
5595
5596 2013-12-20 Daniel Colascione <dancol@dancol.org>
5597
5598 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
5599 so that we don't reflow comments into the shebang line.
5600
5601 2013-12-20 Juri Linkov <juri@jurta.org>
5602
5603 * saveplace.el (save-place-to-alist): Add `dired-filename' as
5604 a position when `dired-directory' is non-nil. Check integer
5605 positions with `integerp'.
5606 (toggle-save-place, save-places-to-alist): Add check for
5607 `dired-directory'.
5608 (save-place-find-file-hook): Check integer positions with
5609 `integerp'.
5610 (save-place-dired-hook): Use `dired-goto-file' when
5611 `dired-filename' is found in the assoc list. Check integer
5612 positions with `integerp'.
5613 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
5614
5615 * dired.el (dired-initial-position-hook): Rename back from
5616 `dired-initial-point-hook'.
5617 (dired-initial-position): Rename `dired-initial-point-hook' to
5618 `dired-initial-position-hook'.
5619 (dired-file-name-at-point): Doc fix. (Bug#15329)
5620
5621 2013-12-20 Juri Linkov <juri@jurta.org>
5622
5623 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
5624 (read-regexp-suggestions): New function.
5625 (read-regexp): Use `read-regexp-defaults-function' to get default values.
5626 Use `read-regexp-suggestions'. Add non-empty default to history
5627 for empty input.
5628 (occur-read-regexp-defaults-function): Remove function.
5629 (occur-read-primary-args): Use `regexp-history-last' instead of
5630 `occur-read-regexp-defaults-function'.
5631
5632 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
5633 (hi-lock-line-face-buffer, hi-lock-face-buffer)
5634 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
5635 `hi-lock-read-regexp-defaults-function'. Doc fix.
5636 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
5637 with `find-tag-default-as-symbol-regexp'. Doc fix.
5638 (hi-lock-read-regexp-defaults): Remove function.
5639 (hi-lock-regexp-okay): Add check for null.
5640
5641 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
5642 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
5643
5644 * subr.el (find-tag-default-as-symbol-regexp): New function.
5645 (find-tag-default-as-regexp): Move symbol regexp formatting to
5646 `find-tag-default-as-symbol-regexp'.
5647
5648 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
5649
5650 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
5651 (Bug#14179)
5652
5653 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5654
5655 * calendar/todo-mode.el: New implementation of item insertion
5656 commands and key bindings.
5657 (todo-key-prompt): New face.
5658 (todo-insert-item): New command.
5659 (todo-insert-item--parameters): New defconst, replacing defvar
5660 todo-insertion-commands-args-genlist.
5661 (todo-insert-item--param-key-alist): New defconst, replacing
5662 defvar todo-insertion-commands-arg-key-list.
5663 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
5664 (todo-insert-item--argsleft, todo-insert-item--apply-args)
5665 (todo-insert-item--next-param): New functions.
5666 (todo-insert-item--args, todo-insert-item--argleft)
5667 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
5668 New variables.
5669 (todo-key-bindings-t): Change binding of "i" from
5670 todo-insertion-map to todo-insert-item.
5671 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
5672 (todo-insertion-command-name, todo-insertion-commands-names)
5673 (todo-define-insertion-command, todo-insertion-commands)
5674 (todo-insertion-key-bindings, todo-insertion-map): Remove.
5675
5676 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5677
5678 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
5679 (todo-toggle-item-highlighting): Use eval-and-compile instead of
5680 eval-when-compile.
5681 (todo-move-category): Allow choosing a non-existing todo file to
5682 move the category to, and create that file.
5683 (todo-default-priority): New user option.
5684 (todo-set-item-priority): Use it.
5685 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
5686 (desktop-restore-file-buffer): Declare.
5687 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
5688 (todo-modes-set-2): Locally set desktop-save-buffer to
5689 todo-desktop-save-buffer.
5690 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
5691 (auto-mode-alist): Add autoload cookie.
5692
5693 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
5694
5695 * emacs-lisp/subr-x.el: Renamed from helpers.el.
5696 helpers.el was a poor choice of name.
5697 (string-remove-prefix): New function.
5698 (string-remove-suffix): New function.
5699
5700 2013-12-20 Martin Rudalics <rudalics@gmx.at>
5701
5702 Fix assignment for new window total sizes.
5703 * window.el (window--pixel-to-size): Remove function.
5704 (window--pixel-to-total-1, window--pixel-to-total):
5705 Fix calculation of new total sizes.
5706
5707 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
5708
5709 * comint.el (comint-output-filter): Fix rear-nonsticky property
5710 placement (Bug#16010).
5711
5712 2013-12-20 Chong Yidong <cyd@gnu.org>
5713
5714 * faces.el (read-color): Minor fix for completion function.
5715
5716 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
5717
5718 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
5719 New option. (Bug#16182)
5720 (ruby-smie--indent-to-stmt-p): Use it.
5721 (ruby-smie-rules): Revert the logic in the handling of `when'.
5722 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
5723 (ruby-deep-arglist, ruby-deep-indent-paren)
5724 (ruby-deep-indent-paren-style): Update docstrings to note that the
5725 vars don't have any effect with SMIE.
5726
5727 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
5728
5729 * calc/calc.el (calc-enter, calc-pop): Use the variable
5730 `calc-context-sensitive-enter'.
5731
5732 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
5733
5734 * net/shr.el (shr-insert): Protect against infloops in degenerate
5735 tables.
5736
5737 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5738
5739 * progmodes/octave.el (octave): Add link to manual and octave
5740 homepage.
5741 (octave-mode-menu): Link to octave-mode manual.
5742
5743 2013-12-20 Leo Liu <sdl.web@gmail.com>
5744
5745 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
5746 insertion using skeleton-end-newline. (Bug#16138)
5747
5748 2013-12-20 Juri Linkov <juri@jurta.org>
5749
5750 * replace.el (occur-engine): Use `add-face-text-property'
5751 to add the face property to matches and titles. (Bug#14645)
5752
5753 * hi-lock.el (hi-green): Use lighter color "light green" closer to
5754 the palette of other hi-lock colors.
5755 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
5756
5757 2013-12-19 Juri Linkov <juri@jurta.org>
5758
5759 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
5760 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
5761 (minibuffer-history-symbol): Move variable declaration closer to
5762 its usage.
5763
5764 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
5765 (Bug#14785)
5766
5767 2013-12-19 Juri Linkov <juri@jurta.org>
5768
5769 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
5770 New function.
5771 (log-edit-hook): Add it to :options. (Bug#16170)
5772
5773 2013-12-19 Juri Linkov <juri@jurta.org>
5774
5775 * simple.el (eval-expression-print-format): Don't check for
5776 command names and the last command. Always display additional
5777 formats of the integer result in the echo area, and insert them
5778 to the current buffer only with a zero prefix arg.
5779 Display character when char-displayable-p is non-nil.
5780 (eval-expression): With a zero prefix arg, set `print-length' and
5781 `print-level' to nil, and insert the integer values from
5782 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
5783
5784 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
5785 `eval-last-sexp-arg-internal'. Doc fix.
5786 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
5787 `eval-last-sexp-print-value'. Doc fix.
5788 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
5789 Set `print-length' and `print-level' to nil when arg is zero.
5790 (eval-last-sexp): Doc fix.
5791 (eval-defun-2): Print the integer values from
5792 `eval-expression-print-format' at the end.
5793
5794 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
5795 values from `eval-expression-print-format' at the end.
5796
5797 * ielm.el (ielm-eval-input): Print the integer
5798 values from `eval-expression-print-format' at the end.
5799
5800 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
5801
5802 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
5803 2013-12-11T19:01:44Z!tzz@lifelogs.com.
5804
5805 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
5808 (hl-line-highlight, global-hl-line-highlight): Use it.
5809 (hl-line-overlay): Use defvar-local.
5810
5811 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
5812
5813 * term/ns-win.el: Require dnd.
5814 (global-map): Remove drag items.
5815 (ns-insert-text, ns-set-foreground-at-mouse)
5816 (ns-set-background-at-mouse):
5817 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
5818 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
5819 New functions.
5820
5821 2013-12-19 Glenn Morris <rgm@gnu.org>
5822
5823 * emacs-lisp/ert.el (ert-select-tests):
5824 Fix string/symbol mixup. (Bug#16121)
5825
5826 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5827
5828 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
5829 keywords to their parent.
5830
5831 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5832
5833 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
5834 first arg to be a string (fixed dead code), or an operator symbol.
5835 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
5836 operator symbols.
5837 (ruby-smie-rules): Remove parent token check in the `.' clause, it
5838 did nothing. Don't respond to `(:after ".")', it will be called
5839 with :before anyway. Remove the ` @ ' rule, it didn't seem to
5840 change anything. Only return indentation for binary operators
5841 when they are hanging. De-dent opening paren when its parent is
5842 `.', otherwise it looks bad when the dot is not at bol or eol
5843 (bug#16182).
5844
5845 2013-12-19 Juri Linkov <juri@jurta.org>
5846
5847 * replace.el (query-replace-read-args): Split a non-negative arg
5848 and a negative arg into separate elements.
5849 (query-replace, query-replace-regexp, replace-string)
5850 (replace-regexp): Add arg `backward'. Doc fix.
5851 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5852 move point to the beginning of the match.
5853 (replace-search, replace-highlight): Use new arg `backward'
5854 to set the value of `isearch-forward'.
5855 (perform-replace): Add arg `backward' and use it to perform
5856 replacement backward. (Bug#14979)
5857
5858 * isearch.el (isearch-query-replace): Use a negative prefix arg
5859 to call `perform-replace' with a non-nil arg `backward'.
5860
5861 2013-12-18 Juri Linkov <juri@jurta.org>
5862
5863 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5864 to the default list. Move `log-edit-show-files' to the end.
5865 Add more available functions to options.
5866 (log-edit): Move default specific settings to
5867 `log-edit-insert-message-template'. Don't move point.
5868 (log-edit-insert-message-template): New function.
5869 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5870 (Bug#16170)
5871
5872 2013-12-18 Juri Linkov <juri@jurta.org>
5873
5874 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5875 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5876
5877 2013-12-18 Leo Liu <sdl.web@gmail.com>
5878
5879 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5880 (Bug#16186)
5881
5882 2013-12-18 Eli Zaretskii <eliz@gnu.org>
5883
5884 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5885 formats for displaying file sizes when the -s switch is given.
5886 Instead, compute a separate format for displaying the size in
5887 blocks, which is displayed in addition to the "regular" size.
5888 When -h is given in addition to -s, produce size in blocks in
5889 human-readable form as well. (Bug#16179)
5890
5891 2013-12-18 Tassilo Horn <tsdh@gnu.org>
5892
5893 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5894 Reference tables with ~\ref{...} instead of only \ref{...}.
5895
5896 2013-12-18 Chong Yidong <cyd@gnu.org>
5897
5898 * cus-edit.el (custom-magic-alist): Fix "themed" description
5899 (Bug#14348).
5900
5901 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5902 is non-nil, do not create a new entry in the symbol's theme-value
5903 or theme-face property; update theme-settings only (Bug#14664).
5904 (custom-available-themes): Doc fix.
5905
5906 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5907 (Bug#15674).
5908
5909 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5910
5911 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5912
5913 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5914 (Bug#13914).
5915
5916 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5917
5918 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5919
5920 2013-12-18 Glenn Morris <rgm@gnu.org>
5921
5922 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5923 * cus-start.el (load-prefer-newer): New option.
5924
5925 2013-12-18 Le Wang <l26wang@gmail.com>
5926
5927 * comint.el (comint-previous-matching-input-from-input):
5928 Retain point (Bug#13404).
5929
5930 2013-12-18 Chong Yidong <cyd@gnu.org>
5931
5932 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5933
5934 2013-12-18 Glenn Morris <rgm@gnu.org>
5935
5936 * mail/emacsbug.el (report-emacs-bug):
5937 Only mention enable-multibyte-characters if non-standard.
5938
5939 2013-12-17 Juri Linkov <juri@jurta.org>
5940
5941 * arc-mode.el (archive-extract-by-file): Check if directory exists
5942 before deletion to not show irrelevant errors if it doesn't exist.
5943
5944 2013-12-17 Juri Linkov <juri@jurta.org>
5945
5946 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5947 (Bug#14751)
5948
5949 * net/eww.el (browse-web): Add alias to `eww'.
5950 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5951 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5952
5953 * net/browse-url.el (browse-url-browser-function): Move `eww'
5954 closer to similar functions.
5955
5956 * startup.el (fancy-startup-screen, fancy-about-screen):
5957 Set browse-url-browser-function to eww-browse-url locally.
5958 (Bug#14751)
5959
5960 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5961
5962 * window.el (window--pixel-to-total): Remove unused `mini' var.
5963 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5964 (split-window): Remove unused `new' var.
5965 (window--display-buffer): Remove unused `frame' and `delta' vars.
5966 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
5967 and display-width'.
5968
5969 2013-12-17 Martin Rudalics <rudalics@gmx.at>
5970
5971 * dired.el (dired-mark-pop-up):
5972 * register.el (register-preview): Don't bind
5973 split-height-threshold here since it's now done in
5974 display-buffer-below-selected.
5975
5976 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
5977
5978 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
5979 xterm-rgb-convert-to-16bit.
5980 (rxvt-register-default-colors): Standardize with
5981 xterm-register-default-colors (Bug#14078).
5982
5983 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
5984
5985 * simple.el (kill-region): Pass mark first, then point, so that
5986 kill-append works right (Bug#12819).
5987 (copy-region-as-kill, kill-ring-save): Likewise.
5988
5989 2013-12-17 Leo Liu <sdl.web@gmail.com>
5990
5991 * net/rcirc.el (rcirc-add-face):
5992 * eshell/em-prompt.el (eshell-emit-prompt):
5993 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
5994 (Bug#16167)
5995
5996 2013-12-17 Chong Yidong <cyd@gnu.org>
5997
5998 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
5999 Suggested by Xue Fuqiao.
6000
6001 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
6002
6003 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
6004
6005 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
6006
6007 * net/shr.el (shr-insert-document): Remove unused var
6008 `shr-preliminary-table-render'.
6009 (shr-rescale-image): Remove unused arg `force'.
6010 (shr-put-image): Update calls accordingly.
6011 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
6012
6013 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
6014
6015 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
6016 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
6017 :close-all, to see which indentation method to use (Bug#16116).
6018 (smie-rules-function): Document the method :close-all.
6019
6020 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
6021
6022 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
6023
6024 * net/eww.el (eww-display-html): If we can't find the anchor we're
6025 looking for, then go to point-min.
6026
6027 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
6028
6029 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
6030 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
6031 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
6032 Expand dir too, in case it's relative.
6033
6034 2013-12-16 Juri Linkov <juri@jurta.org>
6035
6036 * desktop.el (desktop-auto-save-timeout): Change default to
6037 `auto-save-timeout'. Doc fix.
6038 (desktop-save): Skip the timestamp in desktop-saved-frameset
6039 when checking for auto-save changes.
6040 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
6041 `desktop-auto-save' is called repeatedly by the idle timer.
6042 (desktop-auto-save-set-timer): Replace `run-with-timer' with
6043 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
6044 (Bug#15331)
6045
6046 2013-12-16 Juri Linkov <juri@jurta.org>
6047
6048 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
6049 (Bug#16035)
6050 (isearch-pre-command-hook): Check `this-command' for symbolp.
6051
6052 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
6053
6054 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
6055
6056 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
6057
6058 * progmodes/cfengine.el (cfengine3--current-word): Remove.
6059 (cfengine3--current-function): Bring in the current-function
6060 functionality from `cfengine3--current-word'.
6061 (cfengine3-completion-function): Bring in the
6062 bounds-of-current-word functionality from
6063 `cfengine3--current-word'.
6064
6065 2013-12-16 Martin Rudalics <rudalics@gmx.at>
6066
6067 * window.el (display-buffer-below-selected):
6068 Bind split-height-threshold to 0 as suggested by Juri Linkov.
6069
6070 2013-12-16 Leo Liu <sdl.web@gmail.com>
6071
6072 * progmodes/compile.el (compile-goto-error): Do not push-mark.
6073 Remove NOMSG arg and all uses changed.
6074
6075 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
6076
6077 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
6078 (cua--deactivate-rectangle): Don't deactivate the mark.
6079 (cua-set-rectangle-mark): Don't set mark-active since
6080 cua--activate-rectangle already does it for us.
6081 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
6082 non-rectangular region.
6083
6084 * emulation/cua-base.el (cua-repeat-replace-region):
6085 Use with-current-buffer.
6086
6087 * net/gnutls.el: Use cl-lib.
6088 (gnutls-negotiate): `mapcan' -> cl-mapcan.
6089
6090 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
6091
6092 * emacs-lisp/package.el (package-built-in-p): Support both
6093 built-in and the package.el converted package descriptions.
6094 (package-show-package-list): Allow keywords.
6095 (package-keyword-button-action): Use it instead of
6096 `finder-list-matches'.
6097 (package-menu-filter-interactive): Interactive filtering (by
6098 keyword) function.
6099 (package-menu--generate): Support keywords and change keymappings
6100 and headers when they are given.
6101 (package--has-keyword-p): Helper function.
6102 (package-menu--refresh): Use it.
6103 (package--mapc): Helper function.
6104 (package-all-keywords): Use it.
6105 (package-menu-mode-map): Set up menu items and keybindings to
6106 provide a filtering UI.
6107
6108 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
6109
6110 * net/gnutls.el (gnutls-verify-error): New defcustom to control
6111 the behavior when a certificate fails validation. Defaults to
6112 old behavior: never abort, just warn.
6113 (gnutls-negotiate): Use it.
6114
6115 2013-12-14 Martin Rudalics <rudalics@gmx.at>
6116
6117 * window.el (display-buffer-below-selected): Never split window
6118 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
6119
6120 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
6121
6122 * emacs-lisp/package.el (package--prepare-dependencies): New function.
6123 (package-buffer-info): Use it (bug#15108).
6124
6125 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
6126
6127 * icomplete.el (icomplete-completions): Make sure the prefix is already
6128 displayed elsewhere before hiding it (bug#16219).
6129
6130 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
6131
6132 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
6133 open-paren tokens when preceded by a open-paren, too.
6134 (ruby-smie-rules): Handle virtual indentation after open-paren
6135 tokens specially. If there is code between it and eol, return the
6136 column where is starts (Bug#16118).
6137
6138 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6139
6140 * progmodes/cfengine.el: Fix `add-hook' doc.
6141 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
6142 (cfengine3--current-word): Fix parameters.
6143 (cfengine3-make-syntax-cache): Simplify further.
6144 (cfengine3-completion-function, cfengine3--current-function):
6145 Use `assq' for symbols.
6146 (cfengine3--current-function): Fix `cfengine3--current-word' call.
6147
6148 2013-12-13 Glenn Morris <rgm@gnu.org>
6149
6150 * loadup.el (load-path): Warn if site-load or site-init changes it.
6151 No more need to reset it when bootstrapping.
6152
6153 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6154
6155 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
6156 locations for cf-promises.
6157 (cfengine-mode-syntax-functions-regex): New caching variable.
6158 (cfengine3-fallback-syntax): Fallback syntax for cases where
6159 cf-promises doesn't run.
6160 (cfengine3--current-word): Reimplement using
6161 `cfengine-mode-syntax-functions-regex'.
6162 (cfengine3-completion-function, cfengine3--current-function):
6163 Use `cfengine3-make-syntax-cache' directly.
6164 (cfengine3-clear-syntax-cache): New function.
6165 (cfengine3-make-syntax-cache): Simplify and create
6166 `cfengine-mode-syntax-functions-regex' on demand.
6167 (cfengine3-format-function-docstring): Don't call
6168 `cfengine3-make-syntax-cache' explicitly.
6169
6170 2013-12-13 Martin Rudalics <rudalics@gmx.at>
6171
6172 Fix windmove-find-other-window broken after pixelwise resizing
6173 (Bug#16017).
6174 * windmove.el (windmove-other-window-loc): Revert change from
6175 2013-12-04.
6176 (windmove-find-other-window): Call window-in-direction.
6177 * window.el (window-in-direction): New arguments SIGN, WRAP and
6178 MINI to emulate original windmove-find-other-window behavior.
6179
6180 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
6181
6182 * simple.el (blink-matching--overlay): New variable.
6183 (blink-matching-open): Instead of moving point, highlight the
6184 matching paren with an overlay
6185 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
6186
6187 * faces.el (paren-showing-faces, show-paren-match)
6188 (show-paren-mismatch): Move from paren.el.
6189
6190 2013-12-13 Leo Liu <sdl.web@gmail.com>
6191
6192 * indent.el (indent-region): Disable progress reporter in
6193 minibuffer. (Bug#16108)
6194
6195 * bindings.el (visual-order-cursor-movement): Fix version.
6196
6197 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
6198
6199 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
6200 Also match after beginning of line.
6201 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
6202 files. Thanks to Russell Sim. (Bug#15378)
6203
6204 2013-12-13 Juri Linkov <juri@jurta.org>
6205
6206 * simple.el <Keypad support>: Remove key bindings duplicated
6207 with bindings.el. (Bug#14397)
6208
6209 2013-12-13 Juri Linkov <juri@jurta.org>
6210
6211 * comint.el (comint-mode-map): Replace `delete-char' with
6212 `delete-forward-char'. (Bug#16109)
6213
6214 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6215
6216 * progmodes/python.el (python-indent-calculate-indentation):
6217 Fix de-denters cornercase. (Bug#15731)
6218
6219 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
6220
6221 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
6222 (advice--make): Pay attention to `depth'.
6223 (advice--make-1): Don't autoload commands eagerly.
6224 * emacs-lisp/elp.el (elp-instrument-function):
6225 * emacs-lisp/trace.el (trace-function-internal):
6226 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
6227
6228 * iswitchb.el (iswitchb-mode): Don't belittle ido.
6229
6230 2013-12-12 Eli Zaretskii <eliz@gnu.org>
6231
6232 * term/w32-win.el (w32-handle-dropped-file):
6233 * startup.el (normal-top-level):
6234 * net/browse-url.el (browse-url-file-url):
6235 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
6236 decode file names using 'utf-8' rather than
6237 file-name-coding-system.
6238
6239 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6240
6241 * progmodes/python.el (python-indent-context)
6242 (python-indent-calculate-indentation): Fix auto-identation
6243 behavior for comment blocks. (Bug#15916)
6244
6245 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6246
6247 * progmodes/python.el (python-indent-calculate-indentation):
6248 When determining indentation, don't treat "return", "pass", etc., as
6249 operators when they are just string constituents. (Bug#15812)
6250
6251 2013-12-12 Juri Linkov <juri@jurta.org>
6252
6253 * uniquify.el (uniquify-buffer-name-style): Change default to
6254 `post-forward-angle-brackets'.
6255
6256 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
6257 `uniquify'. Change default to `post-forward-angle-brackets'.
6258
6259 2013-12-11 Glenn Morris <rgm@gnu.org>
6260
6261 * emacs-lisp/package.el (finder-list-matches):
6262 Autoload rather than falsely declaring.
6263
6264 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
6265
6266 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
6267 (eww-mode-map): Use them.
6268
6269 2013-12-11 Martin Rudalics <rudalics@gmx.at>
6270
6271 * window.el (display-buffer-in-side-window): Fix doc-string
6272 (Bug#16115).
6273
6274 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
6275
6276 * vc/vc-git.el: Silence byte-compiler warnings.
6277 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
6278 (log-edit-set-header): Declare.
6279
6280 2013-12-11 Eli Zaretskii <eliz@gnu.org>
6281
6282 * Makefile.in (custom-deps, finder-data): Run output file names
6283 through unmsys--file-name. (Bug#16099)
6284
6285 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
6286
6287 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
6288 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
6289
6290 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
6291 instead of deleting the selection "by hand" (bug#16098).
6292 Rely on insert-for-yank to yank rectangles.
6293 (cua-highlight-region-shift-only): Mark obsolete.
6294 (cua-mode): Don't enable/disable transient-mark-mode,
6295 shift-select-mode (cua-mode works both with and without them), and
6296 pc-selection-mode (obsolete).
6297 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
6298 (cua--deactivate-rectangle): Deactivate it.
6299
6300 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
6301 (delete-selection-helper): Make sure yank starts at the top of the
6302 deleted region.
6303 (minibuffer-keyboard-quit): Use region-active-p.
6304
6305 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
6306
6307 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
6308 to `delete' (bug#16109).
6309
6310 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6311
6312 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
6313 info manual and show keybindings and set `:group' keyword.
6314
6315 2013-12-11 Juri Linkov <juri@jurta.org>
6316
6317 * delsel.el (delete-active-region): Let-bind `this-command'
6318 to prevent `kill-region' from changing its original value.
6319 (delete-selection-helper): Handle `overwrite-mode' for the type
6320 `kill' exactly the same way as for the type `t'.
6321 (insert-char, quoted-insert, reindent-then-newline-and-indent):
6322 Support more commands. (Bug#13312)
6323
6324 2013-12-11 Juri Linkov <juri@jurta.org>
6325
6326 * bindings.el: Map kp keys to non-kp keys systematically
6327 with basic modifiers control, meta and shift. (Bug#14397)
6328
6329 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6330
6331 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
6332 "Close browser" menu items. Fix wrong function of "List
6333 bookmarks".
6334
6335 2013-12-11 Juri Linkov <juri@jurta.org>
6336
6337 * misearch.el (multi-isearch-buffers): Set the value of
6338 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6339 arg of isearch-forward to t.
6340 (multi-isearch-buffers-regexp): Set the value of
6341 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6342 arg of isearch-forward-regexp to t.
6343 (multi-isearch-files): Set the value of
6344 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6345 arg of isearch-forward to t.
6346 (multi-isearch-files-regexp): Set the value of
6347 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6348 arg of isearch-forward-regexp to t. (Bug#16035)
6349
6350 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
6351 arg of isearch-forward to t.
6352 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
6353 arg of isearch-forward-regexp to t.
6354 (dired-isearch-filter-filenames): Remove unnecessary check for
6355 `dired-isearch-filenames'.
6356
6357 * comint.el (comint-history-isearch-backward):
6358 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
6359 (comint-history-isearch-backward-regexp):
6360 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
6361
6362 2013-12-10 Eli Zaretskii <eliz@gnu.org>
6363
6364 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
6365 unmsys--file-name. (Bug#16099)
6366
6367 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
6368
6369 * emacs-lisp/package.el (package-keyword-button-action):
6370 Remove finder.el require dependency.
6371
6372 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
6373
6374 * emacs-lisp/package.el: Require finder.el.
6375 (describe-package-1): Add keyword buttons.
6376 (package-make-button): New convenience function.
6377 (package-keyword-button-action): Keyword button action using
6378 `finder-list-matches'.
6379
6380 2013-12-09 Eli Zaretskii <eliz@gnu.org>
6381
6382 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
6383 last commit.
6384
6385 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
6386
6387 * autorevert.el (auto-revert-notify-add-watch): Do not handle
6388 symlinked files.
6389
6390 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6391
6392 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
6393 after the end of a percent literal.
6394
6395 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
6396
6397 * progmodes/ruby-mode.el (ruby-forward-string): Document.
6398 Handle caret-delimited strings (Bug#16079).
6399
6400 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6401
6402 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
6403 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
6404 `ruby-parse-partial' (Bug#16078).
6405
6406 2013-12-09 Leo Liu <sdl.web@gmail.com>
6407
6408 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
6409
6410 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
6411
6412 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
6413 (js-switch-indent-offset): New option.
6414 (js--proper-indentation): Use it. And handle the case when
6415 "default" is actually a key in an object literal.
6416 (js--same-line): New function.
6417 (js--multi-line-declaration-indentation): Use it.
6418 (js--indent-in-array-comp, js--array-comp-indentation):
6419 New functions.
6420 (js--proper-indentation): Use them, to handle array comprehension
6421 continuations.
6422
6423 2013-12-08 Leo Liu <sdl.web@gmail.com>
6424
6425 * progmodes/flymake.el (flymake-highlight-line): Re-write.
6426 (flymake-make-overlay): Remove arg MOUSE-FACE.
6427 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
6428
6429 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6430
6431 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
6432 New function.
6433 (redisplay-highlight-region-function): Use it.
6434
6435 * emulation/cua-base.el (cua--explicit-region-start)
6436 (cua--last-region-shifted): Remove.
6437 (cua--deactivate): Use deactivate-mark.
6438 (cua--pre-command-handler-1): Don't handle shift-selection.
6439 (cua--post-command-handler-1): Don't change transient-mark-mode.
6440 (cua--select-keymaps): Use region-active-p rather than
6441 cua--explicit-region-start or cua--last-region-shifted.
6442 (cua-mode): Enable shift-select-mode.
6443
6444 2013-12-08 Leo Liu <sdl.web@gmail.com>
6445
6446 * progmodes/flymake.el (flymake-popup-current-error-menu):
6447 Rename from flymake-display-err-menu-for-current-line. Reimplement.
6448 (flymake-posn-at-point-as-event, flymake-popup-menu)
6449 (flymake-make-emacs-menu): Remove. (Bug#16077)
6450
6451 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6452
6453 * rect.el (rectangle-mark-mode): Activate mark even if
6454 transient-mark-mode is off (bug#16066).
6455 (rectangle--highlight-for-redisplay): Fix boundary condition when point
6456 is > mark and at bolp.
6457
6458 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
6459 (region-extract-function): Use it.
6460 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
6461 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
6462 Delete functions.
6463 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
6464 kill-ring-save, kill-region, delete-char, delete-forward-char.
6465 Ignore self-insert-iso.
6466
6467 * emulation/cua-gmrk.el (cua--init-global-mark):
6468 Ignore `self-insert-iso'.
6469
6470 * emulation/cua-base.el (cua--prefix-copy-handler)
6471 (cua--prefix-cut-handler): Rely on region-extract-function rather than
6472 checking cua--rectangle.
6473 (cua-delete-region): Use region-extract-function.
6474 (cua-replace-region): Delete function.
6475 (cua-copy-region, cua-cut-region): Obey region-extract-function.
6476 (cua--pre-command-handler-1): Don't do the delete-selection thing.
6477 (cua--self-insert-char-p): Ignore `self-insert-iso'.
6478 (cua--init-keymaps): Don't remap delete-selection commands.
6479 (cua-mode): Use delete-selection-mode instead of rolling our own
6480 (bug#16085).
6481
6482 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
6483 Obey region-extract-function.
6484
6485 Make registers and delete-selection-mode work on rectangles.
6486 * register.el (describe-register-1): Don't modify the register's value.
6487 (copy-to-register): Obey region-extract-function.
6488 * delsel.el (delete-active-region): Obey region-extract-function.
6489
6490 2013-12-08 Leo Liu <sdl.web@gmail.com>
6491
6492 * progmodes/flymake.el (flymake, flymake-error-bitmap)
6493 (flymake-warning-bitmap, flymake-fringe-indicator-position)
6494 (flymake-compilation-prevents-syntax-check)
6495 (flymake-start-syntax-check-on-newline)
6496 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
6497 (flymake-start-syntax-check-on-find-file, flymake-log-level)
6498 (flymake-xml-program, flymake-master-file-dirs)
6499 (flymake-master-file-count-limit)
6500 (flymake-allowed-file-name-masks): Relocate.
6501 (flymake-makehash, flymake-float-time)
6502 (flymake-replace-regexp-in-string, flymake-split-string)
6503 (flymake-get-temp-dir): Remove.
6504 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
6505 (flymake-current-row, flymake-selected-frame)
6506 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
6507 related functions. (Bug#16077)
6508
6509 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
6510
6511 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
6512
6513 2013-12-07 Tassilo Horn <tsdh@gnu.org>
6514
6515 * help-fns.el (describe-function-1): Use new advice-* functions
6516 rather than old ad-* functions. Fix function type description and
6517 source links for advised functions and subrs.
6518
6519 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6520
6521 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
6522
6523 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
6524
6525 * progmodes/compile.el (compilation-start):
6526 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
6527
6528 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6529 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
6530
6531 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6532
6533 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6534 Touch up the last change.
6535
6536 2013-12-06 Leo Liu <sdl.web@gmail.com>
6537
6538 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
6539 (inferior-octave-startup): Always use "octave> " for prompt.
6540 (octave-goto-function-definition)
6541 (octave-sync-function-file-names)
6542 (octave-find-definition-default-filename): Remove redundant backquotes.
6543
6544 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6545
6546 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
6547 syntax for `?'.
6548 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
6549 where appropriate already.
6550 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
6551 end of method names (Bug#15874).
6552
6553 2013-12-06 Juri Linkov <juri@jurta.org>
6554
6555 * isearch.el (isearch--saved-overriding-local-map):
6556 New internal variable.
6557 (isearch-mode): Set it to the initial value of
6558 `overriding-terminal-local-map'.
6559 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
6560 with `isearch--saved-overriding-local-map'. (Bug#16035)
6561
6562 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6563
6564 * progmodes/octave.el (inferior-octave-completion-table):
6565 Turn back into function, use `completion-table-with-cache'
6566 (Bug#11906). Update all references.
6567
6568 * minibuffer.el (completion-table-with-cache): New function.
6569
6570 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
6571
6572 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
6573
6574 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
6575
6576 * net/eww.el (eww-current-source): New variable to store page
6577 source.
6578 (eww-display-html, eww-mode, eww-save-history)
6579 (eww-restore-history): Use it.
6580 (eww-view-source): New command to view page source.
6581 Opportunistically uses `html-mode' to highlight the buffer.
6582 (eww-mode-map): Install it.
6583
6584 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
6585
6586 * net/dbus.el (dbus-unregister-service)
6587 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
6588 Fix docstring.
6589 (dbus-unregister-service): Skip :serial entries in
6590 `dbus-registered-objects-table'.
6591 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
6592
6593 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
6594
6595 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
6596 around keywords with extra `split-string' argument.
6597
6598 2013-12-04 Martin Rudalics <rudalics@gmx.at>
6599
6600 * windmove.el (windmove-other-window-loc): Handle navigation
6601 between windows (excluding the minibuffer window - Bug#16017).
6602
6603 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
6604
6605 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
6606 in D-Bus type syntax.
6607 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
6608 preserve unibyte strings. (Bug#16048)
6609
6610 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6611
6612 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
6613 Call force-mode-line-update is the proper buffer (bug#16042).
6614
6615 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
6616
6617 * vc/log-edit.el (log-edit-add-new-comment): Rename to
6618 `log-edit-remember-comment', make argument optional. Adjust all
6619 callers.
6620 (log-edit-mode): Add `log-edit-remember-comment' to
6621 `kill-buffer-hook' locally.
6622 (log-edit-kill-buffer): Don't remember comment explicitly since
6623 the buffer is killed anyway.
6624
6625 2013-12-04 Juri Linkov <juri@jurta.org>
6626
6627 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
6628 add-hook and remove-hook for multi-buffer search. (Bug#16035)
6629
6630 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
6631
6632 * notifications.el (notifications-close-notification): Call the
6633 D-Bus method with ID being a `:uint32'. (Bug#16030)
6634
6635 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
6636
6637 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
6638
6639 2013-12-03 Juri Linkov <juri@jurta.org>
6640
6641 * progmodes/compile.el (compilation-start): Rename window alist
6642 entry `no-display-ok' to `allow-no-window'.
6643
6644 * simple.el (shell-command): Add window alist entry
6645 `allow-no-window' to `display-buffer'.
6646 (async-shell-command): Doc fix.
6647
6648 * window.el (display-buffer-no-window): New action function.
6649 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
6650
6651 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6652
6653 * vc/log-edit.el (log-edit-set-header): Extract from
6654 `log-edit-toggle-header'.
6655 (log-edit-extract-headers): Separate the summary, when extracted
6656 from header, from the rest of the message with an empty line.
6657
6658 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
6659 line, if present, to the Summary header.
6660
6661 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6662
6663 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
6664 in current-buffer (bug#16029).
6665
6666 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
6667
6668 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
6669 (debugger-mode-map): Bind it.
6670 (debugger--backtrace-base): New function.
6671 (debugger-eval-expression): Use it.
6672 (debugger-frame-number): Skip local vars when present.
6673 (debugger--locals-visible-p, debugger--insert-locals)
6674 (debugger--show-locals, debugger--hide-locals): New functions.
6675
6676 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
6677
6678 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
6679 "LC_ALL".
6680 (tramp-get-remote-locale): New defun.
6681 (tramp-open-connection-setup-interactive-shell): Use it.
6682
6683 2013-12-02 Leo Liu <sdl.web@gmail.com>
6684
6685 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
6686
6687 * progmodes/sh-script.el (sh-shell-process):
6688 * progmodes/octave.el (inferior-octave-process-live-p):
6689 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
6690 (gdb-inferior-io-sentinel):
6691 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
6692
6693 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6694
6695 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
6696 `save-selected-window' to `log-edit-hide-buf'. This makes
6697 `log-edit-show-files' idempotent.
6698 (log-edit-show-files): Mark the new window as dedicated.
6699
6700 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6701
6702 * vc/log-edit.el (log-edit-mode-map): Add binding for
6703 `log-edit-kill-biffer'.
6704 (log-edit-hide-buf): Add a FIXME comment.
6705 (log-edit-add-new-comment): New function, extracted from
6706 `log-edit-done'.
6707 (log-edit-done, log-edit-add-to-changelog): Use it.
6708 (log-edit-kill-buffer): New command.
6709
6710 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6711
6712 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
6713 instead of killing the buffer.
6714
6715 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6716
6717 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
6718
6719 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6720
6721 * net/eww.el (eww-form-checkbox-selected-symbol)
6722 (eww-form-checkbox-symbol): New customizable variable.
6723 (eww-form-checkbox, eww-toggle-checkbox):
6724 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
6725
6726 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
6727 (shr--get-media-pref, shr--extract-best-source): New function.
6728 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
6729 no :src tag was specified.
6730
6731 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
6732 (eww-render): Handle `eww-use-external-browser-for-content-type'.
6733 Use \\` to match beginning of string instead of ^.
6734 (eww-browse-with-external-browser): Provide optional URL parameter.
6735 (eww-render): Set `eww-current-title' back to "".
6736
6737 * net/shr.el (shr-tag-video): Display content for video if no
6738 poster is available.
6739 (shr-tag-audio): Add support for <audio> tag.
6740
6741 * net/eww.el (eww-text-input-types): New const.
6742 (eww-process-text-input): Treat input types in
6743 `eww-text-input-types' as text.
6744
6745 * net/shr.el (shr-tag-table): Fix comment typo.
6746
6747 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6748
6749 * net/eww.el (eww-follow-link): New command to avoid reloading
6750 pages when we follow #target links (bug#15243).
6751 (eww-quit): Special mode buffers shouldn't query before exiting.
6752
6753 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6754
6755 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
6756 forms.
6757
6758 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6759
6760 * net/eww.el (eww-restore-history): Update the window title after
6761 moving in the history.
6762 (eww-current-dom): New variable used to save the current DOM.
6763
6764 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
6765
6766 * vc/log-edit.el (log-edit-mode-map): Add binding for
6767 `log-edit-beginning-of-line'.
6768 (log-edit-setup-add-author): New user option.
6769 (log-edit-beginning-of-line): New command.
6770 (log-edit): Move major mode call above the contents setup so that
6771 the local variable values are already applied.
6772 (log-edit): Only insert "Author: " when
6773 `log-edit-setup-add-author' is non-nil.
6774 (log-edit): When SETUP is non-nil, position point after ": "
6775 instead of point-min.
6776
6777 2013-12-01 Glenn Morris <rgm@gnu.org>
6778
6779 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
6780
6781 2013-11-30 Eli Zaretskii <eliz@gnu.org>
6782
6783 * startup.el (fancy-splash-frame): On MS-Windows, trigger
6784 redisplay to make sure the initial frame gets a chance to become
6785 visible. (Bug#16014)
6786
6787 2013-11-30 Martin Rudalics <rudalics@gmx.at>
6788
6789 Support resizing frames and windows pixelwise.
6790 * cus-start.el (frame-resize-pixelwise)
6791 (window-resize-pixelwise): New entries.
6792 * emacs-lisp/debug.el (debug): Use window-total-height instead
6793 of window-total-size.
6794 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
6795 * help.el (describe-bindings-internal): Use help-buffer as
6796 argument for with-help-window.
6797 (temp-buffer-max-width): New option.
6798 (resize-temp-buffer-window, help-window-setup)
6799 (with-help-window): Rewrite.
6800 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
6801 dragging dividers.
6802 * window.el (frame-char-size, window-min-pixel-height)
6803 (window-safe-min-pixel-height, window-safe-min-pixel-width)
6804 (window-min-pixel-width, window-safe-min-pixel-size)
6805 (window-combination-p, window-safe-min-size)
6806 (window-resizable-p, window--size-to-pixel)
6807 (window--pixel-to-size, window--resize-apply-p): New functions.
6808 (window-safe-min-height): Fix doc-string.
6809 (window-size, window-min-size, window--min-size-1)
6810 (window-sizable, window-sizable-p, window--min-delta-1)
6811 (window-min-delta, window--max-delta-1, window-max-delta)
6812 (window--resizable, window--resizable-p, window-resizable)
6813 (window-full-height-p, window-full-width-p, window-at-side-p)
6814 (window--in-direction-2, window-in-direction)
6815 (window--resize-reset-1, window--resize-mini-window)
6816 (window-resize, window-resize-no-error)
6817 (window--resize-child-windows-normal)
6818 (window--resize-child-windows, window--resize-siblings)
6819 (window--resize-this-window, window--resize-root-window)
6820 (window--resize-root-window-vertically)
6821 (adjust-window-trailing-edge, enlarge-window, shrink-window)
6822 (maximize-window, minimize-window, delete-window)
6823 (quit-restore-window, window-split-min-size, split-window)
6824 (balance-windows-2, balance-windows)
6825 (balance-windows-area-adjust, balance-windows-area)
6826 (window--state-get-1, window-state-get, window--state-put-1)
6827 (window--state-put-2, window-state-put)
6828 (display-buffer-record-window, window--display-buffer):
6829 Make functions handle pixelwise sizing of windows.
6830 (display-buffer--action-function-custom-type)
6831 (display-buffer-fallback-action):
6832 Add display-buffer-in-previous-window.
6833 (display-buffer-use-some-window): Resize window to height it had
6834 before.
6835 (fit-window-to-buffer-horizontally): New option.
6836 (fit-frame-to-buffer): Describe new values.
6837 (fit-frame-to-buffer-bottom-margin): Replace with
6838 fit-frame-to-buffer-margins.
6839 (window--sanitize-margin): New function.
6840 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
6841 using window-text-pixel-size.
6842
6843 2013-11-30 Glenn Morris <rgm@gnu.org>
6844
6845 * emacs-lisp/bytecomp.el (byte-compile-form):
6846 Make the `interactive-only' warning like the `obsolete' one.
6847 * comint.el (comint-run):
6848 * files.el (insert-file-literally, insert-file):
6849 * replace.el (replace-string, replace-regexp):
6850 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6851 (goto-line, insert-buffer, next-line, previous-line):
6852 Tweak `interactive-only' spec.
6853
6854 Stop keeping (most) generated cedet grammar files in the repository.
6855 * Makefile.in (semantic): New.
6856 (compile-main): Depend on semantic.
6857
6858 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6859
6860 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6861 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6862
6863 * uniquify.el (uniquify-buffer-name-style): Change default.
6864
6865 * loadup.el: Preload "uniquify".
6866
6867 * time.el (display-time-update): Update all mode lines (bug#15999).
6868
6869 * electric.el (electric-indent-mode): Enable by default.
6870 * loadup.el: Preload "electric".
6871
6872 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6873
6874 * emacs-lisp/helpers.el (string-empty-p): New function.
6875 (string-blank-p): New function.
6876
6877 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
6878
6879 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6880 (Bug#14029).
6881
6882 2013-11-29 Andreas Politz <politza@fh-trier.de>
6883 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6884 allow non-lambda lists as functions.
6885 (imenu--in-alist): Don't recurse into non-subalists.
6886 (imenu): Don't pass function itself as an argument (Bug#14029).
6887
6888 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * progmodes/python.el (python-mode-map): Remove binding for ":".
6891 (python-indent-electric-colon): Remove command.
6892 (python-indent-post-self-insert-function): Integrate the previous code
6893 of python-indent-electric-colon. Make it conditional on
6894 electric-indent-mode.
6895 (python-mode): Add ?: to electric-indent-chars.
6896 Move python-indent-post-self-insert-function to the end of
6897 post-self-insert-hook.
6898
6899 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6900
6901 * doc-view.el (doc-view-goto-page): Update mode-line.
6902
6903 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6904
6905 2013-11-27 Glenn Morris <rgm@gnu.org>
6906
6907 * international/charprop.el, international/uni-bidi.el:
6908 * international/uni-category.el, international/uni-combining.el:
6909 * international/uni-comment.el, international/uni-decimal.el:
6910 * international/uni-decomposition.el, international/uni-digit.el:
6911 * international/uni-lowercase.el, international/uni-mirrored.el:
6912 * international/uni-name.el, international/uni-numeric.el:
6913 * international/uni-old-name.el, international/uni-titlecase.el:
6914 * international/uni-uppercase.el:
6915 Remove generated files from VCS repository.
6916
6917 2013-11-27 Eli Zaretskii <eliz@gnu.org>
6918
6919 * filenotify.el (file-notify-add-watch): Don't special-case
6920 w32notify when computing the directory to watch.
6921
6922 2013-11-27 Glenn Morris <rgm@gnu.org>
6923
6924 Make bootstrap without generated uni-*.el files possible again.
6925 * loadup.el: Update command-line-args checking for unidata-gen.
6926 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6927 * composite.el, international/characters.el:
6928 Handle unicode tables being undefined.
6929
6930 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6931 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6932 (compile-main): Depend on leim rule.
6933 (leim): New rule.
6934 * loadup.el: Move leim-list.el to leim/ subdirectory.
6935 * startup.el (normal-top-level): No more leim directory.
6936 * international/ja-dic-cnv.el (skkdic-convert):
6937 Disable version-control and autoloads in output files.
6938 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6939 Disable version-control and autoloads in output files.
6940 * leim/quail: Move here from ../leim.
6941 * leim/quail/hangul.el (hangul-input-method-activate):
6942 Add autoload cookie.
6943 (generated-autoload-load-name): Set file-local value.
6944 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6945 (generated-autoload-load-name): Set file-local value.
6946
6947 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6948
6949 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6950 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6951 (eww-quit): Ask confirmation before quitting eww.
6952
6953 2013-11-26 Eli Zaretskii <eliz@gnu.org>
6954
6955 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6956 reading output from Diff on MS-Windows and MS-DOS.
6957
6958 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6959
6960 * emacs-lisp/helpers.el (string-reverse): New function.
6961
6962 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
6963
6964 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6965 names on MS Windows, like "/[::1]:".
6966
6967 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
6968 SWITCHES.
6969
6970 2013-11-26 Glenn Morris <rgm@gnu.org>
6971
6972 * progmodes/python.el (python-indent-guess-indent-offset):
6973 Avoid corner-case error. (Bug#15975)
6974
6975 Preload leim-list.el. (Bug#4789)
6976 * loadup.el: Load leim-list.el when found.
6977 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
6978
6979 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
6980
6981 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
6982
6983 * emacs-lisp/helpers.el (string-join): New function.
6984
6985 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
6986
6987 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6988 Mark as obsolete and replace it with a symbol property.
6989 (byte-compile-form): Use new 'interactive-only property.
6990 * comint.el, files.el, replace.el, simple.el:
6991 Apply new 'interactive-only properly.
6992
6993 2013-11-25 Martin Rudalics <rudalics@gmx.at>
6994
6995 * window.el (display-buffer-at-bottom): Make sure that
6996 split-window-sensibly creates the new window on bottom
6997 (Bug#15961).
6998
6999 2013-11-23 David Kastrup <dak@gnu.org>
7000
7001 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
7002 on the conflict markers when available.
7003 (smerge--get-marker): New function.
7004 (smerge-end-re, smerge-base-re): Add subgroup.
7005
7006 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
7007
7008 * frame.el (handle-focus-in, handle-focus-out): Add missing
7009 interactive spec.
7010
7011 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
7012
7013 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7014 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
7015
7016 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
7017
7018 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
7019 (gomoku--last-pos): New var.
7020 (gomoku--intangible-chars): New const.
7021 (gomoku--intangible): New function.
7022 (gomoku-mode): Use it. Derive from special-mode.
7023 (gomoku-move-up): Adjust line count.
7024 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
7025 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
7026 Simplify accordingly.
7027
7028 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
7029 Remove blink-cursor code.
7030 (blink-cursor-timer-function, blink-cursor-suspend):
7031 Don't special-case GUIs.
7032 (blink-cursor-mode): Use focus-in/out-hook.
7033
7034 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
7035
7036 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
7037 work when annotation is invisible (Bug#13886).
7038
7039 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
7040
7041 * json.el (json-alist-p): Only return non-nil if the alist has
7042 simple keys (Bug#13518).
7043
7044 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
7045
7046 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
7047 when control-statement is the first statement in a buffer (Bug#15956).
7048
7049 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
7050
7051 * imenu.el (imenu-generic-skip-comments-and-strings):
7052 New option (Bug#15560).
7053 (imenu--generic-function): Use it.
7054
7055 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
7056
7057 * minibuffer.el (completion--in-region-1): Scroll the correct window.
7058 (Bug#13898)
7059
7060 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
7061
7062 * emacs-lisp/helpers.el: Add some string helpers.
7063 (string-trim-left): Removes leading whitespace.
7064 (string-trim-right): Removes trailing whitespace.
7065 (string-trim): Removes leading and trailing whitespace.
7066
7067 * subr.el (string-suffix-p): New function.
7068
7069 2013-11-23 Glenn Morris <rgm@gnu.org>
7070
7071 * progmodes/python.el (python-shell-send-file):
7072 Add option to delete file when done. (Bug#15647)
7073 (python-shell-send-string, python-shell-send-region): Use it.
7074
7075 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
7076
7077 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
7078 to set buffer-read-only to t, never to nil. (Bug#15938)
7079
7080 * textmodes/tex-mode.el (latex-noindent-environments):
7081 Add safe-local-variable property. (Bug#15936)
7082
7083 2013-11-23 Glenn Morris <rgm@gnu.org>
7084
7085 * textmodes/enriched.el (enriched-mode): Doc fix.
7086 * emacs-lisp/authors.el (authors-renamed-files-alist):
7087 Add enriched.doc -> enriched.txt.
7088
7089 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
7090
7091 2013-11-22 Leo Liu <sdl.web@gmail.com>
7092
7093 * progmodes/octave.el (inferior-octave-startup): Spit out error
7094 message.
7095
7096 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
7097
7098 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7099 Improve docstring.
7100 Add :version.
7101 (ruby-encoding-magic-comment-style): Add :version.
7102
7103 2013-11-22 Leo Liu <sdl.web@gmail.com>
7104
7105 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
7106 (Bug#15076)
7107 (octave-help-mode): Adapt to change to help-mode-finish to use
7108 derived-mode-p on 2013-09-17.
7109 (inferior-octave-prompt): Also match octave-gui.
7110 (octave-kill-process): Don't ask twice. (Bug#10564)
7111
7112 2013-11-22 Leo Liu <sdl.web@gmail.com>
7113
7114 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
7115 (inferior-octave-startup, inferior-octave-check-process)
7116 (inferior-octave-track-window-width-change)
7117 (octave-completion-at-point, octave-eldoc-function): Use it.
7118 (octave-kill-process): Provide confirmation. (Bug#10564)
7119
7120 2013-11-21 Leo Liu <sdl.web@gmail.com>
7121
7122 * progmodes/octave.el (octave-mode, inferior-octave-mode):
7123 Fix obsolete variable comment-use-global-state.
7124
7125 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7126
7127 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
7128 Add `octave-source-file'.
7129 (octave-source-file): New function. (Bug#15935)
7130
7131 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
7132
7133 * net/eww.el (eww-local-regex): New variable.
7134 (eww): Use it to detect localhost and similar.
7135
7136 2013-11-21 Leo Liu <sdl.web@gmail.com>
7137
7138 Add completion for command `ag'.
7139 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
7140 (pcomplete/ag): New function.
7141 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
7142
7143 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
7146 (bug#14646).
7147 (make-obsolete): Remove interactive spec.
7148
7149 2013-11-21 Glenn Morris <rgm@gnu.org>
7150
7151 * startup.el (command-line-1): Use path-separator with -L.
7152
7153 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
7154
7155 * emacs-lisp/package.el (describe-package-1): Add package archive
7156 to shown fields.
7157
7158 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
7159
7160 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7161 Change default to "# encoding: %s" to differentiate it from the
7162 default Ruby encoding comment template.
7163
7164 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
7165
7166 * ses.el (ses-mode): Doc fix. (Bug#14748)
7167
7168 2013-11-20 Leo Liu <sdl.web@gmail.com>
7169
7170 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
7171
7172 2013-11-19 Dan Nicolaescu <dann@gnu.org>
7173
7174 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
7175 when rebase or bisect are in progress.
7176
7177 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
7178
7179 * filenotify.el (file-notify-add-watch): Doc fix.
7180
7181 2013-11-19 Leo Liu <sdl.web@gmail.com>
7182
7183 * obsolete/rcompile.el: Mark obsolete.
7184
7185 * progmodes/compile.el (compilation-start)
7186 (compilation-goto-locus, compilation-find-file):
7187 Pass no-display-ok and handle nil value from display-buffer.
7188 (Bug#13594)
7189
7190 * window.el (display-buffer-alist, display-buffer): Document the
7191 new parameter no-display-ok. Return either a window or nil
7192 but never a non-window value.
7193
7194 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7195
7196 * electric.el (electric-indent-mode-map): Remove.
7197 (electric-indent-mode): Change the global-map instead (bug#15915).
7198
7199 * textmodes/text-mode.el (paragraph-indent-minor-mode):
7200 Use add-function.
7201
7202 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
7203
7204 * emacs-lisp/nadvice.el (remove-function): Align with
7205 add-function's behavior.
7206
7207 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
7208 (gdb--string-regexp): New constant.
7209 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
7210 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
7211 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
7212 submatch 1.
7213 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
7214 Adjust use accordingly.
7215 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
7216
7217 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
7218
7219 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
7220 interpolation curlies (Bug#15914).
7221
7222 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
7223
7224 * calc/calc.el (calc-context-sensitive-enter): New variable.
7225 (calc-enter): Use `calc-context-sensitive-enter'.
7226
7227 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
7228
7229 * progmodes/cfengine.el: Version bump.
7230 (cfengine-cf-promises): New defcustom to locate cf-promises.
7231 (cfengine3-vartypes): Add new "data" type.
7232 (cfengine3--current-word): New function to get current name-like
7233 word or its bounds.
7234 (cfengine3--current-function): New function to look up a CFEngine
7235 function's definition.
7236 (cfengine3-format-function-docstring): New function.
7237 (cfengine3-make-syntax-cache): New function.
7238 (cfengine3-documentation-function): New function: ElDoc glue.
7239 (cfengine3-completion-function): New function: completion glue.
7240 (cfengine3-mode): Set `compile-command',
7241 `eldoc-documentation-function', and add to
7242 `completion-at-point-functions'.
7243
7244 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
7245
7246 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7247 `tramp-current-connection'.
7248
7249 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
7250
7251 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
7252 nil/self/true/false with "end of symbol".
7253
7254 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
7255
7256 * subr.el (version-regexp-alist): Fix a typo.
7257
7258 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
7259
7260 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
7261 "en_US.utf8" and "LC_CTYPE" to "".
7262 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
7263 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
7264
7265 2013-11-15 Leo Liu <sdl.web@gmail.com>
7266
7267 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
7268
7269 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7270
7271 * progmodes/gud.el (ctl-x-map):
7272 Remove C-x SPC binding. (Bug#12342)
7273 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
7274
7275 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
7276
7277 * subr.el (version-regexp-alist):
7278 Recognize hg, svn and darcs versions as snapshot versions.
7279
7280 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
7281 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
7282 (ruby--encoding-comment-required-p): Extract from
7283 `ruby-mode-set-encoding'.
7284 (ruby-mode-set-encoding): Add the ability to always insert an
7285 utf-8 encoding comment. Fix and simplify coding comment update
7286 logic.
7287
7288 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
7289
7290 * net/tramp-gvfs.el (top): Run init code only when
7291 `tramp-gvfs-enabled' is not nil.
7292 (tramp-gvfs-enabled): Check also :system bus.
7293
7294 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7295
7296 Sync with upstream verilog-mode revision 78e66ba.
7297 * progmodes/verilog-mode.el (verilog-end-of-defun)
7298 (verilog-type-completion, verilog-get-list): Remove unused funcs.
7299 (verilog-get-end-of-defun): Remove unused argument.
7300 (verilog-comment-depth): Remove unused local `e'.
7301 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
7302 Don't pass arg to verilog-get-end-of-defun.
7303
7304 2013-11-14 Glenn Morris <rgm@gnu.org>
7305
7306 * obsolete/assoc.el (aget): Prefix dynamic variable.
7307
7308 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
7309
7310 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7311
7312 * widget.el, hfy-cmap.el: Remove bogus package version number.
7313
7314 2013-11-13 Glenn Morris <rgm@gnu.org>
7315
7316 * replace.el (replace-eval-replacement):
7317 Try to give more helpful error message. (Bug#15836)
7318
7319 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
7320 (archive-7z-update): Avoid custom type mismatches.
7321
7322 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
7323
7324 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
7325
7326 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
7327 address can be empty.
7328
7329 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
7330 Accept nil SWITCHES.
7331 (tramp-gvfs-handle-write-region): Implement APPEND.
7332
7333 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
7334
7335 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
7336 binary "|" operator and closing block args delimiter.
7337 Remove FIXME comment referring to Ruby 1.8-only syntax.
7338 (ruby-smie--implicit-semi-p): Not after "|" operator.
7339 (ruby-smie--closing-pipe-p): New function.
7340 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
7341 (ruby-smie-rules): Indent after "|".
7342
7343 2013-11-12 Glenn Morris <rgm@gnu.org>
7344
7345 * ps-print.el (ps-face-attribute-list):
7346 Handle anonymous faces. (Bug#15827)
7347
7348 2013-11-12 Martin Rudalics <rudalics@gmx.at>
7349
7350 * window.el (display-buffer-other-frame): Fix doc-string.
7351 (Bug#15868)
7352
7353 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7354
7355 * subr.el (force-mode-line-update): Delete, move to buffer.c.
7356
7357 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
7358
7359 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
7360 (tramp-sh-handle-file-local-copy): Don't write a message when
7361 saving temporary files.
7362
7363 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
7364 both directories are remote.
7365 (tramp-smb-handle-directory-files): Do not return double entries.
7366 Do not expand full file names.
7367 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
7368 (tramp-smb-handle-write-region): Implement APPEND.
7369 (tramp-smb-get-stat-capability): Fix a stupid bug.
7370
7371 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7372
7373 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
7374
7375 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7376
7377 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
7378 throwing error over malformed let/let* (bug#15814).
7379
7380 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7381
7382 * iswitchb.el (iswitchb-mode): Mark obsolete.
7383
7384 2013-11-11 Glenn Morris <rgm@gnu.org>
7385
7386 * international/uni-bidi.el, international/uni-category.el:
7387 * international/uni-name.el, international/uni-numeric.el:
7388 Regenerate for Unicode 6.3.0.
7389
7390 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
7391
7392 * net/tramp.el (tramp-methods):
7393 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
7394 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
7395
7396 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
7397
7398 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7399 Force highlighting text after Summary keyword in doc face for rpm.
7400
7401 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
7402
7403 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
7404 available and the word has no wildcards, append one to the grep pattern.
7405 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
7406 (ispell-complete-word): Call `ispell-lookup-words' with the value
7407 independent of `ispell-look-p'.
7408
7409 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7410
7411 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
7412 Not after "||".
7413 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
7414 their parent.
7415
7416 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7417
7418 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
7419 (ruby-font-lock-keywords): Use backquote.
7420
7421 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7422
7423 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7424 (ruby-smie--backward-token): Only consider full-string matches.
7425
7426 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
7427
7428 * faces.el (describe-face): Add distant-foreground.
7429
7430 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
7431
7432 * progmodes/ruby-mode.el: Improve encoding comment handling.
7433 (ruby-encoding-magic-comment-style): New option.
7434 (ruby-custom-encoding-magic-comment-template): New option.
7435 (ruby--insert-coding-comment, ruby--detect-encoding):
7436 New functions extracted from `ruby-mode-set-encoding'.
7437 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
7438 to control the style of the auto-inserted encoding comment.
7439
7440 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7441
7442 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
7443 Use `smie-backward-sexp' with token argument.
7444
7445 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
7446
7447 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7448 Remove instrumentation code.
7449
7450 2013-11-08 Glenn Morris <rgm@gnu.org>
7451
7452 * progmodes/autoconf.el (autoconf-mode):
7453 Tweak comment-start-skip. (Bug#15822)
7454
7455 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7456
7457 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
7458 at bobp (bug#15826).
7459 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
7460
7461 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
7462
7463 * man.el (Man-start-calling): New macro, extracted from
7464 Man-getpage-in-background.
7465 (Man-getpage-in-background): Use it.
7466 (Man-update-manpage): New command.
7467 (Man-mode-map): Bind it.
7468
7469 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7470
7471 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
7472 of "and", "or", "&&" and "||".
7473 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
7474 argument. Prohibit opening curly brace because it could only be a
7475 block opener in that position.
7476 (ruby-smie--forward-token, ruby-smie--backward-token):
7477 Separate "|" from "&" or "*" going after it. That can happen in block
7478 arguments.
7479 (ruby-smie--indent-to-stmt): New function, seeks the end of
7480 previous statement or beginning of buffer.
7481 (ruby-smie-rules): Use it.
7482 (ruby-smie-rules): Check if there's a ":" before a curly block
7483 opener candidate; if there is, it's a hash.
7484
7485 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7486
7487 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
7488 (cl--block-wrapper): Fix last accidental change.
7489
7490 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
7491
7492 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7493 Instrument, in order to hunt failure on hydra.
7494
7495 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7496
7497 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
7498 malformed bindings form (bug#15814).
7499
7500 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
7501
7502 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
7503 "." compared to " @ ". This incidentally fixes some indentation
7504 examples with "do".
7505 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
7506 (ruby-smie-grammar): New tokens: "and" and "or".
7507 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
7508 Exclude "and" and "or". Remove "do" in order to work around token
7509 priorities.
7510 (ruby-smie-rules): Add all infix tokens. Handle the case of
7511 beginning-of-buffer.
7512
7513 2013-11-06 Glenn Morris <rgm@gnu.org>
7514
7515 * Makefile.in (setwins_almost, setwins_for_subdirs):
7516 Avoid accidental matches.
7517
7518 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7519
7520 * menu-bar.el (popup-menu): Use key-binding.
7521
7522 2013-11-06 Eli Zaretskii <eliz@gnu.org>
7523
7524 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
7525 menus, support also the menus produced by minor modes.
7526 (Bug#15817)
7527
7528 2013-11-06 Leo Liu <sdl.web@gmail.com>
7529
7530 * thingatpt.el (thing-at-point-looking-at): Add optional arg
7531 DISTANCE to bound the search. All uses changed. (Bug#15808)
7532
7533 2013-11-06 Glenn Morris <rgm@gnu.org>
7534
7535 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
7536 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
7537 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
7538
7539 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7540
7541 * electric.el (electric-indent-just-newline): New command.
7542 (electric-indent-mode-map): New keymap.
7543 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
7544 Re-add :group which weren't redundant.
7545
7546 * electric.el (electric-indent-local-mode): New minor mode.
7547 (electric-indent-functions-without-reindent): New var.
7548 (electric-indent-post-self-insert-function): Use it.
7549 * emacs-lisp/gv.el (buffer-local-value): Add setter.
7550
7551 2013-11-05 Eli Zaretskii <eliz@gnu.org>
7552
7553 * international/quail.el (quail-help): Be more explicit about the
7554 meaning of the labels shown on the keys. (Bug#15800)
7555
7556 * startup.el (normal-top-level): Load the subdirs.el files before
7557 setting the locale environment. (Bug#15805)
7558
7559 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
7560
7561 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
7562 via arguments so as to get the right ones (bug#15418).
7563
7564 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
7565
7566 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
7567
7568 Fix problems found while writing a test suite.
7569
7570 * net/tramp-compat.el (tramp-compat-load): New defun.
7571 * net/tramp.el (tramp-handle-load): Use it.
7572
7573 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
7574 "(numberp ok-if-already-exists)" correctly.
7575
7576 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
7577
7578 * international/characters.el (glyphless-char-display-control):
7579 Add usage note.
7580
7581 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
7582
7583 * progmodes/python.el (python-mode):
7584 * progmodes/scheme.el (scheme-mode):
7585 * progmodes/prolog.el (prolog-mode):
7586 * progmodes/ruby-mode.el (ruby-mode):
7587 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
7588 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
7589
7590 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7591
7592 * rect.el (rectangle--highlight-for-redisplay):
7593 * emacs-lisp/smie.el (smie--next-indent-change):
7594 Use buffer-chars-modified-tick.
7595
7596 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
7597
7598 * electric.el (electric-indent-post-self-insert-function):
7599 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
7600
7601 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
7602
7603 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
7604
7605 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7606
7607 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
7608 (bug#15786).
7609
7610 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7611
7612 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
7613
7614 * progmodes/python.el: Fix up last change.
7615 (python-shell--save-temp-file): New function.
7616 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
7617 `string' comes from the current buffer.
7618 (python-shell-send-string-no-output): Remove `msg' arg.
7619 (python--use-fake-loc): New var.
7620 (python-shell-buffer-substring): Obey it. Try to compensate for the
7621 extra coding line added by python-shell--save-temp-file.
7622 (python-shell-send-region): Use python-shell--save-temp-file and
7623 python-shell-send-file directly. Add `nomain' argument.
7624 (python-shell-send-buffer): Use python-shell-send-region.
7625 (python-electric-pair-string-delimiter): New function.
7626 (python-mode): Use it.
7627
7628 2013-11-04 Eli Zaretskii <eliz@gnu.org>
7629
7630 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
7631 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
7632 environment and decoding all of the default-directory's to here
7633 from command-line.
7634 (command-line): Decode also argv[0].
7635
7636 * loadup.el: Error out if default-directory is a multibyte string
7637 when we are dumping.
7638
7639 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
7640
7641 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
7642
7643 * emacs-lisp/package.el (package-menu-mode)
7644 (package-menu--print-info, package-menu--archive-predicate):
7645 Add Archive column to package list.
7646
7647 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
7648
7649 Fix problems found while writing a test suite.
7650
7651 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
7652 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
7653 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
7654 to nil when running original file name handler. Otherwise,
7655 there are problems with constructs like "$$FOO".
7656
7657 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
7658 for `localname'.
7659
7660 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
7661
7662 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
7663
7664 * subr.el (version<, version<=, version=):
7665 Update docstrings with information for snapshot versions.
7666
7667 * helpers.el: New library for misc helper functions.
7668 (hash-table-keys): New function returning a list of hash keys.
7669 (hash-table-values): New function returning a list of hash values.
7670
7671 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
7672
7673 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7674 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
7675
7676 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
7677
7678 * textmodes/fill.el (fill-single-char-nobreak-p): New function
7679 checking whether point is after a 1-letter word.
7680
7681 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7682
7683 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
7684 Don't infloop when expanding region over `multiline' syntax-type that
7685 begins a line (bug#15778).
7686
7687 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7688
7689 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
7690 Make it into a proper minor mode.
7691 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
7692 (rectangle-mark-mode-map): New keymap.
7693 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
7694
7695 2013-11-04 Glenn Morris <rgm@gnu.org>
7696
7697 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
7698
7699 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7700
7701 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
7702 (ruby-smie-rules): Use smie-rule-parent instead.
7703
7704 * emacs-lisp/smie.el (smie-rule-parent): Always call
7705 smie-indent-virtual rather than only for hanging tokens.
7706 (smie--next-indent-change): New helper command.
7707
7708 2013-11-03 Glenn Morris <rgm@gnu.org>
7709
7710 * Makefile.in (abs_srcdir): Remove.
7711 (emacs): Unset EMACSLOADPATH.
7712
7713 2013-11-02 Glenn Morris <rgm@gnu.org>
7714
7715 * Makefile.in (EMACS): Use a relative filename.
7716 (abs_top_builddir): Remove.
7717 (custom-deps, finder-data, autoloads): Use --chdir.
7718
7719 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
7720
7721 Use relative filenames in TAGS files.
7722 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7723 (lisptagsfiles4, TAGS): Use relative file names.
7724 (TAGS-LISP): Remove.
7725 (maintainer-clean): No more TAGS-LISP file.
7726
7727 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7728 (lisptagsfiles4): Use absolute filenames again.
7729 (TAGS, TAGS-LISP): Not everything needs to run in one line.
7730 Remove all *loaddefs files, not just the first. Remove esh-groups.
7731 (maintainer-clean): Delete TAGS, TAGS-LISP.
7732
7733 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7734
7735 * emacs-lisp/package.el (package-version-join):
7736 Recognize snapshot versions.
7737
7738 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7739
7740 * subr.el (version-regexp-alist): Add support for snapshot versions.
7741
7742 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7743
7744 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
7745 New function, replacement for `smie-rule-parent' for when we want to
7746 skip over our direct parent if it's an assignment token..
7747 (ruby-smie-rules): Use it.
7748
7749 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7750
7751 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
7752 unconditionally. Remove now unnecessary forward declarations.
7753 Remove XEmacs-specific setup.
7754 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7755 (ruby-font-lock-syntactic-keywords)
7756 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
7757 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7758 (ruby-here-doc-end-syntax): Remove.
7759 (ruby-mode): Don't check whether `syntax-propertize-rules' is
7760 defined as function.
7761
7762 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7763
7764 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
7765
7766 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7767
7768 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
7769 table and abbrev table, `define-derived-mode' does that for us
7770 anyway.
7771
7772 2013-11-01 Glenn Morris <rgm@gnu.org>
7773
7774 * Makefile.in: Remove manual mh-e dependencies (writing .elc
7775 files is atomic for some time, so no parallel compilation issues).
7776
7777 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
7778
7779 * faces.el (face-x-resources): Add :distant-foreground.
7780 (region): Use :distant-foreground for gtk and ns.
7781
7782 2013-11-01 Tassilo Horn <tsdh@gnu.org>
7783
7784 Allow multiple bibliographies when BibLaTeX is used rather than
7785 BibTeX.
7786 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
7787 (reftex-locate-bibliography-files): Us it.
7788
7789 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
7790
7791 * image.el (image-type-header-regexps): Fix the 'pbm' part to
7792 allow comments in pbm files.
7793
7794 * term/w32-win.el (dynamic-library-alist): Support newer versions
7795 of libjpeg starting with v7: look only for the DLL from the
7796 version against which Emacs was built.
7797 Support versions of libpng beyond 1.4.x.
7798 Support libtiff v4.x.
7799
7800 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7801
7802 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
7803 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
7804 Add property :safe.
7805 (ruby-deep-arglist): Add property :type.
7806
7807 2013-10-31 Glenn Morris <rgm@gnu.org>
7808
7809 * Makefile.in (custom-deps, finder-data): No need to setq the target
7810 variables, we are in the right directory and the defaults work fine.
7811
7812 2013-10-30 Glenn Morris <rgm@gnu.org>
7813
7814 * Makefile.in (autoloads): Do not use abs_lisp.
7815
7816 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7817 `newline' does not respect `standard-output', so use `princ'.
7818
7819 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
7820
7821 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
7822 * buff-menu.el (Buffer-menu--unmark): New function.
7823 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
7824
7825 2013-10-30 Glenn Morris <rgm@gnu.org>
7826
7827 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
7828
7829 * emacs-lisp/package.el (lm-homepage): Declare.
7830
7831 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
7832 Fix doc typos.
7833
7834 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
7835
7836 * Makefile.in (finder-data, autoloads, update-subdirs)
7837 (compile-main, compile-clean, compile-always, bootstrap-clean):
7838 Check return value of cd.
7839 (compile-calc): Remove.
7840
7841 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7842
7843 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
7844
7845 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
7846 (byte-compile-and-folded): New function.
7847 (=, <, >, <=, >=): Use it.
7848
7849 * dos-w32.el (minibuffer-history-case-insensitive-variables)
7850 (path-separator, null-device, buffer-file-coding-system)
7851 (lpr-headers-switches): Check system-type before modifying them.
7852 (find-buffer-file-type-coding-system): Mark obsolete.
7853 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7854 find-file-not-found-set-buffer-file-coding-system.
7855 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7856 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7857 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7858 (w32-direct-print-region-helper, w32-direct-print-region-function)
7859 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7860 * startup.el (normal-top-level-add-subdirs-to-load-path):
7861 * ps-print.el (ps-print-region-function):
7862 * lpr.el (print-region-function): Use new name.
7863
7864 * subr.el (custom-declare-variable-early): Remove function.
7865 (custom-declare-variable-list): Remove var.
7866 (error, user-error): Remove `while' loop.
7867 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7868 (user-emacs-directory-warning, locate-user-emacs-file):
7869 Move to files.el.
7870 * simple.el (read-quoted-char-radix, read-quoted-char):
7871 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7872 Move from subr.el.
7873 * custom.el (custom-declare-variable-list): Don't process
7874 custom-declare-variable-list.
7875
7876 * progmodes/python.el (python-shell-get-buffer): New function.
7877 (python-shell-get-process): Use it.
7878 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7879 Python which encoding was used. Don't split-string since we only care
7880 about the first line. Return the temp-file, if applicable.
7881 (python-shell-send-region): Tell compile.el how to turn locations in
7882 the temp-file into locations in the source buffer.
7883
7884 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7885
7886 * subr.el (undefined): Add missing behavior from the C code for
7887 unbound keys.
7888
7889 * rect.el: Use lexical-binding. Add new rectangular region support.
7890 (rectangle-mark): New command.
7891 (rectangle--region): New var.
7892 (deactivate-mark-hook): Reset rectangle--region.
7893 (rectangle--extract-region, rectangle--insert-for-yank)
7894 (rectangle--highlight-for-redisplay)
7895 (rectangle--unhighlight-for-redisplay): New functions.
7896 (region-extract-function, redisplay-unhighlight-region-function)
7897 (redisplay-highlight-region-function): Use them to handle
7898 rectangular region.
7899 * simple.el (region-extract-function): New var.
7900 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7901 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7902 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7903 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7904 (redisplay-unhighlight-region-function)
7905 (redisplay-highlight-region-function): New vars.
7906 (redisplay--update-region-highlight): New function.
7907 (pre-redisplay-function): Use it.
7908 (exchange-point-and-mark): Don't deactivate the mark before
7909 reactivate-it anyway.
7910 * comint.el (comint-kill-region): Remove yank-handler argument.
7911 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7912 (delete-char): Remove property, since it's now part of their
7913 default behavior.
7914 (self-insert-iso): Remove property since this command doesn't exist.
7915
7916 * emacs-lisp/package.el (package--download-one-archive)
7917 (describe-package-1): Don't query the user about final newline.
7918
7919 2013-10-29 Daniel Colascione <dancol@dancol.org>
7920
7921 * net/tramp.el (tramp-methods): Document new functionality.
7922 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7923 tramp-hostname-checker if method provides one instead of scanning
7924 argument list for "%h" to decide hostname acceptability.
7925
7926 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
7927
7928 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7929 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7930 Handle COPY-CONTENTS. (Bug#15737)
7931
7932 2013-10-28 Daiki Ueno <ueno@gnu.org>
7933
7934 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7935 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7936
7937 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7938
7939 * image.el (defimage, image-load-path): Doc fixes.
7940
7941 2013-10-27 Alan Mackenzie <acm@muc.de>
7942
7943 Indent statements in macros following "##" correctly.
7944 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7945 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7946
7947 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7948
7949 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7950
7951 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7952
7953 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7954 after `=' is probably a new expression.
7955
7956 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7957
7958 * man.el (man-imenu-title): New option.
7959 (Man-mode-map): Add menu. (Bug#15722)
7960 (Man-mode): Add imenu to menu.
7961
7962 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7963
7964 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7965 specific in what the first arg can be: a non-keyword word,
7966 string/regexp/percent literal opener, opening paren, or unary
7967 operator followed directly by word.
7968
7969 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7970
7971 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
7972 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
7973 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
7974 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7975 Remove vars, they do not apply any more.
7976 (prolog-mode-abbrev-table): Remove redundant declaration.
7977 (prolog-upper-case-string, prolog-lower-case-string): Remove.
7978 (prolog-use-smie): Remove.
7979 (prolog-smie-rules): Add indentation rule for the if-then-else layout
7980 supported by prolog-electric-if-then-else-flag.
7981 (prolog-mode-variables, prolog-menu): Use setq-local.
7982 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
7983 Remove binding to `Backspace' since this key doesn't exist anyway.
7984 Remove bindings for electric self-inserting keys.
7985 (prog-mode): Assume it's defined.
7986 (prolog-post-self-insert): New function.
7987 (prolog-mode): Use it.
7988 (prolog-indent-line, prolog-indent-level)
7989 (prolog-find-indent-of-matching-paren)
7990 (prolog-indentation-level-of-line, prolog-goto-comment-column)
7991 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
7992 (prolog-goto-next-paren, prolog-in-string-or-comment)
7993 (prolog-tokenize, prolog-inside-mline-comment)
7994 (prolog-find-start-of-mline-comment): Remove functions.
7995 (prolog-find-unmatched-paren, prolog-clause-end)
7996 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
7997 (prolog-electric--if-then-else): Rename from
7998 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
7999 (prolog-tokenize-searchkey): Remove const.
8000 (prolog-clause-info): Use forward-sexp.
8001 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
8002 (prolog-electric-if-then-else): Remove commands.
8003 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
8004 for use in post-self-insert-hook.
8005 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
8006 for use in post-self-insert-hook.
8007 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
8008 for use in post-self-insert-hook.
8009 (prolog-electric--underscore): Rename from prolog-electric--underscore;
8010 adapt it for use in post-self-insert-hook.
8011
8012 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
8013
8014 * emacs-lisp/ert.el (ert-run-tests-interactively):
8015 Use `completing-read'. (Bug#9756)
8016
8017 2013-10-25 Eli Zaretskii <eliz@gnu.org>
8018
8019 * simple.el (line-move): Call line-move-1 instead of
8020 line-move-visual when the current window hscroll is zero, but
8021 temporary-goal-column indicates we will need to hscroll as result
8022 of the movement. (Bug#15712)
8023
8024 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
8025
8026 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
8027 capitalization. Use :visible instead of :active.
8028 Fix `ruby-indent-exp' reference. Add menu items for the generic
8029 commands that are used with SMIE.
8030 (ruby-do-end-to-brace): Insert space after `{'.
8031
8032 2013-10-25 John Anthony <john@jo.hnanthony.com>
8033
8034 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
8035
8036 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
8037
8038 2013-10-25 Glenn Morris <rgm@gnu.org>
8039
8040 * vc/vc.el (vc-print-log): Don't use a working revision unless
8041 one was explicitly specified. (Bug#15322)
8042
8043 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8044
8045 * subr.el (add-to-list): Preserve return value in compiler-macro
8046 (bug#15692).
8047
8048 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8049
8050 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
8051 result. Ask user to retry using '-all' flag. (Bug#15701)
8052
8053 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8054
8055 * emacs-lisp/smie.el: New smie-config system.
8056 (smie-config): New defcustom.
8057 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
8058 (smie-config-guess, smie-config-save): New commands.
8059 (smie-config--mode-local, smie-config--buffer-local)
8060 (smie-config--trace, smie-config--modefuns): New vars.
8061 (smie-config--advice, smie-config--mode-hook)
8062 (smie-config--setter, smie-config-local, smie-config--get-trace)
8063 (smie-config--guess-value, smie-config--guess): New functions.
8064 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
8065 text properties. Treat "string fence" syntax like string syntax.
8066
8067 * progmodes/sh-script.el (sh-use-smie): Change default.
8068 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
8069 (sh-var-value): Simplify by CSE.
8070 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
8071 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
8072 is used.
8073 (sh-guess-basic-offset): Use cl-incf.
8074 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
8075
8076 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
8077
8078 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
8079 (bug#15699).
8080
8081 2013-10-24 Glenn Morris <rgm@gnu.org>
8082
8083 * Makefile.in (abs_top_srcdir): Remove.
8084 (update-subdirs): Use relative path to update-subdirs.
8085
8086 2013-10-24 Eli Zaretskii <eliz@gnu.org>
8087
8088 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
8089 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
8090 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
8091 Call unmsys--file-name before expand-file-name, not after it.
8092
8093 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
8094
8095 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
8096 (ert-test-skipped): New error.
8097 (ert-skip, ert-stats-skipped): New defuns.
8098 (ert--skip-unless): New macro.
8099 (ert-test-skipped): New struct.
8100 (ert--run-test-debugger, ert-test-result-type-p)
8101 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
8102 (ert--stats-set-test-and-result, ert-char-for-test-result)
8103 (ert-string-for-test-result, ert-run-tests-batch)
8104 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
8105 Handle skipped tests. (Bug#9803)
8106
8107 2013-10-24 Glenn Morris <rgm@gnu.org>
8108
8109 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
8110
8111 * Makefile.in (abs_top_srcdir): New, set by configure.
8112 (update-subdirs): Correct build-aux location.
8113
8114 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
8115
8116 * vc/vc.el (vc-print-root-log): Always set `default-directory'
8117 value, whether we could auto-deduce `backend', or not.
8118
8119 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
8120 with parameters" example. Simplify the "is it block or is it
8121 hash" check, but also make it more thorough.
8122
8123 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
8124
8125 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
8126
8127 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8128
8129 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
8130 { if it is hanging.
8131
8132 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
8133 :before ";".
8134
8135 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
8136
8137 * progmodes/compile.el (compilation-directory-matcher)
8138 (compilation-page-delimiter):
8139 Support GNU Make-4.0 directory quoting. (Bug#15678)
8140
8141 2013-10-23 Leo Liu <sdl.web@gmail.com>
8142
8143 * ido.el (ido-tidy): Handle read-only text.
8144
8145 2013-10-23 Glenn Morris <rgm@gnu.org>
8146
8147 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
8148 (emacs, compile, compile-always):
8149 Quote entities that might contain whitespace.
8150 (custom-deps, finder-data, autoloads): Use abs_lisp.
8151 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
8152 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
8153 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
8154
8155 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
8156
8157 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
8158 Use `following-char'.
8159
8160 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8161
8162 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
8163 * progmodes/ruby-mode.el (ruby-smie-rules):
8164 Remove corresponding workaround. Fix indentation rule of ";" so it
8165 also applies when ";" is the parent.
8166
8167 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
8168
8169 * frame.el (display-screens, display-pixel-height)
8170 (display-pixel-width, display-mm-width, display-backing-store)
8171 (display-save-under, display-planes, display-color-cells)
8172 (display-visual-class, display-monitor-attributes-list):
8173 Mention the optional ‘display’ argument in doc strings.
8174
8175 2013-10-22 Michael Gauland <mikelygee@amuri.net>
8176
8177 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
8178 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
8179
8180 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8181
8182 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
8183 TODO. Add "." after " @ ".
8184 (ruby-smie--at-dot-call): New function. Checks if point at method
8185 call with explicit target.
8186 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
8187 to the method name tokens when it precedes them.
8188 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
8189 (ruby-smie-rules): Add rule for indentation before and after "."
8190 token.
8191
8192 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8193
8194 * textmodes/remember.el (remember-diary-extract-entries):
8195 Avoid add-to-list.
8196
8197 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
8198 an instruction.
8199
8200 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8201
8202 * progmodes/ruby-mode.el (ruby-smie-grammar):
8203 Add (almost) all infix operators.
8204 (ruby-smie--implicit-semi-p): Add new operator chars.
8205
8206 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8207 `smie-down-list'.
8208 (ruby-smie--args-separator-p): Check that there's no newline
8209 between method call and its arguments.
8210
8211 2013-10-20 Alan Mackenzie <acm@muc.de>
8212
8213 Allow comma separated lists after Java "implements".
8214
8215 * progmodes/cc-engine.el (c-backward-over-enum-header):
8216 Parse commas.
8217 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
8218 from a "disallowed" list in enum fontification.
8219
8220 2013-10-20 Johan Bockgård <bojohan@gnu.org>
8221
8222 * startup.el (default-frame-background-mode): Remove unused defvar.
8223
8224 * progmodes/verilog-mode.el (verilog-mode): Don't set
8225 comment-indent-function globally.
8226
8227 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
8228
8229 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
8230 Move Info menu item creation to ns-win.el.
8231
8232 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
8233 in menu bar.
8234
8235 * menu-bar.el: Move GNUstep specific menus...
8236
8237 * term/ns-win.el (ns-initialize-window-system): ... to here.
8238
8239 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8240
8241 * simple.el (newline): Only run post-self-insert-hook when
8242 called interactively.
8243
8244 2013-10-19 Johan Bockgård <bojohan@gnu.org>
8245
8246 * icomplete.el (icomplete-with-completion-tables): Add :version.
8247
8248 2013-10-19 Alan Mackenzie <acm@muc.de>
8249
8250 Fix fontification bugs with constructors and const.
8251
8252 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
8253 CASE 2) Remove the check for the absence of a suffix construct
8254 after a function declaration with only types (no identifiers) in
8255 the parentheses. Also, accept a function declaration with just a
8256 type inside the parentheses, if this type can be positively
8257 recognised as such, or if a prefix keyword like "explicit" nails
8258 down the construct as a declaration.
8259
8260 2013-10-19 Eli Zaretskii <eliz@gnu.org>
8261
8262 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
8263 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
8264 the problem whereby selecting a menu item that leads to a
8265 minibuffer prompt moves the cursor out of the minibuffer window,
8266 making it hard to type at the prompt. Suggested by Stefan Monnier
8267 <monnier@iro.umontreal.ca>.
8268
8269 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
8270
8271 * menu-bar.el: Don't make Services menu.
8272
8273 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8274
8275 * ffap.el: Handle "/usr/include/c++/<version>" directories.
8276 (ffap-alist): Use ffap-c++-mode for c++-mode.
8277 (ffap-c++-path): New variable.
8278 (ffap-c++-mode): New function.
8279
8280 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
8281
8282 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
8283
8284 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
8285
8286 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
8287 introduced on 2013-09-08, which results in an infinite loop
8288 requesting a password.
8289
8290 2013-10-18 Glenn Morris <rgm@gnu.org>
8291
8292 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
8293
8294 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
8295
8296 Sync with upstream verilog-mode revision 1a6ecec7.
8297 * progmodes/verilog-mode.el (verilog-mode-version): Update.
8298 (verilog-mode-release-date): Remove.
8299 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
8300 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
8301 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
8302 (verilog-auto-tieoff-ignore-regexp)
8303 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
8304 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
8305 (verilog-signals-with, verilog-dir-cache-preserving)
8306 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
8307 Doc fixes.
8308 (verilog-case-fold): New option, to control case folding in
8309 regexp searches, bug597.
8310 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
8311 (verilog-string-match-fold, verilog-in-paren-count)
8312 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
8313 (verilog-at-close-struct-p): New functions.
8314 (verilog-beg-block-re-ordered, verilog-extended-case-re)
8315 (verilog-forward-sexp, verilog-set-auto-endcomments)
8316 (verilog-leap-to-case-head): Handle "unique0" case.
8317 (verilog-in-constraint-re): New constant.
8318 (verilog-keywords, verilog-type-font-keywords):
8319 Add some SystemVerilog 1800-2012 keywords.
8320 (verilog-label-be): Remove unimplemented argument, bug669.
8321 (verilog-batch-execute-func): When batch expanding clear
8322 create-lockfiles to prevent spurious user locks when a file ends
8323 up not changing.
8324 (verilog-calculate-indent, verilog-calc-1)
8325 (verilog-at-close-constraint-p, verilog-at-constraint-p)
8326 (verilog-do-indent): Fix indentation of nested constraints
8327 and structures.
8328 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
8329 (verilog-auto-inst-param): Use verilog-string-match-fold.
8330 (verilog-read-inst-module-matcher):
8331 Fix AUTOINST on gate primitives with #1.
8332 (verilog-read-decls): Fix double-declaring user-defined typed signals.
8333 Reads all user-defined typed variables.
8334 (verilog-read-defines): Fix reading definitions inside comments, bug647.
8335 (verilog-signals-matching-regexp)
8336 (verilog-signals-not-matching-regexp, verilog-auto):
8337 Respect verilog-case-fold.
8338 (verilog-diff-report): Fix line count.
8339 (verilog-auto-assign-modport): Remove unused local `modi'.
8340 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
8341 better handle multidimensional arrays.
8342 Fix packed array ports misadding bit index in AUTOINST, bug637.
8343 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
8344 to not double-declare existing outputs and inputs, respectively.
8345 (verilog-template-map): Bind U to verilog-sk-uvm-component.
8346 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
8347 (verilog-sk-uvm-component): New skeleton.
8348 (verilog-submit-bug-report): Add verilog-case-fold,
8349 remove verilog-mode-release-date.
8350
8351 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
8352
8353 * subr.el (sit-for): Call (input-pending-p t) so as to behave
8354 as before.
8355
8356 2013-10-18 Reuben Thomas <rrt@sc3d.org>
8357
8358 * textmodes/remember.el (remember): Set buffer-offer-save in
8359 remember buffers (bug#13566).
8360
8361 2013-10-18 Daniel Colascione <dancol@dancol.org>
8362
8363 When evaluating forms in ielm, direct standard output to ielm
8364 buffer. Add new ielm-return-for-effect command. Remove trailing
8365 whitespace throughout.
8366
8367 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
8368 (ielm-return-for-effect): New command.
8369 (ielm-send-input): Accept optional `for-effect' parameter.
8370 (ielm-eval-input): Accept optional `for-effect' parameter.
8371 Bind `standard-output' to stream we create using
8372 `ielm-standard-output-impl'. Suppress printing result when
8373 `for-effect'.
8374 (ielm-standard-output-impl): New function.
8375 (inferior-emacs-lisp-mode): Explain new features in documentation.
8376
8377 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
8378
8379 Code cleanup.
8380
8381 * net/tramp.el (tramp-debug-message): Do not check for connection
8382 buffer.
8383 (tramp-message): Use "vector" connection property.
8384
8385 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
8386 (tramp-equal-remote, tramp-eshell-directory-change)
8387 * net/tramp-adb.el (tramp-adb-handle-copy-file)
8388 (tramp-adb-handle-rename-file)
8389 * net/tramp-cmds.el (tramp-list-remote-buffers)
8390 (tramp-cleanup-connection, tramp-cleanup-this-connection)
8391 * net/tramp-compat.el (tramp-compat-process-running-p)
8392 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
8393 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
8394 (tramp-gvfs-handle-rename-file)
8395 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8396 (tramp-set-file-uid-gid)
8397 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8398 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
8399 of `file-remote-p'.
8400
8401 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
8402 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
8403 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
8404 (tramp-gw-open-network-stream): Suppress unrelated traces.
8405
8406 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
8407 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
8408 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8409 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
8410 connection property.
8411
8412 * net/tramp-cache.el (top): Suppress traces when reading
8413 persistency file.
8414
8415 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
8416 Refactor common code. Improve debug message.
8417 (tramp-maybe-open-connection)
8418 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
8419 connection buffer too early.
8420
8421 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
8422 from `tramp-smb-actions-with-acl'.
8423 (tramp-smb-actions-set-acl): New defconst.
8424 (tramp-smb-handle-copy-directory)
8425 (tramp-smb-action-get-acl): New defun, renamed from
8426 `tramp-smb-action-with-acl'.
8427 (tramp-smb-action-set-acl): New defun.
8428 (tramp-smb-handle-set-file-acl): Rewrite.
8429
8430 2013-10-17 Glenn Morris <rgm@gnu.org>
8431
8432 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
8433
8434 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8435
8436 * skeleton.el (skeleton-newline): Remove.
8437 (skeleton-internal-1): Use (insert "\n") instead.
8438
8439 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
8440 let-bindings.
8441
8442 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
8443 forward-sexp-function while we redo its job (bug#15613).
8444
8445 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
8446
8447 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
8448 represented by lists.
8449
8450 2013-10-16 Glenn Morris <rgm@gnu.org>
8451
8452 * tmm.el (tmm--history): New dynamic variable.
8453 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
8454
8455 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
8456
8457 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
8458 (tramp-smb-errors): Add error messages.
8459 (tramp-smb-actions-with-acl): New defconst.
8460 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
8461 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
8462 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
8463 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
8464 (tramp-smb-get-stat-capability): Fix tests.
8465
8466 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
8467
8468 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
8469 (bug#15580).
8470
8471 2013-10-16 Glenn Morris <rgm@gnu.org>
8472
8473 * ansi-color.el (ansi-color-drop-regexp):
8474 Add 1J, 1K, 2K. (Bug#15617)
8475
8476 * files.el (hack-local-variables--warned-lexical): New.
8477 (hack-local-variables):
8478 Warn about misplaced lexical-binding. (Bug#15616)
8479
8480 * net/eww.el (eww-render): Always set eww-current-url,
8481 and update header line. (Bug#15622)
8482 (eww-display-html): ... Rather than just doing it here.
8483
8484 2013-10-15 Eli Zaretskii <eliz@gnu.org>
8485
8486 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
8487 menu navigations commands.
8488
8489 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
8490
8491 * progmodes/subword.el (subword-capitalize): Be careful when
8492 the search for [[:alpha:]] fails (bug#15580).
8493
8494 2013-10-14 Eli Zaretskii <eliz@gnu.org>
8495
8496 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
8497 to commands that scroll the menu.
8498
8499 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
8500
8501 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
8502 Handle methods ending with `?' and `!'.
8503
8504 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
8505
8506 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
8507 `japanese-cp932' to `cp932' to fix the problem where saving a
8508 source file written in Shift_JIS twice would end up having
8509 `coding: japanese-cp932' which Ruby could not recognize.
8510 (ruby-mode-set-encoding): Add support for encodings mapped to nil
8511 in `ruby-encoding-map'.
8512 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
8513 doesn't need to be explicitly declared in magic comment.
8514 (ruby-encoding-map): Add type declaration for better customize UI.
8515
8516 2013-10-13 Glenn Morris <rgm@gnu.org>
8517
8518 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
8519 Occur buffers are read-only. http://bugs.debian.org/720775
8520
8521 * emacs-lisp/authors.el (authors-fixed-entries):
8522 Comment out old alpha stuff.
8523
8524 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
8525
8526 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
8527 to `after-save-hook' instead of `before-save-hook'.
8528 (ruby-mode-set-encoding): Use the value of coding system used to
8529 write the file. Call `basic-save-buffer-1' after modifying the
8530 buffer.
8531
8532 2013-10-13 Alan Mackenzie <acm@muc.de>
8533
8534 Fix indentation/fontification of Java enum with
8535 "implements"/generic.
8536
8537 * progmodes/cc-engine.el (c-backward-over-enum-header):
8538 Extracted from the three other places and enhanced to handle generics.
8539 (c-inside-bracelist-p): Uses new function above.
8540 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
8541 function above.
8542 (c-font-lock-enum-tail): Uses new function above.
8543
8544 2013-10-13 Kenichi Handa <handa@gnu.org>
8545
8546 * international/mule-cmds.el (select-safe-coding-system): Remove a
8547 superfluous condition in chekcing whether a coding system is safe
8548 or not.
8549
8550 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
8551
8552 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
8553
8554 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
8555
8556 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
8557
8558 2013-10-13 Glenn Morris <rgm@gnu.org>
8559
8560 * menu-bar.el (menu-bar-update-buffers):
8561 Unify Buffers menu prompt string. (Bug#15576)
8562
8563 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
8564
8565 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
8566 Add some entries.
8567 (authors-fixed-entries): Use accented form of name.
8568
8569 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8570
8571 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
8572 method calls (bug#15594).
8573 (ruby-smie--args-separator-p): New function.
8574 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
8575 recognize paren-free method calls.
8576
8577 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
8578 internals of universal-argument.
8579
8580 2013-10-11 Eli Zaretskii <eliz@gnu.org>
8581
8582 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
8583 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
8584 dropped menu on second mouse click on the menu bar.
8585
8586 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8587
8588 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
8589 (explicit-shell-file-name): Declare.
8590 (sh--vars-before-point, sh--cmd-completion-table): New functions.
8591 (sh-completion-at-point-function): New function.
8592 (sh-mode): Use it.
8593 (sh-smie--keyword-p): Remove unused argument.
8594 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
8595 vars.
8596 (sh-set-shell): Always setup SMIE, even if we use the
8597 old indentation code.
8598
8599 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
8600
8601 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
8602 cases of ? and =.
8603 (ruby-smie-rules): Simplify the "do" rule. The cases when the
8604 predicate would return nil are almost non-existent.
8605 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
8606
8607 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
8608 cache also after commands that modify the buffer but don't move
8609 point.
8610
8611 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8612
8613 * env.el (substitute-env-in-file-name): New function.
8614 (substitute-env-vars): Extend the meaning of the optional arg.
8615
8616 2013-10-10 Eli Zaretskii <eliz@gnu.org>
8617
8618 * term/w32-win.el (dynamic-library-alist): Define separate lists
8619 of GIF DLLs for versions before and after 5.0.0 of giflib.
8620 (Bug#15531)
8621
8622 2013-10-10 João Távora <joaotavora@gmail.com>
8623
8624 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
8625 not locked, use last revision and current source as
8626 defaults. (Bug#15569)
8627
8628 2013-10-10 Masatake YAMATO <yamato@redhat.com>
8629
8630 * menu-bar.el (menu-bar-open): Don't use popup-menu if
8631 menu-bar is hidden.
8632
8633 2013-10-10 Martin Rudalics <rudalics@gmx.at>
8634
8635 * window.el (pop-to-buffer-same-window): Fix doc-string.
8636 (Bug#15492)
8637
8638 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8639
8640 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
8641
8642 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
8643
8644 * calendar/icalendar.el (icalendar-import-file):
8645 Fix interactive spec. (Bug#15482)
8646
8647 2013-10-10 Glenn Morris <rgm@gnu.org>
8648
8649 * desktop.el (desktop-save): Default to saving in .emacs.d,
8650 since PWD is no longer in desktop-path by default. (Bug#15319)
8651
8652 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
8653 now that text mode has a menu with the same entry.
8654 (menu-bar-text-mode-auto-fill): Remove now unused func.
8655 * textmodes/text-mode.el (text-mode-map):
8656 Use auto-fill help text from menu-bar.el.
8657
8658 2013-10-10 John Anthony <john@jo.hnanthony.com>
8659
8660 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
8661
8662 2013-10-09 Juri Linkov <juri@jurta.org>
8663
8664 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
8665 instead of this-command-keys. Add universal-argument-more and
8666 universal-argument-minus to the list of prefix commands. (Bug#15568)
8667
8668 2013-10-09 Glenn Morris <rgm@gnu.org>
8669
8670 * vc/vc-svn.el (vc-svn-create-repo):
8671 Expand paths in file://... url. (Bug#15446)
8672
8673 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
8674 Add some entries.
8675 (authors): Remove unused local variables.
8676
8677 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8678
8679 * profiler.el: Create a more coherent calltree from partial backtraces.
8680 (profiler-format): Hide the tail with `invisible' so that C-s can still
8681 find the hidden elements.
8682 (profiler-calltree-depth): Don't recurse so enthusiastically.
8683 (profiler-function-equal): New hash-table-test.
8684 (profiler-calltree-build-unified): New function.
8685 (profiler-calltree-build): Use it.
8686 (profiler-report-make-name-part): Indent the calltree less.
8687 (profiler-report-mode): Add visibility specs for profiler-format.
8688 (profiler-report-expand-entry, profiler-report-toggle-entry):
8689 Expand the whole subtree when provided with a prefix arg.
8690
8691 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
8692
8693 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
8694 iuwu-mod token.
8695 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
8696 hanging iuwu-mod token.
8697 (ruby-smie--forward-token): Do not include a dot after a token in
8698 that token.
8699 (ruby-smie--backward-token): Likewise.
8700
8701 2013-10-08 Juri Linkov <juri@jurta.org>
8702
8703 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
8704 to isearch-other-control-char.
8705 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
8706 and isearch-post-command-hook to post-command-hook.
8707 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
8708 and isearch-post-command-hook from post-command-hook.
8709 (isearch-unread-key-sequence)
8710 (isearch-reread-key-sequence-naturally)
8711 (isearch-lookup-scroll-key, isearch-other-control-char)
8712 (isearch-other-meta-char): Remove functions.
8713 (isearch-pre-command-hook, isearch-post-command-hook):
8714 New functions based on isearch-other-meta-char rewritten
8715 relying on the new behavior of overriding-terminal-local-map
8716 that does not replace the local keymaps any more. (Bug#15200)
8717
8718 2013-10-08 Eli Zaretskii <eliz@gnu.org>
8719
8720 Support menus on text-mode terminals.
8721 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
8722 functionality.
8723
8724 * tooltip.el (tooltip-mode): Don't error out on TTYs.
8725
8726 * menu-bar.el (popup-menu, popup-menu-normalize-position):
8727 Move here from mouse.el.
8728 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
8729 and arrow keys.
8730 (tty-menu-navigation-map): New map for TTY menu navigation.
8731
8732 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
8733
8734 * frame.el (display-mouse-p): Report text-mode mouse as available
8735 on w32.
8736 (display-popup-menus-p): Report availability if mouse is
8737 available; don't condition on window-system.
8738
8739 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
8740 (tty-menu-selected-face): New faces.
8741
8742 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8743
8744 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
8745 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
8746 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
8747 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
8748 New constants.
8749 (lisp-mode-variables): New `elisp' argument.
8750 (emacs-lisp-mode): Use it.
8751 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
8752 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
8753
8754 * indent.el: Use lexical-binding.
8755 (indent-region): Add progress reporter.
8756 (tab-stop-list): Make it implicitly extend to infinity by repeating the
8757 last step.
8758 (indent--next-tab-stop): New function to implement this behavior.
8759 (tab-to-tab-stop, move-to-tab-stop): Use it.
8760
8761 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
8762
8763 * indent.el (indent-rigidly--current-indentation): New function.
8764 (indent-rigidly-map): New var.
8765 (indent-rigidly): Use it to provide interactive mode (bug#8196).
8766
8767 2013-10-08 Bastien Guerry <bzg@gnu.org>
8768
8769 * register.el (insert-register): Fix 2013-10-07 change.
8770
8771 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8772
8773 * progmodes/perl-mode.el: Use lexical-binding.
8774 Remove redundant :group args.
8775 (perl-nochange): Change default to be closer to other major modes's
8776 standard behavior.
8777 (perl-indent-line): Don't consider text on current line as a
8778 valid beginning of function from which to indent.
8779
8780 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
8781 with more than one argument (bug#15538).
8782
8783 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
8784
8785 * vc/pcvs.el: Use lexical-binding.
8786 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
8787 environment of `eval'.
8788 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
8789 than a list of expressions. Adjust callers.
8790 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
8791
8792 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
8793
8794 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
8795 case of the dot in a chained method call being on the following line.
8796
8797 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8798
8799 * electric.el (electric-indent-inhibit): New var.
8800 (electric-indent-post-self-insert-function): Use it.
8801 * progmodes/python.el (python-mode): Set it.
8802
8803 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
8804 open braces.
8805
8806 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
8807
8808 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
8809 (css-mode): Use electric-indent-chars.
8810
8811 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
8812 (font-lock-beg, font-lock-end): Move before first use.
8813 (nxml-mode): Use syntax-propertize-function.
8814 (nxml-after-change, nxml-after-change1): Adjust accordingly.
8815 (nxml-extend-after-change-region): Remove.
8816 * nxml/xmltok.el: Use lexical-binding.
8817 (xmltok-save): Use `declare'.
8818 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
8819 * nxml/nxml-util.el: Use lexical-binding.
8820 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
8821 Use `declare'.
8822 * nxml/nxml-ns.el: Use lexical-binding.
8823 (nxml-ns-save): Use `declare'.
8824 (nxml-ns-prefixes-for): Avoid add-to-list.
8825 * nxml/rng-match.el: Use lexical-binding.
8826 (rng--ipattern): Use cl-defstruct.
8827 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
8828 (rng-cons-group-after, rng-subst-group-after)
8829 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
8830 Use closures instead of `(lambda...).
8831
8832 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
8833
8834 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
8835 of BEG and END.
8836
8837 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8838 Use `tramp-handle-insert-file-contents'.
8839 (tramp-gvfs-handle-insert-file-contents): Remove function.
8840
8841 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8842 Use `save-restriction' in order to keep markers.
8843
8844 * net/trampver.el: Update release number.
8845
8846 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8847
8848 * progmodes/compile.el (compilation-parse-errors):
8849 Use compilation--put-prop.
8850 (compilation--ensure-parse): Check compilation-multiline.
8851
8852 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8853
8854 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8855 lexical-binding.
8856
8857 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8858
8859 * progmodes/ruby-mode.el: Fix recently added tests.
8860 (ruby-smie-grammar): Add - and +.
8861 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8862 (ruby-smie--backward-id): New functions.
8863 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8864 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8865 any more.
8866
8867 2013-10-07 Leo Liu <sdl.web@gmail.com>
8868
8869 * register.el (register-preview-delay)
8870 (register-preview-functions): New variables.
8871 (register-read-with-preview, register-preview)
8872 (register-describe-oneline): New functions.
8873 (point-to-register, window-configuration-to-register)
8874 (frame-configuration-to-register, jump-to-register)
8875 (number-to-register, view-register, insert-register)
8876 (copy-to-register, append-to-register, prepend-to-register)
8877 (copy-rectangle-to-register): Use register-read-with-preview to
8878 read register. (Bug#15525)
8879
8880 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8881
8882 * net/network-stream.el (network-stream-open-starttls): Don't add
8883 --insecure if it's already present, because that gnutls-cli
8884 rejects getting that parameter twice.
8885
8886 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8887
8888 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8889 keyword, too.
8890
8891 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8892
8893 * newcomment.el (comment-use-global-state): Change default value
8894 to t, mark obsolete (Bug#15251).
8895 (comment-beginning): In addition to `comment-to-syntax', check the
8896 value of `comment-use-global-state'.
8897
8898 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8899
8900 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8901 (ruby-comment-column): Follow the global default, by default.
8902 (ruby-smie-grammar): Add assignment syntax.
8903 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8904 open-paren, a comma, or a \.
8905 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8906 and line continuations.
8907 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8908 followed by implicit semi-colons. Add rule for string concatenation
8909 and for indentation at BOB.
8910 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8911
8912 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8913 calling next-sexp, since next-token may have skipped chars which
8914 next-sexp doesn't know should be skipped!
8915
8916 2013-10-05 Leo Liu <sdl.web@gmail.com>
8917
8918 * progmodes/octave.el (octave-send-region):
8919 Call compilation-forget-errors.
8920
8921 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8922
8923 * vc/vc-svn.el (vc-svn-find-admin-dir):
8924 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8925 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8926 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8927 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8928
8929 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8930
8931 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8932
8933 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8934
8935 * subr.el (read-passwd): Hide chars even when called within a context
8936 where after-change-functions is disabled (bug#15501).
8937 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8938 until we removed ourself from overriding-terminal-local-map.
8939
8940 2013-10-04 Leo Liu <sdl.web@gmail.com>
8941
8942 * progmodes/octave.el (inferior-octave-mode):
8943 Call compilation-forget-errors.
8944
8945 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8946
8947 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8948
8949 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
8950
8951 * net/secrets.el (secrets-create-collection): Add optional
8952 argument ALIAS. Use proper Label keyword. Append ALIAS as
8953 dbus-call-method argument. (Bug#15516)
8954
8955 2013-10-04 Leo Liu <sdl.web@gmail.com>
8956
8957 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8958 (inferior-octave-compilation-font-lock-keywords): New variables.
8959 (compilation-error-regexp-alist)
8960 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8961 (inferior-octave-mode): Use compilation-shell-minor-mode.
8962
8963 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8964
8965 * minibuffer.el (completion--replace): Be careful that `end' might be
8966 a marker.
8967
8968 2013-10-03 Daiki Ueno <ueno@gnu.org>
8969
8970 Add support for package signature checking.
8971 * emacs-lisp/package.el (url-http-file-exists-p)
8972 (epg-make-context, epg-context-set-home-directory)
8973 (epg-verify-string, epg-context-result-for)
8974 (epg-signature-status, epg-signature-to-string)
8975 (epg-check-configuration, epg-configuration)
8976 (epg-import-keys-from-file): Declare.
8977 (package-check-signature): New user option.
8978 (package-unsigned-archives): New user option.
8979 (package-desc): Add `signed' field.
8980 (package-load-descriptor): Set `signed' field if .signed file exists.
8981 (package--archive-file-exists-p): New function.
8982 (package--check-signature): New function.
8983 (package-install-from-archive): Check package signature.
8984 (package--download-one-archive): Check archive signature.
8985 (package-delete): Remove .signed file.
8986 (package-import-keyring): New command.
8987 (package-refresh-contents): Import default keyring.
8988 (package-desc-status): Add "unsigned" status.
8989 (describe-package-1, package-menu--print-info)
8990 (package-menu-mark-delete, package-menu--find-upgrades)
8991 (package-menu--status-predicate): Support "unsigned" status.
8992
8993 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8994
8995 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
8996 the new compilation scheme using the new byte-codes.
8997
8998 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
8999 (byte-pophandler): New byte codes.
9000 (byte-goto-ops): Adjust accordingly.
9001 (byte-compile--use-old-handlers): New var.
9002 (byte-compile-catch): Use new byte codes depending on
9003 byte-compile--use-old-handlers.
9004 (byte-compile-condition-case--old): Rename from
9005 byte-compile-condition-case.
9006 (byte-compile-condition-case--new): New function.
9007 (byte-compile-condition-case): New function that dispatches depending
9008 on byte-compile--use-old-handlers.
9009 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
9010 when we can.
9011
9012 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
9013 Optimize under `condition-case' and `catch' if
9014 byte-compile--use-old-handlers is nil.
9015 (disassemble-offset): Handle new bytecodes.
9016
9017 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9018
9019 * subr.el (error): Use `declare'.
9020 (decode-char, encode-char): Use advertised-calling-convention instead
9021 of the docstring to discourage use of the `restriction' arg.
9022
9023 2013-10-03 Daiki Ueno <ueno@gnu.org>
9024
9025 * epg.el (epg-verify-file): Add a comment saying that it does not
9026 notify verification error as a return value nor a signal.
9027 (epg-verify-string): Ditto.
9028
9029 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
9030
9031 * progmodes/compile.el (compilation-start): Try globbing the arg to
9032 `cd' (bug#15417).
9033
9034 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
9035
9036 Sync with Tramp 2.2.8.
9037
9038 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
9039 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
9040 * net/trampver.el: Update release number.
9041
9042 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
9043
9044 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
9045 and default-process-coding-system for darwin only.
9046
9047 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
9050
9051 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
9052
9053 * vc/vc-git.el (vc-git-grep): Disable pager.
9054
9055 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
9056
9057 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
9058 Use :url instead of :homepage, as per
9059 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
9060
9061 * newcomment.el (comment-beginning): When `comment-use-syntax' is
9062 non-nil, use `syntax-ppss' (Bug#15251).
9063
9064 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9065
9066 * progmodes/octave.el (inferior-octave-startup-file):
9067 Prefer ~/.emacs.d/init_octave.m.
9068
9069 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
9070
9071 * emacs-lisp/package.el (package-desc-from-define):
9072 Accept additional arguments as plist, convert them to an alist and store
9073 them in the `extras' slot.
9074 (package-generate-description-file): Convert extras alist back to
9075 plist and append to the `define-package' form arguments.
9076 (package--alist-to-plist): New function.
9077 (package--ac-desc): Add `extras' slot.
9078 (package--add-to-archive-contents): Check if the archive-contents
9079 vector is long enough, and if it is, pass its `extras' slot value
9080 to `package-desc-create'.
9081 (package-buffer-info): Call `lm-homepage', pass the returned value
9082 to `package-desc-from-define'.
9083 (describe-package-1): Render the homepage button (Bug#13291).
9084
9085 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9086 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
9087
9088 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
9089
9090 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
9091 and default-process-coding-system to utf-8-unix (Bug#15402).
9092
9093 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
9094
9095 * subr.el (looking-back): Do not recommend using looking-back.
9096
9097 2013-09-28 Alan Mackenzie <acm@muc.de>
9098
9099 Fix indentation/fontification of Java enum with "implements".
9100
9101 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
9102 regexp which matches "implements", etc., in Java.
9103 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
9104 specifier clauses coming after "enum".
9105 * progmodes/cc-fonts.el (c-font-lock-declarations)
9106 (c-font-lock-enum-tail): Check for extra specifier clauses coming
9107 after "enum".
9108
9109 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
9110
9111 * faces.el (region): Change ns_selection_color to
9112 ns_selection_fg_color, add ns_selection_bg_color.
9113
9114 2013-09-28 Leo Liu <sdl.web@gmail.com>
9115
9116 * progmodes/octave.el (inferior-octave-completion-table)
9117 (inferior-octave-completion-at-point): Minor tweaks.
9118
9119 * textmodes/ispell.el (ispell-lookup-words): Rename from
9120 lookup-words. (Bug#15460)
9121 (lookup-words): Obsolete.
9122 (ispell-complete-word, ispell-command-loop): All uses changed.
9123
9124 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9125
9126 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
9127 (octave-mode-menu): Add octave-send-buffer.
9128 (octave-send-buffer): New function.
9129
9130 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9131
9132 * progmodes/octave.el (octave-mode-map): Add key binding for
9133 octave-lookfor.
9134 (octave-mode-menu): Add octave-lookfor.
9135 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
9136 octave-lookfor.
9137 (octave-lookfor): New function.
9138
9139 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9140
9141 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
9142 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
9143 its convention.
9144 (cl--loop-set-iterator-function): New function.
9145 (cl-loop): Adjust accordingly, so as not to use cl-subst.
9146 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
9147 Bind `it' with `let' instead of substituting it with `cl-subst'.
9148 (cl--unused-var-p): New function.
9149 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
9150 Eliminate some unused variable warnings (bug#15326).
9151
9152 2013-09-27 Tassilo Horn <tsdh@gnu.org>
9153
9154 * doc-view.el (doc-view-scale-reset): Rename from
9155 `doc-view-reset-zoom-level'.
9156 (doc-view-scale-adjust): New command.
9157 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
9158 `doc-view-scale-adjust'.
9159
9160 2013-09-26 Tassilo Horn <tsdh@gnu.org>
9161
9162 * doc-view.el (doc-view-reset-zoom-level): New command.
9163 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
9164 zoom commands (bug#15466).
9165
9166 2013-09-26 Kenichi Handa <handa@gnu.org>
9167
9168 * international/quail.el (quail-help): Make it not a command.
9169
9170 2013-09-26 Leo Liu <sdl.web@gmail.com>
9171
9172 * minibuffer.el (completion-all-sorted-completions): Make args
9173 optional as they are.
9174
9175 2013-09-25 Daniel Colascione <dancol@dancol.org>
9176
9177 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
9178 specs are and that they're not evaluated.
9179
9180 2013-09-24 Sam Steingold <sds@gnu.org>
9181
9182 * midnight.el (clean-buffer-list-kill-regexps)
9183 (clean-buffer-list-kill-buffer-names): Update for the new Man
9184 buffer naming which includes the object name.
9185
9186 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9187
9188 * eshell/esh-cmd.el (eshell--sep-terms): New var.
9189 (eshell-parse-command, eshell-parse-pipeline): Use it since
9190 eshell-separate-commands requires a dynamic scoped var.
9191 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
9192
9193 2013-09-23 Leo Liu <sdl.web@gmail.com>
9194
9195 * autoinsert.el (auto-insert-alist): Make the value of
9196 lexical-binding match its file setting.
9197
9198 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
9199
9200 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
9201
9202 * autoarg.el (autoarg-kp-digit-argument):
9203 * electric.el (Electric-command-loop):
9204 * kmacro.el (kmacro-step-edit-insert):
9205 Do not set universal-argument-num-events.
9206
9207 2013-09-22 Leo Liu <sdl.web@gmail.com>
9208
9209 * files.el (interpreter-mode-alist): Add octave.
9210
9211 2013-09-21 Alan Mackenzie <acm@muc.de>
9212
9213 C++: fontify identifier in declaration following "public:" correctly.
9214 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
9215 to match "public", etc.
9216 (c-decl-prefix-re): Add ":" into the C++ value.
9217 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
9218 bit. Add a check for a ":" preceded by "public", etc.
9219
9220 2013-09-21 Eli Zaretskii <eliz@gnu.org>
9221
9222 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
9223 recognized by GDB 7.5 and later.
9224
9225 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
9226
9227 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
9228
9229 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9230
9231 * subr.el (internal--call-interactively): New const.
9232 (called-interactively-p): Use it (bug#3984).
9233
9234 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
9235
9236 * vc/pcvs.el (cvs-mode-ignore):
9237 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
9238 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
9239
9240 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9241
9242 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
9243 (eshell-ls-orig-insert-directory): Remove.
9244 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
9245 (eshell-ls-use-in-dired): Use advice-add/remove.
9246 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
9247 Add `orig-fun' arg for use in :around advice.
9248 Make it check (redundantly) eshell-ls-use-in-dired.
9249
9250 2013-09-19 Glenn Morris <rgm@gnu.org>
9251
9252 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
9253
9254 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
9255
9256 * emacs-lisp/eieio.el (class-parent): Undo previous change.
9257
9258 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
9259
9260 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
9261 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
9262 (tramp-get-remote-python): New defuns.
9263 (tramp-get-remote-uid-with-perl)
9264 (tramp-get-remote-gid-with-perl): New defuns. Perl code
9265 contributed by yary <not.com@gmail.com> (tiny change).
9266 (tramp-get-remote-uid-with-python)
9267 (tramp-get-remote-gid-with-python): New defuns. Python code
9268 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
9269 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
9270
9271 2013-09-19 Glenn Morris <rgm@gnu.org>
9272
9273 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
9274
9275 * eshell/em-unix.el (eshell-remove-entries):
9276 Rename argument to avoid name-clash with global `top-level'.
9277
9278 * eshell/esh-proc.el (eshell-kill-process-function):
9279 Remove eshell-reset-after-proc from eshell-kill-hook if present.
9280 (eshell-reset-after-proc): Remove unused arg `proc'.
9281
9282 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
9283 (directory-files-and-attributes): Mark unused arg.
9284
9285 * eshell/em-unix.el (eshell-remove-entries):
9286 Remove unused arg `path'. Update callers.
9287
9288 * eshell/em-hist.el (eshell-hist-parse-arguments):
9289 Remove unused arg `silent'. Update callers.
9290
9291 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
9292 Fix (f)boundp mix-up.
9293
9294 * eshell/em-smart.el (eshell-smart-scroll-window)
9295 (eshell-disable-after-change):
9296 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
9297
9298 2013-09-18 Alan Mackenzie <acm@muc.de>
9299
9300 Fix fontification of type when followed by "const".
9301 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
9302 "known" types from fontification.
9303
9304 2013-09-18 Glenn Morris <rgm@gnu.org>
9305
9306 * emacs-lisp/chart.el (x-display-color-cells): Declare.
9307 (chart-face-list): Drop Emacsen without display-color-p.
9308
9309 * net/eww.el (libxml-parse-html-region): Declare.
9310 (eww-display-html): Explicit error if no libxml2 support.
9311
9312 * doc-view.el (doc-view-mode): Silence --without-x compilation.
9313
9314 * image.el (image-type-from-buffer, image-multi-frame-p):
9315 Remove --without-x warning/error.
9316
9317 * mouse.el (mouse-yank-primary):
9318 * term.el (term-mouse-paste):
9319 Reorder to silence --without-x compilation.
9320
9321 * mpc.el (doc-view-mode): Silence --without-x compilation.
9322
9323 * mail/rmailmm.el (rmail-mime-set-bulk-data):
9324 Silence --without-x compilation.
9325
9326 * progmodes/gud.el (gud-find-file, gud-mode):
9327 Silence --without-x compilation.
9328 (tooltip-mode): Declare.
9329
9330 * wdired.el (dired-backup-overwrite): Remove declaration.
9331 (wdired-mode-map): Add doc string.
9332
9333 * custom.el (x-get-resource): Declare.
9334
9335 * eshell/em-glob.el (ange-cache):
9336 * eshell/em-unix.el (ange-cache): Declare.
9337
9338 * faces.el (x-display-list, x-open-connection, x-get-resource):
9339 Declare.
9340
9341 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
9342 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
9343 Declare.
9344
9345 * frame.el (x-display-grayscale-p, x-display-name): Declare.
9346
9347 * net/gnutls.el (gnutls-log-level): Declare.
9348
9349 * net/shr.el (image-size, image-animate): Declare.
9350
9351 * simple.el (font-info): Declare.
9352
9353 * subr.el (x-popup-dialog): Declare.
9354
9355 * term/common-win.el (x-select-enable-primary)
9356 (x-last-selected-text-primary, x-last-selected-text-clipboard):
9357 Declare.
9358
9359 * term/ns-win.el (x-handle-args): Declare.
9360
9361 * term/x-win.el (x-select-enable-clipboard): Declare.
9362
9363 * term/w32-win.el (create-default-fontset): Declare.
9364
9365 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
9366 Declare.
9367
9368 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
9369 (fit-frame-to-buffer): Explicit error if --without-x.
9370 (mouse-autoselect-window-select): Silence compiler.
9371
9372 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
9373
9374 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
9375 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
9376 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
9377 * eshell/esh-util.el (eshell-sublist):
9378 Remove unused local variables.
9379
9380 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
9381
9382 * textmodes/two-column.el: Make 2C-split work for --without-x.
9383 (scroll-bar-columns): Autoload.
9384 (top-level): Require fringe when compiling.
9385
9386 2013-09-18 Leo Liu <sdl.web@gmail.com>
9387
9388 * subr.el (add-hook): Robustify to handle closure as well.
9389
9390 2013-09-17 Glenn Morris <rgm@gnu.org>
9391
9392 * simple.el (messages-buffer-mode-map): Unbind "g".
9393
9394 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9395
9396 * help-mode.el (help-mode-finish): Use derived-mode-p.
9397 Remove obsolete highlighting.
9398
9399 * play/life.el (life-mode): Use define-derived-mode. Derive from
9400 special-mode.
9401 (life): Let-bind inhibit-read-only.
9402 (life-setup): Avoid `setq'. Use `life-mode'.
9403
9404 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
9405 which should not be needed any more.
9406 (package-menu-refresh, package-menu-describe-package): Use user-error.
9407
9408 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
9409 (eshell-post-rewrite-command-hook): Make obsolete.
9410 (eshell-parse-command): Simplify.
9411 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
9412 (eshell--cmd): Declare.
9413 (eshell-parse-pipeline): Remove unused var `final-p'.
9414 Pass a dynvar to eshell-post-rewrite-command-hook.
9415 Implement the new eshell-post-rewrite-command-function.
9416 (eshell-invoke-directly): Remove unused arg `input'.
9417 * eshell/esh-io.el (eshell-io-initialize):
9418 Use eshell-post-rewrite-command-function (bug#15399).
9419 (eshell--apply-redirections): Rename from eshell-apply-redirections;
9420 adjust to new calling convention.
9421 (eshell-create-handles): Rename args to avoid clashing with dynvar
9422 `standard-output'.
9423
9424 2013-09-17 Glenn Morris <rgm@gnu.org>
9425
9426 * simple.el (messages-buffer-mode): New major mode.
9427 (messages-buffer): New function.
9428 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
9429 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
9430 (ert-run-test): Use `messages-buffer' function.
9431 (ert--force-message-log-buffer-truncation): Ignore read-only.
9432 * help.el (view-echo-area-messages): Use `messages-buffer' function.
9433 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
9434
9435 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9436
9437 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
9438
9439 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
9440
9441 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9442
9443 * icomplete.el (icomplete-in-buffer): New var.
9444 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
9445 vars and replace them with functions.
9446 (icomplete-minibuffer-setup): Adjust accordingly.
9447 (icomplete--completion-table, icomplete--completion-predicate)
9448 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
9449 New functions.
9450 (icomplete-forward-completions, icomplete-backward-completions)
9451 (icomplete-simple-completing-p, icomplete-exhibit)
9452 (icomplete-completions): Use them.
9453 (icomplete--in-region-buffer): New var.
9454 (icomplete--in-region-setup): New function.
9455 (icomplete-mode): Use it.
9456
9457 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
9458 (bug#15379).
9459 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
9460 return args and options.
9461 (eshell-eval-using-options): Use the new return value of
9462 eshell--do-opts to set the options's vars in their scope.
9463 (eshell--set-option): Rename from eshell-set-option.
9464 Add arg `opt-vals'.
9465 (eshell--process-option): Rename from eshell-process-option.
9466 Add arg `opt-vals'.
9467 (eshell--process-args): Use an `opt-vals' alist to store the options's
9468 values during their processing and return them additionally to the
9469 remaining args.
9470
9471 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
9472
9473 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
9474 continuation character an operator, as far as indentation is
9475 concerned (Bug#15369).
9476
9477 2013-09-15 Martin Rudalics <rudalics@gmx.at>
9478
9479 * window.el (window--state-put-2): Don't process buffer state
9480 when buffer doesn't exist any more (Bug#15382).
9481
9482 2013-09-15 Glenn Morris <rgm@gnu.org>
9483
9484 * eshell/em-unix.el (eshell/rm):
9485 Make -f ignore missing files. (Bug#15373)
9486
9487 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
9488 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
9489 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
9490
9491 2013-09-14 Glenn Morris <rgm@gnu.org>
9492
9493 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
9494
9495 2013-09-13 Glenn Morris <rgm@gnu.org>
9496
9497 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
9498 (dired-guess-default): Make `file' available in the env. (Bug#15363)
9499
9500 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
9501
9502 * frame.el (x-focus-frame): Mark as declared in frame.c.
9503
9504 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9505
9506 * ls-lisp.el: Use advice-add.
9507 (original-insert-directory): Remove.
9508 (ls-lisp--insert-directory): Rename from insert-directory; add
9509 `orig-fun' argument.
9510 (insert-directory): Advise.
9511
9512 2013-09-13 Eli Zaretskii <eliz@gnu.org>
9513
9514 * term.el (term-emulate-terminal): Decode the command string
9515 before passing it to term-command-hook. (Bug#15337)
9516
9517 2013-09-13 Glenn Morris <rgm@gnu.org>
9518
9519 * eshell/esh-util.el (ange-cache): Move declaration earlier.
9520
9521 * eshell/esh-ext.el (eshell-search-path): Declare.
9522
9523 * eshell/em-prompt.el (eshell/pwd): Autoload it.
9524 Otherwise an error occurs if eshell-dirs module not loaded.
9525
9526 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
9527
9528 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
9529
9530 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
9531 `tramp-check-proper-host'. Check for a valid method name.
9532
9533 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9534 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9535 * net/tramp-sh.el (tramp-maybe-open-connection):
9536 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
9537
9538 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
9539 also for hash values.
9540
9541 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9542
9543 * term/ns-win.el (parameters): Don't declare as dynamic.
9544 (before-make-frame-hook): Don't add ineffective function.
9545
9546 * eshell/*.el: Use lexical-binding (bug#15231).
9547
9548 2013-09-12 Kenichi Handa <handa@gnu.org>
9549
9550 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
9551
9552 2013-09-12 Glenn Morris <rgm@gnu.org>
9553
9554 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
9555 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
9556
9557 * subr.el (do-after-load-evaluation): Also give compiler warnings
9558 when obsolete files are used (except by obsolete files).
9559
9560 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
9561 in the status output, assume `filename' is the first. (Bug#15322)
9562
9563 * vc/vc.el (vc-deduce-fileset): Doc fix.
9564
9565 * calc/calc-help.el (Info-goto-node):
9566 * progmodes/cperl-mode.el (Info-find-node):
9567 * vc/ediff.el (Info-goto-node): Update declarations.
9568
9569 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
9570
9571 * vc/vc-bzr.el (vc-compilation-mode): Declare.
9572 (vc-bzr-pull): Require vc-dispatcher.
9573 * vc/vc-git.el (vc-compilation-mode): Declare.
9574 (vc-git-pull): Require vc-dispatcher.
9575
9576 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
9577
9578 * progmodes/octave.el (help-button-action): Declare.
9579
9580 * shell.el (shell-directory-tracker): Output error as a message
9581 rather than just returning it as a string.
9582 (shell-process-pushd): Remove useless use of message.
9583
9584 * dframe.el (dframe-timer-fn):
9585 * files.el (dir-locals-read-from-file):
9586 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
9587 (mpc-format):
9588 * reveal.el (reveal-post-command):
9589 * saveplace.el (load-save-place-alist-from-file):
9590 * shell.el (shell-resync-dirs):
9591 * w32-common-fns.el (x-get-selection-value):
9592 * emacs-lisp/copyright.el (copyright-find-copyright):
9593 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9594 * emulation/tpu-edt.el (tpu-copy-keyfile):
9595 * play/bubbles.el (bubbles--mark-neighbourhood):
9596 * progmodes/executable.el
9597 (executable-make-buffer-file-executable-if-script-p):
9598 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
9599
9600 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9601
9602 Cleanup Eshell to rely less on dynamic scoping.
9603 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
9604 last-value, and ext-command here. Bind `args' closer to `body'.
9605 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
9606 (eshell--args): Declare new dynamic var.
9607 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
9608 last-value, and ext-command. Pass `args' to `body'.
9609 (eshell-process-args): Bind eshell--args.
9610 (eshell-set-option): Use eshell--args.
9611 * eshell/eshell.el (eshell): Use derived-mode-p.
9612 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
9613 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
9614 (eshell-glob-function): Declare.
9615 * eshell/esh-util.el: Require cl-lib.
9616 (eshell-read-hosts-file): Avoid add-to-list.
9617 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
9618 `err'.
9619 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
9620 Declare.
9621 (eshell/diff): Remove unused var `err'.
9622 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
9623 `killflag'.
9624 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
9625 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
9626 first use.
9627 * eshell/em-glob.el (eshell-glob-matches, message-shown):
9628 Move declaration before first use.
9629 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
9630 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
9631 rely on cl-return.
9632
9633 2013-09-12 Glenn Morris <rgm@gnu.org>
9634
9635 * term/ns-win.el (global-map): Remove binding for ispell-next,
9636 deleted 1999-05-29. (Bug#15357)
9637
9638 2013-09-11 Glenn Morris <rgm@gnu.org>
9639
9640 * echistory.el (electric-command-history): Remove call to deleted func.
9641
9642 * play/landmark.el (landmark-mode): Fix typos.
9643
9644 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
9645 Check cvs-sort-ignore-file is bound.
9646
9647 * savehist.el: No need for cl when compiling on Emacs.
9648
9649 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9650
9651 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
9652 (bug#15338).
9653 (eshell-self-insert-command, eshell-send-invisible):
9654 Remove unused argument.
9655 (eshell-handle-control-codes): Remove unused var `orig'.
9656 Avoid delete-backward-char.
9657
9658 * files.el (set-auto-mode): Simplify a bit further.
9659
9660 2013-09-11 Glenn Morris <rgm@gnu.org>
9661
9662 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
9663 (set-auto-mode): Don't regexp-quote elements.
9664 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
9665 * progmodes/cc-mode.el (interpreter-mode-alist):
9666 * progmodes/ruby-mode.el (interpreter-mode-alist):
9667 Revert previous change.
9668
9669 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9670
9671 * play/snake.el (snake-mode):
9672 * play/mpuz.el (mpuz-mode):
9673 * play/landmark.el (lm-mode):
9674 * play/blackbox.el (blackbox-mode):
9675 * play/5x5.el (5x5-mode):
9676 * obsolete/options.el (Edit-options-mode):
9677 * net/quickurl.el (quickurl-list-mode):
9678 * net/newst-treeview.el (newsticker-treeview-mode):
9679 * mail/rmailsum.el (rmail-summary-mode):
9680 * mail/mspools.el (mspools-mode):
9681 * locate.el (locate-mode):
9682 * ibuffer.el (ibuffer-mode):
9683 * emulation/ws-mode.el (wordstar-mode):
9684 * emacs-lisp/debug.el (debugger-mode):
9685 * array.el (array-mode):
9686 * net/eudc.el (eudc-mode): Use define-derived-mode.
9687 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
9688 Move initialization into declaration.
9689 (mairix-searches-mode): Use define-derived-mode.
9690 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
9691 (eudc-edit-hotlist): Use dolist.
9692 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
9693 (Man-mode): Use define-derived-mode.
9694 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
9695 (Info-edit-mode): Use define-derived-mode.
9696 (Info-cease-edit): Use Info-mode.
9697 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
9698 into declaration.
9699 (eshell-mode): Use define-derived-mode.
9700 * chistory.el (command-history-mode-map): Rename from
9701 command-history-map.
9702 (command-history-mode): Use define-derived-mode.
9703 (Command-history-setup): Remove function.
9704 * calc/calc.el (calc-trail-mode-map): New var.
9705 (calc-trail-mode): Use define-derived-mode.
9706 (calc-trail-buffer): Set calc-main-buffer manually.
9707 * bookmark.el (bookmark-insert-annotation): New function.
9708 (bookmark-edit-annotation): Use it.
9709 (bookmark-edit-annotation-mode): Make it a proper major mode.
9710 (bookmark-send-edited-annotation): Use derived-mode-p.
9711 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
9712 closer to its ideal place. Use \' to match EOS.
9713
9714 * profiler.el (profiler-calltree-find): Use function-equal.
9715
9716 2013-09-10 Glenn Morris <rgm@gnu.org>
9717
9718 * files.el (interpreter-mode-alist): Convert to regexps.
9719 (set-auto-mode): Adapt for this. (Bug#15306)
9720 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
9721 Comment out unused variable.
9722 * progmodes/cc-mode.el (interpreter-mode-alist):
9723 * progmodes/python.el (interpreter-mode-alist):
9724 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
9725 * progmodes/sh-script.el (sh-set-shell):
9726 No longer use interpreter-mode-alist to get list of shells.
9727
9728 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
9729
9730 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9731
9732 * simple.el: Use set-temporary-overlay-map for universal-argument.
9733 (universal-argument-map): Don't use default-bindings (bug#15317).
9734 Bind switch-frame explicitly. Replace universal-argument-minus with
9735 a conditional binding.
9736 (universal-argument-num-events, saved-overriding-map): Remove.
9737 (restore-overriding-map): Remove.
9738 (universal-argument--mode): Rename from save&set-overriding-map,
9739 and rewrite.
9740 (universal-argument, universal-argument-more, negative-argument)
9741 (digit-argument): Adjust accordingly.
9742 (universal-argument-minus): Remove.
9743 (universal-argument-other-key): Remove.
9744
9745 * subr.el (with-demoted-errors): Add `format' argument.
9746
9747 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
9748
9749 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
9750 `tramp-cleanup-connection'.
9751
9752 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
9753 parameters KEEP-DEBUG and KEEP-PASSWORD.
9754
9755 * net/tramp.el (tramp-file-name-handler):
9756 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9757 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9758 (tramp-maybe-open-connection):
9759 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9760 Use `tramp-cleanup-connection'.
9761
9762 * net/tramp-sh.el (tramp-maybe-open-connection):
9763 Catch 'uname-changed inside the progress reporter.
9764
9765 2013-09-10 Glenn Morris <rgm@gnu.org>
9766
9767 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
9768
9769 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
9770 returns "alternate access method" in mode (eg "-rw-r--r--.").
9771
9772 2013-09-08 Glenn Morris <rgm@gnu.org>
9773
9774 * saveplace.el (load-save-place-alist-from-file):
9775 Demote errors. (Bug#15305)
9776
9777 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
9778
9779 Improve compatibility with older Emacsen, and XEmacs.
9780
9781 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
9782 only if it is bound. It isn't for XEmacs.
9783 (with-tramp-progress-reporter): Do not let-bind `result'.
9784 This yields to scoping errors in XEmacs.
9785 (tramp-handle-make-auto-save-file-name): New function, moved from
9786 tramp-sh.el.
9787
9788 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
9789 for `make-auto-save-file-name'.
9790 (tramp-adb--gnu-switches-to-ash):
9791 Use `tramp-compat-replace-regexp-in-string'.
9792
9793 * net/tramp-cache.el (tramp-cache-print): Call
9794 `substring-no-properties' only if it is bound. It isn't for XEmacs.
9795
9796 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
9797 bound. It isn't for XEmacs.
9798
9799 * net/tramp-compat.el (tramp-compat-copy-file):
9800 Catch `wrong-number-of-arguments' error.
9801 (tramp-compat-replace-regexp-in-string): New defun.
9802
9803 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
9804 for `make-auto-save-file-name'.
9805 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
9806 `copy-file'.
9807 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
9808 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
9809 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
9810
9811 * net/tramp-gw.el (tramp-gw-open-network-stream):
9812 Use `tramp-compat-replace-regexp-in-string'.
9813
9814 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9815 Call `tramp-handle-make-auto-save-file-name'.
9816 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
9817 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9818 (tramp-sh-file-inotifywait-process-filter):
9819 Use `tramp-compat-replace-regexp-in-string'.
9820 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
9821
9822 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
9823 for `make-auto-save-file-name'.
9824 (tramp-smb-handle-copy-directory):
9825 Call `tramp-compat-replace-regexp-in-string'.
9826 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
9827 (tramp-smb-handle-copy-file): Improve error message.
9828 (tramp-smb-handle-rename-file): Rename directly only in case
9829 `newname' does not exist yet. This is a restriction of smbclient.
9830 (tramp-smb-maybe-open-connection): Rerun the function only when
9831 `auth-sources' is non-nil.
9832
9833 2013-09-08 Kenichi Handa <handa@gnu.org>
9834
9835 * international/characters.el: Set category "^" (Combining) for
9836 more characters.
9837
9838 2013-09-07 Alan Mackenzie <acm@muc.de>
9839
9840 Correctly fontify Java class constructors.
9841 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
9842 in Java Mode.
9843 (c-recognize-typeless-decls): Set the Java value to t.
9844 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
9845 While handling a "(", add a check for, effectively, Java, and handle a
9846 "typeless" declaration there.
9847
9848 2013-09-07 Roland Winkler <winkler@gnu.org>
9849
9850 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9851 field subtitle for entry type book.
9852
9853 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9854
9855 * minibuffer.el: Make minibuffer-complete call completion-in-region
9856 rather than other way around.
9857 (completion--some, completion-pcm--find-all-completions):
9858 Don't delay signals when debugging.
9859 (minibuffer-completion-contents): Beware fields within the
9860 minibuffer contents.
9861 (completion-all-sorted-completions): Use defvar-local.
9862 (completion--do-completion, completion--cache-all-sorted-completions)
9863 (completion-all-sorted-completions, minibuffer-force-complete):
9864 Add args `beg' and `end'.
9865 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9866 (minibuffer-complete): Use completion-in-region.
9867 (completion-complete-and-exit): New fun, extracted from
9868 minibuffer-complete-and-exit.
9869 (minibuffer-complete-and-exit): Use it.
9870 (completion--complete-and-exit): Rename from
9871 minibuffer--complete-and-exit.
9872 (completion-in-region--single-word): New function, extracted from
9873 minibuffer-complete-word.
9874 (minibuffer-complete-word): Use it.
9875 (display-completion-list): Make `common-substring' argument obsolete.
9876 (completion--in-region): Call completion--in-region-1 instead of
9877 minibuffer-complete.
9878 (completion-help-at-point): Pass boundaries to
9879 minibuffer-completion-help as args rather than via an overlay.
9880 (completion-pcm--string->pattern): Use `any-delim'.
9881 (completion-pcm--optimize-pattern): New function.
9882 (completion-pcm--pattern->regex): Handle `any-delim'.
9883 * icomplete.el (icomplete-forward-completions)
9884 (icomplete-backward-completions, icomplete-completions):
9885 Adjust calls to completion-all-sorted-completions and
9886 completion--cache-all-sorted-completions.
9887 (icomplete-with-completion-tables): Default to t.
9888 * emacs-lisp/crm.el (crm--current-element): Rename from
9889 crm--select-current-element. Don't put an overlay but return the
9890 boundaries instead.
9891 (crm--completion-command): Take two new args to bind to the boundaries.
9892 (crm-completion-help): Adjust accordingly.
9893 (crm-complete): Use completion-in-region.
9894 (crm-complete-word): Use completion-in-region--single-word.
9895 (crm-complete-and-exit): Use completion-complete-and-exit.
9896
9897 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9898
9899 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9900 than dynamically.
9901
9902 2013-09-06 Juri Linkov <juri@jurta.org>
9903
9904 * info.el (Info-display-images-node): When image file doesn't exist
9905 display text version of the image if it's provided in the Info file.
9906 Otherwise, display the location of missing image from SRC attribute.
9907 Add help-echo text property from ALT attribute. (Bug#15279)
9908
9909 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9910
9911 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9912 (edit-abbrevs-mode): Use define-derived-mode.
9913
9914 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9915 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9916 that it's defined.
9917 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9918 Use define-derived-mode.
9919
9920 * epg.el (epg-start-encrypt): Minor CSE simplification.
9921
9922 2013-09-06 William Xu <william.xwl@gmail.com>
9923
9924 * arc-mode.el: Add support for 7za (bug#15264).
9925 (archive-7z-program): New var.
9926 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9927 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9928 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9929
9930 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
9931
9932 Remove URL syntax.
9933
9934 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9935 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9936 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9937 (tramp-postfix-host-format, tramp-file-name-regexp)
9938 (tramp-completion-file-name-regexp)
9939 (tramp-completion-dissect-file-name)
9940 (tramp-handle-substitute-in-file-name): Remove 'url case.
9941 (tramp-file-name-regexp-url)
9942 (tramp-completion-file-name-regexp-url): Remove constants.
9943
9944 2013-09-06 Glenn Morris <rgm@gnu.org>
9945
9946 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9947
9948 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9949
9950 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9951 keywords" below "here-doc beginnings" (Bug#15270).
9952
9953 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9954
9955 * subr.el (pop): Use `car-safe'.
9956 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9957 to detect unused `pop' return value.
9958
9959 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9960 var `block-regexp'.
9961 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9962 (python-fill-string): Remove unused var `marker'.
9963 (python-skeleton-add-menu-items): Remove unused var `items'.
9964
9965 * international/mule-cmds.el: Require CL.
9966 (find-coding-systems-for-charsets): Avoid add-to-list.
9967 (sanitize-coding-system-list): New function, extracted from
9968 select-safe-coding-system-interactively.
9969 (select-safe-coding-system-interactively): Use it.
9970 (read-input-method-name): Accept symbols for `default'.
9971
9972 * emacs-lisp/advice.el (defadvice): Add indent rule.
9973
9974 2013-09-05 Daniel Hackney <dan@haxney.org>
9975
9976 * dired-x.el:
9977 * net/ange-ftp.el:
9978 * net/browse-url.el:
9979 * net/dbus.el:
9980 * net/eudc.el:
9981 * net/eudcb-ldap.el:
9982 * net/eww.el:
9983 * net/imap.el:
9984 * printing.el:
9985 * vc/ediff-diff.el:
9986 * vc/ediff-init.el:
9987 * vc/ediff-merg.el:
9988 * vc/ediff-mult.el:
9989 * vc/ediff-util.el:
9990 * vc/ediff-wind.el:
9991 * vc/ediff.el:
9992 * vc/emerge.el:
9993 * vc/pcvs.el:
9994 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
9995 byte compiler. Remove some unused let-bound variables.
9996
9997 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9998
9999 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
10000 a "ref-cell", since it gets better optimized (bug#14883).
10001
10002 2013-09-05 Glenn Morris <rgm@gnu.org>
10003
10004 * progmodes/cc-awk.el (c-forward-sws): Declare.
10005
10006 2013-09-04 Glenn Morris <rgm@gnu.org>
10007
10008 * generic-x.el [rul-generic-mode]: Require cc-mode.
10009 (c++-mode-syntax-table): Declare.
10010 (rul-generic-mode-syntax-table): Init in the defvar.
10011
10012 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
10013
10014 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
10015 (vc-do-command, vc-set-async-update):
10016 * vc/vc-mtn.el (vc-mtn-dir-status):
10017 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
10018 (vc-hg-pull, vc-hg-merge-branch):
10019 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
10020 (vc-git-merge-branch):
10021 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
10022 (vc-cvs-dir-status-files):
10023 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
10024 (vc-bzr-dir-status-files):
10025 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
10026 * vc/vc-annotate.el: Use lexical-binding.
10027 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
10028 (vc-sentinel-movepoint): Declare.
10029 (vc-annotate): Don't use `goto-line'.
10030 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
10031 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
10032 (vc-sentinel-movepoint): Declare.
10033 * vc/vc-svn.el: Use lexical-binding.
10034 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
10035 * vc/vc-sccs.el:
10036 * vc/vc-rcs.el: Use lexical-binding.
10037
10038 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
10039 `deleted'. Don't drop errors silently.
10040
10041 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
10042
10043 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
10044
10045 * vc/vc.el (vc-ignore): Rewrite.
10046 (vc-default-ignore): New function.
10047 (vc-default-ignore-completion-table): Use find-ignore-file.
10048
10049 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
10050 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
10051 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
10052 Remove. Most code moved to vc.el.
10053
10054 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
10055
10056 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
10057 * net/tramp-smb.el (tramp-smb-get-file-entries):
10058 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
10059 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
10060
10061 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
10062 Update call to it.
10063 (eww-change-select): Remove unused var `properties'.
10064 (eww-make-unique-file-name): Remove unused var `base'.
10065
10066 * finder.el (finder-compile-keywords): Don't mess with windows.
10067
10068 * calculator.el (calculator-funcall): Fix typo in last change.
10069
10070 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
10071
10072 * emacs-lisp/package.el (package-activate-1): Don't let a missing
10073 <pkg>-autoloads.el file stop us.
10074
10075 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
10076 warnings, and factor out common code.
10077
10078 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
10079
10080 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
10081 two-character operators and whether the character preceding them
10082 changes their meaning (Bug#15208).
10083
10084 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
10085
10086 Format code sent to Python shell for robustness.
10087 * progmodes/python.el (python-shell-buffer-substring):
10088 New function.
10089 (python-shell-send-region, python-shell-send-buffer): Use it.
10090
10091 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
10092
10093 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
10094 * net/tramp.el (tramp-user-error): ... here.
10095 (tramp-find-method, tramp-check-proper-host)
10096 (tramp-dissect-file-name, tramp-debug-message)
10097 (tramp-handle-shell-command):
10098 * net/tramp-adb.el (tramp-adb-handle-shell-command):
10099 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
10100
10101 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
10102
10103 2013-09-02 Martin Rudalics <rudalics@gmx.at>
10104
10105 * avoid.el (mouse-avoidance-point-position)
10106 (mouse-avoidance-too-close-p): Handle case where posn-at-point
10107 returns nil.
10108
10109 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
10110
10111 * progmodes/python.el (python-shell-completion-get-completions):
10112 Drop use of deleted `comint-last-prompt-overlay'.
10113 (python-nav-if-name-main): New command.
10114
10115 2013-09-01 Glenn Morris <rgm@gnu.org>
10116
10117 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10118 Avoid leading space in $wins. Otherwise the sed command used by
10119 eg compile-main ends up containing "/*.el". (Bug#15170)
10120
10121 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
10122
10123 2013-08-30 Glenn Morris <rgm@gnu.org>
10124
10125 * emacs-lisp/bytecomp.el (byte-recompile-directory):
10126 Fix is-this-a-directory logic. (Bug#15220)
10127
10128 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10129
10130 * textmodes/css-mode.el: Use SMIE.
10131 (css-smie-grammar): New var.
10132 (css-smie--forward-token, css-smie--backward-token)
10133 (css-smie-rules): New functions.
10134 (css-mode): Use them.
10135 (css-navigation-syntax-table): Remove var.
10136 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
10137 (css-indent-calculate, css-indent-line): Remove functions.
10138
10139 Misc changes to reduce use of `(lambda...); and other cleanups.
10140 * cus-edit.el: Use lexical-binding.
10141 (customize-push-and-save, customize-apropos)
10142 (custom-buffer-create-internal): Use closures.
10143 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
10144 * progmodes/ada-xref.el: Use setq.
10145 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
10146 * dframe.el: Use lexical-binding.
10147 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
10148 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
10149 * descr-text.el: Use lexical-binding.
10150 (describe-text-widget, describe-text-sexp, describe-property-list):
10151 Use closures.
10152 * comint.el (comint-history-isearch-push-state): Use a closure.
10153 * calculator.el: Use lexical-binding.
10154 (calculator-number-to-string): Make it work with lexical-binding.
10155 (calculator-funcall): Same and use cl-letf.
10156
10157 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
10158 (lisp--company-doc-string, lisp--company-location): New functions.
10159 (lisp-completion-at-point): Use them to improve Company support.
10160
10161 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
10162 params of lambda expressions.
10163 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
10164 (ruby-smie--opening-pipe-p): New function.
10165 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
10166 symbols and matched |...| for formal params.
10167 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
10168 from being treated as hanging. Handle "rescue".
10169
10170 2013-08-29 Glenn Morris <rgm@gnu.org>
10171
10172 * progmodes/cc-engine.el (c-pull-open-brace):
10173 Move definition before use.
10174
10175 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10176
10177 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
10178 are immutable. Don't use `unsafe' any more.
10179 (cl--defsubst-expand): Don't substitute at the same time as keeping
10180 a residual unused let-binding. Don't use `unsafe' any more.
10181
10182 2013-08-29 Glenn Morris <rgm@gnu.org>
10183
10184 * calendar/cal-china.el (calendar-chinese-year-cache):
10185 Recenter on 2015.
10186
10187 * nxml/nxml-util.el (nxml-debug-clear-inside):
10188 Use cl-loop rather than loop.
10189
10190 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
10191
10192 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
10193
10194 2013-08-28 Glenn Morris <rgm@gnu.org>
10195
10196 * progmodes/antlr-mode.el: No need to require cc-mode twice.
10197
10198 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
10199
10200 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
10201
10202 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10203
10204 * simple.el (repeat-complex-command--called-interactively-skip):
10205 New function.
10206 (repeat-complex-command): Use it (bug#14136).
10207
10208 * progmodes/cc-mode.el: Minor cleanup of var declarations.
10209 (c-define-abbrev-table): Add `doc' argument.
10210 (c-mode-abbrev-table, c++-mode-abbrev-table)
10211 (objc-mode-abbrev-table, java-mode-abbrev-table)
10212 (idl-mode-abbrev-table, pike-mode-abbrev-table)
10213 (awk-mode-abbrev-table): Use it.
10214 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
10215 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
10216 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
10217 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
10218 Move initialization into the declaration; and remove any
10219 autoload cookie.
10220
10221 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
10222 and dynamic let binding.
10223
10224 * vc/smerge-mode.el: Remove redundant :group args.
10225
10226 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
10227 to load-path.
10228
10229 2013-08-28 Juri Linkov <juri@jurta.org>
10230
10231 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
10232 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
10233 (isearch-other-meta-char): Handle an undefined shifted printing
10234 character by downshifting it. (Bug#15200)
10235
10236 2013-08-28 Juri Linkov <juri@jurta.org>
10237
10238 * isearch.el (isearch-search): Change regexp error message for
10239 non-regexp searches. (Bug#15166)
10240
10241 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
10242
10243 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
10244 for portability to hosts where /bin/sh has problems.
10245
10246 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10247
10248 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
10249
10250 2013-08-27 Juri Linkov <juri@jurta.org>
10251
10252 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
10253 in the keyboard macro. (Bug#15126)
10254
10255 2013-08-27 Juri Linkov <juri@jurta.org>
10256
10257 * isearch.el (isearch-quote-char): Comment out converting unibyte
10258 to multibyte, thus syncing with its `quoted-insert' counterpart.
10259 (Bug#15166)
10260
10261 2013-08-27 Martin Rudalics <rudalics@gmx.at>
10262
10263 * window.el (display-buffer-use-some-window): Add missing
10264 argument in call of get-largest-window (Bug#15185).
10265 Reported by Stephen Leake.
10266
10267 2013-08-27 Glenn Morris <rgm@gnu.org>
10268
10269 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
10270
10271 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10272
10273 * progmodes/python.el (python-font-lock-keywords): Don't return nil
10274 from a matcher-function unless there's no more matches (bug#15161).
10275
10276 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
10277
10278 * minibuffer.el: Revert change from 2013-08-20.
10279
10280 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
10281 with text property `tramp-default', if appropriate.
10282 (tramp-check-proper-host): New defun.
10283 (tramp-dissect-file-name): Do not check hostname. Revert change
10284 of 2013-03-18.
10285 (tramp-backtrace): Make VEC-OR-PROC optional.
10286
10287 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
10288 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10289 * net/tramp-sh.el (tramp-maybe-open-connection):
10290 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10291 Apply `tramp-check-proper-host'.
10292
10293 2013-08-26 Tassilo Horn <tsdh@gnu.org>
10294
10295 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
10296 lambda expression in order to have `describe-variable' display it.
10297
10298 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
10299
10300 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
10301 BUF can be optional. (Bug#15186)
10302
10303 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
10304
10305 * progmodes/flymake.el (flymake-get-real-file-name-function):
10306 Fix broken customization. (Bug#15184)
10307
10308 2013-08-25 Alan Mackenzie <acm@muc.de>
10309
10310 Improve indentation of bracelists defined by macros (without "=").
10311
10312 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
10313 expansion begins with "{", regard it as bracelist when it doesn't
10314 contain a ";".
10315
10316 Parse C++ inher-intro when there's a template split over 2 lines.
10317
10318 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
10319 rigorously the search for "class" etc. followed by ":".
10320
10321 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
10322 random languages a regexp which never matches rather than nil.
10323
10324 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
10325
10326 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
10327 (c-awk-regexp-one-line-possibly-open-char-list-re)
10328 (c-awk-one-line-possibly-open-regexp-re)
10329 (c-awk-one-line-non-syn-ws*-re): Remove.
10330 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
10331 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
10332 (c-awk-space*-unclosed-regexp-/-re): New constants.
10333 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
10334 aren't regexp delimiters.
10335
10336 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
10337 handling for a rare situation in AWK Mode involving unterminated
10338 strings/regexps.
10339
10340 2013-08-23 Glenn Morris <rgm@gnu.org>
10341
10342 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
10343
10344 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
10345
10346 * files.el (create-file-buffer): If the result would begin with
10347 spaces, prepend a "|" instead of removing them. (Bug#15162)
10348
10349 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10350
10351 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
10352 text-properties (bug#15155).
10353
10354 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
10355 exist any more.
10356 (calc-keypad-redraw): Remove unused var `pad'.
10357 (calc-keypad-press): Remove unused var `menu'.
10358
10359 2013-08-23 Martin Rudalics <rudalics@gmx.at>
10360
10361 * window.el (display-buffer-pop-up-frame):
10362 Call pop-up-frame-function with BUFFER current so `make-frame' will
10363 use it as the new frame's buffer (Bug#15133).
10364
10365 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10366
10367 * calendar/timeclock.el: Minor cleanups.
10368 (timeclock-ask-before-exiting, timeclock-use-display-time):
10369 Use `symbol'.
10370 (timeclock-modeline-display): Define as alias before the
10371 actual definition.
10372 (timeclock-mode-line-display): Use define-minor-mode.
10373 (timeclock-day-list-template): Make it a function, add an argument.
10374 (timeclock-day-list-required, timeclock-day-list-length)
10375 (timeclock-day-list-debt, timeclock-day-list-span)
10376 (timeclock-day-list-break): Adjust calls accordingly.
10377
10378 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10379
10380 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
10381 Use read--expression so that completion works again.
10382
10383 2013-08-21 Sam Steingold <sds@gnu.org>
10384
10385 Add rudimentary inferior shell interaction
10386 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
10387 (sh-set-shell): Reset it.
10388 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
10389 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
10390
10391 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
10392
10393 * align.el: Use lexical-binding.
10394 (align-region): Simplify accordingly.
10395
10396 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
10397
10398 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
10399
10400 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
10401 `non-essential' up.
10402
10403 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
10404
10405 * net/tramp.el:
10406 * net/tramp-adb.el:
10407 * net/tramp-cmds.el:
10408 * net/tramp-ftp.el:
10409 * net/tramp-gvfs.el:
10410 * net/tramp-gw.el:
10411 * net/tramp-sh.el: Don't wrap external variable declarations by
10412 `eval-when-compile'.
10413
10414 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10415
10416 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
10417 now that Emacs supports ImageMagick animations.
10418
10419 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
10420
10421 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
10422 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
10423
10424 2013-08-16 Martin Rudalics <rudalics@gmx.at>
10425
10426 * window.el (mouse-autoselect-window-select): Do autoselect when
10427 mouse pointer is on margin.
10428
10429 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
10430
10431 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
10432
10433 2013-08-16 Glenn Morris <rgm@gnu.org>
10434
10435 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
10436 Handle "Remote Directory" response of some clients. (Bug#15058)
10437
10438 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
10439 Tweak warning. (Bug#14926)
10440
10441 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
10442 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
10443
10444 * image-mode.el (image-mode-map): Add menu items to reverse,
10445 increase, decrease, reset animation speed.
10446 (image--set-speed, image-increase-speed, image-decrease-speed)
10447 (image-reverse-speed, image-reset-speed): New functions.
10448 (image-mode-map): Add bindings for speed commands.
10449
10450 * image.el (image-animate-get-speed, image-animate-set-speed):
10451 New functions.
10452 (image-animate-timeout): Respect image :speed property.
10453
10454 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10455
10456 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
10457 previous line (bug#15101).
10458 (debugger-eval-expression, debugger-record-expression):
10459 Use read--expression (bug#15102).
10460
10461 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
10462
10463 Remove byte compiler warnings, visible when compiling with
10464 `byte-compile-force-lexical-warnings' set to t.
10465
10466 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
10467 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
10468 (tramp-handle-unhandled-file-name-directory)
10469 (tramp-handle-file-notify-add-watch, tramp-action-login)
10470 (tramp-action-succeed, tramp-action-permission-denied)
10471 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
10472 arguments with "_".
10473
10474 * net/tramp-adb.el (tramp-adb-parse-device-names)
10475 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
10476 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
10477 (tramp-adb-handle-file-truename): Remove unused arguments.
10478
10479 * net/tramp-cache.el (tramp-flush-directory-property)
10480 (tramp-flush-connection-property, tramp-list-connections)
10481 (tramp-parse-connection-properties): Prefix unused arguments with "_".
10482
10483 * net/tramp-compat.el (tramp-compat-make-temp-file):
10484 Rename FILENAME to F.
10485
10486 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
10487 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
10488 (tramp-zeroconf-parse-workstation-device-names)
10489 (tramp-zeroconf-parse-webdav-device-names)
10490 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
10491
10492 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
10493 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
10494
10495 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
10496 arguments.
10497 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
10498 (tramp-sh-handle-insert-file-contents-literally)
10499 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
10500 with "_".
10501 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
10502 Remove unused variables.
10503
10504 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10505 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
10506 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
10507
10508 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
10509 Make them a defconst.
10510 (tramp-uuencode-region): Remove unused variable.
10511
10512 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
10513
10514 * frameset.el (frameset--prop-setter): New function.
10515 (frameset-prop): Add gv-setter declaration.
10516 (frameset-filter-minibuffer): Deal with the case that the minibuffer
10517 parameter was already set in FILTERED. Doc fix.
10518 (frameset--record-minibuffer-relationships): Allow saving a
10519 minibufferless frame without its corresponding minibuffer frame.
10520 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
10521 frame, if the frame id matches.
10522 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
10523 frames before orphaned ones.
10524 (frameset-restore): Warn about orphaned windows, instead of error out.
10525
10526 2013-08-14 Martin Rudalics <rudalics@gmx.at>
10527
10528 * window.el (window-make-atom): Don't overwrite parameter
10529 already present.
10530 (display-buffer-in-atom-window): Handle special case where we
10531 split an already atomic window.
10532 (window--major-non-side-window, display-buffer-in-side-window)
10533 (window--side-check): Ignore minibuffer window when walking
10534 window tree.
10535 (window-deletable-p): Return 'frame only if no other frame uses
10536 our minibuffer window.
10537 (record-window-buffer): Run buffer-list-update-hook.
10538 (split-window): Make sure window--check-frame won't destroy an
10539 existing atomic window in case the new window gets nested
10540 inside.
10541 (display-buffer-at-bottom): Ignore minibuffer window when
10542 walking window tree. Don't split a side window.
10543 (pop-to-buffer): Don't set-buffer here, the select-window call
10544 should do that.
10545 (mouse-autoselect-window-select): Autoselect only if we are in the
10546 text portion of the window.
10547
10548 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10549
10550 * net/shr.el (shr-parse-image-data): New function to grab both the
10551 data itself and the Content-Type.
10552 (shr-put-image): Use it.
10553
10554 * net/eww.el (eww-display-image): Ditto.
10555
10556 * image.el (image-content-type-suffixes): New variable.
10557
10558 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
10559
10560 * progmodes/python.el (python-imenu--build-tree)
10561 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
10562
10563 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
10564
10565 * simple.el (backward-word): Mention the optional argument.
10566
10567 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10568
10569 * frameset.el (frameset--make): Rename constructor from make-frameset.
10570 (frameset-p, frameset-valid-p): Don't autoload.
10571 (frameset-valid-p): Use normal accessors.
10572
10573 2013-08-13 Glenn Morris <rgm@gnu.org>
10574
10575 * progmodes/compile.el (compile-command): Tweak example in doc.
10576 * obsolete/scribe.el (scribe-mode):
10577 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
10578
10579 * mail/feedmail.el (feedmail-confirm-outgoing)
10580 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
10581
10582 * cus-start.el (truncate-partial-width-windows): Fix type.
10583
10584 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
10585
10586 * net/shr.el (shr-table-horizontal-line): Fix custom type.
10587
10588 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10589
10590 * emacs-lisp/timer.el (timer--time-setter): New function.
10591 (timer--time): Use it as gv-setter.
10592
10593 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
10594 setter is not a symbol.
10595
10596 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
10597
10598 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
10599 if sending fails. This makes debugging easier.
10600
10601 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
10602
10603 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
10604 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
10605 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
10606
10607 2013-08-12 Eli Zaretskii <eliz@gnu.org>
10608
10609 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
10610
10611 2013-08-12 Glenn Morris <rgm@gnu.org>
10612
10613 * format.el (format-annotate-function):
10614 Handle read-only text properties in the source. (Bug#14887)
10615
10616 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10617
10618 * net/eww.el (eww-display-html): Ignore coding system errors.
10619 One web site uses "utf-8lias" as the coding system.
10620
10621 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
10622
10623 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
10624
10625 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
10626
10627 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
10628 (tutorial--detailed-help): Remove unused local variables.
10629 (tutorial--save-tutorial-to): Use ignore-errors.
10630 (help-with-tutorial): Use looking-at-p.
10631
10632 * view.el (view-buffer-other-window, view-buffer-other-frame):
10633 Mark unused arguments.
10634
10635 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
10636 (woman-select-symbol-fonts, woman, woman-find-file)
10637 (woman-insert-file-contents, woman-non-underline-faces):
10638 Use string-match-p.
10639 (woman1-unquote): Move declaration.
10640
10641 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
10642 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
10643 argument. Remove unused local variable.
10644 (xml-parse-elem-type): Use string-match-p.
10645 (xml-substitute-numeric-entities): Use ignore-errors.
10646
10647 * calculator.el (calculator): Mark unused argument.
10648 (calculator-paste, calculator-quit, calculator-integer-p):
10649 Use ignore-errors.
10650 (calculator-string-to-number, calculator-decimal, calculator-exp)
10651 (calculator-op-or-exp): Use string-match-p.
10652
10653 * dired.el (dired-buffer-more-recently-used-p): Declare.
10654 (dired-insert-set-properties, dired-insert-old-subdirs):
10655 Use ignore-errors.
10656
10657 * dired-aux.el (dired-compress): Use ignore-errors.
10658 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
10659 (dired-do-async-shell-command, dired-do-shell-command)
10660 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
10661 (dired-insert-subdir-validate): Use string-match-p.
10662 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
10663 (dired-add-entry): Use string-match-p, looking-at-p.
10664 (dired-insert-subdir-newpos): Remove unused local variable.
10665
10666 * filenotify.el (file-notify-callback): Remove unused local variable.
10667
10668 * filesets.el (filesets-error): Mark unused argument.
10669 (filesets-which-command-p, filesets-filter-dir-names)
10670 (filesets-directory-files, filesets-get-external-viewer)
10671 (filesets-ingroup-get-data): Use string-match-p.
10672
10673 * find-file.el (ff-other-file-name, ff-other-file-name)
10674 (ff-find-the-other-file, ff-cc-hh-converter):
10675 Remove unused local variables.
10676 (ff-get-file-name): Use string-match-p.
10677 (ff-all-dirs-under): Use ignore-errors.
10678
10679 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
10680 (follow-select-if-visible): Remove unused local variable.
10681
10682 * forms.el (read-file-filter): Move declaration.
10683 (forms--make-format, forms--make-parser, forms-insert-record):
10684 Quote function with #'.
10685 (forms--update): Use string-match-p. Quote function with #'.
10686
10687 * help-mode.el (help-dir-local-var-def): Mark unused argument.
10688 (help-make-xrefs): Use looking-at-p.
10689 (help-xref-on-pp): Use looking-at-p, ignore-errors.
10690
10691 * ibuffer.el (ibuffer-ext-visible-p): Declare.
10692 (ibuffer-confirm-operation-on): Use string-match-p.
10693
10694 * msb.el (msb-item-handler, msb-dired-item-handler):
10695 Mark unused arguments.
10696
10697 * ses.el (ses-decode-cell-symbol)
10698 (ses-kill-override): Remove unused local variable.
10699 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
10700 (ses-load): Use ignore-errors, looking-at-p.
10701 (ses-jump-safe): Use ignore-errors.
10702 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
10703
10704 * tabify.el (untabify, tabify): Mark unused arguments.
10705
10706 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
10707 Mark unused argument.
10708 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
10709 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
10710
10711 * emacs-lisp/timer.el (timer--time): Define setter with
10712 gv-define-setter to avoid deprecation warning.
10713
10714 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
10715 (*record-cmpl-statistics-p*): Remove (was commented out).
10716 (cmpl-statistics-block): Remove (body was commented out).
10717 All callers changed.
10718 (add-completions-from-buffer, load-completions-from-file):
10719 Remove unused variables.
10720
10721 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10722
10723 * filecache.el (file-cache-delete-file-list):
10724 Print message only when told so.
10725 (file-cache-files-matching): Use #' in mapconcat argument.
10726
10727 * ffap.el (ffap-url-at-point): Fix reference to variable
10728 thing-at-point-default-mail-uri-scheme.
10729
10730 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
10731
10732 * subr.el (define-error): New function.
10733 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
10734 error-file-not-found and define with define-error.
10735 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
10736 and define with define-error.
10737 * userlock.el (file-locked, file-supersession):
10738 * simple.el (mark-inactive):
10739 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
10740 * progmodes/ada-mode.el (ada-mode-errors):
10741 * play/life.el (life-extinct):
10742 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
10743 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
10744 * nxml/rng-util.el (rng-error):
10745 * nxml/rng-uri.el (rng-uri-error):
10746 * nxml/rng-match.el (rng-compile-error):
10747 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
10748 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
10749 * nxml/nxml-rap.el (nxml-scan-error):
10750 * nxml/nxml-outln.el (nxml-outline-error):
10751 * net/soap-client.el (soap-error):
10752 * net/gnutls.el (gnutls-error):
10753 * net/ange-ftp.el (ftp-error):
10754 * mpc.el (mpc-proc-error):
10755 * json.el (json-error, json-readtable-error, json-unknown-keyword)
10756 (json-number-format, json-string-escape, json-string-format)
10757 (json-key-format, json-object-format):
10758 * jka-compr.el (compression-error):
10759 * international/quail.el (quail-error):
10760 * international/kkc.el (kkc-error):
10761 * emacs-lisp/ert.el (ert-test-failed):
10762 * calc/calc.el (calc-error, inexact-result, math-overflow)
10763 (math-underflow):
10764 * bookmark.el (bookmark-error-no-filename):
10765 * epg.el (epg-error): Define with define-error.
10766
10767 * time.el (display-time-event-handler)
10768 (display-time-next-load-average): Don't call sit-for since it seems
10769 unnecessary (bug#15045).
10770
10771 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
10772 Use #' instead of ' to quote functions.
10773 (checkdoc-output-mode): Use setq-local.
10774 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
10775 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
10776 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
10777 (checkdoc-ispell, checkdoc-ispell-current-buffer)
10778 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
10779 (checkdoc-ispell-message-text, checkdoc-ispell-start)
10780 (checkdoc-ispell-continue, checkdoc-ispell-comments)
10781 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
10782
10783 * ido.el (ido-completion-help): Fix up compiler warning.
10784
10785 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10786
10787 * frameset.el (frameset-p): Add autoload cookie.
10788 (frameset--jump-to-register): New function, based on code moved from
10789 register.el.
10790 (frameset-to-register): Move from register.el. Adapt to `registerv'.
10791
10792 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
10793 (frameset-restore, frameset-save, frameset-session-filter-alist):
10794 Remove declarations.
10795 (register-alist): Doc fix.
10796 (frameset-to-register): Move to frameset.el.
10797 (jump-to-register, describe-register-1): Remove frameset-specific code.
10798
10799 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10800
10801 * allout-widgets.el (allout-widgets-pre-command-business)
10802 (allout-widgets-post-command-business)
10803 (allout-widgets-after-change-handler)
10804 (allout-decorate-item-and-context, allout-set-boundary-marker)
10805 (allout-body-modification-handler)
10806 (allout-graphics-modification-handler): Mark ignored arguments.
10807 (allout-widgets-post-command-business)
10808 (allout-widgets-exposure-change-processor)
10809 (allout-widgets-exposure-undo-processor)
10810 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
10811 (allout-parse-item-at-point, allout-decorate-item-guides)
10812 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
10813 * allout.el (epa-passphrase-callback-function): Declare.
10814 (allout-overlay-insert-in-front-handler)
10815 (allout-overlay-interior-modification-handler)
10816 (allout-isearch-end-handler, allout-chart-siblings)
10817 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
10818 (allout-yank-processing, allout-process-exposed)
10819 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
10820 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
10821 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
10822 (lisp-indent-defform): Mark ignored arguments.
10823 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
10824 (calculate-lisp-indent): Remove unused variables.
10825 * international/characters.el (indian-2-column, arabic-2-column)
10826 (tibetan): Mark ignored arguments.
10827 (use-cjk-char-width-table): Mark ignored arguments.
10828 Remove unused variables.
10829 * international/fontset.el (build-default-fontset-data)
10830 (x-compose-font-name, create-fontset-from-fontset-spec):
10831 Mark ignored arguments.
10832 (fontset-plain-name): Remove unused variables.
10833 * international/mule.el (charset-id, charset-bytes, generic-char-p)
10834 (keyboard-coding-system): Mark ignored arguments.
10835 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
10836 * help.el (resize-temp-buffer-window):
10837 * window.el (display-buffer-in-major-side-window)
10838 (display-buffer-in-side-window, display-buffer-in-previous-window):
10839 Remove unused variables.
10840 * isearch.el (isearch-forward-symbol):
10841 * version.el (emacs-bzr-version-bzr):
10842 * international/mule-cmds.el (current-language-environment):
10843 * term/common-win.el (x-handle-iconic, x-handle-geometry)
10844 (x-handle-display):
10845 * term/pc-win.el (x-list-fonts, x-display-planes)
10846 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
10847 (x-server-version, x-display-screens, x-display-mm-height)
10848 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
10849 (x-selection-owner-p, x-own-selection-internal)
10850 (x-disown-selection-internal, x-get-selection-internal)
10851 (msdos-initialize-window-system):
10852 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10853 * term/x-win.el (x-handle-no-bitmap-icon):
10854 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10855 (vc-default-find-file-hook, vc-default-extra-menu):
10856 Mark ignored arguments.
10857
10858 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10859
10860 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10861 break-condition in the context of the debugged code (bug#12685).
10862
10863 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10864
10865 * comint.el:
10866 Do not use an overlay to highlight the last prompt. (Bug#14744)
10867 (comint-mode): Make comint-last-prompt buffer local.
10868 (comint-last-prompt): New variable.
10869 (comint-last-prompt-overlay): Remove. Superseded by
10870 comint-last-prompt.
10871 (comint-snapshot-last-prompt, comint-output-filter):
10872 Use comint-last-prompt.
10873
10874 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10875
10876 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10877 (frameset-save): Check validity of the resulting frameset.
10878
10879 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10880
10881 * ido.el (ido-record-command): Add doc string.
10882
10883 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10884
10885 * frameset.el (frameset): Do not disable creation of the default
10886 frameset-p predicate. Doc fix.
10887 (frameset-valid-p): New function, copied from the old predicate-p.
10888 Add additional checks.
10889 (frameset-restore): Check with frameset-valid-p.
10890 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10891 (frameset-name, frameset-description, frameset-properties)
10892 (frameset-states): Add docstring.
10893 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10894 (frameset-filter-alist): Doc fixes.
10895
10896 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10897
10898 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10899
10900 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10901
10902 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10903 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10904 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10905 (byte-compile-normal-call): Remove obsolescence check.
10906
10907 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10908
10909 * frameset.el (frameset-restore): Doc fix.
10910
10911 * register.el (frameset-frame-id, frameset-frame-with-id)
10912 (frameset-p, frameset-restore, frameset-save): Declare.
10913 (register-alist): Document framesets.
10914 (frameset-session-filter-alist): Declare.
10915 (frameset-to-register): New function.
10916 (jump-to-register): Implement jumping to framesets. Doc fix.
10917 (describe-register-1): Describe framesets.
10918
10919 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10920
10921 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
10922
10923 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10924 Use lexical-binding.
10925
10926 * frameset.el (frameset): Use type vector, not list (incompatible
10927 change). Do not declare a new constructor, use the default one.
10928 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10929 `name' and `description', respectively, and add read-only slot
10930 `timestamp'. Doc fixes.
10931 (frameset-copy, frameset-persistent-filter-alist)
10932 (frameset-filter-alist, frameset-switch-to-gui-p)
10933 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10934 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10935 (frameset-filter-iconified, frameset-keep-original-display-p):
10936 Doc fixes.
10937 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10938 Rename from frameset-filter-(save|restore)-param. All callers changed.
10939 Doc fix.
10940 (frameset-p): Adapt to change to vector and be more thorough.
10941 Change arg name to OBJECT. Doc fix.
10942 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10943 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10944 All callers changed.
10945 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10946 All callers changed.
10947 (frameset--record-minibuffer-relationships): Rename from
10948 frameset--process-minibuffer-frames. All callers changed.
10949 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10950 Use new default constructor (again). Doc fix.
10951 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10952 All callers changed.
10953 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10954 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10955 Doc fix.
10956 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10957 PARAMETERS and WINDOW-STATE, respectively.
10958 (frameset-restore): Add new keyword argument PREDICATE.
10959 Reset frameset--target-display to nil. Doc fix.
10960
10961 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10962
10963 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10964 (bat-mode): Use it.
10965 (bat-mode-syntax-table): Mark \n as end-of-comment.
10966 (bat-font-lock-keywords): Remove comment rule.
10967
10968 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
10969 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
10970
10971 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
10972 (byte-compile-callargs-warn): Use `push'.
10973 (byte-compile-arglist-warn): Ignore higher-order "calls".
10974 (byte-compile-file-form-autoload): Use `pcase'.
10975 (byte-compile-function-form): If quoting a symbol, check that it exists.
10976
10977 2013-08-07 Eli Zaretskii <eliz@gnu.org>
10978
10979 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
10980 and add a few popular commands found in batch files.
10981 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
10982 (dos-mode): Doc fixes.
10983
10984 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10985
10986 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
10987 (dos-mode): Use setq-local. Add space after "rem".
10988 (dos-mode-syntax-table): Don't use "w" for symbol chars.
10989 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
10990
10991 2013-08-07 Arni Magnusson <arnima@hafro.is>
10992
10993 * progmodes/dos.el: New file.
10994 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
10995 dos-mode.
10996
10997 2013-08-06 Glenn Morris <rgm@gnu.org>
10998
10999 * calendar/calendar.el: Add new faces, and day-header-array.
11000 (calendar-weekday-header, calendar-weekend-header)
11001 (calendar-month-header): New faces.
11002 (calendar-day-header-construct): New function.
11003 (calendar-day-header-width): Also :set calendar-day-header-array.
11004 (calendar-american-month-header, calendar-european-month-header)
11005 (calendar-iso-month-header): Use calendar- faces.
11006 (calendar-generate-month):
11007 Use calendar-day-header-array for day headers; apply faces to them.
11008 (calendar-mode): Check calendar-font-lock-keywords non-nil.
11009 (calendar-abbrev-construct): Add optional maxlen argument.
11010 (calendar-day-name-array): Doc fix.
11011 (calendar-day-name-array, calendar-abbrev-length)
11012 (calendar-day-abbrev-array):
11013 Also :set calendar-day-header-array, and maybe redraw.
11014 (calendar-day-header-array): New option. (Bug#15007)
11015 (calendar-font-lock-keywords): Set to nil and make obsolete.
11016 (calendar-day-name): Add option to use header array.
11017
11018 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11019
11020 * net/shr.el (shr-render-td): Remove debugging.
11021 (shr-render-td): Make width computation consistent by defaulting
11022 all zero-width columns to 10 characters. This may not be optimal,
11023 but it's at least consistent.
11024 (shr-make-table-1): Redo last change to fix the real problem in
11025 colspan handling.
11026
11027 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
11028
11029 * files.el (cache-long-line-scans):
11030 Make obsolete alias to `cache-long-scans'.
11031
11032 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
11033
11034 * frameset.el (frameset, frameset-filter-alist)
11035 (frameset-filter-params, frameset-save, frameset--reuse-frame)
11036 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
11037 (frameset-compute-pos): Rename from frameset--compute-pos,
11038 and add docstring.
11039 (frameset-move-onscreen): Use frameset-compute-pos.
11040 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
11041
11042 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
11043 Fix typos in docstrings.
11044
11045 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
11046
11047 * frame.el (get-other-frame): Tiny cleanup.
11048
11049 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
11050
11051 * vc/vc.el (vc-default-ignore-completion-table):
11052 Silence byte-compiler warning.
11053
11054 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
11055 slot, which can indeed be nil.
11056 (frameset-live-filter-alist, frameset-persistent-filter-alist):
11057 Move entry for `left' from persistent to live filter alist.
11058 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
11059 Doc fixes.
11060 (frameset-filter-params): When restoring a frame, copy items added to
11061 `filtered', to avoid unwittingly modifying the original parameters.
11062 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
11063 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
11064
11065 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
11066 to use looking-at-p instead of looking-at. (Bug#15028)
11067
11068 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
11069
11070 Revert introduction of isearch-filter-predicates (bug#14714).
11071 Rely on add-function instead.
11072 * isearch.el (isearch-filter-predicates): Rename it back to
11073 isearch-filter-predicate.
11074 (isearch-message-prefix): Use advice-function-mapc and advice
11075 properties to get the isearch-message-prefix.
11076 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
11077 instead of run-hook-with-args-until-failure.
11078 (isearch-filter-visible): Not obsolete any more.
11079 * loadup.el: Preload nadvice.
11080 * replace.el (perform-replace): Revert to funcall
11081 instead of run-hook-with-args-until-failure.
11082 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
11083 * dired-aux.el (dired-isearch-filenames-mode): Rename from
11084 dired-isearch-filenames-toggle; make it into a proper minor mode.
11085 Use add/remove-function.
11086 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
11087 Call the minor-mode rather than add/remove-hook.
11088 (dired-isearch-filter-filenames):
11089 Remove isearch-message-prefix property.
11090 * info.el (Info--search-loop): New function, extracted from Info-search.
11091 Funcall isearch-filter-predicate instead of
11092 run-hook-with-args-until-failure isearch-filter-predicates.
11093 (Info-search): Use it.
11094 (Info-mode): Use isearch-filter-predicate instead of
11095 isearch-filter-predicates.
11096
11097 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11098
11099 Do not call to `selected-window' where it is assumed by default.
11100 Affected functions are `window-minibuffer-p', `window-dedicated-p',
11101 `window-hscroll', `window-width', `window-height', `window-buffer',
11102 `window-frame', `window-start', `window-point', `next-window'
11103 and `window-display-table'.
11104 * abbrev.el (abbrev--default-expand):
11105 * bs.el (bs--show-with-configuration):
11106 * buff-menu.el (Buffer-menu-mouse-select):
11107 * calc/calc.el (calc):
11108 * calendar/calendar.el (calendar-generate-window):
11109 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
11110 (diary-make-entry):
11111 * comint.el (send-invisible, comint-dynamic-complete-filename)
11112 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
11113 * completion.el (complete):
11114 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
11115 * disp-table.el (describe-current-display-table):
11116 * doc-view.el (doc-view-insert-image):
11117 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
11118 * ehelp.el (with-electric-help):
11119 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11120 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
11121 * emacs-lisp/helper.el (Helper-help-scroller):
11122 * emulation/cua-base.el (cua--post-command-handler-1):
11123 * eshell/esh-mode.el (eshell-output-filter):
11124 * ffap.el (ffap-gnus-wrapper):
11125 * help-macro.el (make-help-screen):
11126 * hilit-chg.el (highlight-compare-buffers):
11127 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
11128 * hl-line.el (global-hl-line-highlight):
11129 * icomplete.el (icomplete-simple-completing-p):
11130 * isearch.el (isearch-done):
11131 * jit-lock.el (jit-lock-stealth-fontify):
11132 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
11133 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11134 * mpc.el (mpc-tagbrowser, mpc):
11135 * net/rcirc.el (rcirc-any-buffer):
11136 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
11137 * play/landmark.el (landmark-max-width, landmark-max-height):
11138 * play/zone.el (zone):
11139 * progmodes/compile.el (compilation-goto-locus):
11140 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
11141 * progmodes/etags.el (find-tag-other-window):
11142 * progmodes/fortran.el (fortran-column-ruler):
11143 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
11144 * progmodes/verilog-mode.el (verilog-point-text):
11145 * reposition.el (reposition-window):
11146 * rot13.el (toggle-rot13-mode):
11147 * server.el (server-switch-buffer):
11148 * shell.el (shell-dynamic-complete-command)
11149 (shell-dynamic-complete-environment-variable):
11150 * simple.el (insert-buffer, set-selective-display)
11151 (delete-completion-window):
11152 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
11153 (speedbar-recenter):
11154 * startup.el (fancy-splash-head):
11155 * textmodes/ispell.el (ispell-command-loop):
11156 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
11157 * tutorial.el (help-with-tutorial):
11158 * vc/add-log.el (add-change-log-entry):
11159 * vc/compare-w.el (compare-windows):
11160 * vc/ediff-help.el (ediff-indent-help-message):
11161 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
11162 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
11163 (ediff-setup-control-frame):
11164 * vc/emerge.el (emerge-position-region):
11165 * vc/pcvs-util.el (cvs-bury-buffer):
11166 * window.el (walk-windows, mouse-autoselect-window-select):
11167 * winner.el (winner-set-conf, winner-undo): Related users changed.
11168
11169 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
11170
11171 * frameset.el (frameset--set-id): Doc fix.
11172 (frameset-frame-id, frameset-frame-id-equal-p)
11173 (frameset-locate-frame-id): New functions.
11174 (frameset--process-minibuffer-frames, frameset--reuse-frame)
11175 (frameset-restore): Use them.
11176
11177 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11178
11179 Do not call to `selected-frame' where it is assumed by default.
11180 Affected functions are `raise-frame', `redraw-frame',
11181 `frame-first-window', `frame-terminal' and `delete-frame'.
11182 * calendar/appt.el (appt-disp-window):
11183 * epg.el (epg-wait-for-completion):
11184 * follow.el (follow-delete-other-windows-and-split)
11185 (follow-avoid-tail-recenter):
11186 * international/mule.el (set-terminal-coding-system):
11187 * mail/rmail.el (rmail-mail-return):
11188 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11189 * progmodes/f90.el (f90-add-imenu-menu):
11190 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
11191 * server.el (server-switch-buffer):
11192 * simple.el (delete-completion-window):
11193 * talk.el (talk):
11194 * term/xterm.el (terminal-init-xterm-modify-other-keys)
11195 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
11196 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
11197 * vc/ediff.el (ediff-documentation): Related users changed.
11198 * frame.el (selected-terminal): Remove the leftover.
11199
11200 2013-08-05 Glenn Morris <rgm@gnu.org>
11201
11202 * calendar/calendar.el (calendar-generate-month):
11203 Fix for calendar-column-width != 1 + calendar-day-digit-width.
11204 (calendar-generate-month, calendar-font-lock-keywords):
11205 Fix for calendar-day-header-width > length of any day name.
11206
11207 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
11208
11209 * desktop.el (desktop-clear): Use new name of sort predicate.
11210
11211 * frameset.el (frameset): Add docstring. Move :version property to its
11212 own `version' slot.
11213 (frameset-copy): Rename from copy-frameset.
11214 (frameset-p): Check more thoroughly.
11215 (frameset-prop): Do not check for :version, which is no longer a prop.
11216 (frameset-live-filter-alist, frameset-persistent-filter-alist):
11217 Use new :never value instead of t.
11218 (frameset-filter-alist): Expand and clarify docstring.
11219 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
11220 (frameset-filter-minibuffer, frameset-filter-save-param)
11221 (frameset-filter-restore-param, frameset-filter-iconified):
11222 Add pointer to docstring of frameset-filter-alist.
11223 (frameset-filter-params): Rename filter values to be more meaningful:
11224 :never instead of t, and reverse the meanings of :save and :restore.
11225 (frameset--process-minibuffer-frames): Clarify error message.
11226 (frameset-save): Avoid unnecessary and confusing call to framep.
11227 Use new BOA constructor for framesets.
11228 (frameset--reuse-list): Doc fix.
11229 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
11230 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
11231 (frameset-minibufferless-first-p): Doc fix.
11232 Rename from frameset-sort-frames-for-deletion.
11233 (frameset-restore): Doc fixes. Use new function names.
11234 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
11235
11236 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
11237
11238 * desktop.el (desktop-restore-forces-onscreen)
11239 (desktop-restore-reuses-frames): Document :keyword constant values.
11240 (desktop-filter-parameters-alist): Remove, now identical to
11241 frameset-filter-alist.
11242 (desktop--filter-tty*): Remove, moved to frameset.el.
11243 (desktop-save-frameset, desktop-restore-frameset):
11244 Do not pass :filters argument.
11245
11246 * frameset.el (frameset-live-filter-alist)
11247 (frameset-persistent-filter-alist): New variables.
11248 (frameset-filter-alist): Use them. Add autoload cookie.
11249 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
11250 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
11251 `frameset--id' (it's supposed to be internal to frameset.el).
11252 (frameset--process-minibuffer-frames): Ditto. Doc fix.
11253 (frameset--initial-params): New function.
11254 (frameset--get-frame): Use it. Doc fix.
11255 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
11256 Accept :all, not 'all.
11257 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
11258 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
11259 with fbound symbols. Fix frame id matching, and remove matching ids if
11260 the frame being restored is deleted. Obey :delete.
11261
11262 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11263
11264 * subr.el (macrop): New function.
11265 (text-clone--maintaining): New var.
11266 (text-clone--maintain): Rename from text-clone-maintain. Use it
11267 instead of inhibit-modification-hooks.
11268
11269 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
11270 a proxy, so as handle autoloads and redefinitions of the target.
11271 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
11272
11273 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
11274 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
11275 (pcase--mutually-exclusive-p): New function.
11276 (pcase--split-consp): Use it.
11277 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
11278 mutually exclusive with the current predicate.
11279
11280 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
11281 (edebug-macrop): Remove. Use `macrop' instead.
11282 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
11283 (ad-macro-p):
11284 * eshell/esh-cmd.el (eshell-macrop):
11285 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
11286
11287 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11288
11289 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
11290 (advice-mapc): New function, using it.
11291 (advice-function-member-p): New function.
11292 (advice--normalize): Store the cdr in advice--saved-rewrite since
11293 that's the part that will be changed.
11294 (advice--symbol-function): New function.
11295 (advice-remove): Handle removal before the function is defined.
11296 Adjust to new advice--saved-rewrite.
11297 (advice-member-p): Use advice-function-member-p and
11298 advice--symbol-function.
11299
11300 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
11301
11302 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
11303 (frameset-filter-minibuffer): Doc fix.
11304 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
11305 (frameset--set-id, frameset--process-minibuffer-frames)
11306 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
11307 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
11308
11309 * desktop.el (desktop-clear): Only delete frames when called
11310 interactively and desktop-restore-frames is non-nil. Doc fix.
11311 (desktop-read): Set desktop-saved-frameset to nil.
11312
11313 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
11314
11315 * vc/vc.el (vc-ignore): Rewrite.
11316 (vc-default-ignore-completion-table, vc--read-lines)
11317 (vc--add-line, vc--remove-regexp): New functions.
11318
11319 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
11320 (vc-svn-ignore-completion-table): New function.
11321
11322 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
11323 (vc-hg-ignore-completion-table)
11324 (vc-hg-find-ignore-file): New functions.
11325
11326 * vc/vc-git.el (vc-git-ignore): Rewrite.
11327 (vc-git-ignore-completion-table)
11328 (vc-git-find-ignore-file): New functions.
11329
11330 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
11331
11332 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
11333 (vc-bzr-ignore-completion-table)
11334 (vc-bzr-find-ignore-file): New functions.
11335
11336 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
11337
11338 * frameset.el (frameset-prop): New function and setter.
11339 (frameset-save): Do not modify frame list passed by the caller.
11340
11341 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11342
11343 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
11344
11345 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
11346
11347 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
11348 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
11349
11350 * custom.el (custom-initialize-default, custom-initialize-set)
11351 (custom-initialize-reset, custom-initialize-changed): Affect the
11352 toplevel-default-value (bug#6275, bug#14586).
11353 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
11354 for bug#6275.
11355
11356 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
11357
11358 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11359 Add cl-def* expressions.
11360
11361 * frameset.el (frameset-filter-params): Fix order of arguments.
11362
11363 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
11364
11365 Move code related to saving frames to frameset.el.
11366 * desktop.el: Require frameset.
11367 (desktop-restore-frames): Doc fix.
11368 (desktop-restore-reuses-frames): Rename from
11369 desktop-restoring-reuses-frames.
11370 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
11371 (desktop-clear): Clear frames too.
11372 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
11373 (desktop--filter-tty*, desktop-save, desktop-read):
11374 Use frameset functions.
11375 (desktop-before-saving-frames-functions, desktop--filter-*-color)
11376 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11377 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
11378 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
11379 (desktop--process-minibuffer-frames, desktop-save-frames)
11380 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
11381 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
11382 (desktop--sort-states, desktop-restoring-frames-p)
11383 (desktop-restore-frames): Remove. Most code moved to frameset.el.
11384 (desktop-restoring-frameset-p, desktop-restore-frameset)
11385 (desktop--check-dont-save, desktop-save-frameset): New functions.
11386 (desktop--app-id): New constant.
11387 (desktop-first-buffer, desktop-buffer-ok-count)
11388 (desktop-buffer-fail-count): Move before first use.
11389 * frameset.el: New file.
11390
11391 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11392
11393 * files.el: Use lexical-binding.
11394 (dir-locals-read-from-file): Remove unused `err' variable.
11395 (hack-dir-local-variables--warned-coding): New var.
11396 (hack-dir-local-variables): Use it to avoid repeated warnings.
11397 (make-backup-file-name--default-function): New function.
11398 (make-backup-file-name-function): Use it as default.
11399 (buffer-stale--default-function): New function.
11400 (buffer-stale-function): Use it as default.
11401 (revert-buffer-insert-file-contents--default-function): New function.
11402 (revert-buffer-insert-file-contents-function): Use it as default.
11403 (insert-directory): Avoid add-to-list.
11404
11405 * autorevert.el (auto-revert-handler): Simplify.
11406 Use buffer-stale--default-function.
11407
11408 2013-08-01 Tassilo Horn <tsdh@gnu.org>
11409
11410 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
11411
11412 * whitespace.el (whitespace-ensure-local-variables): New function.
11413 (whitespace-cleanup-region): Call it.
11414 (whitespace-turn-on): Call it.
11415
11416 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
11417
11418 Complete file name handlers.
11419
11420 * net/tramp.el (tramp-handle-set-visited-file-modtime)
11421 (tramp-handle-verify-visited-file-modtime)
11422 (tramp-handle-file-notify-rm-watch): New functions.
11423 (tramp-call-process): Do not bind `default-directory'.
11424
11425 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11426 Order alphabetically.
11427 <access-file, add-name-to-file, dired-call-process>:
11428 <dired-compress-file, file-acl, file-notify-rm-watch>:
11429 <file-ownership-preserved-p, file-selinux-context>:
11430 <make-directory-internal, make-symbolic-link, set-file-acl>:
11431 <set-file-selinux-context, set-visited-file-modtime>:
11432 <verify-visited-file-modtime>: Add handler.
11433 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
11434
11435 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
11436 <file-notify-add-watch, file-notify-rm-watch>:
11437 <set-file-times, set-visited-file-modtime>:
11438 <verify-visited-file-modtime>: Add handler.
11439 (with-tramp-gvfs-error-message)
11440 (tramp-gvfs-handle-set-visited-file-modtime)
11441 (tramp-gvfs-fuse-file-name): Remove.
11442 (tramp-gvfs-handle-file-notify-add-watch)
11443 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
11444 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
11445
11446 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11447 Order alphabetically.
11448 <file-notify-rm-watch>: Use default Tramp handler.
11449 <executable-find>: Remove private handler.
11450 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
11451 `default-directory'.
11452 (tramp-sh-handle-executable-find)
11453 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
11454 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11455 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
11456 Do not use `format' in `tramp-message'.
11457
11458 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
11459 <file-notify-rm-watch, set-visited-file-modtime>:
11460 <verify-visited-file-modtime>: Add handler.
11461 (tramp-smb-call-winexe): Do not bind `default-directory'.
11462
11463 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
11464
11465 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
11466
11467 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
11468
11469 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
11470 use it.
11471 (log-view-diff-changeset): Same.
11472 (log-view-diff-common): Call backend command `previous-revision'
11473 to find out the previous revision, in both cases. Swap the
11474 variables `to' and `fr', so that `fr' usually refers to the
11475 earlier revision (Bug#14989).
11476
11477 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
11478
11479 * ibuf-ext.el (ibuffer-filter-by-filename):
11480 Make it work with dired buffers too.
11481
11482 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
11483
11484 * emacs-lisp/re-builder.el (reb-color-display-p):
11485 * files.el (save-buffers-kill-terminal):
11486 * net/browse-url.el (browse-url):
11487 * server.el (server-save-buffers-kill-terminal):
11488 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
11489 Prefer nil to selected-frame for the first arg of frame-parameter.
11490
11491 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
11492
11493 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
11494
11495 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
11496
11497 * minibuffer.el (completion--twq-all): Try and preserve each
11498 completion's case choice (bug#14907).
11499
11500 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11501
11502 * net/network-stream.el (open-network-stream): Mention the new
11503 :nogreeting parameter.
11504 (network-stream-open-starttls): Use the :nogreeting parameter
11505 (bug#14938).
11506
11507 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
11508
11509 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
11510 more natural than popping.
11511
11512 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
11513 (shr-urlify): Highlight under mouse.
11514
11515 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11516
11517 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
11518
11519 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
11520
11521 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
11522 buffer for output.
11523
11524 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
11525 point-min==1. Fix search string. Fix parentheses missing.
11526
11527 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
11528 assume point-min==1. Fix search string. Fix parentheses missing.
11529
11530 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
11531
11532 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
11533 buffer for output.
11534
11535 2013-07-29 Eli Zaretskii <eliz@gnu.org>
11536
11537 * frame.el (frame-notice-user-settings): Avoid inflooping when the
11538 initial frame is minibuffer-less. (Bug#14841)
11539
11540 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
11541
11542 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
11543 option.
11544
11545 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11546 (tramp-maybe-open-connection): Use it.
11547
11548 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11549
11550 * desktop.el (desktop--make-frame): Include `minibuffer' in the
11551 minimal set of parameters passed when creating a frame, because
11552 the minibuffer status of a frame cannot be changed later.
11553
11554 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
11555
11556 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
11557 replace-regexp-in-string and inadvertent omissions in previous change.
11558 (todo-filter-items): Ensure only file names are comma-separated in
11559 name of filtered items buffer.
11560
11561 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11562
11563 * desktop.el: Optionally force offscreen frames back onscreen.
11564 (desktop-restoring-reuses-frames): New option.
11565 (desktop--compute-pos, desktop--move-onscreen): New functions.
11566 (desktop--make-frame): Use desktop--move-onscreen.
11567
11568 2013-07-27 Alan Mackenzie <acm@muc.de>
11569
11570 Fontify a Java generic method as a function.
11571 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
11572 value to t.
11573
11574 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
11575
11576 * calendar/todo-mode.el: Add command to rename todo files.
11577 (todo-rename-file): New command.
11578 (todo-key-bindings-t): Add key binding for it. Change the
11579 bindings of todo-filter-regexp-items(-multifile) to use `x'
11580 instead of `r', since the latter is better suited to the new
11581 renaming command.
11582
11583 2013-07-27 Alan Mackenzie <acm@muc.de>
11584
11585 Make Java try-with-resources statement parse properly.
11586 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
11587 (c-block-stmt-1-2-key): New language constants/variables.
11588 * progmodes/cc-engine.el (c-beginning-of-statement-1)
11589 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
11590 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
11591 with c-block-stmt-1-2-key.
11592
11593 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
11594
11595 * desktop.el (desktop--make-frame): Apply most frame parameters after
11596 creating the frame to force (partially or totally) offscreen frames to
11597 be restored as such.
11598
11599 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
11600
11601 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
11602 (Bug#14948)
11603
11604 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11605
11606 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
11607 `base' arg of backtrace-frame.
11608
11609 2013-07-26 Eli Zaretskii <eliz@gnu.org>
11610
11611 * simple.el (list-processes): Doc fix.
11612
11613 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11614
11615 * desktop.el (desktop--select-frame):
11616 Try harder to reuse existing frames.
11617
11618 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11619
11620 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
11621 (edebug-eval): Use backtrace-eval.
11622 (edebug--display, edebug--recursive-edit): Don't let-bind the
11623 edebug-outer-* vars that keep track of variables we locally let-bind.
11624 (edebug-outside-excursion): Don't restore outside values of locally
11625 let-bound vars.
11626 (edebug--display): Use user-error.
11627 (cl-lexical-debug, cl-debug-env): Remove.
11628
11629 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11630
11631 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
11632 are restored to be sure that they are visible before deleting any
11633 remaining ones.
11634
11635 2013-07-26 Matthias Meulien <orontee@gmail.com>
11636
11637 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
11638 vc-print-root-log. (Bug#14948)
11639
11640 2013-07-26 Richard Stallman <rms@gnu.org>
11641
11642 Add aliases for encrypting mail.
11643 * epa.el (epa-mail-aliases): New option.
11644 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
11645 Bind inhibit-read-only so read-only text doesn't ruin everything.
11646 (epa-mail-default-recipients): New subroutine broken out.
11647 Handle epa-mail-aliases.
11648
11649 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11650
11651 Add support for lexical variables to the debugger's `e' command.
11652 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
11653 vars, except for debugger-outer-match-data.
11654 (debugger-frame-number): Move check for "on a function call" from
11655 callers into it. Add `skip-base' argument.
11656 (debugger-frame, debugger-frame-clear): Simplify accordingly.
11657 (debugger-env-macro): Only reset the state stored in non-variables,
11658 i.e. current-buffer and match-data.
11659 (debugger-eval-expression): Rewrite using backtrace-eval.
11660 * subr.el (internal--called-interactively-p--get-frame): Remove.
11661 (called-interactively-p):
11662 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
11663 `base' arg of backtrace-frame instead.
11664
11665 2013-07-26 Glenn Morris <rgm@gnu.org>
11666
11667 * align.el (align-regexp): Doc fix. (Bug#14857)
11668 (align-region): Explicit error if subexpression missing/does not match.
11669
11670 * simple.el (global-visual-line-mode):
11671 Do not duplicate the mode lighter. (Bug#14858)
11672
11673 2013-07-25 Martin Rudalics <rudalics@gmx.at>
11674
11675 * window.el (display-buffer): In display-buffer bind
11676 split-window-keep-point to t, bug#14829.
11677
11678 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11679
11680 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
11681 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
11682 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
11683 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11684 Change accordingly.
11685 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11686 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
11687
11688 2013-07-25 Glenn Morris <rgm@gnu.org>
11689
11690 * dired-x.el (dired-mark-extension): Convert comment to doc string.
11691
11692 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11693
11694 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
11695 parameter to modify-frame-parameters if the value has not changed;
11696 this is a workaround for bug#14949.
11697 (desktop--make-frame): On cl-delete-if call, check parameter name,
11698 not full parameter.
11699
11700 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11701
11702 * vc/vc.el (vc-ignore): New function.
11703
11704 * vc/vc-svn.el (vc-svn-ignore): New function.
11705
11706 * vc/vc-hg.el (vc-hg-ignore): New function.
11707
11708 * vc/vc-git.el (vc-git-ignore): New function.
11709
11710 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
11711 (vc-dir-ignore): New function.
11712
11713 * vc/vc-cvs.el (vc-cvs-ignore): New function.
11714 (cvs-append-to-ignore): Move here from pcvs.el.
11715
11716 * vc/vc-bzr.el (vc-bzr-ignore): New function.
11717
11718 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
11719
11720 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
11721
11722 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
11723 (desktop-restore-frames): Warn when deleting an existing frame failed.
11724
11725 2013-07-24 Glenn Morris <rgm@gnu.org>
11726
11727 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
11728
11729 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
11730
11731 * filenotify.el (file-notify-supported-p):
11732 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11733 Remove functions.
11734
11735 * autorevert.el (auto-revert-use-notify)
11736 (auto-revert-notify-add-watch):
11737 * net/tramp.el (tramp-file-name-for-operation):
11738 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11739 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11740 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11741 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11742 Remove `file-notify-supported-p' entry.
11743
11744 2013-07-24 Glenn Morris <rgm@gnu.org>
11745
11746 * printing.el: Replace all uses of deleted ps-windows-system,
11747 ps-lp-system, ps-flatten-list with lpr- versions.
11748
11749 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11750
11751 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
11752 checked with memq (bug#14935).
11753
11754 * files.el (revert-buffer-function): Use a non-nil default.
11755 (revert-buffer-preserve-modes): Declare var to
11756 provide access to the `preserve-modes' argument.
11757 (revert-buffer): Let-bind it.
11758 (revert-buffer--default): New function, extracted from revert-buffer.
11759
11760 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11761
11762 * lpr.el: Signal print errors more prominently.
11763 (print-region-function): Don't default to nil.
11764 (lpr-print-region): New function, extracted from print-region-1.
11765 Check lpr's return value and signal an error in case of problem.
11766 (print-region-1): Use it.
11767 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
11768 versions instead.
11769 (ps-printer-name): Default to nil.
11770 (ps-printer-name-option): Default to lpr-printer-switch.
11771 (ps-print-region-function): Don't default to nil.
11772 (ps-postscript-code-directory): Simplify default.
11773 (ps-do-despool): Use lpr-print-region to properly check the outcome.
11774 (ps-string-list, ps-eval-switch, ps-flatten-list)
11775 (ps-flatten-list-1): Remove.
11776 (ps-multibyte-buffer): Avoid setq.
11777 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
11778 (print-region-function, ps-print-region-function): Don't set them here.
11779
11780 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
11781
11782 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
11783 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
11784 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
11785 (ido-decorations): Doc fix.
11786
11787 * ansi-color.el: Fix old URL.
11788
11789 2013-07-23 Michael R. Mauger <michael@mauger.com>
11790
11791 * progmodes/sql.el: Version 3.3
11792 (sql-product-alist): Improve oracle :prompt-cont-regexp.
11793 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
11794 (sql-interactive-remove-continuation-prompt): Rewrite, use
11795 functions above. Fix continuation prompt and complete output line
11796 handling.
11797 (sql-redirect-one, sql-execute): Use `read-only-mode' on
11798 redirected output buffer.
11799 (sql-mode): Restore deleted code (Bug#13591).
11800
11801 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11802
11803 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
11804
11805 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
11806
11807 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
11808
11809 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11810 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11811 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
11812
11813 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11814
11815 * desktop.el (desktop-clear): Simplify; remove useless checks
11816 against invalid buffer names.
11817 (desktop-list*): Use cl-list*.
11818 (desktop-buffer-info, desktop-create-buffer): Simplify.
11819
11820 2013-07-23 Leo Liu <sdl.web@gmail.com>
11821
11822 * bookmark.el (bookmark-make-record): Restore NAME as a default
11823 value. (Bug#14933)
11824
11825 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11826
11827 * emacs-lisp/autoload.el (autoload--setup-output): New function,
11828 extracted from autoload--insert-text.
11829 (autoload--insert-text): Remove.
11830 (autoload--print-cookie-text): New function, extracted from
11831 autoload--insert-cookie-text.
11832 (autoload--insert-cookie-text): Remove.
11833 (autoload-generate-file-autoloads): Adjust calls accordingly.
11834
11835 * winner.el (winner-hook-installed-p): Remove.
11836 (winner-mode): Simplify accordingly.
11837
11838 * subr.el (add-to-list): Fix compiler-macro when `append' is
11839 not constant. Don't use `cl-member' for the base case.
11840
11841 * progmodes/subword.el: Fix boundary case (bug#13758).
11842 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
11843 own group.
11844 (subword-backward-regexp): Make it a constant.
11845 (subword-forward-internal): Don't treat a trailing capital as the
11846 beginning of a word.
11847
11848 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
11849
11850 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11851 global value of tabulated-list-revert-hook (bug#14930).
11852
11853 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
11854
11855 * desktop.el: Require 'cl-lib.
11856 (desktop-before-saving-frames-functions): New hook.
11857 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11858 for frames being saved. Rename from desktop--save-minibuffer-frames.
11859 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11860 Do not save frames with non-nil `desktop-dont-save' parameter.
11861 Filter out deleted frames.
11862 (desktop--find-frame): Use cl-find-if.
11863 (desktop--select-frame): Use cl-(first|second|third) to access values
11864 of desktop-mini.
11865 (desktop--make-frame): Use cl-delete-if.
11866 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11867 (desktop-restore-frames): Use cl-(first|second|third) to access values
11868 of desktop-mini. Look for visible frame at the end, not while
11869 restoring frames.
11870
11871 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11872 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11873 Use string-match-p, looking-at-p (bug#14927).
11874
11875 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
11876
11877 * desktop.el (desktop-saved-frame-states):
11878 Rename from desktop--saved-states; all users changed.
11879 (desktop-save-frames): Rename from desktop--save-frames.
11880 Do not save state to desktop file.
11881 (desktop-save): Save desktop-saved-frame-states to desktop file
11882 and reset to nil.
11883 (desktop-restoring-frames-p): New function.
11884 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11885 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11886 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11887
11888 * desktop.el: Correctly restore iconified frames.
11889 (desktop--filter-iconified-position): New function.
11890 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11891
11892 2013-07-20 Glenn Morris <rgm@gnu.org>
11893
11894 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11895 Let `message' do the formatting.
11896 (def-gdb-preempt-display-buffer): Add explicit format.
11897
11898 * image-dired.el (image-dired-track-original-file):
11899 Use with-current-buffer.
11900 (image-dired-track-thumbnail): Use with-current-buffer.
11901 Avoid changing point of wrong window.
11902
11903 * image-dired.el (image-dired-track-original-file):
11904 Avoid changing point of wrong window. (Bug#14909)
11905
11906 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11907
11908 * progmodes/gdb-mi.el (gdb-done-or-error):
11909 Guard against "%" in gdb output. (Bug#14127)
11910
11911 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11912
11913 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11914 (Bug#14826)
11915
11916 * international/mule.el (coding-system-iso-2022-flags): Fix last
11917 change.
11918
11919 2013-07-20 Kenichi Handa <handa@gnu.org>
11920
11921 * international/mule.el (coding-system-iso-2022-flags):
11922 Add `8-bit-level-4'. (Bug#8522)
11923
11924 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11925
11926 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11927 (bug#14815).
11928
11929 * net/eww.el (eww-process-text-input): Allow inputting when the
11930 point is at the start of the line, as the properties aren't
11931 front-sticky.
11932
11933 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11934 degenerate widths.
11935
11936 2013-07-19 Richard Stallman <rms@gnu.org>
11937
11938 * epa.el (epa-popup-info-window): Doc fix.
11939
11940 * subr.el (split-string): New arg TRIM.
11941
11942 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
11943
11944 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11945 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11946
11947 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
11948
11949 * filenotify.el (file-notify--library): Rename from
11950 `file-notify-support'. Do not autoload. Adapt all uses.
11951 (file-notify-supported-p): New defun.
11952
11953 * autorevert.el (auto-revert-use-notify):
11954 Use `file-notify-supported-p' instead of `file-notify-support'.
11955 Adapt docstring.
11956 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11957
11958 * net/tramp.el (tramp-file-name-for-operation):
11959 Add `file-notify-supported-p'.
11960
11961 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11962 New defun.
11963 (tramp-sh-file-name-handler-alist): Add it as handler for
11964 `file-notify-supported-p '.
11965
11966 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11967 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11968 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11969 Add `ignore' as handler for `file-notify-*' functions.
11970
11971 2013-07-17 Eli Zaretskii <eliz@gnu.org>
11972
11973 * simple.el (line-move-partial, line-move): Don't start vscroll or
11974 scroll-up if the current line is not taller than the window.
11975 (Bug#14881)
11976
11977 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
11978
11979 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
11980 highlight question marks in the method names as strings.
11981 (ruby-block-beg-keywords): Inline.
11982 (ruby-font-lock-keyword-beg-re): Extract from
11983 `ruby-font-lock-keywords'.
11984
11985 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
11986
11987 * frame.el (blink-cursor-blinks): New defcustom.
11988 (blink-cursor-blinks-done): New defvar.
11989 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
11990 (blink-cursor-timer-function): Check if number of blinks has been
11991 done on X and NS.
11992 (blink-cursor-suspend, blink-cursor-check): New defuns.
11993
11994 2013-07-15 Glenn Morris <rgm@gnu.org>
11995
11996 * edmacro.el (edmacro-format-keys): Fix previous change.
11997
11998 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
11999
12000 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
12001 The hack didn't work outside English locales anyway.
12002
12003 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
12004
12005 * simple.el (define-alternatives): Rename from alternatives-define,
12006 per RMS' suggestion.
12007
12008 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
12009
12010 * desktop.el (desktop-restore-frames): Change default to t.
12011 (desktop-restore-in-current-display): Now offer more options.
12012 (desktop-restoring-reuses-frames): New customization option.
12013 (desktop--saved-states): Doc fix.
12014 (desktop-filter-parameters-alist): New variable, renamed and expanded
12015 from desktop--excluded-frame-parameters.
12016 (desktop--target-display): New variable.
12017 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
12018 (desktop--filter-tty*, desktop--filter-*-color)
12019 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
12020 (desktop--filter-save-desktop-parm)
12021 (desktop-restore-in-original-display-p): New functions.
12022 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
12023 (desktop--save-minibuffer-frames): New function, inspired by a similar
12024 function from Martin Rudalics.
12025 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
12026 (desktop--restore-in-this-display-p): Remove.
12027 (desktop--find-frame): Rename from desktop--find-frame-in-display
12028 and add predicate argument.
12029 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
12030 (desktop--reuse-list): New variable.
12031 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
12032 New functions.
12033 (desktop--restore-frames): Add support for "minibuffer-special" frames.
12034
12035 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
12036
12037 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
12038
12039 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
12040
12041 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12042 Highlight conversion methods on Kernel.
12043
12044 2013-07-13 Alan Mackenzie <acm@muc.de>
12045
12046 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
12047 and comment it out. This out-commenting enables certain C++
12048 declarations to be parsed correctly.
12049
12050 2013-07-13 Eli Zaretskii <eliz@gnu.org>
12051
12052 * international/mule.el (define-coding-system): Doc fix.
12053
12054 * simple.el (default-font-height): Don't call font-info if the
12055 frame's default font didn't change since the frame was created.
12056 (Bug#14838)
12057
12058 2013-07-13 Leo Liu <sdl.web@gmail.com>
12059
12060 * ido.el (ido-read-file-name): Guard against non-symbol value.
12061
12062 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
12063
12064 * progmodes/python.el (python-imenu--build-tree): Fix corner case
12065 in nested defuns.
12066
12067 2013-07-13 Leo Liu <sdl.web@gmail.com>
12068
12069 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
12070 ido-set-matches call. (Bug#6852)
12071
12072 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
12073
12074 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
12075 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
12076 Ruby 2.0.
12077 (ruby-font-lock-keywords): Distinguish calls to functions with
12078 module-like names from module references. Highlight character
12079 literals.
12080
12081 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
12082
12083 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
12084 (gdb-send): Handle continued commands. (Bug#14847)
12085
12086 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
12087
12088 * desktop.el (desktop--v2s): Remove unused local variable.
12089 (desktop-save-buffer): Make defvar-local; adjust docstring.
12090 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
12091 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
12092
12093 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
12094
12095 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
12096
12097 2013-07-12 Eli Zaretskii <eliz@gnu.org>
12098
12099 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
12100 (Bug#14842)
12101
12102 2013-07-12 Glenn Morris <rgm@gnu.org>
12103
12104 * doc-view.el: Require cl-lib at runtime too.
12105 (doc-view-remove-if): Remove.
12106 (doc-view-search-next-match, doc-view-search-previous-match):
12107 Use cl-remove-if.
12108
12109 * edmacro.el: Require cl-lib at runtime too.
12110 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
12111 (edmacro-mismatch, edmacro-subseq): Remove.
12112
12113 * shadowfile.el: Require cl-lib.
12114 (shadow-remove-if): Remove.
12115 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
12116 Use cl-remove-if.
12117
12118 * wid-edit.el: Require cl-lib.
12119 (widget-choose): Use cl-remove-if.
12120 (widget-remove-if): Remove.
12121
12122 * progmodes/ebrowse.el: Require cl-lib at runtime too.
12123 (ebrowse-delete-if-not): Remove.
12124 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
12125 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
12126 Use cl-delete-if-not.
12127
12128 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
12129
12130 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
12131 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
12132
12133 2013-07-12 Leo Liu <sdl.web@gmail.com>
12134
12135 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
12136
12137 2013-07-11 Glenn Morris <rgm@gnu.org>
12138
12139 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
12140 (edebug-gensym-index, edebug-gensym):
12141 Remove reimplementation of cl-gensym.
12142 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
12143
12144 * thumbs.el: Require cl-lib at run-time too.
12145 (thumbs-gensym-counter, thumbs-gensym):
12146 Remove reimplementation of cl-gensym.
12147 (thumbs-temp-file): Use cl-gensym.
12148
12149 * emacs-lisp/ert.el: Require cl-lib at runtime too.
12150 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
12151 (ert--intersection, ert--set-difference, ert--set-difference-eq)
12152 (ert--union, ert--gensym-counter, ert--gensym-counter)
12153 (ert--coerce-to-vector, ert--remove*, ert--string-position)
12154 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
12155 (ert-make-test-unbound, ert--expand-should-1)
12156 (ert--expand-should, ert--should-error-handle-error)
12157 (should-error, ert--explain-equal-rec)
12158 (ert--plist-difference-explanation, ert-select-tests)
12159 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
12160 Use cl-lib functions rather than reimplementations.
12161
12162 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
12163
12164 * net/tramp.el (tramp-methods): Extend docstring.
12165 (tramp-connection-timeout): New defcustom.
12166 (tramp-error-with-buffer): Reset timestamp only when appropriate.
12167 (with-tramp-progress-reporter): Simplify.
12168 (tramp-process-actions): Improve messages.
12169
12170 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
12171 * net/tramp-sh.el (tramp-maybe-open-connection):
12172 Use `tramp-connection-timeout'.
12173 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
12174 (Bug#14808)
12175
12176 2013-07-11 Leo Liu <sdl.web@gmail.com>
12177
12178 * ido.el (ido-read-file-name): Conform to the requirements of
12179 read-file-name. (Bug#11861)
12180 (ido-read-directory-name): Conform to the requirements of
12181 read-directory-name.
12182
12183 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
12184
12185 * subr.el (delay-warning): New function.
12186
12187 2013-07-10 Eli Zaretskii <eliz@gnu.org>
12188
12189 * simple.el (default-line-height): New function.
12190 (line-move-partial, line-move): Use it instead of computing the
12191 line height inline.
12192 (line-move-partial): Always compute ROWH. If the last line is
12193 partially-visible, but its text is completely visible, allow
12194 cursor to enter such a partially-visible line.
12195
12196 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
12197
12198 Improve error messages. (Bug#14808)
12199
12200 * net/tramp.el (tramp-current-connection): New defvar, moved from
12201 tramp-sh.el.
12202 (tramp-message-show-progress-reporter-message): Remove, not
12203 needed anymore.
12204 (tramp-error-with-buffer): Show message in minibuffer.
12205 Discard input before waiting. Reset connection timestamp.
12206 (with-tramp-progress-reporter): Improve messages.
12207 (tramp-process-actions): Use progress reporter. Delete process in
12208 case of error. Improve messages.
12209
12210 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
12211 Call `tramp-error-with-buffer' with vector and buffer.
12212 (tramp-current-connection): Remove.
12213 (tramp-maybe-open-connection): The car of
12214 `tramp-current-connection' are the first 3 slots of the vector.
12215
12216 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
12217
12218 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
12219 inside continued strings.
12220
12221 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
12222
12223 Timestamp fixes for undo (Bug#14824).
12224 * files.el (clear-visited-file-modtime): Move here from fileio.c.
12225
12226 2013-07-10 Leo Liu <sdl.web@gmail.com>
12227
12228 * files.el (require-final-newline): Allow safe local value.
12229 (Bug#14834)
12230
12231 2013-07-09 Leo Liu <sdl.web@gmail.com>
12232
12233 * ido.el (ido-read-directory-name): Handle fallback.
12234 (ido-read-file-name): Update DIR to ido-current-directory.
12235 (Bug#1516)
12236 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
12237
12238 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
12239
12240 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
12241 "autoload". Remove "warn lower camel case" section, previously
12242 commented out. Highlight negation char. Do not highlight the
12243 target in singleton method definitions.
12244
12245 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12246
12247 * faces.el (tty-setup-hook): Declare the hook.
12248
12249 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
12250 and detect when a guard/pred depends on local vars (bug#14773).
12251 (pcase--u1): Adjust caller.
12252
12253 2013-07-08 Eli Zaretskii <eliz@gnu.org>
12254
12255 * simple.el (line-move-partial, line-move): Account for
12256 line-spacing.
12257 (line-move-partial): Avoid setting vscroll when the last
12258 partially-visible line in window is of default height.
12259
12260 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12261
12262 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
12263 been used a while.
12264
12265 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
12266
12267 * subr.el (read-quoted-char): Remove unused local variable `char'.
12268
12269 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
12270
12271 * vc/ediff.el (ediff-version): Version update.
12272 (ediff-files-command, ediff3-files-command, ediff-merge-command)
12273 (ediff-merge-with-ancestor-command, ediff-directories-command)
12274 (ediff-directories3-command, ediff-merge-directories-command)
12275 (ediff-merge-directories-with-ancestor-command): New functions.
12276 All are command-line interfaces to ediff: to facilitate calling
12277 Emacs with the appropriate ediff functions invoked.
12278
12279 * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
12280 New function.
12281 (viper-save-kill-buffer): Check if buffer is modified.
12282
12283 * emulation/viper.el (viper-version): Version update.
12284 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
12285
12286 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
12287
12288 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
12289 * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
12290 (viper-intercept-ESC-key): Simplify.
12291 * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
12292 don't use kbd.
12293 * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
12294 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
12295 (viper-setup-ESC-to-escape): New functions.
12296 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
12297 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
12298
12299 2013-07-07 Eli Zaretskii <eliz@gnu.org>
12300
12301 * simple.el (default-font-height, window-screen-lines):
12302 New functions.
12303 (line-move, line-move-partial): Use them instead of
12304 frame-char-height and window-text-height. This makes scrolling
12305 text smoother when the buffer's default face uses a font that is
12306 different from the frame's default font.
12307
12308 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
12309
12310 * files.el (write-file): Do not display confirm dialog for NS,
12311 it does its own dialog, which can't be canceled (Bug#14578).
12312
12313 2013-07-06 Eli Zaretskii <eliz@gnu.org>
12314
12315 * simple.el (line-move-partial): Adjust the row returned by
12316 posn-at-point for the current window-vscroll. (Bug#14567)
12317
12318 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
12319
12320 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
12321 (tramp-sh-file-inotifywait-process-filter): Handle file names with
12322 spaces.
12323
12324 2013-07-06 Martin Rudalics <rudalics@gmx.at>
12325
12326 * window.el (window-state-put-stale-windows): New variable.
12327 (window--state-put-2): Save list of windows without matching buffer.
12328 (window-state-put): Remove "bufferless" windows if possible.
12329
12330 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
12331
12332 * simple.el (alternatives-define): Remove leftover :group keyword.
12333 Tweak docstring.
12334
12335 2013-07-06 Leo Liu <sdl.web@gmail.com>
12336
12337 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
12338 (ido-enable-virtual-buffers): New variable.
12339 (ido-buffer-internal, ido-toggle-virtual-buffers)
12340 (ido-make-buffer-list): Use it.
12341 (ido-exhibit): Support turning on and off virtual buffers
12342 automatically.
12343
12344 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
12345
12346 * simple.el (alternatives-define): New macro.
12347
12348 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
12349
12350 * subr.el (read-quoted-char): Use read-key.
12351 (sit-for): Let read-event decode tty input (bug#14782).
12352
12353 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
12354
12355 * calendar/todo-mode.el: Add handling of file deletion, both by
12356 mode command and externally. Fix various related bugs.
12357 Clarify Commentary and improve some documentation strings and code.
12358 (todo-delete-file): New command.
12359 (todo-check-file): New function.
12360 (todo-show): Handle external deletion of the file we're trying to
12361 show (bug#14688). Replace called-interactively-p by an optional
12362 prefix argument to avoid problematic interaction with catch form
12363 when byte compiled (bug#14702).
12364 (todo-quit): Handle external deletion of the archive's todo file.
12365 Make sure the buffer that was visiting the archive file is still
12366 live before trying to bury it.
12367 (todo-category-completions): Handle external deletion of any
12368 category completion files.
12369 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
12370 of todo files, in case of external deletion.
12371 (todo-add-file): Replace unnecessary setq by let-binding.
12372 (todo-find-archive): Check whether there are any archives.
12373 Replace unnecessary setq by let-binding.
12374 (todo-archive-done-item): Use find-file-noselect to get the
12375 archive buffer whether or not the archive already exists.
12376 Remove superfluous code. Use file size instead of buffer-file-name to
12377 check if the archive is new; if it is, update list of archives.
12378 (todo-default-todo-file): Allow nil to be a valid value for when
12379 there are no todo files.
12380 (todo-reevaluate-default-file-defcustom): Use corrected definition
12381 of todo-default-todo-file.
12382 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
12383 (todo-delete-category, todo-show-categories-table)
12384 (todo-category-number): Clarify comment.
12385 (todo-filter-items): Clarify documentation string.
12386 (todo-show-current-file, todo-display-as-todo-file)
12387 (todo-reset-and-enable-done-separator): Tweak documentation string.
12388 (todo-done-separator): Make separator length window-width, since
12389 bug#2749 is now fixed.
12390
12391 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
12392
12393 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
12394 Support both "gvfs-monitor-dir" and "inotifywait".
12395 (tramp-sh-file-inotifywait-process-filter): Rename from
12396 `tramp-sh-file-notify-process-filter'.
12397 (tramp-sh-file-gvfs-monitor-dir-process-filter)
12398 (tramp-get-remote-gvfs-monitor-dir): New defuns.
12399
12400 2013-07-05 Leo Liu <sdl.web@gmail.com>
12401
12402 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
12403
12404 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12405
12406 * frame.el (display-pixel-height, display-pixel-width)
12407 (display-mm-height, display-mm-width): Mention behavior on
12408 multi-monitor setups in docstrings.
12409 (w32-display-monitor-attributes-list): Declare function.
12410 (display-monitor-attributes-list): Use it.
12411
12412 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
12413
12414 * filenotify.el: New package.
12415
12416 * autorevert.el (top): Require filenotify.el.
12417 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
12418 instead.
12419 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
12420 (auto-revert-notify-handler): Use `file-notify-*' functions.
12421
12422 * subr.el (file-notify-handle-event): Move function to filenotify.el.
12423
12424 * net/tramp.el (tramp-file-name-for-operation):
12425 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
12426
12427 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
12428 for `file-notify-add-watch' and `file-notify-rm-watch'.
12429 (tramp-process-sentinel): Improve trace.
12430 (tramp-sh-handle-file-notify-add-watch)
12431 (tramp-sh-file-notify-process-filter)
12432 (tramp-sh-handle-file-notify-rm-watch)
12433 (tramp-get-remote-inotifywait): New defuns.
12434
12435 2013-07-03 Juri Linkov <juri@jurta.org>
12436
12437 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
12438 call of `occur-read-primary-args' to interactive spec.
12439
12440 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
12441 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
12442
12443 2013-07-03 Matthias Meulien <orontee@gmail.com>
12444
12445 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
12446 `Buffer-menu-multi-occur'. Add it to the menu.
12447 (Buffer-menu-mode): Document it in docstring.
12448 (Buffer-menu-multi-occur): New command. (Bug#14673)
12449
12450 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12451
12452 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
12453 keywords and built-ins.
12454
12455 2013-07-03 Glenn Morris <rgm@gnu.org>
12456
12457 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
12458
12459 Make info-xref checks case-sensitive by default
12460 * info.el (Info-find-node, Info-find-in-tag-table)
12461 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
12462 Add option for exact case matching of nodes.
12463 * info-xref.el (info-xref): New custom group.
12464 (info-xref-case-fold): New option.
12465 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
12466
12467 2013-07-03 Leo Liu <sdl.web@gmail.com>
12468
12469 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
12470
12471 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12472
12473 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
12474 middle of block statement initially, lower the depth. Remove
12475 FIXME comment, not longer valid. Remove middle of block statement
12476 detection, no need to do that anymore since we've been using
12477 `ruby-parse-region' here.
12478
12479 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
12480
12481 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
12482
12483 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
12484
12485 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
12486
12487 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
12488
12489 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
12490 (desktop-restore-in-current-display): New customization option.
12491 (desktop--excluded-frame-parameters): Add `font'.
12492 (desktop--save-frames): Rename from desktop--save-windows.
12493 (desktop--restore-in-this-display-p): New function.
12494 (desktop--make-full-frame): Remove unwanted width/height from
12495 full(width|height) frames.
12496 (desktop--restore-frames): Rename from desktop--restore-windows.
12497 Obey desktop-restore-current-display. Do not delete old frames or
12498 select a new frame unless we were able to restore at least one frame.
12499
12500 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
12501
12502 * files.el (find-file-noselect): Simplify conditional expression.
12503
12504 * textmodes/remember.el (remember-append-to-file):
12505 Don't mix `find-buffer-visiting' and `get-file-buffer'.
12506
12507 Add `remember-notes' function to store random notes across Emacs
12508 restarts.
12509 * textmodes/remember.el (remember-data-file): Add :set callback to
12510 affect notes buffer (if any).
12511 (remember-notes): New command.
12512 (remember-notes-buffer-name, bury-remember-notes-on-kill):
12513 New defcustoms for the `remember-notes' function.
12514 (remember-notes-save-and-bury-buffer): New command.
12515 (remember-notes-mode-map): New variable.
12516 (remember-mode): New minor mode.
12517 (remember-notes--kill-buffer-query): New function.
12518 * startup.el (initial-buffer-choice): Add notes to custom type.
12519
12520 2013-06-30 Eli Zaretskii <eliz@gnu.org>
12521
12522 * bindings.el (right-char, left-char): Don't call sit-for, this is
12523 no longer needed. Use arithmetic comparison only for numerical
12524 arguments.
12525
12526 * international/mule-cmds.el (select-safe-coding-system):
12527 Handle the case of FROM being a string correctly. (Bug#14755)
12528
12529 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12530
12531 * net/shr.el (shr-make-table-1): Add a sanity check that allows
12532 progression on degenerate tables.
12533 (shr-rescale-image): ImageMagick animated images currently don't work.
12534
12535 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
12536
12537 Some fixes and improvements for desktop frame restoration.
12538 It is still experimental and disabled by default.
12539 * desktop.el (desktop--save-windows): Put the selected frame at
12540 the head of the list.
12541 (desktop--make-full-frame): New function.
12542 (desktop--restore-windows): Try to re-select the frame that was
12543 selected upon saving. Do not abort if some frames fail to restore,
12544 just show an error message and continue. Set up maximized frames
12545 so they have default non-maximized dimensions.
12546
12547 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
12548
12549 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
12550 Don't start heredoc inside a string or comment.
12551
12552 2013-06-29 Eli Zaretskii <eliz@gnu.org>
12553
12554 * bindings.el (visual-order-cursor-movement): New defcustom.
12555 (right-char, left-char): Provide visual-order cursor motion by
12556 calling move-point-visually. Update the doc strings.
12557
12558 2013-06-28 Kenichi Handa <handa@gnu.org>
12559
12560 * international/mule.el (define-coding-system): New coding system
12561 properties :inhibit-null-byte-detection,
12562 :inhibit-iso-escape-detection, and :prefer-utf-8.
12563 (set-buffer-file-coding-system): If :charset-list property of
12564 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
12565 appropriate for setting.
12566
12567 * international/mule-cmds.el (select-safe-coding-system):
12568 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
12569 multibyte characters, return utf-8 (or one of its siblings).
12570
12571 * international/mule-conf.el (prefer-utf-8): New coding system.
12572 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
12573 files.
12574
12575 2013-06-28 Ivan Kanis <ivan@kanis.fr>
12576
12577 * net/shr.el (shr-render-region): New function.
12578
12579 * net/eww.el: Autoload `eww-browse-url'.
12580
12581 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
12582
12583 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12584 Adapt to `package-desc-version' being a list.
12585 Use `package--ac-desc-version' to retrieve version from a package
12586 archive element.
12587
12588 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
12589
12590 New experimental feature to save&restore window and frame setup.
12591 * desktop.el (desktop-save-windows): New defcustom.
12592 (desktop--saved-states): New var.
12593 (desktop--excluded-frame-parameters): New defconst.
12594 (desktop--filter-frame-parms, desktop--find-frame-in-display)
12595 (desktop--restore-windows, desktop--save-windows): New functions.
12596 (desktop-save): Call `desktop--save-windows'.
12597 (desktop-read): Call `desktop--restore-windows'.
12598
12599 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12600
12601 * net/shr.el (add-face-text-property): Remove compat definition.
12602
12603 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12604
12605 * info.el (Info-try-follow-nearest-node): Move search for footnote
12606 above search for node name to prevent missing a footnote (bug#14717).
12607
12608 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12609
12610 * obsolete/otodo-mode.el: Add obsolescence info to file header.
12611
12612 2013-06-27 Leo Liu <sdl.web@gmail.com>
12613
12614 * net/eww.el (eww-read-bookmarks): Check file size.
12615
12616 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12617
12618 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
12619 advice--pending if newdef is nil or an autoload (bug#13820).
12620 (advice-mapc): New function.
12621
12622 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12623
12624 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
12625 probably.
12626 (eww-mode-map): Add a menu bar.
12627 (eww-add-bookmark): New command.
12628 (eww-bookmark-mode): New mode and commands.
12629 (eww-add-bookmark): Remove newlines from the title.
12630 (eww-bookmark-browse): Don't bug out if it's the only window.
12631
12632 2013-06-26 Glenn Morris <rgm@gnu.org>
12633
12634 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
12635 (hfy-size): Handle ttys. (Bug#14668)
12636
12637 * info-xref.el: Update for Texinfo 5 change in *note format.
12638 (info-xref-node-re, info-xref-note-re): New constants.
12639 (info-xref-check-buffer): Use info-xref-note-re.
12640
12641 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12642
12643 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
12644
12645 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
12646 nil terminate the loop (bug#14718).
12647
12648 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12649
12650 * net/eww.el: Rework history traversal. When going forward/back,
12651 put these actions into the history, too, so that they can be
12652 replayed.
12653 (eww-render): Move the history reset to the correct buffer.
12654
12655 2013-06-25 Juri Linkov <juri@jurta.org>
12656
12657 * files-x.el (modify-dir-local-variable): Change the header comment
12658 in the file with directory local variables. (Bug#14692)
12659
12660 * files-x.el (read-file-local-variable-value): Add `default'.
12661 (Bug#14710)
12662
12663 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12664
12665 * net/eww.el (eww-make-unique-file-name): Create a unique file
12666 name before saving to entering `y' accidentally asynchronously.
12667
12668 2013-06-25 Ivan Kanis <ivan@kanis.fr>
12669
12670 * net/eww.el (eww-download): New command and keystroke.
12671
12672 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12673
12674 * net/eww.el (eww-copy-page-url): Change name of command.
12675
12676 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
12677 be more consistent with Info and dired.
12678
12679 * net/eww.el (eww-mode-map): Ditto.
12680
12681 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12682
12683 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
12684 packages from archives.
12685 (package-archive-contents): Change format; include obsolete packages.
12686 (package-desc): Use `dir' to mark builtin packages.
12687 (package--from-builtin): Set the `dir' field to `builtin'.
12688 (generated-autoload-file, version-control): Declare.
12689 (package-compute-transaction): Change first arg and return value to be
12690 lists of package-descs. Adjust to new package-archive-contents format.
12691 (package--add-to-archive-contents): Adjust to new
12692 package-archive-contents format.
12693 (package-download-transaction): Arg is now a list of package-descs.
12694 (package-install): If `pkg' is a package name, pass it as
12695 a requirement, so it is subject to the usual (e.g. disabled) checks.
12696 (describe-package): Accept package-desc as well.
12697 (describe-package-1): Describe a specific package-desc. Add links to
12698 other package-descs for the same package name.
12699 (package-menu-describe-package): Pass the actual package-desc.
12700 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
12701 works correctly.
12702 (package-desc-status): New function.
12703 (package-menu--refresh): New function, extracted
12704 from package-menu--generate.
12705 (package-menu--generate): Use it.
12706 (package-delete): Update package-alist.
12707 (package-menu-execute): Don't call package-initialize.
12708
12709 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
12710 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
12711 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
12712 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
12713 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
12714 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
12715
12716 2013-06-25 Martin Rudalics <rudalics@gmx.at>
12717
12718 * window.el (window--state-get-1): Workaround for bug#14527.
12719 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
12720
12721 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12722
12723 * net/eww.el (eww-back-url): Implement the history by stashing all
12724 the data into a list.
12725 (eww-forward-url): Allow going forward in the history, too.
12726
12727 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12728
12729 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
12730 for values and use read--expression for expressions (bug#14710).
12731 (read-file-local-variable): Avoid setq.
12732 (read-file-local-variable-mode): Use minor-mode-list.
12733
12734 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12735
12736 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
12737 for DOI URLs.
12738
12739 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12740
12741 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
12742 Update imenu-support when dialect changes.
12743
12744 2013-06-25 Leo Liu <sdl.web@gmail.com>
12745
12746 * ido.el (ido-read-internal): Allow forward slash on windows.
12747
12748 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12749
12750 * net/eww.el (eww): Start of strings is \\`, not ^.
12751
12752 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12753
12754 * net/shr.el (shr-browse-url): Fix interactive spec.
12755
12756 * net/eww.el (eww): Add a trailing slash to domain names.
12757
12758 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
12759
12760 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
12761
12762 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12763
12764 * net/shr.el (shr-browse-url): Use an external browser if given a
12765 prefix.
12766
12767 * net/eww.el (eww-external-browser): Move to shr.
12768
12769 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12770
12771 * net/eww.el (eww): Work more correctly for file: URLs.
12772 (eww-detect-charset): Allow quoted charsets.
12773 (eww-yank-page-url): New command and keystroke.
12774
12775 2013-06-24 Daiki Ueno <ueno@gnu.org>
12776
12777 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
12778 file name of gpg executable.
12779 (epg-context-program): New function.
12780 (epg-context-home-directory): New function.
12781 (epg-context-set-program): New function.
12782 (epg-context-set-home-directory): New function.
12783 (epg--start): Use `epg-context-program' instead of
12784 'epg-gpg-program'.
12785 (epg--list-keys-1): Likewise.
12786
12787 2013-06-24 Leo Liu <sdl.web@gmail.com>
12788
12789 * ido.el (ido-read-internal): Fix bug#14620.
12790
12791 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12792
12793 * faces.el (face-documentation): Simplify.
12794 (read-face-attribute, tty-find-type, x-resolve-font-name):
12795 Use `string-match-p'.
12796 (list-faces-display): Use `string-match-p'. Simplify.
12797 (face-spec-recalc): Check face to avoid face alias loops.
12798 (read-color): Use `string-match-p' and non-capturing parenthesis.
12799
12800 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
12801
12802 * net/shr.el (shr-rescale-image): Use the new
12803 :max-width/:max-height functionality.
12804
12805 2013-06-23 Ivan Kanis <ivan@kanis.fr>
12806
12807 * net/eww.el (eww-search-prefix): New variable.
12808 (eww): Use it.
12809 (eww-external-browser): New variable.
12810 (eww-mode-map): New keystroke.
12811 (eww-browse-with-external-browser): New command.
12812
12813 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
12814
12815 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12816
12817 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12818 Don't skip aligning the next header field when padding is 0;
12819 otherwise, field width is not respected unless the title is as
12820 wide as the field.
12821
12822 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12823
12824 * emacs-lisp/package.el (package-el-version): Remove.
12825 (package-process-define-package): Fix inf-loop.
12826 (package-install): Allow symbols as arguments again.
12827
12828 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12829
12830 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
12831 add some more keyword-like methods.
12832 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
12833
12834 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
12835
12836 * bs.el (bs-buffer-show-mark): Make defvar-local.
12837 (bs-mode): Use setq-local.
12838
12839 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
12840 (emacs-lock--try-unlocking): Make defvar-local.
12841
12842 2013-06-22 Glenn Morris <rgm@gnu.org>
12843
12844 * play/cookie1.el (cookie-apropos): Minor simplification.
12845
12846 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
12847
12848 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12849
12850 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
12851 `regexp-opt', it breaks the build during dumping.
12852
12853 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12854
12855 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12856 Highlight keyword-like methods on Kernel and Module with
12857 font-lock-builtin-face.
12858 (auto-mode-alist): Consolidate different entries into one regexp
12859 and add more *file-s.
12860
12861 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
12862
12863 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12864
12865 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12866 (diary-entry): Use it in the action of this button type instead of
12867 diary-goto-entry.
12868
12869 * calendar/todo-mode.el: New version.
12870 (todo-add-category): Append new category to end of file and give
12871 it the highest number, instead of putting it at the beginning and
12872 giving it 0. Incorporate noninteractive functionality.
12873 (todo-forward-category): Adapt to 1-based category numbering.
12874 Allow skipping over archived categories.
12875 (todo-backward-category): Derive from todo-forward-category.
12876 (todo-backward-item, todo-forward-item): Make noninteractive and
12877 delegate interactive part to new commands. Make sensitive to done items.
12878 (todo-categories): Make value an alist of category names and
12879 vectors of item counts.
12880 (todo-category-beg): Make a defconst.
12881 (todo-category-number): Use 1 instead of 0 as initial value.
12882 (todo-category-select): Make sensitive to overlays, optional item
12883 highlighting and done items.
12884 (todo-delete-item): Make sensitive to overlays and marked and done items.
12885 (todo-edit-item): Make sensitive to overlays and editing of
12886 date/time header optional. Add format checks.
12887 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12888 no-op if point is not on an item. Advertise using todo-edit-quit.
12889 (todo-edit-mode): Make sensitive to new format, font-locking, and
12890 multiple todo files.
12891 (todo-insert-item, todo-insert-item-here): Derive from
12892 todo-basic-insert-item and extend functionality.
12893 (todo-item-end, todo-item-start): Make sensitive to done items.
12894 (todo-item-string): Don't return text properties. Restore point.
12895 (todo-jump-to-category): Make sensitive to multiple todo files and
12896 todo archives. Use extended category completion.
12897 (todo-lower-item, todo-raise-item): Rename to *-priority and
12898 derive from todo-set-item-priority.
12899 (todo-mode): Derive from special-mode. Make sensitive to new
12900 format, font-locking and multiple todo files. Make read-only.
12901 (todo-mode-map): Don't suppress digit keys, so they can supply
12902 prefix arguments. Add many new key bindings.
12903 (todo-prefix): Insert as an overlay instead of file text.
12904 Change semantics from diary date expression to purely visual mark.
12905 (todo-print): Rename to todo-print-buffer. Make buffer display
12906 features printable. Remove option to restrict number of items
12907 printed. Add option to print to file.
12908 (todo-print-function): Rename to todo-print-buffer-function.
12909 (todo-quit): Extend to handle exiting new todo modes.
12910 (todo-remove-item): Make sensitive to overlays.
12911 (todo-save): Extend to buffers of filtered items.
12912 (todo-show): Make sensitive to done items, multiple todo files and
12913 new todo modes. Offer to convert legacy todo file before creating
12914 first new todo file.
12915 (todo-show-priorities): Rename to todo-top-priorities.
12916 Change semantics of value 0.
12917 (todo-top-priorities): Rename to todo-filter-top-priorities,
12918 derive from todo-filter-items and extend functionality.
12919 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12920 and extend functionality to other types of filtered items.
12921 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12922 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12923 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12924 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12925 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12926 (todo-edit-mode-hook, todo-entry-prefix-function)
12927 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12928 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12929 (todo-initials, todo-insert-threshold, todo-item-string-start)
12930 (todo-line-string, todo-menu, todo-mode-hook)
12931 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12932 (todo-print-priorities, todo-remove-separator)
12933 (todo-save-top-priorities-too, todo-string-count-lines)
12934 (todo-string-multiline-p, todo-time-string-format)
12935 (todo-tmp-buffer-name): Remove.
12936 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12937 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12938 (todo-edit-category-diary-inclusion)
12939 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12940 (todo-edit-file, todo-edit-item-date-day)
12941 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12942 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12943 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12944 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12945 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12946 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12947 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12948 (todo-filter-top-priorities-multifile, todo-find-archive)
12949 (todo-find-filtered-items-file, todo-go-to-source-item)
12950 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12951 (todo-jump-to-archive-category, todo-lower-category)
12952 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12953 (todo-move-category, todo-move-item, todo-next-button)
12954 (todo-next-item, todo-padded-string, todo-powerset)
12955 (todo-previous-button, todo-previous-item)
12956 (todo-print-buffer-to-file, todo-raise-category)
12957 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12958 (todo-set-category-number, todo-set-item-priority)
12959 (todo-set-top-priorities-in-category)
12960 (todo-set-top-priorities-in-file, todo-show-categories-table)
12961 (todo-sort-categories-alphabetically-or-numerically)
12962 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12963 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12964 (todo-toggle-item-header, todo-toggle-item-highlighting)
12965 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
12966 (todo-toggle-view-done-items, todo-toggle-view-done-only)
12967 (todo-unarchive-items, todo-unmark-category): New commands.
12968 (todo-absolute-file-name, todo-add-to-buffer-list)
12969 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
12970 (todo-basic-insert-item, todo-category-completions)
12971 (todo-category-number, todo-category-string-matcher-1)
12972 (todo-category-string-matcher-2, todo-check-filtered-items-file)
12973 (todo-check-format, todo-clear-matches)
12974 (todo-comment-string-matcher, todo-convert-legacy-date-time)
12975 (todo-current-category, todo-date-string-matcher)
12976 (todo-define-insertion-command, todo-diary-expired-matcher)
12977 (todo-diary-goto-entry, todo-diary-item-p)
12978 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
12979 (todo-display-categories, todo-display-sorted, todo-done-item-p)
12980 (todo-done-item-section-p, todo-done-separator)
12981 (todo-done-string-matcher, todo-files, todo-filter-items)
12982 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
12983 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
12984 (todo-insert-category-line, todo-insert-item-from-calendar)
12985 (todo-insert-sort-button, todo-insert-with-overlays)
12986 (todo-insertion-command-name, todo-insertion-key-bindings)
12987 (todo-label-to-key, todo-longest-category-name-length)
12988 (todo-make-categories-list, todo-mode-external-set)
12989 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
12990 (todo-modes-set-3, todo-multiple-filter-files)
12991 (todo-nondiary-marker-matcher, todo-prefix-overlays)
12992 (todo-read-category, todo-read-date, todo-read-dayname)
12993 (todo-read-file-name, todo-read-time)
12994 (todo-reevaluate-category-completions-files-defcustom)
12995 (todo-reevaluate-default-file-defcustom)
12996 (todo-reevaluate-filelist-defcustoms)
12997 (todo-reevaluate-filter-files-defcustom)
12998 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
12999 (todo-reset-done-separator, todo-reset-done-separator-string)
13000 (todo-reset-done-string, todo-reset-global-current-todo-file)
13001 (todo-reset-highlight-item, todo-reset-nondiary-marker)
13002 (todo-reset-prefix, todo-set-categories)
13003 (todo-set-date-from-calendar, todo-set-show-current-file)
13004 (todo-set-top-priorities, todo-short-file-name)
13005 (todo-show-current-file, todo-sort, todo-time-string-matcher)
13006 (todo-total-item-counts, todo-update-buffer-list)
13007 (todo-update-categories-display, todo-update-categories-sexp)
13008 (todo-update-count, todo-validate-name, todo-y-or-n-p):
13009 New functions.
13010 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
13011 New major modes.
13012 (todo-categories, todo-display, todo-edit, todo-faces)
13013 (todo-filtered): New defgroups.
13014 (todo-archived-only, todo-button, todo-category-string, todo-date)
13015 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
13016 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
13017 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
13018 (todo-add-item-if-new-category, todo-always-add-time-string)
13019 (todo-categories-align, todo-categories-archived-label)
13020 (todo-categories-category-label, todo-categories-diary-label)
13021 (todo-categories-done-label, todo-categories-number-separator)
13022 (todo-categories-todo-label, todo-categories-totals-label)
13023 (todo-category-completions-files, todo-completion-ignore-case)
13024 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
13025 (todo-done-separator-string, todo-done-string)
13026 (todo-files-function, todo-filter-done-items, todo-filter-files)
13027 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
13028 (todo-initial-category, todo-initial-file, todo-item-mark)
13029 (todo-legacy-date-time-regexp, todo-mode-line-function)
13030 (todo-nondiary-marker, todo-number-prefix)
13031 (todo-print-buffer-function, todo-show-current-file)
13032 (todo-show-done-only, todo-show-first, todo-show-with-done)
13033 (todo-skip-archived-categories, todo-top-priorities-overrides)
13034 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
13035 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
13036 New defcustoms.
13037 (todo-category-done, todo-date-pattern, todo-date-string-start)
13038 (todo-diary-items-buffer, todo-done-string-start)
13039 (todo-filtered-items-buffer, todo-item-start)
13040 (todo-month-abbrev-array, todo-month-name-array)
13041 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
13042 (todo-top-priorities-buffer): New defconsts.
13043 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
13044 (todo-categories-with-marks, todo-category-string-face)
13045 (todo-comment-face, todo-comment-string, todo-current-todo-file)
13046 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
13047 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
13048 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
13049 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
13050 (todo-font-lock-keywords, todo-global-current-todo-file)
13051 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
13052 (todo-insertion-commands-args)
13053 (todo-insertion-commands-args-genlist)
13054 (todo-insertion-commands-names, todo-insertion-map)
13055 (todo-key-bindings-t, todo-key-bindings-t+a)
13056 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
13057 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
13058 (todo-nondiary-face, todo-print-buffer, todo-time-face)
13059 (todo-visited): New variables.
13060
13061 2013-06-21 Glenn Morris <rgm@gnu.org>
13062
13063 * play/cookie1.el (cookie-apropos): Add optional display argument.
13064 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
13065 (psychoanalyze-pinhead): Use cookie-doctor.
13066
13067 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
13068
13069 * emacs-lisp/package.el (tar-get-file-descriptor)
13070 (tar--extract): Declare.
13071
13072 2013-06-21 Eduard Wiebe <usenet@pusto.de>
13073
13074 Extend flymake's warning predicate to be a function (bug#14217).
13075 * progmodes/flymake.el (flymake-warning-predicate): New.
13076 (flymake-parse-line): Use it.
13077 (flymake-warning-re): Make obsolete alias to
13078 `flymake-warning-predicate'.
13079
13080 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13081
13082 * emacs-lisp/package.el (package-alist): Include obsolete packages.
13083 (package-obsolete-list): Remove.
13084 (package-activate): Remove min-version argument. Add `force' argument.
13085 Adjust to new package-alist format.
13086 (package-mark-obsolete): Remove.
13087 (package-unpack): Force reload of the package's autoloads.
13088 (package-installed-p): Check builtins if the installed package is not
13089 recent enough.
13090 (package-initialize): Don't reset package-obsolete-list.
13091 Don't specify which package version to activate.
13092 (package-process-define-package, describe-package-1)
13093 (package-menu--generate): Adjust to new package-alist format.
13094
13095 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
13096
13097 * allout-widgets.el (allout-widgets-mode-off)
13098 (allout-widgets-mode-on, allout-widgets-pre-command-business)
13099 (allout-widgets-post-command-business)
13100 (allout-widgets-after-copy-or-kill-function)
13101 (allout-widgets-after-undo-function, allout-test-range-overlaps)
13102 (allout-decorate-item-and-context)
13103 (allout-graphics-modification-handler): Fix typos in docstrings.
13104 (allout-get-or-create-parent-widget): Use `looking-at-p'.
13105
13106 * cmuscheme.el (scheme-start-file): Doc fix.
13107 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
13108 (scheme-input-filter): Use `string-match-p'.
13109
13110 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
13111
13112 * dired-x.el: Use Dired consistently in docstrings.
13113
13114 * dired.el: Use Dired consistently in docstrings.
13115 (dired-readin, dired-mode): Use `setq-local'.
13116 (dired-switches-alist): Make defvar-local.
13117 (dired-buffers-for-dir): Use `zerop'.
13118 (dired-safe-switches-p, dired-switches-escape-p)
13119 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
13120 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
13121 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
13122 (dired-goto-next-nontrivial-file): Use `string-match-p'.
13123 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
13124 (dired-toggle-marks, dired-mark-files-containing-regexp)
13125 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
13126 (dired-flag-auto-save-files, dired-flag-backup-files):
13127 Use `looking-at-p'.
13128 (dired-mark-files-regexp, dired-build-subdir-alist):
13129 Use `string-match-p', `looking-at-p'.
13130
13131 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
13132 (direct-print-region-helper): Use `string-match-p'.
13133
13134 2013-06-21 Leo Liu <sdl.web@gmail.com>
13135
13136 * comint.el (comint-redirect-results-list-from-process):
13137 Fix infinite loop.
13138
13139 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13140
13141 * net/eww.el (eww-update-header-line-format): Quote % characters.
13142
13143 2013-06-21 Glenn Morris <rgm@gnu.org>
13144
13145 * play/cookie1.el (cookie): New custom group.
13146 (cookie-file): New option.
13147 (cookie-check-file): New function.
13148 (cookie): Make it interactive. Make start and end messages optional.
13149 Interactively, display the result. Default to cookie-file.
13150 (cookie-insert): Default to cookie-file.
13151 (cookie-snarf): Make start and end messages optional.
13152 Default to cookie-file. Use with-temp-buffer.
13153 (cookie-read): Rename from read-cookie.
13154 Make start and end messages optional. Default to cookie-file.
13155 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
13156 Do not autoload it.
13157 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
13158 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
13159
13160 2013-06-21 Leo Liu <sdl.web@gmail.com>
13161
13162 * progmodes/octave.el (octave-mode): Backward compatibility fix.
13163
13164 2013-06-21 Glenn Morris <rgm@gnu.org>
13165
13166 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
13167
13168 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13169 Daniel Hackney <dan@haxney.org>
13170
13171 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
13172 Consolidate the single-file vs tarball code.
13173 (package-desc-suffix): New function.
13174 (package-desc-full-name): Don't bother inlining it.
13175 (package-load-descriptor): Return the new package-desc.
13176 (package-mark-obsolete): Remove unused arg `package'.
13177 (package-unpack): Make it work for single files as well.
13178 Make it update package-alist.
13179 (package--make-autoloads-and-stuff): Rename from
13180 package--make-autoloads-and-compile. Don't compile any more.
13181 (package--compile): New function.
13182 (package-generate-description-file): New function, extracted from
13183 package-unpack-single.
13184 (package-unpack-single): Remove.
13185 (package--with-work-buffer): Add indentation and debugging info.
13186 (package-download-single): Remove.
13187 (package-install-from-archive): Rename from package-download-tar, make
13188 it take a pkg-desc, and make it work for single files as well.
13189 (package-download-transaction): Simplify.
13190 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
13191 external tar program.
13192 (package-install-from-buffer): Remove `pkg-desc' argument.
13193 Use package-tar-file-info for tar-mode buffers.
13194 (package-install-file): Simplify accordingly.
13195 (package-archive-base): Change to take a pkg-desc.
13196 * tar-mode.el (tar--check-descriptor): New function, extracted from
13197 tar-get-descriptor.
13198 (tar-get-descriptor): Use it.
13199 (tar-get-file-descriptor): New function.
13200 (tar--extract): New function, extracted from tar-extract.
13201 (tar--extract): Use it.
13202 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
13203 case the summary uses non-ascii. Adjust to new calling convention of
13204 package-tar-file-info.
13205
13206 2013-06-21 Leo Liu <sdl.web@gmail.com>
13207
13208 * comint.el (comint-redirect-results-list-from-process):
13209 Fix random delay. (Bug#14681)
13210
13211 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
13212
13213 * profiler.el (profiler-format-number): Use log, not log10.
13214
13215 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13216
13217 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
13218
13219 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13220
13221 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
13222 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
13223 yet available.
13224 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
13225 (AUTOGENEL): ... here.
13226 * emacs-lisp/cl-macs.el (cl--sublis): New function.
13227 (cl--defsubst-expand): Use it.
13228
13229 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
13230
13231 * subr.el (log10): Move here from C code, and declare as obsolete.
13232 All uses of (log10 X) replaced with (log X 10).
13233
13234 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13235
13236 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
13237 Declare with `defvar-local'.
13238 (tabulated-list-use-header-line, tabulated-list-entries)
13239 (tabulated-list-padding, tabulated-list-printer)
13240 (tabulated-list-sort-key): Declare with `defvar-local'.
13241 (tabulated-list-init-header, tabulated-list-print-fake-header):
13242 Use `setq-local'.
13243
13244 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
13245
13246 * arc-mode.el (archive-mode): Add `archive-write-file' to
13247 `write-contents-functions' also for remote files. (Bug#14652)
13248
13249 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13250
13251 * cus-edit.el (custom-commands): Fix typos.
13252 (custom-display): Fix tooltip text.
13253 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
13254 Fix typos in docstrings.
13255 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
13256 (custom-unlispify-menu-entry, custom-magic-value-create)
13257 (custom-add-see-also, custom-group-value-create): Use ?\s.
13258 (custom-guess-type, customize-apropos, editable-field)
13259 (custom-face-value-create): Use `string-match-p'.
13260 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
13261
13262 * custom.el (custom-load-symbol): Use `string-match-p'.
13263
13264 * ansi-color.el: Convert to lexical binding.
13265 (ansi-colors): Fix URL.
13266 (ansi-color-context, ansi-color-context-region): Use defvar-local.
13267 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
13268 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
13269
13270 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13271
13272 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
13273
13274 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
13275
13276 2013-06-19 Tom Tromey <tromey@redhat.com>
13277
13278 * net/eww.el (eww-top-url): Remove.
13279 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
13280 (eww-render): Set new variables. Don't set eww-top-url.
13281 (eww-handle-link): Handle "prev", "home", and "contents".
13282 Downcase the rel text.
13283 (eww-top-url): Choose best top URL.
13284
13285 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13286
13287 * net/eww.el: Rewrite to implement form elements "by hand" instead of
13288 relying in widget.el. Using widget.el leads to too many
13289 user interface inconsistencies.
13290 (eww-self-insert): Implement entering commands in text fields.
13291 (eww-process-text-input): New function to make text input field editing
13292 work.
13293 (eww-submit): Rewrite to use the new-style form methods.
13294 (eww-select-display): Display the correct selected item.
13295 (eww-change-select): Implement changing the select value.
13296 (eww-toggle-checkbox): Implement radio/checkboxes.
13297 (eww-update-field): Fix compilation error.
13298 (eww-tag-textarea): Implement <textarea>.
13299
13300 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
13301 we don't shadow mode-specific bindings.
13302
13303 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
13304 nothing to push.
13305
13306 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
13307
13308 2013-06-19 Glenn Morris <rgm@gnu.org>
13309
13310 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
13311
13312 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
13313
13314 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
13315 not needed.
13316
13317 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
13318
13319 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13320
13321 * net/browse-url.el (browse-url-browser-function):
13322 `eww-browse-url' has the right calling signature, `eww' does not.
13323
13324 2013-06-19 Glenn Morris <rgm@gnu.org>
13325
13326 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
13327 Only eval autoloaded macros.
13328 (byte-compile-autoload): Only give the macro warning for macros.
13329
13330 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
13331 (ps-underlined-faces): Declare.
13332
13333 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
13334 (speedbar-add-supported-extension): Declare.
13335
13336 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
13337 Don't include a date stamp in the header of the generated file;
13338 it leads to needless differences between output files.
13339
13340 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
13341
13342 * net/secrets.el (secrets-struct-secret-content-type):
13343 Replace check of introspection data by a test call of "CreateItem".
13344 Some servers do not offer introspection.
13345
13346 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
13347
13348 * electric.el (electric-pair-mode): Improve interaction with
13349 electric-layout-mode.
13350 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
13351 (electric-pair-syntax): Use text-mode-syntax-table in comments
13352 and strings.
13353 (electric-pair--insert): New function.
13354 (electric-pair-post-self-insert-function): Use it and
13355 electric--after-char-pos.
13356
13357 2013-06-19 Leo Liu <sdl.web@gmail.com>
13358
13359 * progmodes/octave.el (octave-help): Fix regexp.
13360
13361 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
13362
13363 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
13364 (shr-table-horizontal-line): Allow nil as a value, and change the
13365 default.
13366 (shr-insert-table-ruler): Respect the nil value.
13367
13368 2013-06-18 Tom Tromey <tromey@barimba>
13369
13370 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13371 New defvars.
13372 (eww-open-file): New defun.
13373 (eww-render): Initialize new variables.
13374 (eww-display-html): Handle "link" and "a".
13375 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
13376 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
13377 (eww-back-url): Rename from eww-previous-url.
13378 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13379 New defuns.
13380
13381 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
13382
13383 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
13384 Distinguish ternary operator tokens from slash symbol and slash
13385 char literal.
13386
13387 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
13388
13389 Convert symbol prettification into minor mode and global minor mode.
13390
13391 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
13392 `prog-prettify-symbols', and make a local defvar instead of defcustom.
13393 (prettify-symbols--keywords): Rename from
13394 `prog-prettify-symbols-alist' and make a local defvar.
13395 (prettify-symbols--compose-symbol): Rename from
13396 `prog--prettify-font-lock-compose-symbol'.
13397 (prettify-symbols--make-keywords): Rename from
13398 `prog-prettify-font-lock-symbols-keywords' and simplify.
13399 (prog-prettify-install): Remove.
13400 (prettify-symbols-mode): New minor mode, based on
13401 `prog-prettify-install'.
13402 (turn-on-prettify-symbols-mode): New function.
13403 (global-prettify-symbols-mode): New globalized minor mode.
13404
13405 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13406 * progmodes/cfengine.el (cfengine3-mode):
13407 * progmodes/perl-mode.el (perl-mode): Don't call
13408 `prog-prettify-install'; set `prettify-symbols-alist' instead.
13409
13410 2013-06-18 Juri Linkov <juri@jurta.org>
13411
13412 * files-x.el (modify-file-local-variable-message): New function.
13413 (modify-file-local-variable)
13414 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
13415 and call `modify-file-local-variable-message' when it's non-nil.
13416 (add-file-local-variable, delete-file-local-variable)
13417 (add-file-local-variable-prop-line)
13418 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
13419 and use it. (Bug#9820)
13420
13421 2013-06-18 Juri Linkov <juri@jurta.org>
13422
13423 * emulation/vi.el (vi-shell-op):
13424 * emulation/vip.el (vip-execute-com, ex-command):
13425 * emulation/viper-cmd.el (viper-exec-bang):
13426 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
13427 the call of `shell-command-on-region'. (Bug#14637)
13428
13429 * simple.el (shell-command-on-region): Doc fix.
13430
13431 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13432
13433 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
13434 (bug#14633).
13435
13436 2013-06-18 Glenn Morris <rgm@gnu.org>
13437
13438 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
13439
13440 * newcomment.el (comment-search-forward, comment-search-backward):
13441 Doc fix. (Bug#14376)
13442
13443 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
13444
13445 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
13446 (buffer-face-mode-invoke): Doc fix.
13447
13448 2013-06-18 Matthias Meulien <orontee@gmail.com>
13449
13450 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
13451 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
13452
13453 2013-06-18 Glenn Morris <rgm@gnu.org>
13454
13455 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
13456 Replace obsolete function generic-make-keywords with its expansion.
13457
13458 * progmodes/python.el (ffap-alist): Declare.
13459
13460 * textmodes/reftex.el (bibtex-mode-map): Declare.
13461
13462 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13463
13464 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
13465 (package-unpack, package-unpack-single): Return the pkg-dir.
13466 (package-download-transaction): Use it to update package-alist.
13467
13468 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
13469
13470 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
13471 possible choice.
13472
13473 2013-06-17 Juri Linkov <juri@jurta.org>
13474
13475 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
13476
13477 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13478
13479 * emacs-lisp/package.el (package-load-descriptor):
13480 Remove `with-syntax-table' call, `read' doesn't need it.
13481 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
13482
13483 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
13484
13485 * startup.el (command-line): Expand package name returned by
13486 `package--description-file' (bug#14639).
13487
13488 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13489
13490 * emacs-lisp/package.el (package-load-descriptor): Do not call
13491 `emacs-lisp-mode', just use its syntax table.
13492
13493 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
13494
13495 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
13496 `font-lock-extra-managed-props' if any prettifying keyword is added.
13497 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
13498 (prog-mode): Use `setq-local'.
13499
13500 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13501
13502 * international/characters.el (standard-case-table): Set syntax of ?»
13503 and ?« to punctuation.
13504
13505 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
13506
13507 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
13508 Save relevant match data before calling `syntax-ppss' (bug#14595).
13509
13510 2013-06-15 Juri Linkov <juri@jurta.org>
13511
13512 * files-x.el (modify-file-local-variable-prop-line): Add local
13513 variables to the end of the existing comment on the first line.
13514 Use `file-auto-mode-skip' to skip interpreter magic line,
13515 and also skip XML declaration.
13516
13517 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13518
13519 * startup.el (package--builtin-versions): New var.
13520 (package-subdirectory-regexp): Remove.
13521 (package--description-file): Hard code its value instead.
13522
13523 * emacs-lisp/package.el: Don't activate packages older than builtin.
13524 (package-obsolete-list): Rename from package-obsolete-alist, and make
13525 it into a simple list of package-desc.
13526 (package-strip-version): Remove.
13527 (package-built-in-p): Use package--builtin-versions.
13528 (package-mark-obsolete): Simplify.
13529 (package-process-define-package): Mark it obsolete if older than the
13530 builtin version.
13531 (package-handle-response): Use line-end-position.
13532 (package-read-archive-contents, package--download-one-archive):
13533 Simplify.
13534 (package--add-to-archive-contents): Skip if older than the builtin or
13535 installed version.
13536 (package-menu-describe-package): Fix last change.
13537 (package-list-unversioned): New var.
13538 (package-menu--generate): Use it.
13539
13540 * emacs-lisp/autoload.el: Manage package--builtin-versions.
13541 (autoload--insert-text, autoload--insert-cookie-text): New functions.
13542 (autoload-builtin-package-versions): New variable.
13543 (autoload-generate-file-autoloads): Use them.
13544 Remove the list of autoloaded functions/macros from the
13545 (autoload...) comments.
13546
13547 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
13548
13549 2013-06-15 Eli Zaretskii <eliz@gnu.org>
13550
13551 * simple.el (line-move-partial): Don't jump to the next screen
13552 line as soon as it becomes visible. Instead, continue enlarging
13553 the vscroll until the portion of a tall screen line that's left on
13554 display is about the height of the frame's default font.
13555 (Bug#14567)
13556
13557 2013-06-15 Glenn Morris <rgm@gnu.org>
13558
13559 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
13560 compilation-error-regexp-alist void, or local while let-bound.
13561
13562 * progmodes/make-mode.el (makefile-mode-syntax-table):
13563 Treat "=" as punctuation. (Bug#14614)
13564
13565 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
13566
13567 * help-fns.el (describe-variable):
13568 Add extra line for permanent-local variables.
13569
13570 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
13571
13572 * progmodes/scheme.el (scheme-font-lock-keywords-2):
13573 Add export, import, library. (Bug#9164)
13574 (library): Set indent function.
13575
13576 2013-06-14 Glenn Morris <rgm@gnu.org>
13577
13578 * term/xterm.el (xterm--query):
13579 Stop after first matching handler. (Bug#14615)
13580
13581 2013-06-14 Ivan Kanis <ivan@kanis.fr>
13582
13583 Add support for dired in saveplace.
13584 * dired.el (dired-initial-position-hook): New variable.
13585 (dired-initial-position): Call hook to place cursor position.
13586 * saveplace.el (save-place-to-alist): Add dired position.
13587 (save-place-dired-hook): New function.
13588
13589 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
13590
13591 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
13592 through a symbol rather than letrec.
13593
13594 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
13595 (package-desc): Add `dir' field.
13596 (package-desc-full-name): New function.
13597 (package-load-descriptor): Combine the two arguments. Don't use `load'.
13598 (package-maybe-load-descriptor): Remove.
13599 (package-load-all-descriptors): Just call package-load-descriptor.
13600 (package--disabled-p): New function.
13601 (package-desc-vers, package-desc-doc): Remove aliases.
13602 (package--dir): Remove function.
13603 (package-activate): Check if a package is disabled.
13604 (package-process-define-package): New function, extracted from
13605 define-package.
13606 (define-package): Turn into a place holder.
13607 (package-unpack-single, package-tar-file-info):
13608 Use package--description-file.
13609 (package-compute-transaction): Use package--disabled-p.
13610 (package-download-transaction): Don't call
13611 package-maybe-load-descriptor since they're all loaded anyway.
13612 (package-install): Change argument to be a pkg-desc.
13613 (package-delete): Use a single pkg-desc argument.
13614 (describe-package-1): Use package-desc-dir instead of package--dir.
13615 Use package-desc property instead of package-symbol.
13616 (package-install-button-action): Adjust accordingly.
13617 (package--push): Rewrite.
13618 (package-menu--print-info): Adjust accordingly. Change the ID format
13619 to be a pkg-desc.
13620 (package-menu-describe-package, package-menu-get-status)
13621 (package-menu--find-upgrades, package-menu-mark-upgrades)
13622 (package-menu-execute, package-menu--name-predicate):
13623 Adjust accordingly.
13624 * startup.el (package--description-file): New function.
13625 (command-line): Use it.
13626 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13627 Use package-desc-version.
13628
13629 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
13630 (byte-compile-preprocess): Use it.
13631 (byte-compile-file-form-defalias): Try a bit harder to use macros we
13632 can't quite recognize.
13633 (byte-compile-add-to-list): Remove.
13634 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
13635 (cconv-closure-convert): Add assertion.
13636
13637 * emacs-lisp/map-ynp.el: Use lexical-binding.
13638 (map-y-or-n-p): Remove unused vars `tail' and `object'.
13639 Factor out some repeated code.
13640
13641 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13642
13643 * subr.el (with-eval-after-load): New macro.
13644 (eval-after-load): Allow form to be a function.
13645 take advantage of lexical-binding.
13646 (do-after-load-evaluation): Use dolist and adjust to new format.
13647 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
13648
13649 2013-06-13 Juri Linkov <juri@jurta.org>
13650
13651 * replace.el (perform-replace): Display "symbol " and other search
13652 modes from `isearch-message-prefix' in the *Help* buffer.
13653
13654 * isearch.el (isearch-query-replace): Add " symbol" and other
13655 possible search modes from `isearch-message-prefix' to the prompt.
13656 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
13657 when reading a regexp to collect.
13658
13659 2013-06-13 Juri Linkov <juri@jurta.org>
13660
13661 * isearch.el (word-search-regexp): Match whitespace if the search
13662 string begins or ends in whitespace. The LAX arg is applied to
13663 both ends of the search string. Use `regexp-quote' and explicit
13664 \< and \> instead of \b. Use \` and \' instead of ^ and $.
13665 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
13666 boundaries are replaced with symbol boundaries, and characters
13667 between symbols match non-word non-symbol syntax. (Bug#14602)
13668
13669 2013-06-13 Juri Linkov <juri@jurta.org>
13670
13671 * isearch.el (isearch-del-char): Don't exceed the length of
13672 `isearch-string' by the prefix arg. (Bug#14563)
13673
13674 2013-06-13 Juri Linkov <juri@jurta.org>
13675
13676 * isearch.el (isearch-yank-word, isearch-yank-line)
13677 (isearch-char-by-name, isearch-quote-char)
13678 (isearch-printing-char, isearch-process-search-char):
13679 Add optional count prefix arg. (Bug#14563)
13680
13681 * international/isearch-x.el
13682 (isearch-process-search-multibyte-characters):
13683 Add optional count prefix arg.
13684
13685 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13686
13687 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
13688 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
13689 lexical-binding.
13690
13691 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
13692
13693 * subr.el (set-temporary-overlay-map): Add on-exit argument.
13694
13695 2013-06-13 Glenn Morris <rgm@gnu.org>
13696
13697 * startup.el (tty-handle-args):
13698 Don't just discard "--" and anything after. (Bug#14608)
13699
13700 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
13701
13702 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
13703
13704 Implement changes in Secret Service API. Make it backward compatible.
13705 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
13706 (secrets-create-item): Use it. Prefix properties with interface.
13707
13708 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
13709
13710 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
13711 (term-emulate-terminal): Respect term-suppress-hard-newline.
13712
13713 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
13714
13715 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
13716 Only remove a `thumb-file' overlay. (Bug#14548)
13717
13718 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
13719
13720 * mail/reporter.el (reporter-submit-bug-report):
13721 Handle missing package-name. (Bug#14600)
13722
13723 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13724
13725 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
13726 (reftex-citation-prompt, reftex-default-bibliography)
13727 (reftex-bib-or-thebib, reftex-get-bibfile-list)
13728 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
13729 (reftex-bib-sort-author, reftex-bib-sort-year)
13730 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
13731 (reftex-extract-bib-entries-from-thebibliography)
13732 (reftex-get-bibkey-default, reftex-get-bib-names)
13733 (reftex-parse-bibtex-entry, reftex-get-bib-field)
13734 (reftex-format-bib-entry, reftex-parse-bibitem)
13735 (reftex-format-bibitem, reftex-do-citation)
13736 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
13737 (reftex-restrict-bib-matches, reftex-extract-bib-file)
13738 (reftex-insert-bib-matches, reftex-format-citation)
13739 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
13740 (reftex-create-bibtex-file): Add docstrings, mostly by converting
13741 existing comments into docstrings.
13742
13743 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13744
13745 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
13746
13747 2013-06-12 Andreas Schwab <schwab@suse.de>
13748
13749 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
13750 for auto-save files.
13751
13752 2013-06-12 Glenn Morris <rgm@gnu.org>
13753
13754 * ido.el (ido-delete-ignored-files): Remove.
13755 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
13756 Go back to calling ido-ignore-item-p directly.
13757
13758 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
13759
13760 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
13761
13762 * ido.el (ido-delete-ignored-files): New function,
13763 split from ido-make-file-list-1.
13764 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
13765 (ido-make-file-list-1): Use ido-delete-ignored-files.
13766
13767 2013-06-12 Leo Liu <sdl.web@gmail.com>
13768
13769 * progmodes/octave.el (inferior-octave-startup)
13770 (inferior-octave-completion-table)
13771 (inferior-octave-track-window-width-change)
13772 (octave-eldoc-function-signatures, octave-help)
13773 (octave-find-definition): Use single quoted strings.
13774 (inferior-octave-startup-args): Change default value.
13775 (inferior-octave-startup): Do not hard code "-i" and
13776 "--no-line-editing".
13777 (inferior-octave-resync-dirs): Add optional arg NOERROR.
13778 (inferior-octave-directory-tracker): Use it.
13779 (octave-goto-function-definition): Robustify.
13780 (octave-help): Support highlighting operators in 'See also'.
13781 (octave-find-definition): Find subfunctions only in Octave mode.
13782
13783 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13784
13785 * help-fns.el (help-fns--compiler-macro): If the handler function is
13786 named, then put a link to it.
13787 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
13788 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
13789 (cl-typep): Use it.
13790 (cl-eval-when): Simplify debug spec.
13791 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
13792 compiler-macro function instead of setting `compiler-macro-file'.
13793
13794 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13795
13796 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
13797 * vc/vc-hooks.el (vc-stay-local): Doc fix.
13798
13799 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13800 Daniel Hackney <dan@haxney.org>
13801
13802 First part of Daniel Hackney's patch to package.el.
13803 * emacs-lisp/package.el: Use defstruct.
13804 (package-desc): New, main struct.
13805 (package--bi-desc, package--ac-desc): New structs, used to describe the
13806 format in external files.
13807 (package-desc-vers): Replace with package-desc-version accessor.
13808 (package-desc-doc): Replace with package-desc-summary accessor.
13809 (package-activate-1): Remove `package' arg since the pkg-vec now
13810 includes the name.
13811 (define-package): Use package-desc-from-define.
13812 (package-unpack-single): Change file-name arg to be a symbol.
13813 (package--add-to-archive-contents): Use package-desc-create and new
13814 accessor functions to package--ac-desc.
13815 (package-buffer-info, package-tar-file-info): Return a package-desc.
13816 (package-install-from-buffer): Remove `type' argument. Change pkg-info
13817 arg to be a package-desc.
13818 (package-install-file): Adjust accordingly. Use \' to match EOS.
13819 (package--from-builtin): New function.
13820 (describe-package-1, package-menu--generate): Use it.
13821 (package--make-autoloads-and-compile): Change name arg to be a symbol.
13822 (package-generate-autoloads): Idem and return the name of the file.
13823 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13824 Change pkg-info arg to be a package-desc.
13825 Use package-make-ac-desc.
13826 (package-upload-file): Use \' to match EOS.
13827 * finder.el (finder-compile-keywords): Use package-make-builtin.
13828
13829 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13830
13831 * vc/vc.el (vc-deduce-fileset): Change error message.
13832 (vc-read-backend): New function.
13833 (vc-next-action): Use it.
13834
13835 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
13836
13837 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
13838 (prolog-font-lock-keywords): Use regexp-opt instead.
13839 Don't manually highlight strings.
13840 (prolog-mode-variables): Simplify comment-start-skip.
13841 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
13842
13843 * emacs-lisp/generic.el (generic--normalise-comments)
13844 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
13845 (generic-mode-set-comments): Use them.
13846 (generic-bracket-support): Use setq-local.
13847 (generic-make-keywords-list): Declare obsolete.
13848
13849 2013-06-11 Glenn Morris <rgm@gnu.org>
13850
13851 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13852 Prettify after setting font-lock-defaults. (Bug#14574)
13853
13854 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
13855
13856 * replace.el (query-replace, occur-read-regexp-defaults-function)
13857 (replace-search):
13858 * subr.el (declare-function, number-sequence, local-set-key)
13859 (substitute-key-definition, locate-user-emacs-file)
13860 (with-silent-modifications, split-string, eval-after-load):
13861 Fix typos, remove unneeded backslashes and reflow some docstrings.
13862
13863 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13864
13865 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13866 default for Elisp files.
13867
13868 2013-06-11 Glenn Morris <rgm@gnu.org>
13869
13870 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13871 although define-derived-mode was doing this anyway. (Bug#14583)
13872
13873 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
13874
13875 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13876 Fix make-variable-buffer-local call to refer to the correct variable.
13877
13878 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
13879
13880 * eshell/em-term.el (eshell-visual-commands)
13881 (eshell-visual-subcommands, eshell-visual-options):
13882 Add summary line to docstrings. Add cross-references.
13883
13884 2013-06-10 Glenn Morris <rgm@gnu.org>
13885
13886 * epa.el (epa-read-file-name): New function. (Bug#14510)
13887 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13888
13889 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13890
13891 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13892 output redirection to be ignored with visual commands.
13893
13894 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13895
13896 * eshell/em-term.el (eshell-visual-command-p): New function.
13897 (eshell-term-initialize): Move long lambda to separate function
13898 eshell-visual-command-p.
13899 * eshell/em-dirs.el (eshell-dirs-initialize):
13900 * eshell/em-script.el (eshell-script-initialize):
13901 Add missing #' to lambda.
13902
13903 2013-06-08 Leo Liu <sdl.web@gmail.com>
13904
13905 * progmodes/octave.el (octave-add-log-current-defun): New function.
13906 (octave-mode): Set add-log-current-defun-function.
13907 (octave-goto-function-definition): Do not move point if not found.
13908 (octave-find-definition): Enhance to try subfunctions first.
13909
13910 2013-06-08 Glenn Morris <rgm@gnu.org>
13911
13912 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13913 (byte-compile-backward-char, byte-compile-backward-word):
13914 Improve previous change, to handle non-explicit nil.
13915
13916 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13917
13918 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13919 (smie--opener/closer-at-point): New function.
13920 (smie--matching-block-data): Use it. Don't match from right after an
13921 opener or right before a closer. Obey smie-blink-matching-inners.
13922 Don't signal a mismatch for repeated inners like "switch..case..case".
13923
13924 2013-06-07 Leo Liu <sdl.web@gmail.com>
13925
13926 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13927 to t. (Bug#14303)
13928 (octave-function-header-regexp): Fix. (Bug#14570)
13929 (octave-help-mode-finish-hook, octave-help-mode-finish):
13930 Remove. Just use temp-buffer-show-hook.
13931
13932 * newcomment.el (comment-search-backward): Revert last change.
13933 (Bug#14434)
13934
13935 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13936
13937 2013-06-07 Eli Zaretskii <eliz@gnu.org>
13938
13939 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13940 through xargs, to avoid failure due to MS-Windows limitations on
13941 command-line length.
13942
13943 2013-06-06 Glenn Morris <rgm@gnu.org>
13944
13945 * font-lock.el (lisp-font-lock-keywords-2):
13946 Treat user-error like error.
13947
13948 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13949 (byte-compile-backward-char, byte-compile-backward-word):
13950 Handle explicit nil arguments. (Bug#14565)
13951
13952 2013-06-05 Alan Mackenzie <acm@muc.de>
13953
13954 * isearch.el (isearch-allow-prefix): New user option.
13955 (isearch-other-meta-char): Don't exit isearch when a prefix
13956 argument is typed whilst `isearch-allow-prefix' is non-nil.
13957 (Bug#9706)
13958
13959 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13960
13961 * autorevert.el (auto-revert-notify-handler): Use memq.
13962 Hide assertion failure.
13963
13964 * skeleton.el: Use cl-lib.
13965 (skeleton-further-elements): Use defvar-local.
13966 (skeleton-insert): Use cl-progv.
13967
13968 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13969
13970 * progmodes/prog-mode.el (prog-prettify-symbols)
13971 (prog-prettify-install): Update docstrings.
13972
13973 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13974
13975 * simple.el: Move all the prog-mode code to prog-mode.el.
13976 * progmodes/prog-mode.el: New file.
13977 * loadup.el: Add prog-mode.el.
13978
13979 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13980
13981 * simple.el (prog-prettify-symbols): Add version.
13982 (prog-prettify-install): Add convenience function to prettify symbols.
13983
13984 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
13985 (perl--augmented-font-lock-keywords-1)
13986 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
13987 variables and use it.
13988
13989 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13990 (cfengine3-mode): Remove unneeded variable and use it.
13991
13992 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13993 (lisp--augmented-font-lock-keywords-1)
13994 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
13995 Remove unneeded variables and use it.
13996
13997 2013-06-05 João Távora <joaotavora@gmail.com>
13998
13999 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
14000 to point when opening the connection. (Bug#14380)
14001
14002 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14003
14004 * subr.el (load-history-regexp, load-history-filename-element)
14005 (eval-after-load, after-load-functions, do-after-load-evaluation)
14006 (eval-next-after-load, display-delayed-warnings)
14007 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
14008 definition of save-match-data.
14009 (overriding-local-map): Remove accidental obsolescence declaration.
14010
14011 * emacs-lisp/edebug.el (edebug-result): Move before first use.
14012
14013 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
14014
14015 Generalize symbol prettify support to prog-mode and implement it
14016 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
14017 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
14018 (prog--prettify-font-lock-compose-symbol)
14019 (prog-prettify-font-lock-symbols-keywords): New variables and
14020 functions to support symbol prettification.
14021 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
14022 (lisp--augmented-font-lock-keywords-1)
14023 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
14024 (lisp--prettify-symbols-alist): Implement prettify of lambda.
14025 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
14026 (cfengine3--prettify-symbols-alist, cfengine3-mode):
14027 Implement prettify of -> => :: strings.
14028 * progmodes/perl-mode.el (perl-prettify-symbols)
14029 (perl--font-lock-compose-symbol)
14030 (perl--font-lock-symbols-keywords): Move to prog-mode.
14031 (perl--prettify-symbols-alist): Prettify -> => :: strings.
14032 (perl-font-lock-keywords-1)
14033 (perl-font-lock-keywords-2): Remove explicit prettify support.
14034 (perl--augmented-font-lock-keywords)
14035 (perl--augmented-font-lock-keywords-1)
14036 (perl--augmented-font-lock-keywords-2, perl-mode):
14037 Implement prettify support.
14038
14039 2013-06-05 Leo Liu <sdl.web@gmail.com>
14040
14041 Re-implement SMIE matching block highlight using
14042 show-paren-data-function. (Bug#14395)
14043 * emacs-lisp/smie.el (smie-matching-block-highlight)
14044 (smie--highlight-matching-block-overlay)
14045 (smie--highlight-matching-block-lastpos)
14046 (smie-highlight-matching-block)
14047 (smie-highlight-matching-block-mode): Remove.
14048 (smie--matching-block-data-cache): New variable.
14049 (smie--matching-block-data): New function.
14050 (smie-setup): Use smie--matching-block-data for
14051 show-paren-data-function.
14052
14053 * progmodes/octave.el (octave-mode-menu): Fix.
14054 (octave-find-definition): Skip garbage lines.
14055
14056 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14057
14058 Fix compilation error with simultaneous dynamic+lexical scoping.
14059 Add warning when a defvar appears after the first let-binding.
14060 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
14061 (byte-compile-close-variables): Initialize it.
14062 (byte-compile--declare-var): New function.
14063 (byte-compile-file-form-defvar)
14064 (byte-compile-file-form-define-abbrev-table)
14065 (byte-compile-file-form-custom-declare-variable): Use it.
14066 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
14067 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
14068 (byte-compile-bind): Handle dynamic bindings that shadow
14069 lexical bindings.
14070 (byte-compile-unbind): Make arg non-optional.
14071 (byte-compile-let): Simplify.
14072 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
14073 (cconv--analyse-function, cconv-analyse-form): Populate it.
14074 Protect byte-compile-bound-variables to limit the scope of defvars.
14075 (cconv-analyse-form): Add missing rule for (defvar <foo>).
14076 Remove unneeded rule for `declare'.
14077
14078 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
14079 so as to avoid depending on cl-adjoin at run-time.
14080 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
14081
14082 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
14083 (macroexp--warn-and-return): Use it.
14084
14085 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14086
14087 * subr.el: Convert to lexical binding.
14088 (overriding-local-map): Make obsolete.
14089 (add-to-list): Doc fix. Add compiler macro.
14090 (read-key): Swap values of local maps.
14091
14092 2013-06-05 Leo Liu <sdl.web@gmail.com>
14093
14094 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
14095
14096 2013-06-04 Leo Liu <sdl.web@gmail.com>
14097
14098 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
14099 (compilation-auto-jump): Suppress the "Mark set" message to give
14100 way to exit message.
14101
14102 2013-06-04 Alan Mackenzie <acm@muc.de>
14103
14104 Remove faulty optimisation from indentation calculation.
14105 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
14106 search limit based on 2000 characters back from indent-point.
14107
14108 2013-06-03 Tassilo Horn <tsdh@gnu.org>
14109
14110 * eshell/em-term.el (cl-lib): Require `cl-lib'.
14111
14112 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
14113
14114 * emacs-lisp/lisp.el: Use lexical-binding.
14115 (lisp--local-variables-1, lisp--local-variables): New functions.
14116 (lisp--local-variables-completion-table): New var.
14117 (lisp-completion-at-point): Use it complete let-bound vars.
14118
14119 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
14120 eagerly (bug#14422).
14121
14122 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
14123
14124 * autorevert.el (auto-revert-notify-enabled)
14125 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
14126 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
14127 (auto-revert-notify-handler): Handle also gfilenotify.
14128
14129 * subr.el (file-notify-handle-event): New defun. Replacing ...
14130 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
14131 Remove.
14132
14133 2013-06-03 Juri Linkov <juri@jurta.org>
14134
14135 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
14136 `M-s h .'. (Bug#14427)
14137
14138 * hi-lock.el (highlight-symbol-at-point): New alias for the new
14139 command `hi-lock-face-symbol-at-point'.
14140 (hi-lock-face-symbol-at-point): New command.
14141 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
14142 (hi-lock-menu): Add `highlight-symbol-at-point'.
14143 (hi-lock-mode): Doc fix.
14144
14145 * isearch.el (isearch-forward-symbol-at-point): New command.
14146 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
14147 (isearch-highlight-regexp): Add a regexp which matches
14148 words/symbols for word/symbol mode.
14149
14150 * subr.el (find-tag-default-bounds): New function with the body
14151 mostly moved from `find-tag-default'.
14152 (find-tag-default): Move most code to `find-tag-default-bounds',
14153 call it and apply `buffer-substring-no-properties' afterwards.
14154
14155 2013-06-03 Tassilo Horn <tsdh@gnu.org>
14156
14157 * eshell/em-term.el (eshell-term-initialize):
14158 Use `cl-intersection' rather than `intersection'.
14159
14160 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
14161
14162 * vc/log-view.el: Doc fix.
14163 (log-view-mode-map): Copy keymap from `special-mode-map'.
14164
14165 2013-06-02 Eric Ludlam <zappo@gnu.org>
14166
14167 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
14168 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
14169 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
14170 (eieio-unbound, eieio-default-superclass)
14171 (eieio--define-field-accessors, method-static, method-before)
14172 (method-primary, method-after, method-num-lists)
14173 (method-generic-before, method-generic-primary)
14174 (method-generic-after, method-num-slots)
14175 (eieio-specialized-key-to-generic-key)
14176 (eieio--check-type, class-v, class-p)
14177 (eieio-class-name, define-obsolete-function-alias)
14178 (eieio-class-parents-fast, eieio-class-children-fast)
14179 (same-class-fast-p, class-constructor, generic-p)
14180 (generic-primary-only-p, generic-primary-only-one-p)
14181 (class-option-assoc, class-option, eieio-object-p)
14182 (class-abstract-p, class-method-invocation-order)
14183 (eieio-defclass-autoload-map, eieio-defclass-autoload)
14184 (eieio-class-un-autoload, eieio-defclass)
14185 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
14186 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
14187 (eieio--defgeneric-init-form, eieio-defgeneric-form)
14188 (eieio-defgeneric-reset-generic-form)
14189 (eieio-defgeneric-form-primary-only)
14190 (eieio-defgeneric-reset-generic-form-primary-only)
14191 (eieio-defgeneric-form-primary-only-one)
14192 (eieio-defgeneric-reset-generic-form-primary-only-one)
14193 (eieio-unbind-method-implementations)
14194 (eieio--defmethod, eieio--typep)
14195 (eieio-perform-slot-validation, eieio-validate-slot-value)
14196 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
14197 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
14198 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
14199 (eieio-slot-name-index, eieio-class-slot-name-index)
14200 (eieio-set-defaults, eieio-initarg-to-attribute)
14201 (eieio-attribute-to-initarg, eieio-c3-candidate)
14202 (eieio-c3-merge-lists, eieio-class-precedence-c3)
14203 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
14204 (eieio-class-precedence-list, eieio-generic-call-methodname)
14205 (eieio-generic-call-arglst, eieio-generic-call-key)
14206 (eieio-generic-call-next-method-list)
14207 (eieio-pre-method-execution-functions, eieio-generic-call)
14208 (eieio-generic-call-primary-only, eieiomt-method-list)
14209 (eieiomt-optimizing-obarray, eieiomt-install)
14210 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
14211 (eieio-generic-form, eieio-defmethod, make-obsolete)
14212 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
14213 (defclass): Remove `eval-and-compile' from macro.
14214 (call-next-method, shared-initialize): Instead of using
14215 `scoped-class' variable, use new eieio--scoped-class, and
14216 eieio--with-scoped-class.
14217 (initialize-instance): Rename local variable 'scoped-class' to
14218 'this-class' to remove ambiguitity from old global.
14219
14220 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
14221 eieio.el.
14222 (eieio--scoped-class-stack): New variable.
14223 (eieio--scoped-class): New fcn.
14224 (eieio--with-scoped-class): New scoping macro.
14225 (eieio-defclass): Use pushnew instead of add-to-list.
14226 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
14227 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
14228 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
14229 `scoped-class' variable, use new eieio--scoped-class, and
14230 eieio--with-scoped-class.
14231
14232 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
14233
14234 2013-06-02 Tassilo Horn <tsdh@gnu.org>
14235
14236 * eshell/esh-ext.el (eshell-external-command): Pass args to
14237 `eshell-find-interpreter'.
14238 (eshell-find-interpreter): Add new second parameter ARGS.
14239
14240 * eshell/em-script.el (eshell-script-initialize): Add second arg
14241 to the function added as MATCH to `eshell-interpreter-alist'.
14242
14243 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
14244 the function added as MATCH to `eshell-interpreter-alist'.
14245
14246 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
14247 (eshell-visual-options): New defcustom.
14248 (eshell-escape-control-x): Adapt docstring.
14249 (eshell-term-initialize): Test `eshell-visual-subcommands' and
14250 `eshell-visual-options' in addition to `eshell-visual-commands'.
14251 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
14252
14253 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
14254
14255 * progmodes/python.el (python-indent-block-enders): Add break,
14256 continue and raise keywords.
14257
14258 2013-06-01 Glenn Morris <rgm@gnu.org>
14259
14260 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
14261
14262 Plain (f)boundp silences compilation warnings since Emacs 22.1.
14263 * progmodes/cc-cmds.el (delete-forward-p):
14264 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
14265 * progmodes/cc-engine.el (buffer-syntactic-context):
14266 * progmodes/cc-fonts.el (face-property-instance):
14267 * progmodes/cc-mode.el (set-keymap-parents):
14268 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
14269 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
14270 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
14271 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
14272 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
14273
14274 * progmodes/cc-vars.el (other): Emacs has this widget since
14275 at least 21.1, so don't (re)define it.
14276
14277 * eshell/em-cmpl.el (eshell-cmpl-initialize):
14278 Replace the obsolete alias pcomplete-arg-quote-list.
14279
14280 2013-06-01 Leo Liu <sdl.web@gmail.com>
14281
14282 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
14283 punctuation syntax.
14284 (inferior-octave-minimal-columns)
14285 (inferior-octave-last-column-width): New variables.
14286 (inferior-octave-track-window-width-change): New function.
14287 (inferior-octave-mode): Adjust column width so that Octave output,
14288 for example from 'ls', can fit into the window nicely.
14289
14290 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14291
14292 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14293 Highlight expansions inside regexp literals.
14294
14295 2013-05-31 Glenn Morris <rgm@gnu.org>
14296
14297 * obsolete/sym-comp.el (symbol-complete):
14298 Replace obsolete completion-annotate-function.
14299
14300 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
14301
14302 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14303
14304 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14305 New function, checks if point is inside a literal that allows
14306 expression expansion.
14307 (ruby-syntax-propertize-expansion): Use it.
14308 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
14309 around the body.
14310
14311 2013-05-30 Juri Linkov <juri@jurta.org>
14312
14313 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
14314 to "\M-si".
14315 (isearch-invisible): New variable.
14316 (isearch-forward): Doc fix.
14317 (isearch-mode): Set `isearch-invisible'
14318 to the value of `search-invisible'.
14319 (isearch-toggle-case-fold): Doc fix.
14320 (isearch-toggle-invisible): New command.
14321 (isearch-query-replace): Let-bind `search-invisible'
14322 to the value of `isearch-invisible'.
14323 (isearch-search): Use `isearch-invisible' instead of
14324 `search-invisible'. Let-bind `search-invisible'
14325 to the value of `isearch-invisible'. (Bug#11378)
14326
14327 2013-05-30 Juri Linkov <juri@jurta.org>
14328
14329 * replace.el (perform-replace): Avoid `isearch-range-invisible'
14330 call when `query-flag' is nil and `search-invisible' is non-nil.
14331 (Bug#11746)
14332
14333 2013-05-30 Glenn Morris <rgm@gnu.org>
14334
14335 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
14336
14337 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
14338 (cc-require): Suppress spurious "noruntime" warnings.
14339 (cc-require-when-compile): Use fboundp, for sake of compiler.
14340
14341 * progmodes/cc-mode.el: Move load of cc-vars before that of
14342 cc-langs (which in turn loads cc-vars), to quieten compiler.
14343
14344 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14345
14346 * paren.el: Simplify the code.
14347 (show-paren-mode): Always start the timer.
14348 (show-paren--idle-timer): Rename from show-paren-idle-timer.
14349 (show-paren--overlay, show-paren--overlay-1): Rename from
14350 show-paren-overlay and show-paren-overlay-1, and initialize to an
14351 overlay rather than to nil.
14352 (show-paren-function): Misc cleanup and simplifications.
14353
14354 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14355
14356 * paren.el (show-paren-data-function): New hook.
14357 (show-paren--default): New function, extracted from show-paren-function.
14358 (show-paren-function): Use show-paren-data-function.
14359
14360 2013-05-30 Glenn Morris <rgm@gnu.org>
14361
14362 * ielm.el (ielm-map, ielm-complete-symbol):
14363 Use completion-at-point rather than obsolete functions.
14364 (inferior-emacs-lisp-mode): Doc fix.
14365 Set completion-at-point-functions, rather than
14366 comint-dynamic-complete-functions.
14367
14368 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
14369 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
14370 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
14371
14372 * image.el (image-animated-p): Tweak definition.
14373
14374 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
14375 (rlogin-process-connection-type): Tweak default. Add set-after.
14376 (rlogin-host): Doc fix.
14377 (rlogin): Tweak prompt.
14378 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
14379
14380 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
14381 * progmodes/tcl.el (inferior-tcl-mode-map):
14382 Use completion-at-point rather than obsolete alias.
14383
14384 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
14385
14386 * minibuffer.el (read-file-name-completion-ignore-case):
14387 Move before completion--in-region, for eager macro expansion.
14388
14389 2013-05-29 Juri Linkov <juri@jurta.org>
14390
14391 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
14392 for total count of matching lines. Add `global-matches' for total
14393 count of matches. Rename `matches' to `lines' for count of
14394 matching lines. Add `matches' for count of matches.
14395 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
14396 to `prev-line' for line number of prev match endpt.
14397 Increment `matches' for every match. Print the number of
14398 matching lines in the header.
14399 (occur-context-lines): Rename `lines' to `curr-line'.
14400 Rename `prev-lines' to `prev-line'. (Bug#14017)
14401
14402 2013-05-29 Juri Linkov <juri@jurta.org>
14403
14404 * replace.el (perform-replace): Add `skip-read-only-count',
14405 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
14406 Increment them for corresponding conditions and report the number
14407 of skipped occurrences in the final message. (Bug#11746)
14408 (query-replace, query-replace-regexp, query-replace-regexp-eval)
14409 (replace-string, replace-regexp): Doc fix.
14410
14411 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14412
14413 * emacs-lisp/trace.el (trace--read-args): Provide a default.
14414
14415 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
14416 prog-mode-map (bug#14504).
14417
14418 2013-05-29 Leo Liu <sdl.web@gmail.com>
14419
14420 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
14421 (octave-help): Small simplification.
14422
14423 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
14424 off the highlight first.
14425
14426 2013-05-29 Glenn Morris <rgm@gnu.org>
14427
14428 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
14429 Handle idlwave-last-system-routine-info-cons-cell being nil.
14430
14431 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
14432 (idlwave-write-paths): Simplify via with-temp-buffer.
14433
14434 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
14435 * emulation/cua-rect.el: Also load cua-base at run time.
14436
14437 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
14438 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
14439 (cperl-imenu-on-info): Require imenu.
14440
14441 2013-05-28 Alan Mackenzie <acm@muc.de>
14442
14443 Handle "capitalised keywords" correctly.
14444 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
14445
14446 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
14447
14448 * eshell/em-unix.el: Add -r option to cp.
14449
14450 2013-05-28 Glenn Morris <rgm@gnu.org>
14451
14452 * vc/vc-arch.el (vc-exec-after): Declare.
14453 (vc-switches): Autoload.
14454 * vc/vc-bzr.el: No need to require vc when compiling.
14455 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
14456 (vc-resynch-buffer, vc-dir-refresh): Declare.
14457 (vc-setup-buffer, vc-switches): Autoload.
14458 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
14459 (vc-resynch-buffer): Declare.
14460 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
14461 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
14462 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
14463 (grep-read-regexp, grep-read-files, grep-expand-template)
14464 (vc-dir-refresh): Declare.
14465 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
14466 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
14467 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
14468 * vc/vc-mtn.el (vc-exec-after): Declare.
14469 (vc-switches): Autoload.
14470 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
14471 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
14472 (vc-file-tree-walk): Declare.
14473 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
14474 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
14475 (vc-tag-precondition, vc-rename-master): Autoload.
14476 * vc/vc-svn.el (vc-exec-after): Declare.
14477 (vc-switches, vc-setup-buffer): Autoload.
14478 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
14479 Autoload.
14480 (vc-resynch-buffer): Declare.
14481
14482 * obsolete/fast-lock.el (byte-compile-warnings):
14483 Don't warn about obsolete features in this obsolete file.
14484
14485 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
14486 Move definition before use.
14487
14488 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
14489 (dun-unix-verbs): Remove dun-zippy.
14490 (dun-zippy): Remove function.
14491
14492 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
14493
14494 2013-05-27 Juri Linkov <juri@jurta.org>
14495
14496 * replace.el (replace-search): New function with code moved out
14497 from `perform-replace'.
14498 (replace-highlight, replace-dehighlight): Move function definitions
14499 up closer to `replace-search'. (Bug#11746)
14500
14501 2013-05-27 Juri Linkov <juri@jurta.org>
14502
14503 * replace.el (perform-replace): Ignore invisible matches.
14504 In addition to checking `query-replace-skip-read-only', also
14505 filter out matches by calling `run-hook-with-args-until-failure'
14506 on `isearch-filter-predicates', and also check `search-invisible'
14507 for t or call `isearch-range-invisible'.
14508 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
14509
14510 2013-05-27 Juri Linkov <juri@jurta.org>
14511
14512 * isearch.el (isearch-filter-predicates): Rename from
14513 `isearch-filter-predicate'. Doc fix. (Bug#11378)
14514 (isearch-message-prefix): Display text from the property
14515 `isearch-message-prefix' of the currently active filters.
14516 (isearch-search): Don't compare `isearch-filter-predicate' with
14517 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
14518 on `isearch-filter-predicates'. Also check `search-invisible' for t
14519 or call `isearch-range-invisible'.
14520 (isearch-filter-visible): Make obsolete.
14521 (isearch-lazy-highlight-search):
14522 Call `run-hook-with-args-until-failure' on
14523 `isearch-filter-predicates' and use `isearch-range-invisible'.
14524
14525 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
14526 `isearch-filter-predicates' instead of `funcall'ing
14527 `isearch-filter-predicate'.
14528 (Info-mode): Set `Info-isearch-filter' to
14529 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
14530
14531 * dired-aux.el (dired-isearch-filter-predicate-orig):
14532 Remove variable.
14533 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
14534 (dired-isearch-filenames-end): Add and remove
14535 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
14536 instead of changing the value of `isearch-filter-predicate'.
14537 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
14538 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
14539 Put property `isearch-message-prefix' to "filename " on
14540 `dired-isearch-filter-filenames'.
14541
14542 * wdired.el (wdired-change-to-wdired-mode):
14543 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
14544 locally instead of changing `isearch-filter-predicate'.
14545 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
14546
14547 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
14548
14549 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
14550 return the commit hash (Bug#14459). Also set the
14551 `vc-git-detached' property.
14552 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
14553 (vc-git-mode-line-string): Use the same help-echo format whether
14554 in detached mode or not, because we know the actual revision now.
14555 When in detached mode, shorten the revision to 7 chars.
14556
14557 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14558
14559 * emacs-lisp/easy-mmode.el (define-minor-mode):
14560 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
14561 mode hook and provide a docstring.
14562
14563 2013-05-27 Alan Mackenzie <acm@muc.de>
14564
14565 Remove spurious syntax-table text properties inserted by C-y.
14566 * progmodes/cc-mode.el (c-after-change): Also clear hard
14567 syntax-table property with value nil.
14568
14569 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
14570
14571 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
14572 when reading the events; the buffer layout shall not be changed.
14573
14574 2013-05-27 Leo Liu <sdl.web@gmail.com>
14575
14576 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
14577 New variable.
14578 (inferior-octave-directory-tracker): Automatically re-sync
14579 default-directory.
14580 (octave-help): Improve handling of 'See also'.
14581
14582 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14583
14584 * doc-view.el: Minor naming convention tweaks.
14585 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
14586
14587 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
14588 even if there's no `display' property yet (bug#14435).
14589
14590 2013-05-25 Eli Zaretskii <eliz@gnu.org>
14591
14592 * subr.el (unmsys--file-name): Rename from reveal-filename.
14593
14594 * Makefile.in (custom-deps, finder-data, autoloads)
14595 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14596 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14597 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
14598
14599 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14600
14601 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
14602 error-completion on the first 2 args of condition-case (bug#14446).
14603 Don't burp at EOB.
14604
14605 2013-05-25 Leo Liu <sdl.web@gmail.com>
14606
14607 * comint.el (comint-previous-matching-input): Do not flood the
14608 *Messages* buffer with trivial messages.
14609
14610 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14611
14612 * progmodes/flymake.el (flymake-nop): Don't return a string.
14613 (flymake-set-at): Fix typo.
14614
14615 * simple.el (read--expression): New function, extracted from
14616 eval-expression. Set completion-at-point-functions (bug#14465).
14617 (eval-expression, eval-minibuffer): Use it.
14618
14619 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
14620
14621 * progmodes/flymake.el (flymake-save-buffer-in-file)
14622 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
14623 (flymake-selected-frame, flymake-log, flymake-ins-after)
14624 (flymake-set-at, flymake-get-buildfile-from-cache)
14625 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
14626 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
14627 Refine the doc string.
14628 (flymake-get-file-name-mode-and-masks): Reformat.
14629 (flymake-get-real-file-name-function): Fix a minor bug.
14630
14631 2013-05-24 Juri Linkov <juri@jurta.org>
14632
14633 * progmodes/grep.el (grep-mode-font-lock-keywords):
14634 Support =linenumber= format used by git-grep for lines with
14635 function names. (Bug#13549)
14636
14637 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14638
14639 * progmodes/octave.el (octave-smie-rules): Return nil rather than
14640 0 after a semi-colon; it works better for smie-auto-fill.
14641 (octave--indent-new-comment-line): New function.
14642 (octave-indent-new-comment-line): Use it (indirectly).
14643 (octave-mode): Don't disable smie-auto-fill. Use add-function to
14644 modify comment-line-break-function.
14645
14646 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
14647 (smie-setup): Use add-function to set it.
14648
14649 2013-05-24 Sam Steingold <sds@gnu.org>
14650
14651 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
14652 argument (before the `interactive' argument).
14653
14654 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14655
14656 * image-mode.el (image-mode-winprops): Add winprops to
14657 image-mode-winprops-alist before running
14658 image-mode-new-window-functions.
14659 * doc-view.el (doc-view-new-window-function): Don't delay
14660 doc-view-goto-page via timers (bug#14435).
14661
14662 2013-05-24 Tassilo Horn <tsdh@gnu.org>
14663
14664 * doc-view.el: Integrate with desktop.el. (Bug#14435)
14665 (doc-view-desktop-save-buffer): New function.
14666 (doc-view-restore-desktop-buffer): New function.
14667 (desktop-buffer-mode-handlers):
14668 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
14669 handler.
14670 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
14671 `desktop-save-buffer' function.
14672
14673 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
14674
14675 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
14676 (tramp-gvfs-file-name-handler): Raise a user error when
14677 `tramp-gvfs-enabled' is nil.
14678 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
14679 Do not raise a user error when loading package. (Bug#14447)
14680
14681 * net/xesam.el: Move to obsolete/.
14682
14683 2013-05-24 Glenn Morris <rgm@gnu.org>
14684
14685 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
14686
14687 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
14688
14689 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
14690 (Info-find-node, Man-getpage-in-background): Declare.
14691
14692 * mail/unrmail.el (unrmail):
14693 Replace obsolete detect-coding-with-priority.
14694
14695 * net/socks.el (socks-split-string): Use this rather than split-string.
14696 (socks-nslookup-host): Update for above change.
14697 (dynamic-choice, s5-dynamic-choice-match)
14698 (s5-dynamic-choice-match-inline, s5-widget-value-create):
14699 Comment out unused code.
14700
14701 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
14702 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
14703 (gud-tooltip-echo-area): Make obsolete.
14704 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
14705
14706 * progmodes/js.el (js--optimize-arglist): Declare.
14707
14708 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
14709
14710 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
14711 (ediff-window-C): Declare.
14712
14713 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
14714 Tweak requires to silence compiler.
14715
14716 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
14717 (he-search-string, he-tried-table, he-expand-list)
14718 (he-init-string, he-string-member, he-substitute-string)
14719 (he-reset-string): Declare.
14720
14721 * obsolete/options.el (list-options): Use custom-variable-p,
14722 rather than obsolete alias.
14723
14724 2013-05-23 Sam Steingold <sds@gnu.org>
14725
14726 * simple.el (shell-command-on-region): Pass the `replace' argument
14727 down to `call-process-region' to comply with the doc as reported on
14728 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
14729
14730 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14731
14732 * emacs-lisp/smie.el (smie-indent-forward-token)
14733 (smie-indent-backward-token): Handle string tokens (bug#14381).
14734
14735 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14736
14737 * ielm.el (ielm-menu): New menu.
14738 (inferior-emacs-lisp-mode): Set comment-start.
14739
14740 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14741
14742 * textmodes/reftex.el (reftex-ref-style-toggle):
14743 Fix deactivate action.
14744
14745 * textmodes/reftex-vars.el (reftex-ref-style-alist):
14746 Add cleveref macros.
14747
14748 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
14749 Accept options for bibliography commands.
14750 * textmodes/reftex-vars.el (reftex-bibliography-commands):
14751 Add addbibresource. Basic Biblatex support.
14752
14753 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
14754
14755 * net/tramp-gvfs.el (top):
14756 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
14757 when loading package. (Bug#14447)
14758
14759 2013-05-23 Glenn Morris <rgm@gnu.org>
14760
14761 * progmodes/js.el: No need to load comint when compiling.
14762 (ring-insert, comint-send-string, comint-send-input)
14763 (comint-last-input-end, ido-chop): Declare.
14764
14765 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
14766 * vc/ediff-mult.el: Adjust requires.
14767 (ediff-directories-internal, ediff-directory-revisions-internal)
14768 (ediff-patch-file-internal): Declare.
14769 * vc/ediff-ptch.el: Adjust requires.
14770 (ediff-use-last-dir, ediff-buffers-internal): Declare.
14771 (ediff-find-file): Autoload.
14772 * vc/ediff-util.el: No need to load ediff when compiling.
14773 (ediff-regions-internal): Declare.
14774 * vc/ediff-wind.el: Adjust requires.
14775 (ediff-compute-toolbar-width): Define when compiling.
14776 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
14777 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
14778 (dired-get-filename, dired-get-marked-files)
14779 (ediff-last-dir-patch, ediff-patch-default-directory)
14780 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
14781 (ediff-patch-buffer-internal): Declare.
14782
14783 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
14784 (ispell-process, ispell-buffer-local-words, lm-summary)
14785 (lm-section-start, lm-section-end): Declare.
14786 (checkdoc-ispell-init): Simplify.
14787
14788 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
14789 (he-string-member, he-reset-string, he-substitute-string): Declare.
14790
14791 * eshell/em-ls.el: Adjust requires.
14792 (eshell-glob-regexp): Declare.
14793 * eshell/em-tramp.el: Adjust requires.
14794 (eshell-parse-command): Autoload.
14795 * eshell/em-xtra.el: Adjust requires.
14796 (eshell-parse-command): Autoload.
14797 * eshell/esh-ext.el: Adjust requires.
14798 (eshell-parse-command, eshell-close-handles): Autoload.
14799 * eshell/esh-io.el: Adjust requires.
14800 (eshell-output-filter): Autoload.
14801 * eshell/esh-util.el: No need to load tramp when compiling.
14802 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
14803 Declare.
14804 (eshell-parse-ange-ls): Require ange-ftp and tramp.
14805 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
14806 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
14807 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
14808 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
14809 * eshell/esh-opt.el, eshell/esh-proc.el:
14810 * eshell/esh-var.el: Adjust requires.
14811 * eshell/eshell.el: Do not require esh-util twice.
14812 (eshell-add-input-to-history): Declare.
14813 (eshell-command): Check history module is active before using it.
14814
14815 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
14816
14817 2013-05-22 Leo Liu <sdl.web@gmail.com>
14818
14819 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
14820
14821 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
14822
14823 * autorevert.el (auto-revert-notify-add-watch)
14824 (auto-revert-notify-handler): Add `attrib' for the inotify case,
14825 it indicates changes in file modification time.
14826
14827 2013-05-22 Glenn Morris <rgm@gnu.org>
14828
14829 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14830 Always delete the autoloaded function from the noruntime and
14831 unresolved functions lists.
14832
14833 * allout.el: No need to load epa, epg, overlay when compiling.
14834 (epg-context-set-passphrase-callback, epg-list-keys)
14835 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
14836 (epg-key-user-id-list): Declare.
14837
14838 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14839 (viper-set-parsing-style-toggling-macro)
14840 (viper-set-emacs-state-searchstyle-macros):
14841 Use called-interactively-p on Emacs.
14842 (viper-looking-back): Make it an obsolete alias. Update callers.
14843 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
14844 Use looking-back rather than viper-looking-back.
14845 (viper-tmp-insert-at-eob, viper-enlarge-region)
14846 (viper-read-string-with-history, viper-register-to-point)
14847 (viper-append-to-register, viper-change-state-to-vi)
14848 (viper-backward-char-carefully, viper-forward-char-carefully)
14849 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
14850 (viper-change-state-to-emacs): Declare.
14851 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
14852 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14853 * emulation/viper-mous.el: Do not load viper-cmd.
14854 (viper-backward-char-carefully, viper-forward-char-carefully)
14855 (viper-forward-word, viper-adjust-window): Declare.
14856
14857 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14858
14859 * progmodes/idlw-help.el (idlwave-help-fontify):
14860 Use called-interactively-p.
14861
14862 * term/w32console.el (w32-get-console-codepage)
14863 (w32-get-console-output-codepage): Declare.
14864
14865 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14866 Remove unnecessary declarations.
14867 (dframe-message): Doc fix.
14868
14869 * info.el (dframe-select-attached-frame, dframe-current-frame):
14870 Declare.
14871
14872 * speedbar.el (speedbar-message): Make it an obsolete alias.
14873 Update all callers.
14874 (speedbar-with-attached-buffer)
14875 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14876 (speedbar-with-writable): Use backquote.
14877 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14878 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14879 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14880 rather than speedbar- aliases.
14881 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14882 (speedbar-make-specialized-keymap, speedbar-insert-button)
14883 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14884 (speedbar-do-function-pointer): Declare.
14885 (rmail-speedbar-button, rmail-speedbar-find-file)
14886 (rmail-speedbar-move-message):
14887 Use dframe-with-attached-buffer rather than speedbar- alias.
14888 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14889 (dframe-message, speedbar-make-specialized-keymap)
14890 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14891 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14892 (speedbar-insert-button, dframe-select-attached-frame)
14893 (dframe-maybee-jump-to-attached-frame)
14894 (speedbar-change-initial-expansion-list)
14895 (speedbar-previously-used-expansion-list-name): Declare.
14896 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14897 Use dframe-message, dframe-with-attached-buffer rather than
14898 speedbar- aliases.
14899 (gud-sentinel): Silence compiler.
14900 * progmodes/vhdl-mode.el (speedbar-refresh)
14901 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14902 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14903 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14904 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14905 (speedbar-file-lists, speedbar-make-tag-line)
14906 (speedbar-line-directory, speedbar-goto-this-file)
14907 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14908 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14909 (speedbar-make-button, speedbar-reset-scanners)
14910 (speedbar-files-item-info, speedbar-line-text)
14911 (speedbar-find-file-in-frame, speedbar-set-timer)
14912 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14913 (speedbar-with-writable): Do not (re)define it.
14914 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14915 rather than speedbar- alias.
14916
14917 2013-05-21 Leo Liu <sdl.web@gmail.com>
14918
14919 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14920 menu items.
14921 (octave-mode): Tweak fill-nobreak-predicate.
14922 (inferior-octave-startup): Check process to avoid infinite loop.
14923 (inferior-octave): Pop to buffer first to show abornmal process
14924 exit information.
14925
14926 2013-05-21 Glenn Morris <rgm@gnu.org>
14927
14928 * printing.el (pr-menu-bar): Define when compiling.
14929
14930 2013-05-21 Leo Liu <sdl.web@gmail.com>
14931
14932 * progmodes/octave.el (octave-auto-fill): Remove.
14933 (octave-indent-new-comment-line): Improve.
14934 (octave-mode): Use auto fill mode through
14935 comment-line-break-function and fill-nobreak-predicate.
14936 (octave-goto-function-definition): Support DEFUN_DLD.
14937 (octave-beginning-of-defun): Small tweak.
14938 (octave-help): Show parent directory.
14939
14940 2013-05-21 Glenn Morris <rgm@gnu.org>
14941
14942 * files.el (dired-unmark):
14943 * progmodes/gud.el (gdb-input): Update declarations.
14944
14945 * calculator.el (electric, ehelp): No need to load when compiling.
14946 (Electric-command-loop, electric-describe-mode): Declare.
14947
14948 * doc-view.el (doc-view-current-converter-processes): Move before use.
14949
14950 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14951 Move MODE-set-explicitly definition before use.
14952
14953 * international/mule-diag.el (mule-diag):
14954 Don't use obsolete window-system-version.
14955
14956 * mail/feedmail.el (smtpmail): No need to load when compiling.
14957 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14958
14959 * mail/mail-utils.el (rfc822): No need to load when compiling.
14960 (rfc822-addresses): Autoload it.
14961 (mail-strip-quoted-names): Trivial simplification.
14962
14963 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14964 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14965
14966 * net/snmp-mode.el (tempo): Don't duplicate requires.
14967
14968 * progmodes/prolog.el (info): No need to load when compiling.
14969 (comint): Require before shell requires it.
14970 (Info-goto-node): Autoload it.
14971 (Info-follow-nearest-node): Declare.
14972 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
14973
14974 * textmodes/artist.el (picture-mode-exit): Declare.
14975
14976 * textmodes/reftex-parse.el (reftex-parse-from-file):
14977 Trivial rewrite so the compiler can parse it better.
14978
14979 2013-05-20 Leo Liu <sdl.web@gmail.com>
14980
14981 * progmodes/octave.el (octave-help-mode-map)
14982 (octave-help-mode-finish-hook): New variables.
14983 (octave-help-mode, octave-help-mode-finish): New functions.
14984 (octave-help): Use octave-help-mode.
14985
14986 2013-05-20 Glenn Morris <rgm@gnu.org>
14987
14988 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
14989
14990 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
14991
14992 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
14993 start at point, so that expansion starting right after opening
14994 slash in a regexp is recognized.
14995 (ruby-syntax-before-regexp-re): New defvar, extracted from
14996 ruby-syntax-propertize-function. Since the value of this regexp
14997 is looked up at runtime now, we should be able to turn
14998 `ruby-syntax-methods-before-regexp' into a defcustom later.
14999 (ruby-syntax-propertize-function): Split regexp matching into two
15000 parts, for opening and closing slashes. That allows us to skip
15001 over string interpolations and support multiline regexps.
15002 Don't call `ruby-syntax-propertize-expansions', instead use another rule
15003 for them, which calls `ruby-syntax-propertize-expansion'.
15004 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
15005 call to `ruby-syntax-propertize-function'.
15006 (ruby-syntax-propertize-expansion): Extracted from
15007 `ruby-syntax-propertize-expansions'. Handles one expansion.
15008 (ruby-syntax-propertize-percent-literal): Leave point right after
15009 the percent symbol, so that the expression expansion rule can
15010 propertize the contents.
15011 (ruby-syntax-propertize-heredoc): Leave point at bol following the
15012 heredoc openers.
15013 (ruby-syntax-propertize-expansions): Remove.
15014
15015 2013-05-18 Juri Linkov <juri@jurta.org>
15016
15017 * man.el (Man-default-man-entry): Remove `-' from the end
15018 of the default value. (Bug#14400)
15019
15020 2013-05-18 Glenn Morris <rgm@gnu.org>
15021
15022 * comint.el (comint-password-prompt-regexp):
15023 Allow "password for XXX" where XXX contains colons (eg https://...).
15024
15025 2013-05-18 Leo Liu <sdl.web@gmail.com>
15026
15027 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
15028 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
15029 (octave-source-directories): Don't check process.
15030 (octave-source-directories, octave-find-definition): Doc fix.
15031
15032 2013-05-18 Glenn Morris <rgm@gnu.org>
15033
15034 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
15035 Remove backspace/delete bindings. (Bug#14392)
15036
15037 * cus-dep.el (custom-make-dependencies): Sort the output.
15038 (custom-versions-load-alist): Convert comment to doc.
15039
15040 2013-05-17 Leo Liu <sdl.web@gmail.com>
15041
15042 * newcomment.el (comment-search-backward): Stricter in finding
15043 comment start. (Bug#14303)
15044
15045 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
15046 (octave-comment-start-skip): Properly anchored.
15047
15048 2013-05-17 Leo Liu <sdl.web@gmail.com>
15049
15050 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
15051 Clean up when turned off. (Bug#14395)
15052 (smie--highlight-matching-block-overlay): No longer buffer-local.
15053 (smie-highlight-matching-block): Adjust.
15054
15055 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
15056
15057 Doc string fix for "nanoseconds" (Bug#14406).
15058 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
15059 Fix doc string typo that had "nanoseconds" instead of "microseconds".
15060
15061 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
15062
15063 * calc/calc-units.el (math-extract-units): Preserve powers
15064 of units.
15065
15066 2013-05-17 Leo Liu <sdl.web@gmail.com>
15067
15068 * subr.el (delete-consecutive-dups): New function.
15069 * ido.el (ido-set-matches-1): Use it.
15070 * progmodes/octave.el (inferior-octave-completion-table): Use it.
15071 * ido.el (ido-remove-consecutive-dups): Remove.
15072
15073 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
15074
15075 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
15076 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
15077 regexp-opt's `words'.
15078
15079 2013-05-16 Leo Liu <sdl.web@gmail.com>
15080
15081 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
15082 (smie--highlight-matching-block-overlay)
15083 (smie--highlight-matching-block-lastpos)
15084 (smie--highlight-matching-block-timer): New variables.
15085 (smie-highlight-matching-block): New function.
15086 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
15087 (smie-setup): Conditionally enable smie-blink-matching-open.
15088
15089 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
15090
15091 Sync with upstream verilog-mode r840.
15092 * progmodes/verilog-mode.el (verilog-mode-version)
15093 (verilog-mode-release-date): Update.
15094 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
15095 (verilog-sig-tieoff): Fix string error on
15096 AUTORESET with colon define, bug594. Reported by Andrew Hou.
15097 (verilog-read-decls): Fix parameters confusing
15098 AUTOINST interfaces, bug565. Reported by Leith Johnson.
15099
15100 2013-05-16 Eli Zaretskii <eliz@gnu.org>
15101
15102 * subr.el (reveal-filename): New function.
15103
15104 * loadup.el: Compute Emacs executable versions on MS-Windows,
15105 where executables have the .exe extension. Add a hard link
15106 emacs-XX.YY.ZZ.exe on MS-Windows.
15107
15108 * Makefile.in (XARGS_LIMIT): New variable.
15109 (custom-deps, finder-data, autoloads)
15110 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15111 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15112 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
15113 (compile-main): Limit xargs according to $(XARGS_LIMIT).
15114
15115 2013-05-16 Leo Liu <sdl.web@gmail.com>
15116
15117 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
15118 (octave-mode-menu, octave-mode-map): Remove its uses.
15119
15120 2013-05-16 Reto Zimmermann <reto@gnu.org>
15121
15122 Sync with upstream vhdl mode v3.34.2.
15123 * progmodes/vhdl-mode.el: Use `push' throughout.
15124 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
15125 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
15126 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
15127 (vhdl-actual-generic-name): New option to derive actual generic name.
15128 (vhdl-port-paste-signals): Replace formal by actual generics.
15129 (vhdl-beautify): New name for old group vhdl-align. Update users.
15130 (vhdl-beautify-options): New option.
15131 (vhdl-last-input-event): New compat alias. Use throughout.
15132 (vhdl-goto-line): Replace user level function `goto-line'.
15133 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
15134 vhdl-fix-statement-buffer.
15135 (vhdl-create-mode-menu): Add some entries.
15136 (vhdl-align-region-groups): Respect vhdl-beautify-options.
15137 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
15138 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
15139 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
15140 to force statements on one line.
15141 (vhdl-remove-trailing-spaces-region):
15142 New, split from vhdl-remove-trailing-spaces.
15143 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
15144 Respect vhdl-beautify-options.
15145 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
15146 (vhdl-update-sensitivity-list): Not add with index if exists without.
15147 Not include array index with signal. Ignore keywords in comments.
15148 (vhdl-get-visible-signals): Regexp tweaks.
15149 (vhdl-template-component-inst): Handle empty library.
15150 (vhdl-template-type): Add template for 'enum' type.
15151 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
15152 Use vhdl-replace-string.
15153 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
15154 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
15155 (vhdl-speedbar-initialize): Update for above name change.
15156 (vhdl-compose-wire-components): Fix in handling of constants.
15157 (vhdl-error-regexp-emacs-alist): New variable.
15158 (vhdl-error-regexp-add-emacs): New function;
15159 adds support for new compile.el (Emacs 22+)
15160 (vhdl-generate-makefile-1): Change target order for single lib. units.
15161 Allow use of absolute file names.
15162
15163 2013-05-16 Leo Liu <sdl.web@gmail.com>
15164
15165 * simple.el (prog-indent-sexp): Indent enclosing defun.
15166
15167 2013-05-15 Glenn Morris <rgm@gnu.org>
15168
15169 * cus-start.el (show-trailing-whitespace): Move to editing basics.
15170 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
15171 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
15172 (whitespace-highlight): Move to whitespace group.
15173
15174 * comint.el (comint-source):
15175 * pcmpl-linux.el (pcmpl-linux):
15176 * shell.el (shell-faces):
15177 * eshell/esh-opt.el (eshell-opt):
15178 * international/ccl.el (ccl): Remove empty custom groups.
15179
15180 * completion.el (dynamic-completion-mode):
15181 * jit-lock.el (jit-lock-debug-mode):
15182 * minibuffer.el (completion-in-region-mode):
15183 * type-break.el (type-break-mode-line-message-mode)
15184 (type-break-query-mode):
15185 * emulation/tpu-edt.el (tpu-edt-mode):
15186 * progmodes/subword.el (global-subword-mode, global-superword-mode):
15187 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
15188 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
15189
15190 * term/xterm.el (xterm): Change parent group to terminals.
15191
15192 * master.el (master): Remove empty custom group.
15193 (master-mode): Remove unused :group argument.
15194 * textmodes/refill.el (refill): Remove empty custom group.
15195 (refill-mode): Remove unused :group argument.
15196
15197 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
15198
15199 * cus-dep.el: Provide a feature.
15200 (custom-make-dependencies): Ignore dotfiles (dir-locals).
15201 Don't mistakenly ignore files whose basenames match a basename
15202 from preloaded-file-list (eg cedet/ede/simple.el).
15203 Add a fallback method for getting :group.
15204
15205 2013-05-15 Juri Linkov <juri@jurta.org>
15206
15207 * isearch.el (isearch-char-by-name): Rename from
15208 `isearch-insert-char-by-name'. Doc fix.
15209 (isearch-forward): Mention `isearch-char-by-name' in
15210 the docstring. (Bug#13348)
15211
15212 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
15213 `exit-minibuffer' instead of
15214 `isearch-nonincremental-exit-minibuffer'.
15215 (isearch-edit-string): Remove mention of
15216 `isearch-nonincremental-exit-minibuffer' from docstring.
15217 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
15218 (isearch-forward-exit-minibuffer)
15219 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
15220
15221 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15222
15223 * loadup.el: Just use unversioned DOC.
15224
15225 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
15226 literals as extending to EOB.
15227 (nxml-last-fontify-end): Remove unused variable.
15228 (nxml-after-change1): Use with-silent-modifications.
15229 (nxml-extend-after-change-region): Simplify.
15230 (nxml-extend-after-change-region1): Remove function.
15231 (nxml-after-change1): Don't adjust for dependent regions.
15232 (nxml-fontify-matcher): Simplify.
15233 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
15234 (xmltok-add-dependent): Remove function.
15235 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
15236 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
15237 (xmltok-scan-prolog-after-processing-instruction-open): Treat
15238 unclosed <[[, <?, comment, and other literals as extending to EOB.
15239 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
15240 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
15241 Remove functions.
15242 (rng-do-some-validation-1): Don't mark dependent regions.
15243 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
15244 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
15245 (nxml-clear-dependent-regions): Remove functions.
15246 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
15247 (nxml-ensure-scan-up-to-date):
15248 Don't clear&mark dependent regions.
15249
15250 2013-05-15 Leo Liu <sdl.web@gmail.com>
15251
15252 * progmodes/octave.el (octave-goto-function-definition):
15253 Improve and fix callers.
15254
15255 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15256
15257 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
15258 the setter (bug#14387).
15259
15260 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
15261 surrounding group (bug#14402).
15262
15263 2013-05-14 Juri Linkov <juri@jurta.org>
15264
15265 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
15266 (Bug#14390)
15267
15268 2013-05-14 Glenn Morris <rgm@gnu.org>
15269
15270 * progmodes/f90.el (f90-imenu-generic-expression):
15271 Fix typo in 2013-05-08 change. (Bug#14402)
15272
15273 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15274
15275 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
15276 Remove signals for which replies are never received.
15277
15278 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15279
15280 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
15281 (gdb-handler-alist, gdb-handler-number): Remove variables.
15282 (gdb-handler-list): New variable.
15283 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
15284 (gdb-pending-handler-p, gdb-handle-reply)
15285 (gdb-remove-all-pending-triggers): New functions.
15286 (gdb-discard-unordered-replies): New defcustom.
15287 (gdb-handler): New defstruct.
15288 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
15289 instead of gdb-pending-triggers. Update docstring.
15290 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
15291 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
15292 (gdb-var-update-handler, def-gdb-auto-update-trigger)
15293 (def-gdb-auto-update-handler, gdb-get-changed-registers)
15294 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
15295 (gdb-frame-handler): Pending triggers are now automatically managed.
15296 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
15297 Remove argument.
15298 (gdb-input): Automatically handles pending triggers. Update docstring.
15299 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
15300 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
15301 Update comments.
15302 (gdb-done-or-error): Now use gdb-handle-reply.
15303
15304 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15305
15306 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
15307 gdb-debug-log.
15308
15309 2013-05-14 Glenn Morris <rgm@gnu.org>
15310
15311 * subr.el (user-emacs-directory-warning): New option.
15312 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
15313
15314 2013-05-14 Leo Liu <sdl.web@gmail.com>
15315
15316 * progmodes/octave.el (octave-font-lock-keywords): Fix error
15317 during redisplay.
15318 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
15319 (octave-font-lock-texinfo-comment): Fix invalid search bound
15320 error: wrong side of point.
15321
15322 2013-05-14 Glenn Morris <rgm@gnu.org>
15323
15324 * progmodes/flymake.el (flymake-xml-program): New option.
15325 (flymake-xml-init): Use it.
15326
15327 * term/xterm.el: Provide a feature.
15328
15329 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
15330
15331 2013-05-13 Glenn Morris <rgm@gnu.org>
15332
15333 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
15334 Add compat aliases as a hack workaround. (Bug#14384)
15335
15336 2013-05-13 Leo Liu <sdl.web@gmail.com>
15337
15338 * progmodes/octave.el (octave-indent-comment): Fix indentation for
15339 ###, and %!.
15340 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
15341 C-M-q.
15342 (octave-comment-start-skip): Include %!.
15343 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
15344
15345 2013-05-12 Leo Liu <sdl.web@gmail.com>
15346
15347 * progmodes/octave.el (inferior-octave-startup): Store the value
15348 of __octave_srcdir__ for octave-source-directories.
15349 (inferior-octave-check-process): New function refactored out of
15350 inferior-octave-send-list-and-digest.
15351 (octave-source-directories)
15352 (octave-find-definition-filename-function): New variables.
15353 (octave-source-directories)
15354 (octave-find-definition-default-filename): New functions.
15355 (octave-find-definition): Improve to find functions implemented in C++.
15356
15357 2013-05-12 Glenn Morris <rgm@gnu.org>
15358
15359 * calendar/diary-lib.el (diary-outlook-format-1):
15360 Don't include dayname in the output. (Bug#14349)
15361
15362 2013-05-11 Glenn Morris <rgm@gnu.org>
15363
15364 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
15365
15366 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
15367 Treat cc-provide like provide.
15368
15369 2013-05-11 Kevin Ryde <user42@zip.com.au>
15370
15371 * cus-dep.el (custom-make-dependencies):
15372 Use generated-autoload-load-name for the sake of files such
15373 such cedet/semantic/bovine/c.el, where the base file name
15374 is not in load-path. (Bug#5277)
15375
15376 2013-05-11 Glenn Morris <rgm@gnu.org>
15377
15378 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
15379 Provide features.
15380
15381 2013-05-11 Leo Liu <sdl.web@gmail.com>
15382
15383 * progmodes/octave.el (octave-indent-comment): Improve.
15384 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
15385 (octave-eldoc-function-signatures, octave-eldoc-function):
15386 New functions.
15387 (octave-mode, inferior-octave-mode): Add eldoc support.
15388
15389 2013-05-11 Richard Stallman <rms@gnu.org>
15390
15391 * epa.el (epa-decrypt-file): Take output file name as argument
15392 and read it using `interactive'.
15393
15394 2013-05-11 Leo Liu <sdl.web@gmail.com>
15395
15396 * progmodes/octave.el (octave-beginning-of-line)
15397 (octave-end-of-line): Check before using up-list because it jumps
15398 out of more syntactic contructs since moving to smie.
15399 (octave-indent-comment): New function.
15400 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
15401 (octave-begin-keywords, octave-end-keywords)
15402 (octave-reserved-words, octave-smie-bnf-table)
15403 (octave-smie-rules): Add new keywords from Octave 3.6.4.
15404
15405 2013-05-11 Glenn Morris <rgm@gnu.org>
15406
15407 * faces.el (internal-face-x-get-resource):
15408 * frame.el (ns-display-monitor-attributes-list):
15409 * calc/calc-aent.el (math-to-radians-2):
15410 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
15411 Fix declarations.
15412
15413 * calc/calc-menu.el: Make it loadable in isolation.
15414
15415 * net/eudcb-bbdb.el: Make it loadable without bbdb.
15416 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
15417 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
15418 (eudc-bbdb-query-internal): Require 'bbdb.
15419
15420 * lpr.el (lpr-headers-switches):
15421 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
15422
15423 * progmodes/sql.el (sql-login-params): Fix and improve :type.
15424
15425 * emulation/edt-mapper.el: In batch mode, error rather than hang.
15426
15427 * term.el (term-set-escape-char): Make it idempotent.
15428
15429 2013-05-10 Leo Liu <sdl.web@gmail.com>
15430
15431 * progmodes/octave.el (inferior-octave-completion-table):
15432 No longer a function and all uses changed. Use cache to speed up
15433 completion due to bug#11906.
15434 (octave-beginning-of-defun): Re-write to be more general.
15435
15436 2013-05-10 Glenn Morris <rgm@gnu.org>
15437
15438 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
15439
15440 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15441
15442 * comint.el (comint-redirect-send-command-to-process): Use :around
15443 rather than :override for comint-redirect-filter.
15444 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
15445 Call it instead of comint-redirect-original-filter-function (which
15446 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
15447
15448 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
15449
15450 * frame.el (display-monitor-attributes-list): Add NS case.
15451 (ns-display-monitor-attributes-list): Declare.
15452
15453 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
15454
15455 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
15456
15457 2013-05-09 Glenn Morris <rgm@gnu.org>
15458
15459 * international/fontset.el (vertical-centering-font-regexp):
15460 Set standard-value.
15461
15462 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
15463
15464 * bookmark.el (bookmark-search-delay):
15465 * cus-start.el (vertical-centering-font-regexp):
15466 * ps-mule.el (ps-mule-font-info-database-default):
15467 * ps-print.el (ps-default-fg, ps-default-bg):
15468 * type-break.el (type-break-good-break-interval):
15469 * whitespace.el (whitespace-indentation-regexp)
15470 (whitespace-space-after-tab-regexp):
15471 * emacs-lisp/testcover.el (testcover-1value-functions)
15472 (testcover-noreturn-functions, testcover-progn-functions)
15473 (testcover-prog1-functions):
15474 * emulation/viper-init.el (viper-emacs-state-cursor-color):
15475 * eshell/em-glob.el (eshell-glob-translate-alist):
15476 * play/tetris.el (tetris-tty-colors):
15477 * progmodes/cpp.el (cpp-face-default-list):
15478 * progmodes/flymake.el (flymake-allowed-file-name-masks):
15479 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
15480 (idlwave-help-browser-generic-args):
15481 * progmodes/make-mode.el (makefile-special-targets-list):
15482 * progmodes/python.el (python-shell-virtualenv-path):
15483 * progmodes/verilog-mode.el (verilog-active-low-regexp)
15484 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
15485 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
15486 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
15487 * textmodes/reftex-vars.el (reftex-format-label-function):
15488 * textmodes/remember.el (remember-diary-file): Fix custom types.
15489
15490 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
15491 Add :version.
15492
15493 2013-05-09 Leo Liu <sdl.web@gmail.com>
15494
15495 * progmodes/octave.el (inferior-octave-completion-at-point):
15496 Restore file completion. (Bug#14300)
15497 (inferior-octave-startup): Fix incorrect highlighting for the
15498 first prompt.
15499
15500 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15501
15502 * progmodes/ruby-mode.el: First cut at SMIE support.
15503 (ruby-use-smie): New var.
15504 (ruby-smie-grammar): New constant.
15505 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
15506 (ruby-smie--forward-token, ruby-smie--backward-token)
15507 (ruby-smie-rules): New functions.
15508 (ruby-mode-variables): Setup SMIE if applicable.
15509
15510 2013-05-08 Eli Zaretskii <eliz@gnu.org>
15511
15512 * simple.el (line-move-visual): Signal beginning/end of buffer
15513 only if vertical-motion moved less than it was requested. Avoids
15514 silly incorrect error messages when there are display strings with
15515 multiple newlines at EOL.
15516
15517 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15518
15519 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
15520 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
15521 (prolog-char-quote-workaround):
15522 * progmodes/cperl-mode.el (cperl-under-as-char):
15523 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
15524 Mark as obsolete.
15525 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
15526 their declaration.
15527 (vhdl-mode-syntax-table-init): Remove.
15528
15529 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
15530 last change.
15531
15532 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
15533 syntax for "_".
15534 (ld-script-font-lock-keywords):
15535 Change regexps to use things like \_< and \_>.
15536
15537 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
15538 Change all regexps to use things like \_< and \_>.
15539
15540 * progmodes/autoconf.el (autoconf-definition-regexp)
15541 (autoconf-font-lock-keywords, autoconf-current-defun-function):
15542 Handle a _ with symbol syntax.
15543 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
15544
15545 * progmodes/ada-mode.el (ada-mode-abbrev-table):
15546 Consolidate declaration.
15547 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
15548 the declaration.
15549 (ada-create-syntax-table): Remove.
15550 (ada-capitalize-word): Don't mess with the syntax of "_" since it
15551 already has the right syntax nowadays.
15552 (ada-goto-next-word): Don't change the syntax of "_".
15553
15554 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
15555 with-wrapper-hook.
15556
15557 2013-05-08 Sam Steingold <sds@gnu.org>
15558
15559 * thingatpt.el (thing-at-point): Accept optional second argument
15560 NO-PROPERTIES to strip the text properties from the return value.
15561 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
15562 to `thing-at-point' instead of stripping the properties ourselves.
15563 Also, when `thing-at-point' fails to find a url, prepend "http://"
15564 to the filename at point on the assumption that the user is
15565 pointing at something like gnu.org/gnu.
15566
15567 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
15568
15569 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15570 * faces.el (crm-separator):
15571 Silence byte-compiler.
15572
15573 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
15574 (tool-bar-map): Remove unneeded defvars.
15575
15576 2013-05-08 Leo Liu <sdl.web@gmail.com>
15577
15578 Re-work a fix for bug#10994 based on Le Wang's patch.
15579 * ido.el (ido-remove-consecutive-dups): New helper.
15580 (ido-completing-read): Use it.
15581 (ido-chop): Revert fix for bug#10994.
15582
15583 2013-05-08 Adam Spiers <emacs@adamspiers.org>
15584
15585 * cus-edit.el (custom-save-variables):
15586 Pretty-print long values. (Bug#14187)
15587
15588 2013-05-08 Glenn Morris <rgm@gnu.org>
15589
15590 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
15591 (m4-mode-syntax-table): Init in the defvar.
15592 (m4-mode-abbrev-table): Let define-derived-mode define it.
15593
15594 2013-05-08 Tom Tromey <tromey@redhat.com>
15595
15596 * progmodes/m4-mode.el (m4-mode-syntax-table):
15597 Do not treat "_" as word constituent. (Bug#14167)
15598
15599 2013-05-07 Glenn Morris <rgm@gnu.org>
15600
15601 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
15602 Remove explicit eshell-isearch-cancel-map.
15603
15604 * progmodes/f90.el (f90-smart-end-names): New option.
15605 (f90-smart-end): Doc fix.
15606 (f90-end-block-optional-name): New constant.
15607 (f90-block-match): Respect f90-smart-end-names.
15608
15609 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15610
15611 * progmodes/octave.el (octave-smie-forward-token): Be more careful
15612 about implicit semi-colons (bug#14218).
15613
15614 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15615
15616 * frame.el (display-monitor-attributes-list)
15617 (frame-monitor-attributes): New functions.
15618
15619 2013-05-06 Leo Liu <sdl.web@gmail.com>
15620
15621 * progmodes/octave.el (octave-syntax-propertize-function): Change
15622 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
15623 (octave-font-lock-keywords): Use octave-operator-regexp.
15624 (octave-completion-at-point): Rename from
15625 octave-completion-at-point-function.
15626 (inferior-octave-directory-tracker): Robustify.
15627 (octave-text-functions): Remove and fix its uses. No such things
15628 any more.
15629
15630 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15631
15632 * emacs-lisp/trace.el (trace--display-buffer): New function.
15633 (trace-make-advice): Use it.
15634
15635 2013-05-06 Juri Linkov <juri@jurta.org>
15636
15637 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
15638 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
15639 Doc fix.
15640 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
15641 in the help string. (Bug#12985)
15642
15643 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
15644
15645 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
15646
15647 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15648
15649 * progmodes/perl-mode.el: Add support for here documents.
15650 (perl-syntax-propertize-function): Match here-doc markers.
15651 (perl-syntax-propertize-special-constructs): Find their end.
15652 (perl-imenu-generic-expression): Use [:alnum:].
15653
15654 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
15655 (advice--add-function): Refresh the advice if already present
15656 (bug#14317).
15657
15658 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
15659
15660 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
15661
15662 2013-05-06 Glenn Morris <rgm@gnu.org>
15663
15664 * w32-fns.el (w32-charset-info-alist): Declare.
15665
15666 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
15667 of its defcustom properties.
15668 (eshell-cmpl-initialize): No need to load pcomplete.
15669
15670 * generic-x.el: No need to require comint when compiling.
15671
15672 * net/eudc-export.el: Make it loadable without bbdb.
15673 (top-level): Use require rather than load-library.
15674 (eudc-create-bbdb-record, eudc-bbdbify-phone)
15675 (eudc-batch-export-records-to-bbdb)
15676 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
15677 Require bbdb.
15678
15679 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15680
15681 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
15682 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
15683 some tweaks, instead.
15684
15685 2013-05-05 Leo Liu <sdl.web@gmail.com>
15686
15687 * progmodes/octave.el (octave-font-lock-keywords)
15688 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
15689 (inferior-octave-send-list-and-digest): Improve error message.
15690 (octave-mode, inferior-octave-mode): Use setq-local.
15691 (octave-help): Set info-lookup-mode.
15692
15693 2013-05-05 Richard Stallman <rms@gnu.org>
15694
15695 * vc/compare-w.el (compare-windows-whitespace):
15696 Treat no-break space as whitespace.
15697
15698 * mail/rmailsum.el (rmail-summary-rmail-update):
15699 Detect empty summary and don't change selected message.
15700 (rmail-summary-goto-msg): Likewise.
15701
15702 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
15703 Doc fixes, rename args.
15704
15705 2013-05-05 Alan Mackenzie <acm@muc.de>
15706
15707 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
15708
15709 2013-05-05 Juri Linkov <juri@jurta.org>
15710
15711 * info.el (Info-read-subfile): Use (point-min) instead of (point)
15712 to not add the length of the summary segment to the return value.
15713 (Bug#14125)
15714
15715 2013-05-05 Leo Liu <sdl.web@gmail.com>
15716
15717 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
15718 (inferior-octave-output-filter): Remove.
15719 (octave-send-region, inferior-octave-startup): Fix callers.
15720 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
15721 (octave-binary-file-extensions): New user variable.
15722 (octave-find-definition): Confirm if opening binary files.
15723 (octave-help-file): Use octave-find-definition to get the binary
15724 confirmation.
15725 (octave-help): Adjust for octave-help-file change.
15726
15727 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15728
15729 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
15730 Merge the two entries that handle function definitions.
15731 (pascal--syntax-propertize): New const.
15732 (pascal-mode): Use it. Use setq-local.
15733
15734 2013-05-04 Glenn Morris <rgm@gnu.org>
15735
15736 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
15737 (diary-from-outlook): Respect diary-from-outlook-function.
15738
15739 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15740
15741 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
15742 Move the declaration from C.
15743 (read-minibuffer, eval-minibuffer): Move from C.
15744 (completion-setup-function): Avoid minibuffer-completion-contents.
15745
15746 2013-05-03 Leo Liu <sdl.web@gmail.com>
15747
15748 * progmodes/octave.el (octave-font-lock-keywords): Do not
15749 dehighlight 'end' in comments or strings.
15750 (octave-completing-read, octave-goto-function-definition):
15751 New helpers.
15752 (octave-help-buffer): New user variable.
15753 (octave-help-file, octave-help-function): New button types.
15754 (octave-help): New command and bind it to C-h ;.
15755 (octave-find-definition): New command and bind it to M-.
15756 (user-error): Alias to error if not defined.
15757
15758 2013-05-02 Leo Liu <sdl.web@gmail.com>
15759
15760 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
15761 for \. (bug#14332)
15762 (octave-font-lock-keywords): Include [ and {.
15763
15764 2013-05-02 Leo Liu <sdl.web@gmail.com>
15765
15766 * progmodes/octave.el (inferior-octave-startup-file): Change default.
15767 (inferior-octave): Remove calling comint-mode and return the buffer.
15768 (inferior-octave-startup): Cosmetic changes.
15769
15770 2013-05-02 Leo Liu <sdl.web@gmail.com>
15771
15772 * progmodes/octave.el (octave-syntax-propertize-function):
15773 Include the case when ' is at line beginning. (Bug#14336)
15774
15775 2013-05-02 Glenn Morris <rgm@gnu.org>
15776
15777 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
15778 * desktop.el (vc-dir-mode): Just autoload it here.
15779
15780 2013-05-02 Alan Mackenzie <acm@muc.de>
15781
15782 Eliminate variable c-standard-font-lock-fontify-region-function.
15783 * progmodes/cc-mode.el
15784 (c-standard-font-lock-fontify-region-function): Remove.
15785 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
15786
15787 2013-05-01 Leo Liu <sdl.web@gmail.com>
15788
15789 * progmodes/octave.el: Compatible with older emacs-24 releases.
15790 (inferior-octave-has-built-in-variables): Remove. Built-in
15791 variables were removed from Octave in 2007.
15792 (inferior-octave-startup): Fix uses.
15793 (comint-line-beginning-position): Remove compatibility code for
15794 emacs 21.
15795
15796 2013-05-01 Juri Linkov <juri@jurta.org>
15797
15798 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
15799
15800 2013-05-01 Juri Linkov <juri@jurta.org>
15801
15802 * comint.el (comint-previous-matching-input): Don't print message
15803 "History item: %d" when `isearch-mode' is active.
15804 (comint-history-isearch-message): Print message "History item: %d"
15805 when `comint-input-ring-index' is not empty and this function is
15806 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
15807
15808 2013-05-01 Leo Liu <sdl.web@gmail.com>
15809
15810 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
15811 definitions. Use completion-at-point to insert keywords.
15812 (octave-abbrev-start): Remove.
15813 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
15814
15815 2013-04-30 Leo Liu <sdl.web@gmail.com>
15816
15817 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
15818 change.
15819
15820 2013-04-30 Alan Mackenzie <acm@muc.de>
15821
15822 Handle arbitrarily long C++ member initialisation lists.
15823 * progmodes/cc-engine.el (c-back-over-member-initializers):
15824 new function.
15825 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
15826 (most) member init lists.
15827
15828 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15829
15830 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
15831 variable.
15832
15833 2013-04-30 Leo Liu <sdl.web@gmail.com>
15834
15835 * progmodes/octave.el (octave-variables): Remove. No builtin
15836 variables any more. All converted to functions.
15837 (octave-font-lock-keywords, octave-completion-at-point-function):
15838 Fix uses.
15839 (octave-font-lock-texinfo-comment): New user variable.
15840 (octave-texinfo-font-lock-keywords): New variable for texinfo
15841 comment block.
15842 (octave-function-comment-block): New face.
15843 (octave-font-lock-texinfo-comment): New function.
15844 (octave-mode): Font lock texinfo comment block.
15845
15846 2013-04-29 Leo Liu <sdl.web@gmail.com>
15847
15848 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
15849 indexing expression.
15850 (octave-continuation-string): Do not use \.
15851 (inferior-octave-complete-impossible): Remove.
15852 (inferior-octave-completion-table)
15853 (inferior-octave-completion-at-point): Remove its uses.
15854 (inferior-octave-startup): completion_matches was introduced to
15855 Octave in 1996 so safe to assume it.
15856 (octave-function-file-comment): Improve to follow how Octave does it.
15857 (octave-update-function-file-comment): Tweak.
15858
15859 2013-04-29 Leo Liu <sdl.web@gmail.com>
15860
15861 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15862 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15863 (octave-function-file-comment): Fix typo.
15864 (octave-sync-function-file-names): Use read-char-choice.
15865
15866 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15867
15868 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15869 to t for the less important warnings.
15870
15871 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15872
15873 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15874
15875 2013-04-27 Glenn Morris <rgm@gnu.org>
15876
15877 * vc/log-view.el (log-view-current-entry):
15878 Treat "---" separator lines as part of the following rev. (Bug#14169)
15879
15880 2013-04-27 Juri Linkov <juri@jurta.org>
15881
15882 * subr.el (read-number): Doc fix about using it by interactive
15883 code letter `n'. (Bug#14254)
15884
15885 2013-04-27 Juri Linkov <juri@jurta.org>
15886
15887 * desktop.el (desktop-auto-save-timeout): New option.
15888 (desktop-file-checksum): New variable.
15889 (desktop-save): Add optional arg `auto-save' and don't auto-save
15890 if nothing changed.
15891 (desktop-auto-save-timer): New variable.
15892 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15893 (after-init-hook): Call `desktop-auto-save-set-timer'.
15894 Suggested by Reuben Thomas <rrt@sc3d.org> in
15895 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15896
15897 2013-04-27 Leo Liu <sdl.web@gmail.com>
15898
15899 * progmodes/octave.el (octave-function-file-p)
15900 (octave-skip-comment-forward, octave-function-file-comment)
15901 (octave-update-function-file-comment): New functions.
15902 (octave-mode-map): Bind C-c ; to
15903 octave-update-function-file-comment.
15904 (octave-mode-menu): Add octave-update-function-file-comment.
15905 (octave-mode, inferior-octave-mode): Fix doc-string.
15906 (octave-insert-defun): Conform to Octave's coding convention.
15907 (Bug#14285)
15908
15909 * files.el (basic-save-buffer): Don't let errors in
15910 before-save-hook prevent saving buffer.
15911
15912 2013-04-20 Roland Winkler <winkler@gnu.org>
15913
15914 * faces.el (read-face-name): Use completing-read if arg multiple
15915 is nil.
15916
15917 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15918
15919 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15920 displayed, move point to after the totals line.
15921 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15922 for the details.
15923
15924 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15925
15926 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15927 Add current dir to the load-path.
15928 (package-generate-autoloads): Don't rely on
15929 autoload-ensure-default-file.
15930
15931 2013-04-26 Reuben Thomas <rrt@sc3d.org>
15932
15933 * textmodes/remember.el (remember-store-in-files): Document that
15934 the file name format is passed to `format-time-string'.
15935
15936 2013-04-26 Leo Liu <sdl.web@gmail.com>
15937
15938 * progmodes/octave.el (octave-sync-function-file-names): New function.
15939 (octave-mode): Use it in before-save-hook.
15940
15941 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15942
15943 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15944 (bug#14274).
15945
15946 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15947 \n and comment, even if it's not an implicit ; (bug#14218).
15948
15949 2013-04-26 Glenn Morris <rgm@gnu.org>
15950
15951 * subr.el (read-number): Once more use `read' rather than
15952 `string-to-number', to trap non-numeric input. (Bug#14254)
15953
15954 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15955
15956 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15957 Use `syntax-multiline' text property consistently instead of
15958 `font-lock-multiline'. (Bug#14237)
15959
15960 2013-04-26 Glenn Morris <rgm@gnu.org>
15961
15962 * emacs-lisp/shadow.el (list-load-path-shadows):
15963 No longer necessary to check for duplicate simple.el, since
15964 2012-07-07 change to init_lread to not include installation lisp
15965 directories in load-path when running uninstalled. (Bug#14270)
15966
15967 2013-04-26 Leo Liu <sdl.web@gmail.com>
15968
15969 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
15970 (octave-mode, inferior-octave-mode): Use setq-local.
15971 (octave-not-in-string-or-comment-p): Rename to
15972 octave-in-string-or-comment-p.
15973 (octave-in-comment-p, octave-in-string-p)
15974 (octave-in-string-or-comment-p): Replace defsubst with defun.
15975
15976 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
15977
15978 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
15979
15980 2013-04-25 Bastien Guerry <bzg@gnu.org>
15981
15982 * textmodes/remember.el (remember-data-directory)
15983 (remember-directory-file-name-format): Fix custom types.
15984
15985 2013-04-25 Leo Liu <sdl.web@gmail.com>
15986
15987 * progmodes/octave.el (octave-completion-at-point-function):
15988 Make use of inferior octave process.
15989 (octave-initialize-completions): Remove.
15990 (inferior-octave-completion-table): New function.
15991 (inferior-octave-completion-at-point): Use it.
15992 (octave-completion-alist): Remove.
15993
15994 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15995
15996 * progmodes/opascal.el: Use font-lock and syntax-propertize.
15997 (opascal-mode-syntax-table): New var.
15998 (opascal-literal-kind, opascal-is-literal-end)
15999 (opascal-literal-token-at): Rewrite.
16000 (opascal--literal-start-re, opascal-font-lock-keywords)
16001 (opascal--syntax-propertize): New constants.
16002 (opascal-font-lock-defaults): Adjust.
16003 (opascal-mode): Use them. Set comment-<foo> variables as well.
16004 (delphi-comment-face, opascal-comment-face, delphi-string-face)
16005 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
16006 (delphi-other-face, opascal-other-face): Remove face variables.
16007 (opascal-save-state): Remove macro.
16008 (opascal-fontifying-progress-step): Remove constant.
16009 (opascal--ignore-changes): Remove var.
16010 (opascal-set-token-property, opascal-parse-next-literal)
16011 (opascal-is-stable-literal, opascal-complete-literal)
16012 (opascal-is-literal-start, opascal-face-of)
16013 (opascal-parse-region, opascal-parse-region-until-stable)
16014 (opascal-fontify-region, opascal-after-change)
16015 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
16016 (opascal-debug-parse-region, opascal-debug-parse-window)
16017 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
16018 (opascal-debug-fontify-buffer): Remove.
16019 (opascal-debug-mode-map): Adjust accordingly.
16020
16021 2013-04-25 Leo Liu <sdl.web@gmail.com>
16022
16023 Merge octave-mod.el and octave-inf.el into octave.el with some
16024 cleanups.
16025 * progmodes/octave.el: New file renamed from octave-mod.el.
16026 * progmodes/octave-inf.el: Merged into octave.el.
16027 * progmodes/octave-mod.el: Renamed to octave.el.
16028
16029 2013-04-25 Tassilo Horn <tsdh@gnu.org>
16030
16031 * textmodes/reftex-vars.el
16032 (reftex-label-ignored-macros-and-environments): New defcustom.
16033
16034 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
16035
16036 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16037
16038 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
16039 (smie-indent-keyword): Improve the check to ensure that the next
16040 comment is really on the same line.
16041 (smie-indent-comment): Don't align with a subsequent closer (or eob).
16042
16043 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
16044 semi-colons if the line is not otherwise empty (bug#14218).
16045
16046 2013-04-25 Glenn Morris <rgm@gnu.org>
16047
16048 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
16049
16050 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
16051
16052 * progmodes/opascal.el (opascal-set-token-property): Rename from
16053 opascal-set-text-properties and only set `token' (bug#14134).
16054 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
16055 (opascal-literal-text-properties): Remove.
16056 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
16057 Adjust callers.
16058
16059 2013-04-24 Reuben Thomas <rrt@sc3d.org>
16060
16061 * textmodes/remember.el (remember-handler-functions): Add an
16062 option for a new handler `remember-store-in-files'.
16063 (remember-data-directory, remember-directory-file-name-format):
16064 New options.
16065 (remember-store-in-files): New function to store remember notes
16066 as separate files within a directory.
16067
16068 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
16069
16070 * progmodes/compile.el (compilation-next-error-function):
16071 Pass "formats" to compilation-find-file (bug#11777).
16072
16073 2013-04-24 Glenn Morris <rgm@gnu.org>
16074
16075 * vc/vc-bzr.el (vc-bzr-print-log):
16076 * vc/vc-hg.el (vc-hg-print-log):
16077 * vc/vc-svn.el (vc-svn-print-log):
16078 Fix START-REVISION with LIMIT != 1. (Bug#14168)
16079
16080 * vc/vc-bzr.el (vc-bzr-print-log):
16081 * vc/vc-cvs.el (vc-cvs-print-log):
16082 * vc/vc-git.el (vc-git-print-log):
16083 * vc/vc-hg.el (vc-hg-print-log):
16084 * vc/vc-mtn.el (vc-mtn-print-log):
16085 * vc/vc-rcs.el (vc-rcs-print-log):
16086 * vc/vc-sccs.el (vc-sccs-print-log):
16087 * vc/vc-svn.el (vc-svn-print-log):
16088 * vc/vc.el (vc-print-log-internal): Doc fixes.
16089
16090 2013-04-23 Glenn Morris <rgm@gnu.org>
16091
16092 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
16093 Remove venerable code attempting to avoid substitute-command-keys.
16094
16095 2013-04-23 Tassilo Horn <tsdh@gnu.org>
16096
16097 * textmodes/reftex-vars.el (reftex-label-regexps):
16098 Call `reftex-compile-variables' after changes to this variable.
16099
16100 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
16101
16102 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
16103 Use lexical-binding.
16104 (jit-lock-force-redisplay): Use markers, check buffer's continued
16105 existence and beware narrowed buffers.
16106 (jit-lock-fontify-now): Adjust call accordingly.
16107
16108 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
16109
16110 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
16111 to avoid misleading the user.
16112
16113 2013-04-22 Leo Liu <sdl.web@gmail.com>
16114
16115 * info-look.el: Prefer latex2e.info. (Bug#14240)
16116
16117 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
16118
16119 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
16120
16121 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
16122 * net/tramp.el (tramp-call-process): ... here.
16123 (tramp-set-completion-function, tramp-parse-putty):
16124 * net/tramp-adb.el (tramp-adb-execute-adb-command):
16125 * net/tramp-gvfs.el (tramp-gvfs-send-command):
16126 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
16127 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
16128 (tramp-call-local-coding-command): Use `tramp-call-process'
16129 instead of `tramp-compat-call-process'.
16130
16131 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
16132 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
16133 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
16134 (tramp-find-inline-compress): Improve traces.
16135 (tramp-maybe-send-script): Check for Perl binary.
16136 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
16137
16138 2013-04-22 Daiki Ueno <ueno@gnu.org>
16139
16140 * epg.el (epg-context-pinentry-mode): New function.
16141 (epg-context-set-pinentry-mode): New function.
16142 (epg--start): Pass --pinentry-mode option to gpg command.
16143
16144 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
16145
16146 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
16147 `comint-dynamic-complete' is obsolete since 24.1, replaced by
16148 `completion-at-point'. (Bug#13774)
16149
16150 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
16151 default key binding for `describe-distribution' has been moved to
16152 `C-h C-o'. (Bug#13970)
16153
16154 2013-04-21 Glenn Morris <rgm@gnu.org>
16155
16156 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
16157 Add doc strings.
16158 (vc-print-log): Clarify interactive prompt.
16159
16160 2013-04-20 Glenn Morris <rgm@gnu.org>
16161
16162 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
16163 No longer include timestamp etc information.
16164
16165 2013-04-20 Roland Winkler <winkler@gnu.org>
16166
16167 * faces.el (read-face-name): Bug fix, return just one face if arg
16168 multiple is nil. (Bug#14209)
16169
16170 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16171
16172 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
16173 (remove-function): Autoload.
16174
16175 * comint.el (comint-redirect-original-filter-function): Remove.
16176 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
16177 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
16178 (vc-cvs-annotate-command):
16179 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
16180 * progmodes/prolog.el (prolog-consult-compile):
16181 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
16182 Use add/remove-function instead.
16183 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
16184 (gud-tooltip-process-output, gud-tooltip-tips):
16185 Use add/remove-function instead.
16186 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
16187 (scheme-interaction-mode, exit-scheme-interaction-mode):
16188 Use add/remove-function instead.
16189
16190 * vc/vc-dispatcher.el: Use lexical-binding.
16191 (vc--process-sentinel): Rename from vc-process-sentinel.
16192 Change last arg to be the code to run. Don't use vc-previous-sentinel
16193 and vc-sentinel-commands any more.
16194 (vc-exec-after): Allow code to be a function. Use add/remove-function.
16195 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
16196
16197 2013-04-19 Masatake YAMATO <yamato@redhat.com>
16198
16199 * progmodes/sh-script.el (sh-imenu-generic-expression):
16200 Handle function names with a single character. (Bug#14111)
16201
16202 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
16203
16204 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
16205 for subroutines defined in an eval (bug#14182).
16206
16207 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16208
16209 * bookmark.el (bookmark-completing-read): Improve handling of empty
16210 string (bug#14176).
16211
16212 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16213
16214 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
16215
16216 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
16217
16218 New faster Imenu implementation (bug#14058).
16219 * progmodes/python.el (python-imenu-prev-index-position)
16220 (python-imenu-format-item-label-function)
16221 (python-imenu-format-parent-item-label-function)
16222 (python-imenu-format-parent-item-jump-label-function):
16223 New vars.
16224 (python-imenu-format-item-label)
16225 (python-imenu-format-parent-item-label)
16226 (python-imenu-format-parent-item-jump-label)
16227 (python-imenu--put-parent, python-imenu--build-tree)
16228 (python-imenu-create-index, python-imenu-create-flat-index)
16229 (python-util-popn): New functions.
16230 (python-mode): Set imenu-create-index-function to
16231 python-imenu-create-index.
16232
16233 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16234
16235 * winner.el (winner-active-region): Use region-active-p, activate-mark
16236 and deactivate-mark (bug#14225).
16237
16238 * simple.el (deactivate-mark): Don't inline it.
16239
16240 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
16241
16242 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
16243
16244 2013-04-18 Tassilo Horn <tsdh@gnu.org>
16245
16246 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
16247 file extensions from the archive-mode entry in order to prefer
16248 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
16249
16250 2013-04-18 Leo Liu <sdl.web@gmail.com>
16251
16252 * bindings.el (help-event-list): Add ?\?.
16253
16254 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16255
16256 * subr.el (with-wrapper-hook): Declare obsolete.
16257 * simple.el (filter-buffer-substring-function): New hook.
16258 (filter-buffer-substring): Use it.
16259 (filter-buffer-substring-functions): Mark obsolete.
16260 * minibuffer.el (completion-in-region-function): New hook.
16261 (completion-in-region): Use it.
16262 (completion-in-region-functions): Mark obsolete.
16263 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
16264 * abbrev.el (abbrev-expand-function): New hook.
16265 (expand-abbrev): Use it.
16266 (abbrev-expand-functions): Mark obsolete.
16267 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
16268 and :filter-return.
16269
16270 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16271
16272 * progmodes/python.el (python-nav--syntactically): Fix cornercases
16273 and do not care about match data.
16274
16275 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16276
16277 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
16278 completion tables when completing error conditions and
16279 `declare' arguments.
16280 (lisp-complete-symbol, field-complete): Mark as obsolete.
16281 (check-parens): Unmatched parens are user errors.
16282 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
16283
16284 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
16285
16286 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
16287 command changed buffer (ie. `flyspell-pre-buffer' is not current
16288 buffer), which prevents making decisions based on invalid value of
16289 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
16290 cause an error when `flyspell-pre-point' was nil after switching
16291 buffers.
16292 (flyspell-post-command-hook): No longer needs to change buffers when
16293 checking pre-word. While at it remove unnecessary progn.
16294
16295 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
16296
16297 * textmodes/ispell.el (ispell-add-per-file-word-list):
16298 Fix `flyspell-correct-word-before-point' error when accepting
16299 words and `coment-padding' is an integer by using
16300 `comment-normalize-vars' (Bug #14214).
16301
16302 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16303
16304 New defun movement commands.
16305 * progmodes/python.el (python-nav--syntactically)
16306 (python-nav--forward-defun, python-nav-backward-defun)
16307 (python-nav-forward-defun): New functions.
16308
16309 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16310
16311 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
16312 (python-syntax-context): Use named compiler-macro for backwards
16313 compatibility with Emacs 24.x.
16314
16315 2013-04-17 Leo Liu <sdl.web@gmail.com>
16316
16317 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
16318 octave-hide-process-buffer.
16319
16320 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16321
16322 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
16323 (bug#14216).
16324
16325 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
16326
16327 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
16328 Fix adjustment of offset when receiving incomplete responses from GDB
16329 (bug#14129).
16330
16331 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16332
16333 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
16334 python-mode-abbrev-table.
16335 (python-skeleton-define): Adjust accordingly.
16336 (python-mode-abbrev-table): New table that inherits from it so that
16337 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
16338
16339 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
16340 (abbrev-symbol): Use it.
16341 (abbrev--before-point): Use it since we already handle inheritance.
16342
16343 2013-04-16 Leo Liu <sdl.web@gmail.com>
16344
16345 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
16346 binding to info-lookup-symbol.
16347
16348 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
16349
16350 * minibuffer.el (completion--twq-all):
16351 * term/ns-win.el (ns-initialize-window-system):
16352 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
16353
16354 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16355
16356 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
16357 global bindings.
16358
16359 * doc-view.el (doc-view-start-process): Handle url-handler directories.
16360
16361 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
16362
16363 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
16364 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
16365 to nil.
16366 (ruby-end-of-defun): Remove the unused arg, change the docstring
16367 to reflect that this function is only used as the value of
16368 `end-of-defun-function'.
16369 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
16370 to reflect an earlier change that beginning/end-of-defun functions
16371 jump between methods in a class definition, as well as top-level
16372 functions.
16373
16374 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16375
16376 * minibuffer.el (minibuffer-complete): Don't just scroll
16377 a *Completions* that's been iconified.
16378 (minibuffer-force-complete): Make sure repetitions do cycle when going
16379 through completion-in-region -> minibuffer-complete.
16380
16381 2013-04-15 Alan Mackenzie <acm@muc.de>
16382
16383 Correct the placement of c-cpp-delimiters when there're #s not at
16384 col 0.
16385
16386 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
16387 place a submatch around the #.
16388 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
16389 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
16390 on the #, not BOL.
16391
16392 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16393
16394 * emacs-lisp/nadvice.el: Properly test names when adding advice.
16395 (advice--member-p): New arg `name'.
16396 (advice--add-function, advice-member-p): Use it (bug#14202).
16397
16398 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
16399
16400 Reformulate java imenu-generic-expression.
16401 The old expression contained ill formed regexps.
16402
16403 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
16404 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
16405 (cc-imenu-java-method-arg-regexp): New defconsts.
16406 (cc-imenu-java-build-type-args-regex): New defun.
16407 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
16408 handling of spaces in the regexp.
16409
16410 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16411
16412 * textmodes/ispell.el (ispell-command-loop): Remove
16413 flyspell highlight of a word when ispell accepts it (bug #14178).
16414
16415 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
16416
16417 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
16418 uses code from the previous `ange-ftp-run-real-handler'.
16419 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
16420 only in case that function exist. This is needed for proper
16421 unloading of Tramp.
16422
16423 2013-04-15 Tassilo Horn <tsdh@gnu.org>
16424
16425 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
16426
16427 * textmodes/reftex.el (reftex-compile-variables): Use it.
16428
16429 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16430
16431 * files.el (normal-mode): Only use default major-mode if no other mode
16432 was specified.
16433
16434 * emacs-lisp/trace.el (trace-values): New function.
16435
16436 * files.el: Allow : in local variables (bug#14089).
16437 (hack-local-variable-regexp): New var.
16438 (hack-local-variables-prop-line, hack-local-variables): Use it.
16439
16440 2013-04-13 Roland Winkler <winkler@gnu.org>
16441
16442 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
16443 data before it gets modified by bibtex-beginning-of-entry.
16444
16445 2013-04-13 Roland Winkler <winkler@gnu.org>
16446
16447 * textmodes/bibtex.el (bibtex-url): Doc fix.
16448
16449 2013-04-13 Roland Winkler <winkler@gnu.org>
16450
16451 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
16452 does not visit a BibTeX file, exclude it from the list of buffers
16453 returned by bibtex-initialize.
16454
16455 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
16456
16457 * window.el (split-window): Remove interactive form, since as a
16458 command this function is a special case of split-window-below.
16459 Correct doc string.
16460
16461 2013-04-12 Roland Winkler <winkler@gnu.org>
16462
16463 * faces.el (read-face-name): Do not override value of arg default.
16464 Allow single faces and strings as default values. Remove those
16465 elements from return value that are not faces.
16466 (describe-face): Simplify.
16467 (face-at-point): New optional args thing and multiple so that this
16468 function can provide the same functionality previously provided by
16469 read-face-name.
16470 (make-face-bold, make-face-unbold, make-face-italic)
16471 (make-face-unitalic, make-face-bold-italic, invert-face)
16472 (modify-face, read-face-and-attribute): Use face-at-point.
16473
16474 * cus-edit.el (customize-face, customize-face-other-window)
16475 * cus-theme.el (custom-theme-add-face)
16476 * face-remap.el (buffer-face-set)
16477 * facemenu.el (facemenu-set-face): Use face-at-point.
16478
16479 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
16480
16481 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
16482
16483 2013-04-10 Tassilo Horn <tsdh@gnu.org>
16484
16485 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
16486 off leading { and trailing } from field values.
16487
16488 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16489
16490 * emacs-lisp/timer.el (timer--check): New function.
16491 (timer--time, timer-set-function, timer-event-handler): Use it.
16492 (timer-set-idle-time): Simplify.
16493 (timer--activate): CSE.
16494 (timer-event-handler): Give more info in error message.
16495 (internal-timer-start-idle): New function, moved from C.
16496
16497 * mpc.el (mpc-proc): Add `restart' argument.
16498 (mpc-proc-cmd): Use it.
16499 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
16500 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
16501 less often.
16502
16503 2013-04-10 Masatake YAMATO <yamato@redhat.com>
16504
16505 * progmodes/sh-script.el: Implement `sh-mode' own
16506 `add-log-current-defun-function' (bug#14112).
16507 (sh-current-defun-name): New function.
16508 (sh-mode): Use the function.
16509
16510 2013-04-09 Bastien Guerry <bzg@gnu.org>
16511
16512 * simple.el (choose-completion-string): Fix docstring (bug#14163).
16513
16514 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
16515
16516 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
16517
16518 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
16519 timer (bug#14156).
16520
16521 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
16522
16523 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
16524 declaration.
16525
16526 2013-04-07 Leo Liu <sdl.web@gmail.com>
16527
16528 * pcmpl-x.el: New file.
16529
16530 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
16531
16532 Do not set x-display-name until X connection is established.
16533 This is needed to prevent from weird situation described at
16534 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
16535 * frame.el (make-frame): Set x-display-name after call to
16536 window system initialization function, not before.
16537 * term/x-win.el (x-initialize-window-system): Add optional
16538 display argument and use it.
16539 * term/w32-win.el (w32-initialize-window-system):
16540 * term/ns-win.el (ns-initialize-window-system):
16541 * term/pc-win.el (msdos-initialize-window-system):
16542 Add compatible optional display argument.
16543
16544 2013-04-06 Eli Zaretskii <eliz@gnu.org>
16545
16546 * files.el (normal-backup-enable-predicate): On MS-Windows and
16547 MS-DOS compare truenames of temporary-file-directory and of the
16548 file, so that 8+3 aliases (usually found in $TEMP on Windows)
16549 don't fail comparison by compare-strings. Also, compare file
16550 names case-insensitively on MS-Windows and MS-DOS.
16551
16552 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16553
16554 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
16555 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
16556
16557 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
16558
16559 * whitespace.el (whitespace-color-on, whitespace-color-off):
16560 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
16561
16562 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
16563
16564 * ispell.el (ispell-set-spellchecker-params):
16565 Really set `ispell-args' for all equivs.
16566
16567 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16568
16569 * ido.el (ido-completions): Use extra elements of ido-decorations
16570 (bug#14143).
16571 (ido-decorations): Update docstring.
16572
16573 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
16574
16575 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16576 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
16577 nil during initialization, in order not to miss changes since the
16578 file was opened. (Bug#14140)
16579
16580 2013-04-05 Leo Liu <sdl.web@gmail.com>
16581
16582 * kmacro.el (kmacro-call-macro): Fix bug#14135.
16583
16584 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
16585
16586 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
16587
16588 2013-04-04 Glenn Morris <rgm@gnu.org>
16589
16590 * electric.el (electric-pair-inhibit-predicate): Add :version.
16591
16592 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16593
16594 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
16595 when a package is required several times (bug#14082).
16596
16597 2013-04-04 Roland Winkler <winkler@gnu.org>
16598
16599 * faces.el (read-face-name): Behave as promised by the docstring.
16600 Assume that arg default is a list of faces.
16601 (describe-face): Call read-face-name with list of default faces.
16602
16603 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16604
16605 * bookmark.el: Fix deletion of bookmarks (bug#13972).
16606 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
16607 (bookmark-bmenu-execute-deletions): Only skip first line if it's
16608 the header.
16609 (bookmark-exit-hook-internal): Save even if list is empty.
16610
16611 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
16612
16613 * emacs-lisp/package.el (package-pinned-packages): New var.
16614 (package--add-to-archive-contents): Obey it (bug#14118).
16615
16616 2013-04-03 Alan Mackenzie <acm@muc.de>
16617
16618 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
16619 Also adapt to the new values of element 7 of a parse state.
16620
16621 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
16622 parameter `not-in-delimiter'. Handle being inside comment opener.
16623 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
16624 character in case we're typing a '*' after a '/'.
16625 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
16626 instead by passing the parameter to c-state-pp-to-literal.
16627
16628 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
16629 for elt. 7 of a parse state.
16630
16631 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
16632
16633 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
16634 * international/latin1-disp.el, international/mule-util.el:
16635 * language/cyril-util.el, language/european.el, language/ind-util.el:
16636 * language/lao-util.el, language/thai.el, language/tibet-util.el:
16637 * language/tibetan.el, language/viet-util.el:
16638 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
16639
16640 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16641
16642 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
16643 (electric-pair-post-self-insert-function): Use it.
16644 (electric-pair-default-inhibit): New function, extracted from
16645 electric-pair-post-self-insert-function.
16646
16647 2013-03-31 Roland Winkler <winkler@gnu.org>
16648
16649 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
16650
16651 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16652
16653 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
16654
16655 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
16656
16657 Un-indent after "pass" and "return" statements (Bug#13888)
16658 * progmodes/python.el (python-indent-block-enders): New var.
16659 (python-indent-calculate-indentation): Use it.
16660
16661 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
16662
16663 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
16664 defun. Defining it as defalias could introduce too eager
16665 byte-compiler optimization. (Bug#14030)
16666
16667 2013-03-30 Chong Yidong <cyd@gnu.org>
16668
16669 * iswitchb.el (iswitchb-read-buffer): Fix typo.
16670
16671 2013-03-30 Leo Liu <sdl.web@gmail.com>
16672
16673 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
16674 (kmacro-execute-from-register): Pass the keyboard macro to
16675 kmacro-call-macro or repeating won't work correctly.
16676
16677 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
16678
16679 * progmodes/subword.el: Back to using `forward-symbol'.
16680
16681 * subr.el (forward-whitespace, forward-symbol)
16682 (forward-same-syntax): Move from thingatpt.el.
16683
16684 2013-03-29 Leo Liu <sdl.web@gmail.com>
16685
16686 * kmacro.el (kmacro-to-register): New command.
16687 (kmacro-execute-from-register): New function.
16688 (kmacro-keymap): Bind to 'x'. (Bug#14071)
16689
16690 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16691
16692 * mpc.el: Use defvar-local and setq-local.
16693 (mpc--proc-connect): Connection failures are not bugs.
16694 (mpc-mode-map): `follow-link' only applies to the buffer's content.
16695 (mpc-volume-map): Bind to the up-events.
16696
16697 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
16698
16699 * progmodes/subword.el (superword-mode): Use `forward-sexp'
16700 instead of `forward-symbol'.
16701
16702 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16703
16704 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
16705 (edebug--recursive-edit): Use it.
16706 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
16707 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
16708
16709 2013-03-28 Leo Liu <sdl.web@gmail.com>
16710
16711 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
16712
16713 2013-03-27 Eli Zaretskii <eliz@gnu.org>
16714
16715 * facemenu.el (list-colors-callback): New defvar.
16716 (list-colors-redisplay): New function.
16717 (list-colors-display): Install list-colors-redisplay as the
16718 revert-buffer-function. (Bug#14063)
16719
16720 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16721
16722 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
16723 and suffixes don't overlap (bug#14061).
16724
16725 * case-table.el: Use lexical-binding.
16726 (case-table-get-table): New function.
16727 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
16728
16729 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
16730
16731 * progmodes/subword.el: Add `superword-mode' to do word motion
16732 over symbol_words (parallels and leverages `subword-mode' which
16733 does word motion inside MixedCaseWords).
16734
16735 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
16736
16737 * eshell/em-unix.el: Move su and sudo to...
16738 * eshell/em-tramp.el: ...Eshell tramp module.
16739
16740 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16741
16742 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
16743 Change return value to be a sexp. Delay `get-buffer' to after
16744 restoring the desktop (bug#13951).
16745
16746 2013-03-26 Leo Liu <sdl.web@gmail.com>
16747
16748 * register.el: Move semantic tag handling back to
16749 cedet/semantic/senator.el. (Bug#14052)
16750
16751 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16752
16753 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
16754 into the prompt either (bug#13963).
16755
16756 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16757
16758 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
16759 part of "(error-foo)".
16760
16761 2013-03-24 Juri Linkov <juri@jurta.org>
16762
16763 * replace.el (list-matching-lines-prefix-face): New defcustom.
16764 (occur-1): Pass `list-matching-lines-prefix-face' to the function
16765 `occur-engine' if `face-differs-from-default-p' returns t.
16766 (occur-engine): Add `,' inside backquote construct to evaluate
16767 `prefix-face'. Propertize the prefix with the `prefix-face' face.
16768 Pass `prefix-face' to the functions `occur-context-lines' and
16769 `occur-engine-add-prefix'.
16770 (occur-engine-add-prefix, occur-context-lines): Add optional arg
16771 `prefix-face' and propertize the prefix with `prefix-face'.
16772 (Bug#14017)
16773
16774 2013-03-24 Leo Liu <sdl.web@gmail.com>
16775
16776 * nxml/rng-valid.el (rng-validate-while-idle)
16777 (rng-validate-quick-while-idle): Guard against deleted buffer.
16778 (Bug#13999)
16779
16780 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
16781 is the last entry in kill-buffer-hook.
16782
16783 * files.el (kill-buffer-hook): Doc fix.
16784
16785 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
16786
16787 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
16788 Make it safe-local.
16789
16790 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
16791
16792 2013-03-23 Leo Liu <sdl.web@gmail.com>
16793
16794 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
16795 Remove.
16796
16797 * nxml/rng-valid.el (rng-validate-mode)
16798 (rng-after-change-function, rng-do-some-validation):
16799 * nxml/rng-maint.el (rng-validate-buffer):
16800 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
16801 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
16802 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
16803 (nxml-extend-after-change-region): Use with-silent-modifications.
16804
16805 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
16806 timer-idle-list.
16807
16808 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
16809 (rng-next-error-1, rng-previous-error-1): Do not let-bind
16810 timer-idle-list. (Bug#13999)
16811
16812 2013-03-23 Juri Linkov <juri@jurta.org>
16813
16814 * info.el (info-index-match): New face.
16815 (Info-index, Info-apropos-matches): Add a nested subgroup to the
16816 main pattern and add text properties with the new face to matches
16817 in index entries relative to the beginning of the index entry.
16818 (Bug#14015)
16819
16820 2013-03-21 Eric Ludlam <zappo@gnu.org>
16821
16822 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
16823 Inhibit read only while inserting objects.
16824
16825 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
16826
16827 * progmodes/cfengine.el: Update docs to mention
16828 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
16829 symbol motion. Remove "_" from the word syntax.
16830
16831 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
16832
16833 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
16834 syntax for both `cfengine2-mode' and `cfengine3-mode'.
16835
16836 2013-03-20 Juri Linkov <juri@jurta.org>
16837
16838 * info.el (Info-next-reference-or-link)
16839 (Info-prev-reference-or-link): New functions.
16840 (Info-next-reference, Info-prev-reference): Use them.
16841 (Info-try-follow-nearest-node): Handle footnote navigation.
16842 (Info-fontify-node): Fontify footnotes. (Bug#13989)
16843
16844 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16845
16846 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
16847 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
16848
16849 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
16850
16851 Suppress unnecessary non-ASCII chatter during build process.
16852 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16853 (batch-skkdic-convert): Suppress most of the chatter.
16854 It's not needed so much now that machines are faster,
16855 and its non-ASCII component was confusing; see Dmitry Gutov in
16856 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16857
16858 2013-03-20 Leo Liu <sdl.web@gmail.com>
16859
16860 * ido.el (ido-chop): Fix bug#10994.
16861
16862 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16863
16864 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16865 Remove vars.
16866 (whitespace-color-on, whitespace-color-off):
16867 Use `font-lock-fontify-buffer' (Bug#13817).
16868
16869 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16870
16871 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16872 remapping in mode-line.
16873 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16874
16875 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16876
16877 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16878 value for `whitespace-line' face (Bug#13875).
16879 (whitespace-font-lock-keywords): Change description.
16880 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16881 the constructed keywords instead.
16882 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16883
16884 2013-03-19 Leo Liu <sdl.web@gmail.com>
16885
16886 * progmodes/compile.el (compilation-display-error): New command.
16887 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16888 C-o. (Bug#13992)
16889
16890 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16891
16892 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16893
16894 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16895
16896 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16897
16898 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
16899
16900 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16901
16902 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16903 * net/tramp-gvfs.el (top):
16904 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16905 (tramp-handle-shell-command): Use it.
16906 (tramp-dissect-file-name): Raise an error when hostname is a
16907 method name, and neither method nor user is specified.
16908
16909 * net/trampver.el: Update release number.
16910
16911 2013-03-18 Leo Liu <sdl.web@gmail.com>
16912
16913 Make sure eldoc can be turned off properly.
16914 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16915 eldoc-mode.
16916 (eldoc-display-message-p): Revert last change.
16917 (eldoc-display-message-no-interference-p)
16918 (eldoc-print-current-symbol-info): Tweak.
16919
16920 2013-03-18 Tassilo Horn <tsdh@gnu.org>
16921
16922 * doc-view.el (doc-view-new-window-function): Check the new window
16923 overlay's display property instead the char property of the
16924 buffer's first char. Use `with-selected-window' instead of
16925 `save-window-excursion' with `select-window'.
16926 (doc-view-document->bitmap): Check the current doc-view overlay's
16927 display property instead the char property of the buffer's first char.
16928
16929 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16930
16931 Automate the build of ja-dic.el (Bug#13984).
16932 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16933 from the input, rather than assume that it's been done for us by the
16934 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16935 the current date into a ja-dic.el comment, as that complicates
16936 regression testing.
16937
16938 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16939
16940 * whitespace.el: Fix double evaluation.
16941 (whitespace-space, whitespace-hspace, whitespace-tab)
16942 (whitespace-newline, whitespace-trailing, whitespace-line)
16943 (whitespace-space-before-tab, whitespace-indentation)
16944 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16945 obsolete defvars.
16946 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16947 (whitespace-color-on): Use a single font-lock-add-keywords call.
16948 Fix double-evaluation of face variables.
16949
16950 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
16951
16952 * net/tramp-adb.el (tramp-adb-parse-device-names):
16953 Use `start-process' instead of `call-process'. Otherwise, the
16954 function might be blocked under MS Windows. (Bug#13299)
16955
16956 2013-03-17 Leo Liu <sdl.web@gmail.com>
16957
16958 Extend eldoc to display info in the mode-line. (Bug#13978)
16959 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16960 (eldoc-mode-line-string): New variable.
16961 (eldoc-minibuffer-message): New function.
16962 (eldoc-message-function): New variable.
16963 (eldoc-message): Use it.
16964 (eldoc-display-message-p)
16965 (eldoc-display-message-no-interference-p):
16966 Support eldoc-post-insert-mode.
16967
16968 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
16969 (eval-expression): Run it.
16970
16971 2013-03-17 Roland Winkler <winkler@gnu.org>
16972
16973 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
16974 strings in the list of return values.
16975
16976 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16977
16978 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
16979 radix before checking for HMS forms.
16980
16981 2013-03-16 Leo Liu <sdl.web@gmail.com>
16982
16983 * progmodes/scheme.el: Add indentation and font-locking for λ.
16984 (Bug#13975)
16985
16986 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16987
16988 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
16989 token before point (bug#13942).
16990
16991 2013-03-16 Leo Liu <sdl.web@gmail.com>
16992
16993 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
16994
16995 2013-03-16 Eli Zaretskii <eliz@gnu.org>
16996
16997 * startup.el (command-line-normalize-file-name): Fix handling of
16998 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
16999 <xfq.free@gmail.com> in
17000 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
17001
17002 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
17003
17004 Sync with Tramp 2.2.7.
17005
17006 * net/trampver.el: Update release number.
17007
17008 2013-03-14 Tassilo Horn <tsdh@gnu.org>
17009
17010 * doc-view.el: Fix bug#13887.
17011 (doc-view-insert-image): Don't modify overlay associated to
17012 non-live windows, and implement horizontal centering of image in
17013 case it's smaller than the window.
17014 (doc-view-new-window-function): Force redisplay of new windows on
17015 doc-view buffers.
17016
17017 2013-03-13 Karl Fogel <kfogel@red-bean.com>
17018
17019 * saveplace.el (save-place-alist-to-file): Don't sort
17020 `save-place-alist', just pretty-print it (bug#13882).
17021
17022 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
17023
17024 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
17025 Check whether `default-file-name-coding-system' is bound.
17026 It isn't in XEmacs.
17027
17028 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
17029
17030 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
17031 backquotes for `obsolete' (bug#13929).
17032
17033 * international/mule.el (find-auto-coding): Include file name in
17034 obsolescence warning (bug#13922).
17035
17036 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
17037
17038 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
17039 for CFEngine 3-specific indentation.
17040 (cfengine3-indent-line): Use it. Fix up category regex.
17041 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
17042
17043 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17044
17045 * type-break.el (type-break-file-name):
17046 * textmodes/remember.el (remember-data-file):
17047 * strokes.el (strokes-file):
17048 * shadowfile.el (shadow-initialize):
17049 * saveplace.el (save-place-file):
17050 * ps-bdf.el (bdf-cache-file):
17051 * progmodes/idlwave.el (idlwave-config-directory):
17052 * net/quickurl.el (quickurl-url-file):
17053 * international/kkc.el (kkc-init-file-name):
17054 * ido.el (ido-save-directory-list-file):
17055 * emulation/viper.el (viper-custom-file-name):
17056 * emulation/vip.el (vip-startup-file):
17057 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
17058 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
17059
17060 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
17061
17062 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
17063 * language/thai-word.el: Switch to UTF-8.
17064
17065 See ChangeLog.16 for earlier changes.
17066
17067 ;; Local Variables:
17068 ;; coding: utf-8
17069 ;; End:
17070
17071 Copyright (C) 2011-2014 Free Software Foundation, Inc.
17072
17073 This file is part of GNU Emacs.
17074
17075 GNU Emacs is free software: you can redistribute it and/or modify
17076 it under the terms of the GNU General Public License as published by
17077 the Free Software Foundation, either version 3 of the License, or
17078 (at your option) any later version.
17079
17080 GNU Emacs is distributed in the hope that it will be useful,
17081 but WITHOUT ANY WARRANTY; without even the implied warranty of
17082 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17083 GNU General Public License for more details.
17084
17085 You should have received a copy of the GNU General Public License
17086 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.