]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Tighten up the tagcode used for eieio and cl-struct objects
[gnu-emacs] / lisp / ChangeLog
1 2015-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 Tighten up the tagcode used for eieio and cl-struct objects.
4 * loadup.el: Load cl-preloaded.
5 * emacs-lisp/eieio-core.el (eieio-defclass-internal): Set the function
6 slot of the tag symbol to :quick-object-witness-check.
7 (eieio-object-p): Use :quick-object-witness-check.
8 (eieio--generic-tagcode): Use cl--generic-struct-tag.
9 * emacs-lisp/cl-preloaded.el: New file.
10 * emacs-lisp/cl-macs.el (cl--bind-inits): Remove, unused.
11 (cl--transform-lambda, cl-destructuring-bind): Remove cl--bind-inits.
12 (cl--make-usage-args): Strip away &aux args.
13 (cl-case, cl-typecase, cl--parse-loop-clause): Use macroexp-let2.
14 (cl-the, cl-check-type): Use macroexp-let2 and cl-typep.
15 (cl-defstruct): Use `declare' and cl-struct-define.
16 * emacs-lisp/cl-generic.el (cl--generic-struct-tag): New function.
17 (cl--generic-struct-tagcode): Use it to tighten the tagcode.
18
19 2015-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
20
21 * emacs-lisp/cl.el (cl--function-convert):
22 Merge cache that cl--labels-convert adds (bug#19699).
23
24 2015-01-27 Ivan Shmakov <ivan@siamics.net>
25
26 * tar-mode.el: Allow for adding new archive members. (Bug#19274)
27 (tar-new-regular-file-header, tar--pad-to, tar--put-at)
28 (tar-header-serialize): New functions.
29 (tar-current-position): Split from tar-current-descriptor.
30 (tar-current-descriptor): Use it.
31 (tar-new-entry): New command.
32 (tar-mode-map): Bind it.
33
34 2015-01-27 Sam Steingold <sds@gnu.org>
35
36 * progmodes/python.el (python-check-custom-command): Buffer local
37 because it usually includes the buffer name.
38 (python-check-command): Set to epylint when pyflakes is not available.
39
40 2015-01-27 Thomas Fitzsimmons <fitzsim@fitzsim.org>
41
42 * net/eudcb-bbdb.el, net/eudcb-ldap.el, net/eudcb-mab.el,
43 net/eudc-bob.el, net/eudcb-ph.el, net/eudc.el, net/eudc-export.el,
44 net/eudc-hotlist.el, net/eudc-vars.el: New maintainer.
45
46 2015-01-27 Artur Malabarba <bruce.connor.am@gmail.com>
47
48 * isearch.el (isearch-process-search-char): Add docstring.
49
50 2015-01-27 Oleh Krehel <ohwoeowho@gmail.com>
51
52 * emacs-lisp/derived.el (define-derived-mode): Declare indent 3.
53
54 2015-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
55
56 * emacs-lisp/cl.el (cl--function-convert): Run cl--labels-convert
57 for the case cl-flet or cl-labels form is wrapped with lexical-let
58 (bug#19613).
59
60 2015-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * emacs-lisp/cl-generic.el (cl--generic-method): New struct.
63 (cl--generic): The method-table is now a (list-of cl--generic-method).
64 (cl--generic-member-method): New function.
65 (cl-generic-define-method): Use it.
66 (cl--generic-build-combined-method, cl--generic-cache-miss):
67 Adapt to new method-table.
68 (cl--generic-no-next-method-function): Add `method' argument.
69 (cl-generic-call-method): Adapt to new method representation.
70 (cl--generic-cnm-sample, cl--generic-nnm-sample): Adjust.
71 (cl-find-method, cl-method-qualifiers): New functions.
72 (cl--generic-method-info): Adapt to new method representation.
73 Return a string for the qualifiers.
74 (cl--generic-describe):
75 * emacs-lisp/eieio-opt.el (eieio-help-class): Adjust accordingly.
76 (eieio-all-generic-functions, eieio-method-documentation):
77 Adjust to new method representation.
78
79 * emacs-lisp/eieio-compat.el (eieio--defmethod): Use cl-find-method.
80
81 2015-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
82
83 * emacs-lisp/cl-generic.el: Add a method-combination hook.
84 (cl-generic-method-combination-function): New var.
85 (cl--generic-lambda): Remove `with-cnm' arg.
86 (cl-defmethod): Change accordingly.
87 (cl-generic-define-method): Don't check qualifiers validity.
88 Preserve all qualifiers in `method-table'.
89 (cl-generic-call-method): New function.
90 (cl--generic-nest): Remove (morph into cl-generic-call-method).
91 (cl--generic-build-combined-method): Adjust to new format of method-table
92 and use cl-generic-method-combination-function.
93 (cl--generic-standard-method-combination): New function, extracted from
94 cl--generic-build-combined-method.
95 (cl--generic-cnm-sample): Adjust to new format of method-table.
96
97 * emacs-lisp/eieio-compat.el (eieio--defmethod): Use () qualifiers
98 instead of :primary.
99
100 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
101 Remove obsolete function.
102
103 2015-01-26 Lars Ingebrigtsen <larsi@gnus.org>
104
105 * net/shr.el (shr-make-table-1): Fix colspan typo.
106 (shr-make-table-1): Add comments.
107 (shr-make-table-1): Make colspan display more sensibly.
108
109 * net/eww.el (eww-add-bookmark): Fix prompt and clean up the code
110 slightly.
111
112 2015-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
113
114 * emacs-lisp/cl-generic.el (cl--generic-no-next-method-function): New fun.
115 (cl--generic-build-combined-method, cl--generic-nnm-sample): Use it
116 (bug#19672).
117 (cl--generic-typeof-types): Add support for `sequence'.
118 (cl-defmethod): Add non-keywords in the qualifiers.
119
120 2015-01-25 Dmitry Gutov <dgutov@yandex.ru>
121
122 * emacs-lisp/find-func.el (find-function-regexp): Don't match
123 `defgroup' (regression from the previous change here).
124
125 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
126
127 * net/ldap.el (ldap-search-internal): Mention binddn in invalid
128 credentials error message.
129
130 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
131
132 * net/ldap.el (ldap-password-read): Validate password before
133 caching it.
134 (ldap-search-internal): Handle ldapsearch error conditions.
135
136 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
137
138 * net/ldap.el (ldap-password-read): Handle password-cache being nil.
139
140 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
141
142 * net/eudc.el (eudc-expand-inline): Always restore former server
143 and protocol.
144
145 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
146
147 * net/eudcb-ldap.el: Don't nag the user in case a default base is
148 provided by the LDAP system configuration file.
149
150 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
151
152 * net/eudc.el (eudc-format-query): Preserve the
153 eudc-inline-query-format ordering of attributes in the returned list.
154 * net/eudcb-ldap.el (eudc-ldap-format-query-as-rfc1558):
155 Append the LDAP wildcard character to the last attribute value.
156
157 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
158
159 * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple):
160 Downcase field names of LDAP results.
161 (eudc-ldap-cleanup-record-filtering-addresses): Likewise.
162
163 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
164
165 * net/ldap.el (ldap-ldapsearch-password-prompt): New defcustom.
166 (ldap-search-internal): Send password to ldapsearch through a pipe
167 instead of via the command line.
168
169 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
170
171 * net/ldap.el: Require password-cache.
172 (ldap-password-read): New function.
173 (ldap-search-internal): Call ldap-password-read when it is
174 configured to be called.
175
176 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
177
178 * net/eudc-vars.el (eudc-expansion-overwrites-query):
179 Change default to nil.
180
181 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
182
183 * net/eudc.el (eudc-expand-inline): Ignore text properties of
184 string-to-expand.
185
186 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
187
188 * net/eudc-vars.el (eudc-inline-expansion-format): Default to a
189 format that includes first name and surname.
190
191 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
192
193 * net/eudc-vars.el (eudc-inline-query-format): Change default to
194 query email and first name instead of surname.
195
196 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
197
198 * net/ldap.el (ldap-search-internal): Support new-style LDAP URIs.
199
200 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
201
202 * net/eudc-vars.el (eudc-server): Adjust docstring to mention
203 eudc-server-hotlist.
204 (eudc-server-hotlist): Move from eudc.el and make defcustom.
205 * net/eudc.el (eudc-server-hotlist): Move to eudc-vars.el.
206 (eudc-set-server): Allow setting protocol to nil.
207 (eudc-expand-inline): Support hotlist-only expansions when server
208 is not set.
209
210 2015-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
211
212 * emacs-lisp/cl-generic.el (cl-no-primary-method): New fun and error.
213 (cl--generic-build-combined-method): Use it.
214
215 2015-01-22 Paul Eggert <eggert@cs.ucla.edu>
216
217 Don't downcase system diagnostics' first letters
218 * emacs-lisp/bytecomp.el (byte-compile-file):
219 * ffap.el (find-file-at-point):
220 * files.el (insert-file-1):
221 * net/ange-ftp.el (ange-ftp-barf-if-not-directory)
222 (ange-ftp-copy-file-internal):
223 * progmodes/etags.el (visit-tags-table):
224 Keep diagnostics consistent with system's.
225 * ffap.el (ffap-machine-p):
226 Ignore case while comparing diagnostics.
227
228 2015-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
229
230 * help.el (help-make-usage): Don't turn a "_" arg into an empty-string
231 arg (bug#19645).
232 * emacs-lisp/cl-generic.el (cl--generic-lambda): Don't confuse a string
233 body with a docstring.
234
235 2015-01-22 Dmitry Gutov <dgutov@yandex.ru>
236
237 * progmodes/xref.el (xref-location-marker, xref-location-group):
238 Use `cl-defgeneric' and `cl-defmethod' instead of the EIEIO
239 counterparts.
240
241 * progmodes/etags.el (xref-location-marker): Same.
242
243 * progmodes/xref.el (xref--current): Rename from `xref--selected'.
244 (xref--inhibit-mark-current): Rename from
245 `xref--inhibit-mark-selected'. Update the usages.
246 (xref-quit): Reword the docstring. Kill buffers after quitting
247 windows instead of before.
248 (xref--insert-xrefs): Tweak help-echo.
249 (xref--read-identifier-history, xref--read-pattern-history):
250 New variables.
251 (xref--read-identifier, xref-find-apropos): Use them.
252
253 2015-01-21 Ulrich Müller <ulm@gentoo.org>
254
255 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
256 Allow the 'update-game-score' helper program to run suid or sgid.
257
258 2015-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
259
260 * emacs-lisp/eieio.el: Use cl-defmethod.
261 (defclass): Generate cl-defmethod calls; use setf methods for :accessor.
262 (eieio-object-name-string): Declare as obsolete.
263
264 * emacs-lisp/eieio-opt.el: Adapt to cl-generic.
265 (eieio--specializers-apply-to-class-p): New function.
266 (eieio-all-generic-functions): Use it.
267 (eieio-method-documentation): Use it as well as cl--generic-method-info.
268 Change format of return value.
269 (eieio-help-class): Adapt accordingly.
270
271 * emacs-lisp/eieio-compat.el (eieio--defmethod): Avoid no-next-method
272 errors when there's a `before' but no `primary' (bug#19645).
273 (next-method-p): Return nil rather than signal an error.
274 (eieio-defgeneric): Remove bogus (fboundp 'method).
275
276 * emacs-lisp/eieio-speedbar.el:
277 * emacs-lisp/eieio-datadebug.el:
278 * emacs-lisp/eieio-custom.el:
279 * emacs-lisp/eieio-base.el: Use cl-defmethod.
280
281 * emacs-lisp/cl-generic.el (cl-defgeneric): Add support for `declare'.
282 (cl--generic-setf-rewrite): Setup the setf expander right away.
283 (cl-defmethod): Make sure the setf expander is setup before we expand
284 the body.
285 (cl-defmethod): Silence byte-compiler warnings.
286 (cl-generic-define-method): Shuffle code to change return value.
287 (cl--generic-method-info): New function, extracted from
288 cl--generic-describe.
289 (cl--generic-describe): Use it.
290
291 2015-01-21 Dmitry Gutov <dgutov@yandex.ru>
292
293 * progmodes/xref.el (xref--xref-buffer-mode-map): Define before
294 the major mode. Remap `quit-window' to `xref-quit'.
295 (xref--xref-buffer-mode): Inherit from special-mode.
296
297 xref: Keep track of temporary buffers (bug#19466).
298 * progmodes/xref.el (xref--temporary-buffers, xref--selected)
299 (xref--inhibit-mark-selected): New variables.
300 (xref--mark-selected): New function.
301 (xref--show-location): Maybe add the buffer to
302 `xref--temporary-buffers', add `xref--mark-selected' to
303 `buffer-list-update-hook' there.
304 (xref--window): Add docstring.
305 (xref-quit): Rename from `xref--quit'. Update both references.
306 Add KILL argument. When it's non-nil, kill the temporary buffers
307 that haven't been selected by the user.
308 (xref--show-xref-buffer): Change the second argument to alist,
309 extract the values for `xref--window' and
310 `xref--temporary-buffers' from it. Add `xref--mark-selected' to
311 `buffer-list-update-hook' to each buffer in the list.
312 (xref--show-xrefs): Move the logic of calling `xref-find-function'
313 here. Save the difference between buffer lists before and after
314 it's called as "temporary buffers", and `pass it to
315 `xref-show-xrefs-function'.
316 (xref--find-definitions, xref-find-references)
317 (xref-find-apropos): Update accordingly.
318
319 2015-01-20 Artur Malabarba <bruce.connor.am@gmail.com>
320
321 * emacs-lisp/package.el (package-dir-info): Fix `while' logic.
322
323 2015-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
324
325 * emacs-lisp/eieio-generic.el: Remove.
326 (defgeneric, defmethod): Move to eieio-compat.el. Mark obsolete.
327 * emacs-lisp/eieio-compat.el: New file.
328 * emacs-lisp/eieio.el: Don't require eieio-generic any more.
329 * emacs-lisp/eieio-core.el (eieio--slot-originating-class-p):
330 Remove unused function.
331 (eieio-defclass): Move to eieio-compat.el.
332 * emacs-lisp/macroexp.el (macroexp-macroexpand): New function.
333 (macroexp--expand-all): Use it.
334 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): Here too.
335
336 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
337
338 * emacs-lisp/eldoc.el (eldoc-documentation-function): Describe how
339 major modes should use `add-function' to alter value of the variable.
340 * hexl.el (hexl-mode):
341 * ielm.el (inferior-emacs-lisp-mode):
342 * progmodes/cfengine.el (cfengine3-mode):
343 * progmodes/elisp-mode (emacs-lisp-mode):
344 * progmodes/octave.el (octave-mode):
345 * progmodes/python.el (python-mode):
346 * simple.el (read--expression): Set `eldoc-documentation-function'
347 using `add-function' so the default value is always used.
348
349 * descr-text.el (describe-char-eldoc): New function returning
350 basic Unicode codepoint information (e.g. name) about character
351 at point. It is meant to be used as a default value of the
352 `eldoc-documentation-function' variable.
353 (describe-char-eldoc--format, describe-char-eldoc--truncate):
354 New helper functions for `describe-char-eldoc' function.
355
356 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
357
358 * textmodes/paragraphs.el (sentence-end-base): Include an
359 ellipsis (…) and interrobang (‽) characters as end of a sentence,
360 and a closing single quote (’) as an end of a quote.
361
362 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
363
364 * textmodes/tildify.el (tildify-double-space-undos): A new
365 variable specifying whether pressing space in `tildify-mode' after
366 a space has been replaced with hard space undos the substitution.
367 (tildify-space): Add code branch for handling `tildify-doule-space'.
368
369 * textmodes/tildify.el (tildify-space): A new function
370 which can be used as a `post-self-insert-hook' to automatically
371 convert spaces into hard spaces.
372 (tildify-space-pattern): A new variable specifying pattern where
373 `tildify-space' should take effect.
374 (tildify-space-predicates): A new variable specifying list of
375 predicate functions that all must return non-nil for
376 `tildify-space' to take effect.
377 (tildify-space-region-predicate): A new functions meant to be
378 used as a predicate in `tildify-space-predicates' list.
379 (tildify-mode): A new minor mode enabling `tildify-space' as a
380 `post-self-insert-hook'
381
382 2015-01-20 Daniel Colascione <dancol@dancol.org>
383
384 * vc/vc-dir.el (vc-dir): Default to repository root, not
385 default-directory.
386
387 2015-01-20 Dmitry Gutov <dgutov@yandex.ru>
388
389 * progmodes/etags.el (xref-etags-location): New class.
390 (xref-make-etags-location): New function.
391 (etags--xref-find-definitions): Use it.
392 (xref-location-marker): New method implementation.
393
394 * progmodes/xref.el: Mention that xref-location is an EIEIO class.
395 (xref--insert-xrefs): Expand help-echo string.
396
397 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
398
399 * ido.el: Update Customization instructions.
400
401 2015-01-19 Jonas Bernoulli <jonas@bernoul.li>
402
403 Define Ido keymaps once (bug#17000).
404 * ido.el (ido-common-completion-map)
405 (ido-file-dir-completion-map)
406 (ido-file-completion-map, ido-buffer-completion-map): Set up key
407 bindings when each variable is defined.
408 (ido-completion-map): Move definition.
409 (ido-init-completion-maps): Noop.
410 (ido-common-initialization): Don't call it.
411 (ido-setup-completion-map): Improve doc-string, cleanup.
412
413 2015-01-19 Ivan Shmakov <ivan@siamics.net>
414
415 * cus-dep.el (custom-make-dependencies): Ensure that
416 default-directory is interpreted as a directory (see bug#19140.)
417
418 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
419
420 * progmodes/xref.el (xref--display-position):
421 Set `other-window-scroll-buffer'.
422 (xref-goto-xref): Use `user-error'.
423
424 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
425
426 * progmodes/xref.el (xref--display-history): New variable.
427 (xref--window-configuration): Remove.
428 (xref--save-to-history): New function.
429 (xref--display-position): Use it. Add new argument.
430 (xref--restore-window-configuration): Remove.
431 (xref--show-location, xref-show-location-at-point):
432 Update accordingly.
433 (xref--xref-buffer-mode): Don't use `pre-command-hook'.
434 (xref--quit): New command.
435 (xref-goto-xref): Use it.
436 (xref--xref-buffer-mode-map): Bind `q' to it.
437
438 2015-01-18 Dmitry Gutov <dgutov@yandex.ru>
439
440 * progmodes/xref.el (xref-goto-xref): Perform the jump even inside
441 indentation or at eol.
442
443 2015-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
444
445 * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
446 (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
447 New functions.
448 (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
449
450 * emacs-lisp/eieio.el (defclass): Add obsolescence warning for the
451 `newname' argument.
452
453 * emacs-lisp/cl-generic.el (cl-generic-define-method): Correctly handle
454 introduction of a new dispatch argument.
455 (cl--generic-cache-miss): Handle dispatch on an argument which was not
456 considered as dispatchable for this method.
457 (cl-defmethod): Warn when adding a method to an obsolete generic function.
458 (cl--generic-lambda): Make sure it works if cl-lib is not yet loaded.
459
460 * emacs-lisp/eieio-generic.el (eieio--defgeneric-init-form): Use autoloadp.
461
462 2015-01-18 Artur Malabarba <bruce.connor.am@gmail.com>
463
464 * emacs-lisp/package.el (package--append-to-alist): Rename from
465 `package--add-to-alist'
466 Updated docstring due to new name.
467
468 2015-01-18 Leo Liu <sdl.web@gmail.com>
469
470 * emacs-lisp/cl-extra.el (cl-subseq): Use seq-subseq and fix
471 multiple evaluation. (Bug#19519)
472
473 * emacs-lisp/seq.el (seq-subseq): Throw bad bounding indices
474 error. (Bug#19434)
475
476 2015-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
479 (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
480 New functions.
481 (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
482
483 * emacs-lisp/cl-macs.el (cl-defstruct): Minor optimization when include
484 or print is nil.
485 (cl-struct-type-p): New function.
486
487 * emacs-lisp/cl-generic.el: Add support for cl-next-method-p.
488 (cl-defmethod): Add edebug spec.
489 (cl--generic-build-combined-method): Fix call to
490 cl-no-applicable-method.
491 (cl--generic-nnm-sample, cl--generic-cnm-sample): New constant.
492 (cl--generic-isnot-nnm-p): New function.
493 (cl--generic-lambda): Use it to add support for cl-next-method-p.
494 (cl-no-next-method, cl-no-applicable-method): Simplify arg list.
495 (cl-next-method-p): New function.
496
497 2015-01-17 Ulrich Müller <ulm@gentoo.org>
498
499 * version.el (emacs-repository-get-version): Update docstring.
500
501 2015-01-17 Ivan Shmakov <ivan@siamics.net>
502
503 * url/url-cookie.el (url-cookie-write-file): Let-bind print-length
504 and print-level to nil to avoid writing a garbled list. (Bug#16805)
505
506 * files.el (find-file-other-window, find-file-other-frame):
507 Use mapc instead of mapcar. (Bug#18175)
508
509 * files.el (dir-locals-collect-variables): Use default-directory
510 in place of the file name while working on non-file buffers, just
511 like hack-dir-local-variables already does. (Bug#19140)
512
513 * textmodes/enriched.el (enriched-encode):
514 Use inhibit-point-motion-hooks in addition to inhibit-read-only.
515 (Bug#18246)
516
517 * desktop.el (desktop-read): Do not call desktop-clear when no
518 desktop file is found. (Bug#18371)
519
520 * misearch.el (multi-isearch-unload-function): New function.
521 (misearch-unload-function): New alias. (Bug#19566)
522
523 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
524
525 * emacs-lisp/eieio-core.el (eieio--class-constructor): Rename from
526 class-constructor, and make it an alias for `identity'.
527 Update all callers.
528
529 * emacs-lisp/eieio.el (eieio-constructor): Handle obsolete object name
530 argument here (bug#19620)...
531 (defclass): ...instead of in the constructor here.
532
533 2015-01-16 Jorgen Schaefer <contact@jorgenschaefer.de>
534
535 * emacs-lisp/package.el (package-archive-priorities):
536 Specify correct type.
537
538 2015-01-17 Ulrich Müller <ulm@gentoo.org>
539
540 * version.el (emacs-bzr-version-dirstate, emacs-bzr-version-bzr):
541 Remove.
542 (emacs-repository-get-version): Discard the Bazaar case.
543 * vc/vc-bzr.el (vc-bzr-version-dirstate): Rename from
544 emacs-bzr-version-dirstate and move from version.el to here.
545 (vc-bzr-working-revision): Use it.
546
547 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
548
549 * emacs-lisp/eieio-generic.el (call-next-method): Don't bother checking
550 eieio--scoped-class any more.
551
552 * emacs-lisp/eieio-core.el (eieio--scoped-class-stack): Remove var.
553 (eieio--scoped-class): Remove function.
554 (eieio--with-scoped-class): Remove macro. Replace uses with `progn'.
555 (eieio--slot-name-index): Don't check the :protection anymore.
556 (eieio-initializing-object): Remove var.
557 (eieio-set-defaults): Don't let-bind eieio-initializing-object.
558
559 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
560
561 Improve handling of doc-strings and describe-function for cl-generic.
562
563 * help-mode.el (help-function-def): Add optional arg `type'.
564
565 * help-fns.el (find-lisp-object-file-name): Accept any `type' as long
566 as it's a symbol.
567 (help-fns-short-filename): New function.
568 (describe-function-1): Use it. Use autoload-do-load.
569
570 * emacs-lisp/find-func.el: Use lexical-binding.
571 (find-function-regexp): Don't rule out `defgeneric'.
572 (find-function-regexp-alist): Document new possibility of including
573 a function instead of a regexp.
574 (find-function-search-for-symbol): Implement that new possibility.
575 (find-function-library): Don't assume that `function' is a symbol.
576 (find-function-do-it): Remove unused var `orig-buf'.
577
578 * emacs-lisp/eieio-generic.el (eieio--defalias): Move from eieio-core.
579 (eieio--defgeneric-init-form): Don't throw away a previous docstring.
580 (eieio--method-optimize-primary): Don't mess with the docstring.
581 (defgeneric): Keep the `args' in the docstring.
582 (defmethod): Don't use the method's docstring for the generic
583 function's docstring.
584
585 * emacs-lisp/eieio-core.el (eieio--defalias): Move to eieio-generic.el.
586 (eieio-defclass-autoload): Don't record the superclasses any more.
587 (eieio-defclass-internal): Reuse the old class object if it was just an
588 autoload stub.
589 (eieio--class-precedence-list): Load the class if it's autoloaded.
590
591 * emacs-lisp/cl-generic.el (cl-generic-ensure-function): It's OK to
592 override an autoload.
593 (cl-generic-current-method-specializers): Replace dyn-bind variable
594 with a lexically-scoped macro.
595 (cl--generic-lambda): Update accordingly.
596 (cl-generic-define-method): Record manually in the load-history with
597 type `cl-defmethod'.
598 (cl--generic-get-dispatcher): Minor optimization.
599 (cl--generic-search-method): New function.
600 (find-function-regexp-alist): Add entry for `cl-defmethod' type.
601 (cl--generic-search-method): Add hyperlinks for methods. Merge the
602 specializers and the function's arguments.
603
604 2015-01-16 Artur Malabarba <bruce.connor.am@gmail.com>
605
606 * emacs-lisp/package.el (package--read-pkg-desc):
607 New function. Read a `define-package' form in current buffer.
608 Return the pkg-desc, with desc-kind set to KIND.
609 (package-dir-info): New function. Find package information for a
610 directory. The return result is a `package-desc'.
611 (package-install-from-buffer): Install packages from dired buffer.
612 (package-install-file): Install packages from directory.
613 (package-desc-suffix)
614 (package-install-from-archive)
615 * emacs-lisp/package-x.el (package-upload-buffer-internal):
616 Ensure all remaining instances of `package-desc-kind' handle the 'dir
617 value.
618
619 2015-01-16 Jorgen Schaefer <contact@jorgenschaefer.de>
620
621 * emacs-lisp/package.el: Provide repository priorities.
622 (package-archive-priorities): New variable.
623 (package--add-to-alist): New function.
624 (package--add-to-archive-contents): Use it.
625 (package-menu--find-upgrades): Use it as well. Small clean up to
626 make the use of the package name here explicit.
627 (package-archive-priority): New function.
628 (package-desc-priority-version): New function.
629
630 2015-01-16 Daniel Colascione <dancol@dancol.org>
631
632 * cus-start.el (all): Make `ring-bell-function' customizable.
633
634 2015-01-16 Dmitry Gutov <dgutov@yandex.ru>
635
636 * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as
637 vc-svn-after-dir-status's second argument. (Bug#19429)
638
639 2015-01-16 Samer Masterson <samer@samertm.com> (tiny change)
640
641 * pcomplete.el (pcomplete-parse-arguments): Parse arguments
642 regardless of pcomplete-cycle-completions's value. (Bug#18950)
643
644 2015-01-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
645
646 * dom.el (dom-strings): New function.
647
648 * files.el (directory-files-recursively): Don't use the word
649 "path" for a file name.
650
651 2015-01-15 Wolfgang Jenkner <wjenkner@inode.at>
652
653 * calc/calc-units.el (math-units-in-expr-p)
654 (math-single-units-in-expr-p, math-find-compatible-unit-rec)
655 (math-extract-units): Handle the `neg' operator. (Bug#19582)
656
657 2015-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
658
659 * emacs-lisp/cl-macs.el (cl--labels-magic): New constant.
660 (cl--labels-convert): Use it to ask the macro what is its replacement
661 in the #'f case.
662
663 * emacs-lisp/cl-generic.el (cl--generic-build-combined-method):
664 Return the value of the primary rather than the after method.
665
666 * emacs-lisp/eieio-core.el: Provide support for cl-generic.
667 (eieio--generic-tagcode): New function.
668 (cl-generic-tagcode-function): Use it.
669 (eieio--generic-tag-types): New function.
670 (cl-generic-tag-types-function): Use it.
671 (eieio-object-p): Tighten up the test.
672
673 * emacs-lisp/cl-generic.el (cl-generic-define-method): Fix paren typo.
674
675 2015-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
676
677 * emacs-lisp/cl-generic.el: New file.
678
679 * emacs-lisp/cl-macs.el (cl-flet): Allow (FUN EXP) forms.
680 (cl-load-time-value, cl-labels): Use closures rather than
681 backquoted lambdas.
682 (cl-macrolet): Use `eval' to create the function value, and support CL
683 style arguments in for the defined macros.
684
685 2015-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
686
687 * net/eww.el: Use lexical-binding.
688 (eww-links-at-point): Remove unused arg.
689 (eww-mode-map): Inherit from special-mode-map.
690 (eww-mode): Derive from special-mode. Don't use `setq' on a hook.
691
692 2015-01-13 Alan Mackenzie <acm@muc.de>
693
694 Allow compilation during loading of CC Mode-derived modes (bug#19206).
695 * progmodes/cc-bytecomp.el (cc-bytecomp-compiling-or-loading):
696 New function which walks the stack to discover whether we're compiling
697 or loading.
698 (cc-bytecomp-is-compiling): Reformulate, and move towards beginning.
699 (cc-bytecomp-is-loading): New defsubst.
700 (cc-bytecomp-setup-environment, cc-bytecomp-restore-environment):
701 Use the above defsubsts.
702 (cc-require-when-compile, cc-bytecomp-defvar)
703 (cc-bytecomp-defun): Simplify conditionals.
704 * progmodes/cc-defs.el (cc-bytecomp-compiling-or-loading):
705 "Borrow" this function from cc-bytecomp.el.
706 (c-get-current-file): Reformulate using the above.
707 (c-lang-defconst): Prevent duplicate entries of file names in a
708 symbol's 'source property.
709 (c-lang-const): Use cc-bytecomp-is-compiling.
710 * progmodes/cc-langs.el (c-make-init-lang-vars-fun):
711 Use cc-bytecomp-is-compiling.
712
713 2015-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
714
715 * emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'
716 (bug#19552).
717
718 2015-01-13 Dmitry Gutov <dgutov@yandex.ru>
719
720 * menu-bar.el (menu-bar-goto-menu): Before calling
721 `xref-marker-stack-empty-p', first check that `xref' is loaded.
722 (Bug#19554)
723
724 2015-01-12 Martin Rudalics <rudalics@gmx.at>
725
726 * progmodes/xref.el (xref-marker-stack-empty-p): Add autoload
727 cookie (Bug#19554).
728
729 * frame.el (frame-notice-user-settings): Remove code dealing with
730 frame-initial-frame-tool-bar-height. Turn off `tool-bar-mode'
731 only if `window-system-frame-alist' or `default-frame-alist' ask
732 for it.
733 (make-frame): Update frame-adjust-size-history if needed.
734
735 2015-01-12 Paul Eggert <eggert@cs.ucla.edu>
736
737 Have 'make' output better GEN names
738 * Makefile.in (PHONY_EXTRAS): New macro.
739 (.PHONY): Depend on it, and on $(lisp)/loaddefs.el, so that the
740 relevant files' time stamps are ignored.
741 (custom-deps, $(lisp)/cus-load.el, finder-data)
742 ($(lisp)/finder-inf.el): Use PHONY_EXTRAS.
743 (custom-deps, $(lisp)/cus-load.el, finder-data)
744 ($(lisp)/finder-inf.el, autoloads, $(lisp)/loaddefs.el)
745 ($(lisp)/subdirs.el, update-subdirs):
746 Output more-accurate destination names with GEN.
747
748 Say "ELC foo.elc" instead of "GEN foo.elc"
749 * Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0, am__v_ELC_1):
750 New macros.
751 ($(THEFILE)c, .el.elc): Use them.
752
753 2015-01-11 Michael Albinus <michael.albinus@gmx.de>
754
755 * files.el (directory-files-recursively): Do not include
756 superfluous remote file names.
757
758 2015-01-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
759
760 * net/eww.el (eww): Interpret anything that looks like a protocol
761 designator as a full URL.
762
763 2015-01-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
764
765 * net/shr.el (shr-urlify): Don't bother the user about
766 invalidly-encoded display strings.
767
768 2015-01-10 Ivan Shmakov <ivan@siamics.net>
769
770 * net/shr.el (shr-urlify): Decode URLs before using them as titles
771 (bug#19555).
772
773 2015-01-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
774
775 * net/eww.el (eww): Always interpret URLs that start with https?:
776 as plain URLs, even if they have spaces in them (bug#19556).
777 (eww): Also interpret things like "en.wikipedia.org/wiki/Free
778 software" as an URL.
779 (eww): Don't interpret "org/foo" as an URL.
780 (eww): Clear the title when loading so that we don't display
781 misleading information.
782
783 2015-01-10 Daniel Colascione <dancol@dancol.org>
784
785 * vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x,
786 by analogy with dired.
787
788 2015-01-09 Daniel Colascione <dancol@dancol.org>
789
790 * progmodes/js.el (js--function-heading-1-re)
791 (js--function-prologue-beginning): Parse ES6 generator function
792 declarations. (That is, "function* name()").
793
794 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
795
796 * emacs-lisp/eieio.el (defclass): Move from eieio-defclass all the code
797 that creates functions, and most of the sanity checks.
798 Mark as obsolete the <class>-child-p function.
799 * emacs-lisp/eieio-core.el (eieio--define-field-accessors): Remove.
800 (eieio--class, eieio--object): Use cl-defstruct.
801 (eieio--object-num-slots): Define manually.
802 (eieio-defclass-autoload): Use eieio--class-make.
803 (eieio-defclass-internal): Rename from eieio-defclass. Move all the
804 `(lambda...) definitions and most of the sanity checks to `defclass'.
805 Mark as obsolete the <class>-list-p function, the <class> variable and
806 the <initarg> variables. Use pcase-dolist.
807 (eieio-defclass): New compatibility function.
808 * emacs-lisp/eieio-opt.el (eieio-build-class-alist)
809 (eieio-class-speedbar): Don't use eieio-default-superclass var.
810
811 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
812
813 * emacs-lisp/eieio-generic.el: New file.
814 * emacs-lisp/eieio-core.el: Move all generic function code to
815 eieio-generic.el.
816 (eieio--defmethod): Declare.
817
818 * emacs-lisp/eieio.el: Require eieio-generic. Move all generic
819 function code to eieio-generic.el.
820 * emacs-lisp/eieio-opt.el (eieio-help-generic): Move to
821 eieio-generic.el.
822 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke): Update call
823 to eieio--generic-call.
824 * emacs-lisp/eieio-base.el (eieio-instance-inheritor): Don't use
825 <class>-child type.
826
827 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
828
829 * emacs-lisp/chart.el (chart-add-sequence, chart-bar-quickie):
830 Don't use <class> as a variable.
831
832 * emacs-lisp/eieio.el (same-class-p): Accept class object as well.
833 (call-next-method): Simplify.
834 (clone): Obey eieio-backward-compatibility.
835
836 * emacs-lisp/eieio-opt.el (eieio-read-generic-p): Remove.
837 (eieio-read-generic): Use `generic-p' instead.
838
839 * emacs-lisp/eieio-core.el (eieio-backward-compatibility): New var.
840 (eieio-defclass-autoload): Obey it.
841 (eieio--class-object): Improve error behavior.
842 (eieio-class-children-fast, same-class-fast-p): Remove. Inline at
843 every use site.
844 (eieio--defgeneric-form-primary-only): Rename from
845 eieio-defgeneric-form-primary-only; update all callers.
846 (eieio--defgeneric-form-primary-only-one): Rename from
847 eieio-defgeneric-form-primary-only-one; update all callers.
848 (eieio-defgeneric-reset-generic-form)
849 (eieio-defgeneric-reset-generic-form-primary-only)
850 (eieio-defgeneric-reset-generic-form-primary-only-one): Remove.
851 (eieio--method-optimize-primary): New function to replace them.
852 (eieio--defmethod, eieio-defmethod): Use it.
853 (eieio--perform-slot-validation): Rename from
854 eieio-perform-slot-validation; update all callers.
855 (eieio--validate-slot-value): Rename from eieio-validate-slot-value.
856 Change `class' to be a class object. Update all callers.
857 (eieio--validate-class-slot-value): Rename from
858 eieio-validate-class-slot-value. Change `class' to be a class object.
859 Update all callers.
860 (eieio-oset-default): Accept class object as well.
861 (eieio--generic-call-primary-only): Rename from
862 eieio-generic-call-primary-only. Update all callers.
863
864 * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
865 Improve error messages.
866 (eieio-persistent-slot-type-is-class-p): Handle `list-of' types, as
867 well as user-defined types. Emit errors for legacy types like
868 <class>-child and <class>-list, if not eieio-backward-compatibility.
869
870 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
871
872 * emacs-lisp/eieio.el (eieio-class-parents): Accept class objects.
873 (eieio--class-slot-initarg): Rename from class-slot-initarg.
874 Change `class' arg to be a class object. Update all callers.
875 (call-next-method): Adjust to new return value of `eieio-generic-form'.
876 (eieio-default-superclass): Set var to the class object.
877 (eieio-edebug-prin1-to-string): Fix recursive call for lists.
878 Change print behavior to affect class objects rather than
879 class symbols.
880
881 * emacs-lisp/eieio-core.el (eieio-class-object): New function.
882 (eieio-class-parents-fast): Remove macro.
883 (eieio--class-option-assoc): Rename from class-option-assoc.
884 Update all callers.
885 (eieio--class-option): Rename from class-option. Change `class' arg to
886 be a class object. Update all callers.
887 (eieio--class-method-invocation-order): Rename from
888 class-method-invocation-order. Change `class' arg to be a class
889 object. Update all callers.
890 (eieio-defclass-autoload, eieio-defclass): Set the `parent' field to
891 a list of class objects rather than names.
892 (eieio-defclass): Remove redundant quotes. Use `eieio-oref-default'
893 for accessors to class allocated slots.
894 (eieio--perform-slot-validation-for-default): Rename from
895 eieio-perform-slot-validation-for-default. Update all callers.
896 (eieio--add-new-slot): Rename from eieio-add-new-slot.
897 Update all callers. Use push.
898 (eieio-copy-parents-into-subclass): Adjust to new content of
899 `parent' field. Use dolist.
900 (eieio-oref): Remove support for providing a class rather than
901 an object.
902 (eieio-oref-default): Prefer class objects over class names.
903 (eieio--slot-originating-class-p): Rename from
904 eieio-slot-originating-class-p. Update all callers. Use `or'.
905 (eieio--slot-name-index): Turn check into assertion.
906 (eieio--class-slot-name-index): Rename from
907 eieio-class-slot-name-index. Change `class' arg to be a class object.
908 Update all callers.
909 (eieio-attribute-to-initarg): Move to eieio-test-persist.el.
910 (eieio--c3-candidate): Rename from eieio-c3-candidate.
911 Update all callers.
912 (eieio--c3-merge-lists): Rename from eieio-c3-merge-lists.
913 Update all callers.
914 (eieio--class-precedence-c3): Rename from eieio-class-precedence-c3.
915 Update all callers.
916 (eieio--class-precedence-dfs): Rename from eieio-class-precedence-dfs.
917 Update all callers.
918 (eieio--class-precedence-bfs): Rename from eieio-class-precedence-bfs.
919 Update all callers. Adjust to new `parent' content.
920 (eieio--class-precedence-list): Rename from -class-precedence-list.
921 Update all callers.
922 (eieio-generic-call): Use autoloadp and autoload-do-load.
923 Slight simplification.
924 (eieio-generic-call, eieio-generic-call-primary-only): Adjust to new
925 return value of `eieio-generic-form'.
926 (eieiomt-add): Index the hashtable with class objects rather than
927 class names.
928 (eieio-generic-form): Accept class objects as well.
929
930 * emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
931 Adjust to new convention for eieio-persistent-validate/fix-slot-value.
932 (eieio-persistent-validate/fix-slot-value):
933 Change `class' arg to be a class object. Update all callers.
934
935 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
936
937 * emacs-lisp/eieio.el (child-of-class-p): Make it accept class objects
938 additionally to class names.
939
940 * emacs-lisp/eieio-core.el (eieio--with-scoped-class): Use let-binding.
941 (object): Remove first (constant) slot; rename second to `class-tag'.
942 (eieio--object-class-object, eieio--object-class-name): New funs
943 to replace eieio--object-class.
944 (eieio--class-object, eieio--class-p): New functions.
945 (same-class-fast-p): Make it a defsubst, change its implementation
946 to check the class objects rather than their names.
947 (eieio-object-p): Rewrite.
948 (eieio-defclass): Adjust the object initialization according to the new
949 object layout.
950 (eieio--scoped-class): Declare it returns a class object (not a class
951 name any more). Adjust calls accordingly (along with calls to
952 eieio--with-scoped-class).
953 (eieio--slot-name-index): Rename from eieio-slot-name-index and change
954 its class arg to be a class object. Adjust callers accordingly.
955 (eieio-slot-originating-class-p): Make its start-class arg a class
956 object. Adjust all callers.
957 (eieio--initarg-to-attribute): Rename from eieio-initarg-to-attribute.
958 Make its `class' arg a class object. Adjust all callers.
959
960 * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
961 Use eieio--slot-name-index rather than eieio-slot-name-index.
962
963 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
964
965 * emacs-lisp/eieio.el (make-instance): Simplify by not adding an object
966 name argument.
967 (eieio-object-name): Use eieio-object-name-string.
968 (eieio--object-names): New const.
969 (eieio-object-name-string, eieio-object-set-name-string): Re-implement
970 using a hashtable rather than a built-in slot.
971 (eieio-constructor): Rename from `constructor'. Remove `newname' arg.
972 (clone): Don't mess with the object's "name".
973
974 * emacs-lisp/eieio-custom.el (eieio-widget-test): Remove dummy arg.
975 (eieio-object-value-get): Use eieio-object-set-name-string.
976
977 * emacs-lisp/eieio-core.el (eieio--defalias): Follow aliases.
978 (eieio--object): Remove `name' field.
979 (eieio-defclass): Adjust to new convention where constructors don't
980 take an "object name" any more.
981 (eieio--defgeneric-init-form, eieio--defmethod): Follow aliases.
982 (eieio-validate-slot-value, eieio-oset-default)
983 (eieio-slot-name-index): Don't hardcode eieio--object-num-slots.
984 (eieio-generic-call-primary-only): Simplify.
985
986 * emacs-lisp/eieio-base.el (clone) <eieio-instance-inheritor>:
987 Use call-next-method.
988 (eieio-constructor): Rename from `constructor'.
989 (eieio-persistent-convert-list-to-object): Drop objname.
990 (eieio-persistent-validate/fix-slot-value): Don't hardcode
991 eieio--object-num-slots.
992 (eieio-named): Use a normal slot.
993 (slot-missing) <eieio-named>: Remove.
994 (eieio-object-name-string, eieio-object-set-name-string, clone)
995 <eieio-named>: New methods.
996
997 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
998
999 * emacs-lisp/eieio-core.el (eieio--class-v): Rename from class-v.
1000 (method-*): Add a "eieio--" prefix to those constants.
1001
1002 * emacs-lisp/eieio.el: Move edebug specs to the corresponding macro.
1003
1004 * emacs-lisp/eieio-speedbar.el: Use lexical-binding.
1005
1006 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1007
1008 * emacs-lisp/eieio.el (child-of-class-p): Fix case where `class' is
1009 `eieio-default-superclass'.
1010
1011 * emacs-lisp/eieio-datadebug.el: Use lexical-binding.
1012
1013 * emacs-lisp/eieio-custom.el: Use lexical-binding.
1014 (eieio-object-value-to-abstract): Simplify.
1015
1016 * emacs-lisp/eieio-opt.el (eieio-build-class-list): Use cl-mapcan.
1017 (eieio-build-class-alist): Use dolist.
1018 (eieio-all-generic-functions): Adjust to use of hashtables.
1019
1020 * emacs-lisp/eieio-core.el (class): Rename field symbol-obarray to
1021 symbol-hashtable. It contains a hashtable instead of an obarray.
1022 (generic-p): Use symbol property `eieio-method-hashtable' instead of
1023 `eieio-method-obarray'.
1024 (generic-primary-only-p, generic-primary-only-one-p):
1025 Slight optimization.
1026 (eieio-defclass-autoload-map): Use a hashtable instead of an obarray.
1027 (eieio-defclass-autoload, eieio-defclass): Adjust/simplify accordingly.
1028 (eieio-class-un-autoload): Use autoload-do-load.
1029 (eieio-defclass): Use dolist, cl-pushnew, cl-callf.
1030 Use new cl-deftype-satisfies. Adjust to use of hashtables.
1031 Don't hardcode the value of eieio--object-num-slots.
1032 (eieio-defgeneric-form-primary-only-one): Remove `doc-string' arg.
1033 Use a closure rather than a backquoted lambda.
1034 (eieio--defmethod): Adjust call accordingly. Set doc-string via the
1035 function-documentation property.
1036 (eieio-slot-originating-class-p, eieio-slot-name-index)
1037 (eieiomt--optimizing-hashtable, eieiomt-install, eieiomt-add)
1038 (eieio-generic-form): Adjust to use of hashtables.
1039 (eieiomt--sym-optimize): Rename from eieiomt-sym-optimize; take
1040 additional class argument.
1041 (eieio-generic-call-methodname): Remove, unused.
1042
1043 * emacs-lisp/eieio-base.el (eieio-persistent-slot-type-is-class-p):
1044 Prefer \' to $.
1045
1046 2015-01-08 Eli Zaretskii <eliz@gnu.org>
1047
1048 * simple.el (line-move-visual): When converting X pixel coordinate
1049 to temporary-goal-column, adjust the value for right-to-left
1050 screen lines. This fixes vertical-motion, next/prev-line, etc.
1051
1052 2015-01-08 Glenn Morris <rgm@gnu.org>
1053
1054 * files.el (file-tree-walk): Remove; of unknown authorship. (Bug#19325)
1055
1056 2015-01-07 K. Handa <handa@gnu.org>
1057
1058 * international/ccl.el (define-ccl-program): Improve the docstring.
1059
1060 2015-01-06 Sam Steingold <sds@gnu.org>
1061
1062 * shell.el (shell-display-buffer-actions): Remove,
1063 use `display-buffer-alist' instead.
1064
1065 2015-01-05 Dmitry Gutov <dgutov@yandex.ru>
1066
1067 * progmodes/xref.el (xref--insert-xrefs): Add `help-echo' property
1068 to the references.
1069
1070 2015-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
1071
1072 * minibuffer.el (completion-category-defaults): New var.
1073 Set unicode-name to use substring completion.
1074 (completion-category-defaults): Set it to nil.
1075
1076 2015-01-04 Dmitry Gutov <dgutov@yandex.ru>
1077
1078 Add mouse interaction to xref.
1079 * progmodes/xref.el (xref--button-map): New variable.
1080 (xref--mouse-2): New command.
1081 (xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
1082 the inserted references.
1083
1084 2015-01-04 Paul Eggert <eggert@cs.ucla.edu>
1085
1086 Less 'make' chatter for lisp dir
1087 * Makefile.in (THEFILE): Define to be 'no-such-file' by default,
1088 to make it clearer that the caller must specify it.
1089 (compile-onefile): Remove, replacing by ...
1090 ($(THEFILE)c): ... new rule. This lets us use AM_V_GEN here.
1091 ($(THEFILE)c, .el.elc, $(MH_E_DIR)/mh-loaddefs.el)
1092 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
1093 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
1094 Use AM_V_GEN to lessen 'make' chatter.
1095 (.el.elc): Omit duplicate comment.
1096
1097 Less 'make' chatter in batch mode
1098 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1099 * emacs-lisp/bytecomp.el (byte-compile-file):
1100 * files.el (save-buffer, basic-save-buffer):
1101 * international/quail.el (quail-update-leim-list-file):
1102 Don't output messages like "Generating ..." in batch mode.
1103
1104 2015-01-04 Dmitry Gutov <dgutov@yandex.ru>
1105
1106 Unbreak `mouse-action' property in text buttons.
1107 * button.el (push-button): Fix regression from 2012-12-06.
1108
1109 2015-01-03 Dmitry Gutov <dgutov@yandex.ru>
1110
1111 * progmodes/xref.el (xref-marker-stack-empty-p): New function.
1112
1113 * menu-bar.el (menu-bar-goto-menu): Use it.
1114
1115 2015-01-03 Dmitry Gutov <dgutov@yandex.ru>
1116
1117 * progmodes/xref.el (xref--window-configuration): New variable.
1118 (xref-show-location-at-point): New command.
1119 (xref--restore-window-configuration): New function.
1120 (xref-next-line, xref-prev-line): Delegate to
1121 `xref-show-location-at-point'.
1122 (xref--location-at-point): Don't signal the error.
1123 (xref-goto-xref): Do that here instead.
1124 (xref--xref-buffer-mode): Add `xref--restore-window-configuration'
1125 to `pre-command-hook'.
1126 (xref--xref-buffer-mode-map): Don't remap `next-line' and
1127 `previous-line'. Additionally bind `xref-next-line' and
1128 `xref-prev-line' to `n' and `p' respectively.
1129 Bind `xref-show-location-at-point' to `C-o'.
1130
1131 2015-01-01 Eli Zaretskii <eliz@gnu.org>
1132
1133 * tool-bar.el (tool-bar-local-item)
1134 (tool-bar-local-item-from-menu): Call force-mode-line-update to
1135 make sure the tool-bar changes show on display.
1136
1137 2015-01-01 Michael Albinus <michael.albinus@gmx.de>
1138
1139 Sync with Tramp 2.2.11.
1140
1141 * net/tramp-compat.el (top): Require cl-macs for Emacs 22.
1142 Make an alias for `default-toplevel-value' if it doesn't exist.
1143
1144 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
1145 Use `tramp-compat-delete-directory'.
1146
1147 * net/trampver.el: Update release number.
1148
1149 2015-01-01 Filipp Gunbin <fgunbin@fastmail.fm>
1150
1151 * autorevert.el (auto-revert-handler): Fix auto-revert-tail-mode
1152 for remote files. (Bug#19449)
1153
1154 2015-01-01 Simen Heggestøyl <simenheg@gmail.com> (tiny change)
1155
1156 * textmodes/css-mode.el (scss-mode): Fix typo (bug#19446).
1157
1158 2014-12-31 Paul Eggert <eggert@cs.ucla.edu>
1159
1160 Less 'make' chatter in lisp directory
1161 * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_GEN, am__v_GEN_)
1162 (am__v_GEN_0, am__v_GEN_1): New macros, from ../src/Makefile.in.
1163 (custom-deps, finder-data, autoloads, update-subdirs): Use them.
1164
1165 2014-12-31 Filipp Gunbin <fgunbin@fastmail.fm>
1166
1167 * info.el (info-display-manual): Limit the completion alternatives
1168 to currently visited manuals if prefix argument is non-nil.
1169
1170 2014-12-30 Paul Eggert <eggert@cs.ucla.edu>
1171
1172 * Makefile.in (semantic): Simplify.
1173
1174 2014-12-30 Juri Linkov <juri@linkov.net>
1175
1176 * net/eww.el (eww-isearch-next-buffer): New function.
1177 (eww-mode): Set multi-isearch-next-buffer-function to it.
1178
1179 2014-12-30 Dmitry Gutov <dgutov@yandex.ru>
1180
1181 * progmodes/xref.el (xref-find-definitions): Mention "no
1182 identifier at point" case in the docstring.
1183
1184 * menu-bar.el (menu-bar-goto-uses-etags-p): New function.
1185 (menu-bar-goto-menu): Use it to show or hide the `set-tags-name'
1186 and `separator-tag-file' items.
1187
1188 2014-12-29 Paul Eggert <eggert@cs.ucla.edu>
1189
1190 * obsolete/pc-select.el (pc-selection-mode): Use system-type.
1191 This is instead of system-name, which is both wrong here and obsolete.
1192 * desktop.el (desktop-save-frameset):
1193 * dnd.el (dnd-get-local-file-uri):
1194 * nxml/rng-uri.el (rng-uri-file-name-1):
1195 Prefer (system-name) to system-name, and avoid naming
1196 locals 'system-name'.
1197 * startup.el (system-name): Now an obsolete variable. (Bug#19438)
1198
1199 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
1200
1201 * menu-bar.el (menu-bar-next-tag-other-window)
1202 (menu-bar-next-tag): Remove.
1203
1204 2014-12-29 K. Handa <handa@gnu.org>
1205
1206 * international/mule.el (make-translation-table-from-alist):
1207 Accept nil or zero-length vector for FROM and TO.
1208
1209 2014-12-29 Lars Ingebrigtsen <larsi@gnus.org>
1210
1211 * net/eww.el (eww-mode): Truncate overlong lines for prettier
1212 display when resizing.
1213
1214 * net/shr.el (shr-width): Default to using the window width when
1215 rendering.
1216
1217 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
1218
1219 Unbreak jumping to an alias's definition.
1220 * emacs-lisp/find-func.el (find-function-library): Return a pair
1221 (ORIG-FUNCTION . LIBRARY) instead of just its second element.
1222 (find-function-noselect): Use it.
1223 * progmodes/elisp-mode.el (elisp--xref-identifier-file): Rename to
1224 `elisp--xref-identifier-location', incorporate logic from
1225 `elisp--xref-find-definitions', use the changed
1226 `find-function-library' return value.
1227
1228 2014-12-29 Juri Linkov <juri@linkov.net>
1229
1230 * comint.el (comint-history-isearch-message): Use field-beginning
1231 instead of comint-line-beginning-position - that's more fixes for
1232 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
1233 (comint-history-isearch-message): Fix args of isearch-message-prefix.
1234
1235 2014-12-29 Juri Linkov <juri@linkov.net>
1236
1237 * vc/vc-dir.el (vc-dir-display-file): New command (bug#19450).
1238 (vc-dir-mode-map): Bind it to "\C-o".
1239 (vc-dir-menu-map): Add it to menu.
1240
1241 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
1242
1243 * progmodes/etags.el (find-tag-other-window)
1244 (find-tag-other-frame, find-tag-regexp, tags-loop-continue)
1245 (tags-apropos): Declare obsolete.
1246
1247 * menu-bar.el (menu-bar-goto-menu): Replace all but one etags item
1248 with xref ones.
1249
1250 2014-12-28 Eli Zaretskii <eliz@gnu.org>
1251
1252 * international/mule.el (define-coding-system): Fix typos in the
1253 doc string.
1254
1255 2014-12-28 Kenichi Handa <handa@gnu.org>
1256
1257 * international/mule.el (define-coding-system): Improve the doc
1258 string.
1259
1260 2014-12-28 Ivan Shmakov <ivan@siamics.net>
1261
1262 * net/shr.el (shr-tag-table): Fix handling of tbody/header/footer
1263 elements in tables (bug#19444).
1264
1265 * net/eww.el (eww-handle-link): Fix typo in "up" rel handling
1266 (bug#19445).
1267
1268 2014-12-28 Juri Linkov <juri@linkov.net>
1269
1270 * vc/compare-w.el: Require diff-mode for diff faces.
1271 (compare-windows-removed, compare-windows-added): New faces
1272 inheriting from diff faces.
1273 (compare-windows): Define obsolete face alias.
1274 (compare-windows-highlight): Replace face `compare-windows' with
1275 new faces `compare-windows-added' and `compare-windows-removed'
1276 (bug#19451).
1277 (compare-windows-get-recent-window): Signal an error when
1278 no other window is found (bug#19170).
1279
1280 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
1281
1282 * progmodes/elisp-mode.el (elisp--xref-identifier-file):
1283 Skip features that have no sources.
1284
1285 * simple.el (execute-extended-command):
1286 When `suggest-key-bindings' is nil, don't.
1287
1288 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1289
1290 python.el: Native readline completion.
1291 * progmodes/python.el (python-shell-completion-native-disabled-interpreters)
1292 (python-shell-completion-native-enable)
1293 (python-shell-completion-native-output-timeout): New defcustoms.
1294 (python-shell-completion-native-interpreter-disabled-p)
1295 (python-shell-completion-native-try)
1296 (python-shell-completion-native-setup)
1297 (python-shell-completion-native-turn-off)
1298 (python-shell-completion-native-turn-on)
1299 (python-shell-completion-native-turn-on-maybe)
1300 (python-shell-completion-native-turn-on-maybe-with-msg)
1301 (python-shell-completion-native-toggle): New functions.
1302 (python-shell-completion-native-get-completions): New function.
1303 (python-shell-completion-at-point): Use it.
1304
1305 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1306
1307 python.el: Enhance shell user interaction and deprecate
1308 python-shell-get-or-create-process.
1309 * progmodes/python.el (python-shell-get-process-or-error):
1310 New function.
1311 (python-shell-with-shell-buffer): Use it.
1312 (python-shell-send-string, python-shell-send-region)
1313 (python-shell-send-buffer, python-shell-send-defun)
1314 (python-shell-send-file, python-shell-switch-to-shell): Use it.
1315 Add argument MSG to display user-friendly message when no process
1316 is running.
1317 (python-shell-switch-to-shell): Call pop-to-buffer with NORECORD.
1318 (python-shell-make-comint): Rename argument SHOW from POP.
1319 Use display-buffer instead of pop-to-buffer.
1320 (run-python): Doc fix. Return process.
1321 (python-shell-get-or-create-process): Make obsolete.
1322
1323 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1324
1325 * progmodes/python.el (python-shell-buffer-substring):
1326 Handle cornercase when region sent starts at point-min.
1327
1328 2014-12-27 Eli Zaretskii <eliz@gnu.org>
1329
1330 * language/misc-lang.el (composition-function-table): Add Syriac
1331 characters and also ZWJ/ZWNJ.
1332 See http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html
1333 for the details.
1334
1335 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1336
1337 python.el: Fix message when sending region.
1338 * progmodes/python.el (python-shell-send-region): Rename argument
1339 send-main from nomain. Fix message.
1340 (python-shell-send-buffer): Rename argument send-main from arg.
1341
1342 python.el: Cleanup temp files even with eval errors.
1343 * progmodes/python.el (python-shell-send-file): Make file-name
1344 mandatory. Fix temp file removal in the majority of cases.
1345
1346 python.el: Handle file encoding for shell.
1347 * progmodes/python.el (python-rx-constituents): Add coding-cookie.
1348 (python-shell--save-temp-file): Write file with proper encoding.
1349 (python-shell-buffer-substring): Add coding cookie for detected
1350 encoding to generated content. Fix blank lines when removing
1351 if-name-main block.
1352 (python-shell-send-file): Handle file encoding.
1353 (python-info-encoding-from-cookie)
1354 (python-info-encoding): New functions.
1355
1356 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
1357
1358 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
1359 Use `tramp-rsh-end-of-line', it ought to be more robust.
1360
1361 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
1362
1363 * progmodes/js.el (js-syntax-propertize): "return" can't be divided
1364 (bug#19397).
1365
1366 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
1367
1368 * net/tramp.el (tramp-read-passwd): Ignore errors from `auth-source-*'.
1369
1370 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Use "\n"
1371 as end-of-line delimeter for passwords, when running on MS Windows.
1372
1373 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
1374
1375 * progmodes/sh-script.el (sh-set-shell): Don't change the global value
1376 of indent-line-function (bug#19433).
1377
1378 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1379
1380 Fix line numbers on Python shell.
1381 * progmodes/python.el (python-shell--save-temp-file): Do not
1382 append coding cookie.
1383 (python-shell-send-string): Generalize for
1384 python-shell-send-region.
1385 (python--use-fake-loc): Delete var.
1386 (python-shell-buffer-substring): Cleanup fake-loc logic.
1387 (python-shell-send-region): Remove fake-loc logic, simplify.
1388
1389 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
1390
1391 * progmodes/python.el (python-indent-post-self-insert-function):
1392 Make colon to re-indent only for dedenters, handling
1393 multiline-statements gracefully.
1394
1395 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
1396
1397 * net/tramp.el (tramp-handle-insert-file-contents):
1398 Set `find-file-not-found-functions' in case of errors. (Bug#18623)
1399
1400 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
1401
1402 * net/tramp-sh.el (tramp-send-command-and-read): New optional
1403 arg MARKER.
1404 (tramp-get-remote-path): Use it.
1405
1406 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
1407
1408 * subr.el (redisplay-dont-pause): Mark as obsolete.
1409
1410 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
1411
1412 * net/tramp.el (tramp-error-with-buffer): Call `message' properly.
1413 (tramp-accept-process-output): Use nil as argument for
1414 `accept-process-output', when there is a gateway prepended.
1415
1416 * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in
1417 wrong debug buffer.
1418 (tramp-gw-open-connection): Set process coding system 'binary.
1419 (tramp-gw-open-network-stream): Handle HTTP error 403.
1420
1421 * net/tramp-sh.el (tramp-compute-multi-hops): Suppress traces in
1422 wrong debug buffer.
1423 (tramp-maybe-open-connection): Set connection property "gateway".
1424
1425 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
1426
1427 * subr.el (sit-for): Tweak docstring (bug#19381).
1428
1429 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
1430
1431 * vc/vc-git.el (vc-git-after-dir-status-stage): Move `up-to-date'
1432 stage to after `diff-index' (bug#19386).
1433
1434 2014-12-27 João Távora <joaotavora@gmail.com>
1435
1436 * textmodes/tex-mode.el (tex-insert-quote): Consider and respect
1437 `electric-pair-mode' (bug#19356).
1438
1439 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
1440
1441 elisp-xref-find: Don't create buffers eagerly.
1442
1443 * progmodes/elisp-mode.el (elisp--identifier-location): Fold back
1444 into `elisp--company-location'.
1445 (elisp--identifier-completion-table): Rename to
1446 `elisp--identifier-completion-table', and do not include just any
1447 symbols with a property list.
1448 (elisp-completion-at-point): Revert the 2014-12-25 change.
1449 (elisp--xref-identifier-file): New function.
1450 (elisp--xref-find-definitions): Use it.
1451
1452 * emacs-lisp/find-func.el (find-function-library): New function,
1453 extracted from `find-function-noselect'.
1454
1455 * progmodes/xref.el (xref-elisp-location): New class.
1456 (xref-make-elisp-location): New function.
1457 (xref-location-marker): New implementation.
1458
1459 2014-12-27 Juri Linkov <juri@linkov.net>
1460
1461 * minibuffer.el (minibuffer-completion-help):
1462 Use shrink-window-if-larger-than-buffer in window-height
1463 when temp-buffer-resize-mode is nil.
1464
1465 * window.el (with-displayed-buffer-window): Remove window-height
1466 from the action alist in the temp-buffer-window-show call
1467 when window-height is handled explicitly afterwards (bug#19355).
1468
1469 2014-12-27 Juri Linkov <juri@linkov.net>
1470
1471 Support subdirectories when saving places in dired.
1472 * saveplace.el (toggle-save-place, save-place-to-alist)
1473 (save-places-to-alist, save-place-dired-hook):
1474 Use dired-current-directory instead of dired-directory (bug#19436).
1475 (save-place-dired-hook): Add check for alist to make the new
1476 format future-proof to allow other possible formats.
1477
1478 2014-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
1479
1480 python.el: Generate clearer shell buffer names.
1481 * progmodes/python.el (python-shell-get-process-name)
1482 (python-shell-internal-get-process-name): Use `buffer-name`.
1483 (python-shell-internal-get-or-create-process): Simplify.
1484
1485 2014-12-26 Dmitry Gutov <dgutov@yandex.ru>
1486
1487 Add basic xref apropos implementation to elisp-mode.
1488
1489 * progmodes/elisp-mode.el (elisp--xref-find-definitions):
1490 Filter out nil results.
1491 (elisp--xref-find-apropos): New function.
1492 (elisp-xref-find): Use it.
1493
1494 * progmodes/xref.el (xref--show-xrefs): Use `user-error'.
1495
1496 2014-12-25 Filipp Gunbin <fgunbin@fastmail.fm>
1497
1498 * dired-aux.el (dired-maybe-insert-subdir):
1499 Make dired-maybe-insert-subdir always skip trivial files.
1500
1501 2014-12-25 Helmut Eller <eller.helmut@gmail.com>
1502 Dmitry Gutov <dgutov@yandex.ru>
1503
1504 Consolidate cross-referencing commands.
1505
1506 Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and
1507 `C-x 5 .' from etags.el to xref.el.
1508
1509 * progmodes/xref.el: New file.
1510
1511 * progmodes/elisp-mode.el (elisp--identifier-types): New variable.
1512 (elisp--identifier-location): New function, extracted from
1513 `elisp--company-location'.
1514 (elisp--company-location): Use it.
1515 (elisp--identifier-completion-table): New variable.
1516 (elisp-completion-at-point): Use it.
1517 (emacs-lisp-mode): Set the local values of `xref-find-function'
1518 and `xref-identifier-completion-table-function'.
1519 (elisp-xref-find, elisp--xref-find-definitions)
1520 (elisp--xref-identifier-completion-table): New functions.
1521
1522 * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in
1523 favor of `xref--marker-ring'.
1524 (tags-lazy-completion-table): Autoload.
1525 (tags-reset-tags-tables): Use `xref-clear-marker-stack'.
1526 (find-tag-noselect): Use `xref-push-marker-stack'.
1527 (pop-tag-mark): Make an alias for `xref-pop-marker-stack'.
1528 (etags--xref-limit): New constant.
1529 (etags-xref-find, etags--xref-find-definitions): New functions.
1530
1531 2014-12-25 Martin Rudalics <rudalics@gmx.at>
1532
1533 * cus-start.el (resize-mini-windows): Make it customizable.
1534
1535 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org>
1536
1537 * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE
1538 to (info "(emacs)Contributing"). (Bug#19299)
1539
1540 2014-12-24 Martin Rudalics <rudalics@gmx.at>
1541
1542 * window.el (mouse-autoselect-window-position-1): New variable.
1543 (mouse-autoselect-window-cancel)
1544 (mouse-autoselect-window-select, handle-select-window):
1545 With delayed autoselection select window only if mouse moves after
1546 selecting its frame.
1547
1548 2014-12-24 Michael Albinus <michael.albinus@gmx.de>
1549
1550 * eshell/esh-ext.el (eshell-find-interpreter): Expand relative
1551 remote file names. (Bug#18782)
1552
1553 2014-12-23 Sam Steingold <sds@gnu.org>
1554
1555 * shell.el (shell-display-buffer-actions): New user option.
1556 (shell): Pass it to `pop-to-buffer' instead of hard-coding
1557 `pop-to-buffer-same-window'.
1558
1559 2014-12-23 Stefan Monnier <monnier@iro.umontreal.ca>
1560
1561 * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var.
1562 (js-syntax-propertize-regexp): Use it to recognize "slash in
1563 a character class" (bug#19397).
1564
1565 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
1566
1567 * completion.el: Use post-self-insert-hook (bug#19400).
1568 (completion-separator-self-insert-command)
1569 (completion-separator-self-insert-autofilling): Remove.
1570 (completion-separator-chars): New var.
1571 (completion-c-mode-hook, completion-setup-fortran-mode): Use it instead
1572 of changing the keymap.
1573 (completion--post-self-insert): New function.
1574 (dynamic-completion-mode): Use it instead of rebinding keys.
1575 (cmpl--completion-string): Rename from completion-string.
1576 (add-completion-to-head, delete-completion): Let-bind it explicitly.
1577
1578 2014-12-22 Bozhidar Batsov <bozhidar@batsov.com>
1579
1580 * progmodes/ruby-mode.el (ruby--string-region): Simplify code
1581 by leveraging `syntax-ppss'.
1582
1583 2014-12-22 Artur Malabarba <bruce.connor.am@gmail.com>
1584
1585 * let-alist.el (let-alist): Use `make-symbol' instead of `gensym'.
1586
1587 2014-12-20 Michael Albinus <michael.albinus@gmx.de>
1588
1589 * net/tramp-sh.el (tramp-histfile-override): Add :version.
1590
1591 2014-12-20 Teodor Zlatanov <tzz@lifelogs.com>
1592
1593 * net/tramp-sh.el (tramp-histfile-override): Clarify docstring.
1594
1595 2014-12-19 Artur Malabarba <bruce.connor.am@gmail.com>
1596
1597 * let-alist.el (let-alist): Enable access to deeper alists by
1598 using dots inside the dotted symbols.
1599
1600 2014-12-19 Alan Mackenzie <acm@muc.de>
1601
1602 Make C++11 uniform init syntax work.
1603 New keywords "final" and "override".
1604 * progmodes/cc-engine.el (c-back-over-member-initializer-braces):
1605 New function.
1606 (c-guess-basic-syntax): Set `containing-sex' and `lim' using the
1607 new function.
1608 * progmodes/cc-fonts.el (c-font-lock-declarations): Check more
1609 carefully for "are we at a declarator?" using
1610 c-back-over-member-initializers.
1611 * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final"
1612 and "override" in the C++ value.
1613
1614 2014-12-19 Martin Rudalics <rudalics@gmx.at>
1615
1616 * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'.
1617
1618 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org>
1619
1620 * net/nsm.el (nsm-save-host): Don't save the host name twice
1621 (bug#19269).
1622
1623 2014-12-18 Sam Steingold <sds@gnu.org>
1624
1625 Keyboard interface (C-f10) to `mouse-buffer-menu' (C-down-mouse-1).
1626 * mouse.el (mouse-buffer-menu-map): Extract from `mouse-buffer-menu'.
1627 (mouse-buffer-menu): Use `mouse-buffer-menu-map'.
1628 * menu-bar.el (menu-bar-buffer-vector): Extract from
1629 `menu-bar-update-buffers'.
1630 (menu-bar-update-buffers): Use `menu-bar-buffer-vector'.
1631 (buffer-menu-open): New user command, bound globally to C-f10,
1632 provides a keyboard interface to `mouse-buffer-menu' (C-down-mouse-1).
1633 (mouse-buffer-menu-keymap): Use `menu-bar-buffer-vector' to
1634 convert the value returned by `mouse-buffer-menu-map' to a list
1635 acceptable to `popup-menu' for `buffer-menu-open'.
1636
1637 2014-12-18 Artur Malabarba <bruce.connor.am@gmail.com>
1638
1639 * let-alist.el (let-alist): Evaluate the `alist' argument only once.
1640
1641 2014-12-18 Sam Steingold <sds@gnu.org>
1642
1643 * emacs-lisp/package.el: Avoid compilation warning by declaring
1644 the `find-library-name' function.
1645 (package-activate-1): Fix the `with-demoted-errors' calls:
1646 the first argument must be a string literal.
1647
1648 2014-12-18 Martin Rudalics <rudalics@gmx.at>
1649
1650 Add code for "preserving" window sizes.
1651 * dired.el (dired-pop-to-buffer): Call fit-window-to-buffer with
1652 `preserve-size' t.
1653 (dired-mark-pop-up): Preserve size of window showing marked files.
1654 * electric.el (Electric-pop-up-window):
1655 * help.el (resize-temp-buffer-window): Call fit-window-to-buffer
1656 with `preserve-size' t.
1657 * minibuffer.el (minibuffer-completion-help):
1658 Use `resize-temp-buffer-window' instead of `fit-window-to-buffer'
1659 (Bug#19355). Preserve size of completions window.
1660 * register.el (register-preview): Preserve size of register
1661 preview window.
1662 * tmm.el (tmm-add-prompt): Call fit-window-to-buffer
1663 with `preserve-size' t (Bug#1291).
1664 * window.el (with-displayed-buffer-window): Add calls to
1665 `window-preserve-size'.
1666 (window-min-pixel-size, window--preservable-size)
1667 (window-preserve-size, window-preserved-size)
1668 (window--preserve-size, window--min-size-ignore-p): New functions.
1669 (window-min-size, window-min-delta, window--resizable)
1670 (window--resize-this-window, split-window-below)
1671 (split-window-right): Amend doc-string.
1672 (window--min-size-1, window-sizable, window--size-fixed-1)
1673 (window-size-fixed-p, window--min-delta-1)
1674 (frame-windows-min-size, window--max-delta-1, window-resize)
1675 (window--resize-child-windows, window--resize-siblings)
1676 (enlarge-window, shrink-window, split-window): Handle preserving
1677 window sizes.
1678 (adjust-window-trailing-edge): Handle preserving window
1679 sizes. Signal user-error instead of an error when there's no
1680 window above or below.
1681 (window--state-put-2): Handle horizontal scroll bars.
1682 (window--display-buffer): Call `preserve-size' if asked for.
1683 (display-buffer): Mention `preserve-size' alist member in doc-string.
1684 (fit-window-to-buffer): New argument PRESERVE-SIZE.
1685 * textmodes/ispell.el (ispell-command-loop): Suppress horizontal
1686 scroll bar on ispell's windows. Don't count window lines and
1687 don't deal with dedicated windows.
1688 (ispell-show-choices, ispell-help): Let `ispell-display-buffer'
1689 do the window handling.
1690 (ispell-adjusted-window-height, ispell-overlay-window): Remove.
1691 (ispell-display-buffer): New function to reuse, create and fit
1692 window to ispell's buffers. (Bug#3413)
1693
1694 2014-12-18 Dmitry Gutov <dgutov@yandex.ru>
1695
1696 * emacs-lisp/package.el (package-activate): Do not re-activate or
1697 reload the dependencies (bug#19390).
1698
1699 2014-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
1700
1701 * progmodes/cc-cmds.el (c-subword-mode): Alias to subword-mode.
1702 (c-update-modeline):
1703 * progmodes/cc-langs.el (c-mode-menu): Use c-subword-mode.
1704 * progmodes/cc-mode.el (subword-mode): Move autoload to cc-cmds.el.
1705 (c-mode-base-map): Use c-subword-mode.
1706
1707 2014-12-18 Eli Zaretskii <eliz@gnu.org>
1708
1709 * international/mule-diag.el (describe-font-internal):
1710 Display additional info returned by font-info.
1711
1712 * linum.el (linum--face-width): Rename from linum--face-height,
1713 and use the new functionality of font-info.
1714 (linum-update-window): Use linum--face-width and frame-char-width,
1715 instead of approximating with height.
1716
1717 2014-12-18 Dmitry Gutov <dgutov@yandex.ru>
1718
1719 * vc/vc-svn.el (vc-svn-dir-status-files): Revert the 2014-12-02
1720 change (bug#19387). Use `apply' on `vc-dir-command' (bug#19405).
1721
1722 * emacs-lisp/package.el (package-activate-1): Add RELOAD argument
1723 and a docstring.
1724 (package-activate): Call itself on dependencies on PACKAGE with
1725 the same FORCE argument. Pass FORCE as RELOAD into
1726 `package-activate-1' (bug#19390).
1727
1728 2014-12-17 Sam Steingold <sds@gnu.org>
1729
1730 * emacs-lisp/package.el (package--list-loaded-files):
1731 Handle `(nil ...)' elements in `load-history'.
1732
1733 2014-12-17 Teodor Zlatanov <tzz@lifelogs.com>
1734
1735 * net/tramp-sh.el (tramp-histfile-override): New variable.
1736 (tramp-open-shell, tramp-maybe-open-connection): Use it.
1737
1738 2014-12-17 Dmitry Gutov <dgutov@yandex.ru>
1739
1740 * vc/vc.el: Improve `dir-status-files' description.
1741
1742 * emacs-lisp/package.el (package--list-loaded-files): Don't call
1743 file-truename on load-history elements (bug#19390).
1744
1745 2014-12-16 Nicolas Petton <petton.nicolas@gmail.com>
1746
1747 * emacs-lisp/seq.el: New file.
1748
1749 2014-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
1750
1751 * jit-lock.el (jit-lock-function): Don't defer if jit-lock-defer-time
1752 is 0 and there is no input pending.
1753
1754 2014-12-15 Juri Linkov <juri@linkov.net>
1755
1756 * replace.el (query-replace-read-from): Use query-replace-compile-replacement
1757 only on the return value (bug#19383).
1758
1759 2014-12-15 Juri Linkov <juri@linkov.net>
1760
1761 * isearch.el (isearch-lazy-highlight-search): Extend the bound of
1762 the wrapped search by the length of the search string to be able
1763 to lazy-highlight the whole search string at point (bug#19353).
1764
1765 2014-12-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
1766
1767 * net/shr.el (shr-fold-text): Don't bug out on zero-length text.
1768
1769 2014-12-14 Alan Mackenzie <acm@muc.de>
1770
1771 * cus-start.el (all): Add fast-but-imprecise-scrolling.
1772
1773 2014-12-14 Artur Malabarba <bruce.connor.am@gmail.com>
1774
1775 * let-alist.el: Add lexical binding.
1776
1777 2014-12-14 Steve Purcell <steve@sanityinc.com> (tiny change)
1778
1779 * emacs-lisp/package.el (package-menu-mode): Use an extra column
1780 for the "Version" column, to accomodate date-and-time-based
1781 versions.
1782
1783 2014-12-14 Cameron Desautels <camdez@gmail.com>
1784
1785 * cus-edit.el (custom-unsaved-options): New function, extracted
1786 from `customize-unsaved'.
1787 (custom-unsaved): Use it.
1788 (custom-prompt-customize-unsaved-options): New function.
1789 (Bug#19328)
1790
1791 2014-12-14 Dmitry Gutov <dgutov@yandex.ru>
1792
1793 * fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.
1794
1795 2014-12-14 Dmitry Gutov <dgutov@yandex.ru>
1796
1797 Move ASYNC argument to the `diff' VC command to the fifth
1798 position, for better compatibility with existing third-party code,
1799 and document it.
1800
1801 * vc/vc.el (vc-diff-internal): Pass `async' argument to the
1802 backend `diff' command in the last position.
1803
1804 * vc/vc-svn.el (vc-svn-diff):
1805 * vc/vc-src.el (vc-src-diff):
1806 * vc/vc-sccs.el (vc-sccs-diff):
1807 * vc/vc-rcs.el (vc-rcs-diff):
1808 * vc/vc-mtn.el (vc-mtn-diff):
1809 * vc/vc-hg.el (vc-hg-diff):
1810 * vc/vc-git.el (vc-git-diff):
1811 * vc/vc-dav.el (vc-dav-diff):
1812 * vc/vc-cvs.el (vc-cvs-diff):
1813 * vc/vc-bzr.el (vc-bzr-diff):
1814 * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end.
1815
1816 2014-12-14 Paul Eggert <eggert@cs.ucla.edu>
1817
1818 * emacs-lisp/cconv.el (cconv--analyze-use):
1819 Rename from cconv--analyse-use.
1820 (cconv--analyze-function): Rename from cconv--analyse-function.
1821 (cconv-analyze-form): Rename from cconv-analyse-form.
1822
1823 2014-12-13 Andreas Schwab <schwab@linux-m68k.org>
1824
1825 * net/shr.el (shr-next-link): Don't error out at eob.
1826
1827 2014-12-05 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1828
1829 * isearch.el (isearch-open-necessary-overlays): Open overlay
1830 ending at point (bug#19333).
1831
1832 2014-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1833
1834 * net/shr.el (shr-fold-text): New function.
1835 (shr-show-alt-text, shr-urlify, shr-tag-img): Use it to fold long
1836 alt/title texts.
1837 (shr-fold-text): Inhibit state from being altered.
1838
1839 * files.el (directory-files-recursively): Really check whether
1840 files are symlinks.
1841 (directory-name-p): New function.
1842 (directory-files-recursively): Use it.
1843
1844 2014-12-13 Artur Malabarba <bruce.connor.am@gmail.com>
1845
1846 * emacs-lisp/package.el (package--list-loaded-files): New function
1847 to list files in a given directory which correspond to already
1848 loaded files.
1849 (package-activate-1): Reload files given by `package--list-loaded-files'.
1850 Fix bug#10125, bug#18443, and bug#18448.
1851
1852 2014-12-13 Eric S. Raymond <esr@snark.thyrsus.com>
1853
1854 * vc/vc-svn.el (vc-svn-diff): Fix bug #19312.
1855
1856 2014-12-13 Michael Albinus <michael.albinus@gmx.de>
1857
1858 * simple.el (password-word-equivalents): Add "passcode", used for
1859 numeric secrets like PINs or RSA tokens.
1860
1861 2014-12-13 Michael Albinus <michael.albinus@gmx.de>
1862
1863 * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in
1864 order to determine `tramp-own-remote-path'.
1865
1866 2014-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
1867
1868 * progmodes/python.el (python-shell-parse-command):
1869 Quote `python-shell-interpreter`. (Bug#19289)
1870
1871 2014-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
1872
1873 * progmodes/python.el (python-indent-line): Use `noindent' in strings.
1874 (python-indent-levels): Document extra value.
1875 (python-indent-calculate-indentation): Return `noindent' in strings.
1876 (python-indent-post-self-insert-function)
1877 (python-indent-calculate-levels): Handle new value.
1878
1879 2014-12-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1880
1881 * net/network-stream.el (network-stream-open-starttls): No need to
1882 check for the availability of `gnutls-available-p'.
1883
1884 * files.el (directory-files-recursively): Don't follow symlinks to
1885 other directories.
1886
1887 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com>
1888
1889 * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el:
1890 * vc/vc.el: latest-on-branch-p is no longer a public method.
1891
1892 * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el:
1893 * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el:
1894 Remove `rollback' method, to be replaced in the future by uncommit.
1895
1896 2014-12-11 Michael Albinus <michael.albinus@gmx.de>
1897
1898 * vc/vc-hg.el (vc-hg-state): Make FILE absolute. Handle the case
1899 that there is empty output.
1900
1901 2014-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
1902
1903 * emacs-lisp/eldoc.el (eldoc-documentation-function): Change default.
1904 (eldoc-mode, eldoc-schedule-timer): Adjust to new default.
1905
1906 2014-12-10 Artur Malabarba <bruce.connor.am@gmail.com>
1907
1908 * let-alist.el: Add new package and macro.
1909
1910 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com>
1911
1912 * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el:
1913 * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles,
1914 it's a shoot-self-in-foot archaism. Workfiles are always kept.
1915
1916 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu>
1917
1918 * net/ange-ftp.el (ange-ftp-switches-ok): Disallow flags causing
1919 trouble with ls over ftp. These flags result in ls returning no
1920 output, causing Tramp-breakage. (bug#19192)
1921
1922 2014-12-10 Andreas Schwab <schwab@suse.de>
1923
1924 * files.el (file-tree-walk): Use file-name-as-directory unconditionally.
1925
1926 2014-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1927
1928 * files.el (directory-files-recursively):
1929 Use `file-name-all-completions' instead of `directory-files' for
1930 greater speed.
1931
1932 * net/shr.el (shr-tag-object): Don't bug out on text elements in
1933 <object>.
1934
1935 2014-12-09 Bozhidar Batsov <bozhidar@batsov.com>
1936
1937 * progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
1938 and Puppetfile.
1939 (ruby-toggle-string-quotes): New command that allows you to quickly
1940 toggle between single-quoted and double-quoted string literals.
1941
1942 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com>
1943
1944 * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument
1945 list, avoids problems witt names containing hyphens.
1946
1947 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org>
1948
1949 Sync with upstream verilog-mode revision aa4b777.
1950 * progmodes/verilog-mode.el (verilog-mode-version): Update.
1951 (verilog-auto-end-comment-lines-re, verilog-end-block-ordered-re)
1952 (verilog-set-auto-endcomments): Automatically comment property/
1953 endproperty blocks to match other similar blocks like sequence/
1954 endsequence, function/endfunction, etc. Reported by Alex Reed.
1955 (verilog-set-auto-endcomments): Fix end comments for functions of
1956 type void, etc. Detect the function- or task-name when
1957 auto-commenting blocks that lack an explicit portlist.
1958 Reported by Alex Reed.
1959 (verilog-nameable-item-re): Fix nameable items that can have an
1960 end-identifier to include endchecker, endgroup, endprogram,
1961 endproperty, and endsequence. Reported by Alex Reed.
1962 (verilog-preprocessor-re, verilog-beg-of-statement):
1963 Fix indentation of property/endproperty around pre-processor
1964 directives. Reported by Alex Reed.
1965 (verilog-label-be): When auto-commenting a buffer, consider
1966 auto-comments on all known keywords (not just a subset thereof).
1967 Reported by Alex Reed.
1968 (verilog-beg-of-statement): Fix labeling do-while blocks, bug842.
1969 Reported by Alex Reed.
1970 (verilog-beg-of-statement-1, verilog-at-constraint-p):
1971 Fix hanging with many curly-bracket pairs, bug663.
1972 (verilog-do-indent): Fix electric tab deleting form-feeds.
1973 Note caused by indent-line-to deleting tabls pre 24.5.
1974 (verilog-auto-output, verilog-auto-input, verilog-auto-inout)
1975 (verilog-auto-inout-module, verilog-auto-inout-in): Doc fixes.
1976 (verilog-read-always-signals, verilog-auto-sense-sigs)
1977 (verilog-auto-reset): Fix AUTORESET with always_comb and always_latch,
1978 bug844. Reported by Greg Hilton.
1979
1980 2014-12-09 Alex Reed <acreed4@gmail.com> (tiny change)
1981
1982 * progmodes/verilog-mode.el (verilog-no-indent-begin-re):
1983 Fix `verilog-indent-begin-after-if' nil not honoring 'forever',
1984 'foreach', and 'do' keywords.
1985 (verilog-endcomment-reason-re, verilog-beg-of-statement):
1986 Fix labeling do-while blocks, bug842.
1987 (verilog-backward-token): Fix indenting sensitivity lists with
1988 named events, bug840.
1989
1990 2014-12-09 Reto Zimmermann <reto@gnu.org>
1991
1992 Sync with upstream vhdl mode v3.36.1.
1993 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1994 (vhdl-compiler-alist): Anchor all error regexps.
1995 (vhdl-compile-use-local-error-regexp): Change default to nil.
1996 (vhdl-asort, vhdl-anot-head-p): Remove.
1997 (vhdl-aput, vhdl-adelete, vhdl-aget): Simplify.
1998 Remove optional argument of vhdl-aget and update all callers.
1999 (vhdl-import-project): Also set `vhdl-compiler'.
2000
2001 2014-12-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
2002
2003 * files.el (find-files): New function.
2004
2005 * net/shr.el (shr-dom-print): Don't print comments.
2006 (shr-tag-svg): Give inline SVG images the right type.
2007
2008 * net/eww.el (eww-update-header-line-format): Mark valid/invalid
2009 certificates in the header line.
2010 (eww-invalid-certificate, eww-valid-certificate): New faces.
2011
2012 2014-12-09 Fabián Ezequiel Gallina <fgallina@gnu.org>
2013
2014 * progmodes/python.el (inferior-python-mode):
2015 Set `comint-prompt-read-only` to `t` only locally.
2016
2017 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2018
2019 * net/nsm.el (nsm-check-protocol): Test for RC4 on `high'.
2020 (nsm-format-certificate): Include more data about the connection.
2021 (nsm-query): Fill the text to that it looks nicer.
2022 (nsm-check-protocol): Also warn if using SSL3 or older.
2023
2024 2014-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
2025
2026 * progmodes/gud.el (gud-gdb-completions): Remove unused var `start'.
2027
2028 * obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'.
2029
2030 * net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg.
2031
2032 * info.el (Info-mode-map): Remove left-over binding.
2033
2034 * emacs-lisp/avl-tree.el: Use lexical-binding and cl-lib.
2035 (avl-tree--root): Remove redundant defsetf.
2036
2037 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2038
2039 * net/nsm.el (network-security-level): Remove the detailed
2040 description, which was already outdated, and refer the users to
2041 the manual.
2042 (nsm-check-protocol): Check for weak Diffie-Hellman prime bits
2043 (bug#19153).
2044
2045 2014-12-06 Andrey Kotlarski <m00naticus@gmail.com>
2046
2047 * net/eww.el (eww-buffers-mode): New major mode.
2048 (eww-list-buffers, eww-buffer-select, eww-buffer-show-next)
2049 (eww-buffer-show-previous, eww-buffer-kill, eww-buffer-show):
2050 New commands/functions (bug#19131).
2051
2052 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2053
2054 * net/gnutls.el (gnutls-negotiate): Ignore files found via
2055 'file-name-handler-alist' since the gnutls library can't use those
2056 (bug#15866).
2057
2058 2014-12-08 Dmitry Gutov <dgutov@yandex.ru>
2059
2060 * vc/vc-hg.el (vc-hg-dir-status-files): Only include ignores files
2061 when FILES is non-nil (bug#19304).
2062
2063 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com>
2064
2065 * vc/vc-arch.el: Move to obsolete directory so a test framework
2066 won't trip over bit-rot in it. There has been no Arch snapshot
2067 for nine years.
2068
2069 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
2070
2071 * net/eww.el (eww-follow-link): Revert prefix behaviour to
2072 previous behavior.
2073 (eww-copy-page-url): Add doc string.
2074
2075 2014-12-07 Ivan Shmakov <ivan@siamics.net>
2076
2077 * net/eww.el (eww): Move history recording here...
2078 (eww-browse-url): ... from here (bug#19253).
2079
2080 * net/eww.el (eww-browse-url): Use generate-new-buffer (was:
2081 iterating over possible buffer names.)
2082
2083 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
2084
2085 * net/eww.el (eww-reload): Take a prefix to work locally (bug#19086).
2086 (eww-current-buffer): Compilation fix for bug#18550 patch.
2087
2088 2014-12-07 Ivan Shmakov <ivan@siamics.net>
2089
2090 * net/eww.el (eww-list-histories): Restore the history in the
2091 correct buffer (bug#18550).
2092
2093 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
2094
2095 * net/eww.el (eww-bookmark-prepare): Display URLs in first by
2096 displaying shortened titles first (bug#16398).
2097
2098 2014-12-07 Tom Willemse <tom@ryuslash.org> (tiny change)
2099
2100 * progmodes/python.el: Recognize docstrings.
2101 (python-docstring-at-p, python-font-lock-syntactic-face-function):
2102 New functions.
2103 (python-mode): Use them.
2104
2105 2014-12-06 Ulf Jasper <ulf.jasper@web.de>
2106
2107 * net/newst-treeview.el (newsticker--treeview-list-add-item)
2108 (newsticker--treeview-propertize-tag): Bind tree menu to mouse-3.
2109 (newsticker--treeview-create-groups-menu)
2110 (newsticker--treeview-create-tree-menu): Remove.
2111 (newsticker--treeview-tree-open-menu): New.
2112 (newsticker-treeview-tree-click): Pass event to
2113 `newsticker-treeview-tree-do-click'.
2114 (newsticker-treeview-tree-do-click): Open treemenu on mouse-3.
2115
2116 2014-12-05 Juri Linkov <juri@linkov.net>
2117
2118 * comint.el (comint-history-isearch-search)
2119 (comint-history-isearch-wrap): Use field-beginning instead of
2120 comint-line-beginning-position.
2121 (comint-send-input): Go to the end of the field instead of the end
2122 of the line to accept whole multi-line input.
2123 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
2124
2125 2014-12-05 Juri Linkov <juri@linkov.net>
2126
2127 * minibuffer.el (minibuffer-completion-help):
2128 Compare selected-window with minibuffer-window to check whether
2129 completions should be displayed near the minibuffer. (Bug#17809)
2130 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00311.html
2131
2132 2014-12-05 Michael Albinus <michael.albinus@gmx.de>
2133
2134 * vc/vc-mtn.el (vc-mtn-root):
2135 * vc/vc-svn.el (vc-svn-registered): Make FILE absolute.
2136
2137 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
2138
2139 * progmodes/sh-script.el (sh-smie-sh-rules): Go back to the beginning
2140 of the whole pipe when indenting an opening keyword after a |.
2141 Generalize this treatment to opening keywords like "while" (bug#18031).
2142
2143 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
2144
2145 * simple.el (newline): Place the hook buffer-locally,
2146 to make sure it's first.
2147
2148 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
2149 Fix handling of symbols with different syntax at beginning/end or with
2150 symbol rather than word syntax.
2151
2152 2014-12-05 Eli Zaretskii <eliz@gnu.org>
2153
2154 * simple.el (line-move): If noninteractive, call line-move-1, not
2155 forward-line, since the former is compatible with line-move-visual
2156 both in terms of the column to which it moves and the return
2157 value. (Bug#19211)
2158
2159 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
2160
2161 * vc/ediff-init.el (ediff-odd-p): Remove.
2162 (ediff-background-face): Use cl-oddp instead.
2163 (ediff-buffer-live-p): Make it a defsubst.
2164
2165 * tooltip.el (tooltip-region-active-p): Remove.
2166
2167 * net/shr.el (shr-char-breakable-p, shr-char-kinsoku-bol-p)
2168 (shr-char-kinsoku-eol-p, shr-char-nospace-p): Use define-inline.
2169
2170 * fringe.el (fringe-bitmap-p): Make it a plain function.
2171
2172 * emacs-lisp/eieio-core.el: Prefer inlinable functions over macros.
2173 (class-p, generic-p, eieio-object-p, class-abstract-p):
2174 Make them defsubst, so as to avoid corner case problems where
2175 the arg might be evaluated in the condition-case, or it can't be passed
2176 to higher-order functions like `cl-some'.
2177
2178 2014-12-05 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2179
2180 * wid-edit.el (widget-choose): Let numeric keypad work (bug#19268)
2181 and remove old menu-related code.
2182
2183 2014-12-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2184
2185 * net/eww.el (eww-display-pdf): Let mailcap determine how to
2186 display PDF files (bug#19270).
2187
2188 2014-12-05 Juri Linkov <juri@linkov.net>
2189
2190 Compare with the most recent window by default.
2191 * vc/compare-w.el (compare-windows-get-window-function): New defcustom.
2192 (compare-windows-get-recent-window)
2193 (compare-windows-get-next-window): New functions.
2194 (compare-windows, compare-windows-sync-default-function):
2195 Use `compare-windows-get-window-function' instead of `next-window'.
2196 (compare-windows): Add diff/match messages with region boundaries.
2197 (Bug#19170)
2198
2199 2014-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * subr.el (filter): Remove. Use `cl-remove-if-not' or `seq-filter'.
2202
2203 2014-12-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2204
2205 * net/shr.el (shr--extract-best-source): Ignore non-text children.
2206
2207 2014-12-04 Eli Zaretskii <eliz@gnu.org>
2208
2209 Implement copying of a buffer portion while preserving visual order.
2210 * simple.el (bidi-directional-controls-chars)
2211 (bidi-directional-non-controls-chars): New variables.
2212 (squeeze-bidi-context-1, squeeze-bidi-context)
2213 (line-substring-with-bidi-context)
2214 (buffer-substring-with-bidi-context): New functions.
2215
2216 * files.el (file-tree-walk): Doc fix.
2217
2218 2014-12-04 Rupert Swarbrick <ruperts@broadcom.com> (tiny change)
2219 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
2220
2221 * autoinsert.el (auto-insert-alist): Update C/C++ header and
2222 program support to match more extensions. Replace non-alnum
2223 characters when generating include guards (headers) and check for
2224 more extensions when generating includes (programs)
2225 (bug#19254).
2226
2227 2014-12-03 Eric S. Raymond <esr@snark.thyrsus.com>
2228
2229 * files.el (file-tree-walk): Fix docstring.
2230
2231 2014-12-03 Karl Fogel <kfogel@red-bean.com>
2232
2233 Fix bug whereby saving files hung in VC hook.
2234
2235 Saving a buffer visiting a file under SVN control would hang if
2236 the remote repository were unreachable, because the VC hooks tried
2237 to run "svn status -u" on the file, where the "-u" tells svn to
2238 get update information from the remote repository.
2239 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00174.html
2240
2241 * vc/vc-svn.el (vc-svn-state): Remove optional `localp'
2242 argument and always pass "-v" to "svn status", never "-u".
2243
2244 2014-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
2245
2246 * emacs-lisp/inline.el: Fix up copyright header.
2247 (inline-quote, inline-const-p, inline-const-val, inline-error):
2248 Silence compiler warnings.
2249 (inline-letevals): Fix edebug spec.
2250 (inline--testconst-p): Consider lambda expressions as const-p.
2251 (inline--getconst-val): Use inline--testconst-p.
2252
2253 * minibuffer.el (completion-table-dynamic): Add arg `switch-buffer'
2254 and change default to stay in the minibuffer when called from
2255 the minibuffer (bug#19250).
2256 (lazy-completion-table): Use this new argument to preserve the
2257 old behavior.
2258
2259 * progmodes/elisp-mode.el (elisp--local-variables): Don't burp on
2260 incorrect lexical elements (bug#19250).
2261
2262 2014-12-03 A. N. Other <none@example.com>
2263
2264 * files.el (file-tree-walk): Lisp translation of ANSI ftw(3).
2265
2266 2014-12-02 Glenn Morris <rgm@gnu.org>
2267
2268 * whitespace.el (whitespace-big-indent-regexp): Add :version.
2269
2270 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com>
2271
2272 * subr.el (filter): New macro. Because it's just silly for a Lisp
2273 not to have this in 2014. And VC needs it.
2274
2275 * vc.el: All backends: API simplification: Abolish dir-status.
2276 It's replaced by dir-status-files.
2277
2278 * vc.el: All backends: API simplification: Remove 4th
2279 'default-state' argument from vc-dir-status files and its backend
2280 methods - no backend method ever set it. It was used only in the
2281 fallback method to to set a default of 'up-to-date, though a
2282 convoluted call chain obscured this.
2283
2284 * vc-hooks.el: Bind vc-delete-file to Ctrl-x v delete.
2285
2286 * vc.el (vc-expand-dirs): Now takes a second BACKEND argument,
2287 improving behavior on directories using multiple file-oriented VCSes.
2288
2289 * vc/vc.el: All backends: API simplification; clear-headers
2290 is no longer a public method. It is now local to the one place
2291 it's used, in the RCS steal-lock method.
2292
2293 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
2294
2295 * vc/vc.el: In all backends: API simplification; could-register
2296 is no longer a public method. (vc-cvs.el still has a private
2297 implementation.)
2298
2299 * vc/vc.el: In all backends: API cleanup; the backend diff method
2300 takes an explicit async flag. This eliminates a particularly ugly
2301 global.
2302
2303 * vc-bzr.el: Restore vc-bzr-state-heuristic as a private method.
2304 VC randomly/unpredictably fails without it; cause not yet established.
2305
2306 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
2307
2308 Merge some of the differences from the standalone CC-mode.
2309 The main change is to only use the `category' text-property only when
2310 available. For that many calls are changed to use c-get-char-property,
2311 c-next-single-property-change, c-sc-scan-lists,
2312 c-sc-parse-partial-sexp, c-unmark-<->-as-paren.
2313
2314 * progmodes/cc-mode.el (c-just-done-before-change): New var.
2315 (c-basic-common-init): Initialize it.
2316 (c-common-init): Only use mode-require-final-newline when available.
2317 (c-before-change): Check and set c-just-done-before-change.
2318 (c-after-change): Re-set c-just-done-before-change.
2319 (c-advise-fl-for-region): New macro.
2320 (lazy-lock-defer-rest-after-change, lazy-lock-defer-line-after-change)
2321 (font-lock-after-change-function, jit-lock-after-change):
2322 Advise if needed.
2323
2324 * progmodes/cc-langs.el (c-modified-constant): New lang var.
2325 (c-known-type-key): Don't make a list just to throw it away.
2326
2327 * progmodes/cc-engine.el (c-invalidate-state-cache, c-parse-state):
2328 Handle the case where categories are not available.
2329 (c-record-parse-state-state, c-replay-parse-state-state):
2330 Handle marker values.
2331 (c-before-change-check-<>-operators): Look for the `syntax-table'
2332 property rather than for the corresponding `category'.
2333 (c-looking-at-decl-block): Remove unused var
2334 `c-disallow-comma-in-<>-arglists'.
2335 (c-forward-<>-arglist-recur): Remove unused var
2336 `orig-record-found-types'.
2337
2338 * progmodes/cc-defs.el (c-version): Bump up to 5.33.
2339 (c-use-category): New const.
2340 (c-next-single-property-change): New macro.
2341 (c-region-is-active-p): Prefer region-active-p when available.
2342 (c-search-backward-char-property): Fix old min/max typo; probably
2343 a copy/paste error.
2344 (c-mark-<-as-paren, c-mark->-as-paren, c-unmark-<->-as-paren):
2345 Turn them into macros that obey c-use-category.
2346 (c-sc-scan-lists-no-category+1+1, c-sc-scan-lists-no-category+1-1)
2347 (c-sc-scan-lists-no-category-1+1, c-sc-scan-lists-no-category-1-1)
2348 (c-sc-scan-lists, c-sc-parse-partial-sexp)
2349 (c-looking-at-non-alphnumspace): New macros.
2350 (c-sc-parse-partial-sexp-no-category): New function.
2351 (c-emacs-features): Add `category-properties' element.
2352
2353 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
2354 (c-backward-into-nomenclature): Use cc-subword if subword-mode is
2355 not available.
2356 (c-beginning-of-defun, c-end-of-defun, c-mark-function)
2357 (c-indent-line-or-region): Use c-region-is-active-p.
2358
2359 * progmodes/cc-bytecomp.el (cc-bytecomp-unbound-variables)
2360 (cc-bytecomp-original-functions, cc-bytecomp-original-properties)
2361 (cc-bytecomp-loaded-files): Re-set each time the file is loaded.
2362 (cc-bytecomp-obsolete-var, cc-bytecomp-ignore-obsolete)
2363 (cc-bytecomp-obsolete-fun): Delete unused functions.
2364
2365 * progmodes/cc-align.el (c-lineup-respect-col-0): New function.
2366
2367 2014-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2368
2369 * net/shr.el (shr-dom-print): Fix up `shr-dom-print' after the
2370 dom.el changes.
2371
2372 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
2373
2374 * vc/vc.el (vc-find-conflicted-file): Look for conflicted files in the
2375 current "project" rather than just the current directory.
2376 * vc/vc-git.el (vc-git-conflicted-files): Clarify in which directory
2377 the file names make sense.
2378
2379 * vc/smerge-mode.el (smerge-swap): New command.
2380
2381 * vc/diff-mode.el (diff-kill-applied-hunks): New command.
2382
2383 2014-12-01 Ulf Jasper <ulf.jasper@web.de>
2384
2385 * net/newst-treeview.el (newsticker--treeview-item-show):
2386 Check window liveliness before measuring its width.
2387
2388 * net/newst-backend.el (newsticker--get-news-by-url-callback):
2389 Pass correct status to `newsticker--sentinel-work'.
2390 (newsticker--sentinel-work): Use "newsticker--download-error" as
2391 guid in order to prevent multiple "Could not download..."
2392 messages. Fixes bug#19166.
2393
2394 2014-12-01 Ivan Shmakov <ivan@siamics.net>
2395
2396 * net/eww.el (eww-render): Call `eww-after-render-hook' in the
2397 correct buffer (bug#19225).
2398
2399 2014-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2400
2401 * net/nsm.el (network-security-level): Change the default to `medium'.
2402
2403 * net/eww.el (eww): Leave point in a place that doesn't cause
2404 scrolling when displaying "Loading...".
2405
2406 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
2407
2408 * vc/vc.el, vc/vc-cvs.el, vc/vc-rcs.el, vc/vc-svn.el: The 'merge'
2409 backend method of RCS/CVS/SVN is now 'merge-file', to contrast with
2410 'merge-branch'. Prompting for merge revisions is pushed down to
2411 the back ends; this fixes a layering violation that caused bad
2412 behavior with SVN.
2413
2414 * vc/vc.el, vc-hooks.el: All backends: API simplification;
2415 vc-stay-local-p and repository-hostname are no longer public
2416 methods. Only the CVS and SVN backends used these, and the SVN
2417 support was conditioned out because svn status -v is too slow.
2418 The CVS back end retains this machinery and the vc-stay-local
2419 configuration variable now only affects it.
2420
2421 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
2422
2423 * emacs-lisp/inline.el: New file.
2424
2425 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
2426
2427 * vc/vc.el, vc-hooks.el: All backends: API simplification;
2428 vc-state-heuristic is no longer a public method, having been
2429 removed where it is redundant, unnecessary, or known buggy.
2430 This eliminated all backends except CVS. Eliminates bug#7850.
2431
2432 * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el:
2433 Eliminate vc-mistrust-permissions. It was only relevant to the
2434 RCS and SCCS back ends and defaulted to t. Code now always
2435 mistrusts permissions - by actual measurement the effect on
2436 performance is negligible. As a side effect bug#11490 is now
2437 irrelevant.
2438
2439 * vc/vc.el, vc-hooks.el: All backends: API simplification;
2440 vc-workfile-unchanged-p is no longer a public method (but the RCS
2441 and SCCS back ends retain it as a private method used in state
2442 computation). This method was redundant with vc-state and usually
2443 implemented as a trivial call to same. Fixes the failure mode
2444 described in bug#694.
2445
2446 * vc/vc.el: All backends: API simplification; init-revision is
2447 gone, and vc-registered functions no longer take an
2448 initial-revision argument.
2449
2450 2014-11-29 Glenn Morris <rgm@gnu.org>
2451
2452 * vc/vc-src.el (vc-src, vc-src-diff-switches)
2453 (vc-src-master-templates): Fix :version tags.
2454
2455 2014-11-29 Paul Rankin <paul@tilk.co> (tiny change)
2456
2457 * outline.el (outline-move-subtree-down): Refactor and improve code.
2458
2459 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
2460 Stefan Monnier <monnier@iro.umontreal.ca>
2461
2462 * outline.el (outline-move-subtree-down): Make sure we can move
2463 forward to find the end of the subtree and the insertion point
2464 (bug#19102).
2465
2466 2014-11-29 Fabián Ezequiel Gallina <fgallina@gnu.org>
2467
2468 * progmodes/python.el (python-shell-completion-setup-code):
2469 Use __builtin__ module (or builtins in Python 3) and catch all errors
2470 when importing readline and rlcompleter.
2471
2472 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
2473
2474 * calendar/todo-mode.el: Handle calling revert-buffer (bug#19187).
2475 (todo-revert-buffer): New function.
2476 (todo-modes-set-1): Use it as the buffer-local value of
2477 revert-buffer-function.
2478
2479 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
2480
2481 * calendar/todo-mode.el (todo-mode): If called interactively, just
2482 display a message saying to call todo-show to enter Todo mode
2483 (Bug#19112).
2484
2485 2014-11-29 Dmitry Gutov <dgutov@yandex.ru>
2486
2487 * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files.
2488 (Bug#18579)
2489
2490 * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
2491 files. (Bug#18579)
2492
2493 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
2494
2495 * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
2496 remote `buffer-file-name'.
2497
2498 2014-11-29 Leo Liu <sdl.web@gmail.com>
2499
2500 * calendar/diary-lib.el (calendar-mark-1): Fix thinko.
2501
2502 2014-11-29 Fabián Ezequiel Gallina <fgallina@gnu.org>
2503
2504 Set PYTHONUNBUFFERED on shell startup.
2505
2506 * progmodes/python.el (python-shell-unbuffered): New var.
2507 (python-shell-calculate-process-environment): Use it.
2508
2509 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
2510
2511 * net/tramp.el (tramp-action-password): Clean password on subsequent
2512 attempts even if there was no wrong password indication. (Bug#19047)
2513
2514 * net/tramp-sh.el (tramp-get-remote-locale): Return "LC_ALL=C" as
2515 fallback.
2516 (tramp-open-connection-setup-interactive-shell): No need to check
2517 for nil as `tramp-get-remote-locale' return value.
2518
2519 2014-11-29 Eli Zaretskii <eliz@gnu.org>
2520
2521 * vc/vc-git.el (vc-git-command, vc-git--call):
2522 Bind coding-system-for-read and coding-system-for-write to
2523 vc-git-commits-coding-system.
2524 (vc-git-previous-revision): Use "~1" instead of "^", since the
2525 latter is a special character for MS-Windows system shells.
2526
2527 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
2528
2529 Improve XEmacs compatibility.
2530
2531 * net/tramp.el (tramp-autoload-file-name-handler):
2532 Wrap `temporary-file-directory' by `symbol-value', it doesn't
2533 exist in XEmacs.
2534 (tramp-read-passwd): Don't use `with-timeout-suspend' and
2535 `with-timeout-unsuspend' if they don't exist, like in XEmacs.
2536 (tramp-time-less-p, tramp-time-subtract): Remove functions.
2537 (tramp-handle-file-newer-than-file-p, tramp-time-diff):
2538 * net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
2539 * net/tramp-cache.el (tramp-get-file-property):
2540 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2541 Use `time-less-p' and `time-subtract, respectively.
2542
2543 * net/tramp-adb.el (top): Do not require time-date.el.
2544
2545 * net/tramp-compat.el (top): Require time-date.el for XEmacs.
2546
2547 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
2548 Check, whether `utf-8' is a valid coding system.
2549
2550 2014-11-29 Eli Zaretskii <eliz@gnu.org>
2551
2552 * vc/vc.el (vc-retrieve-tag): Doc fix.
2553
2554 2014-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * simple.el (execute-extended-command--shorter): Fix the "M-p" case
2557 (bug#19152).
2558
2559 2014-11-28 Martin Rudalics <rudalics@gmx.at>
2560
2561 Fix two issues around help-window-select. (Bug#11039) (Bug#19012)
2562 * help.el (help-window-old-frame): New variable.
2563 (help-window-select): Default to nil (Bug#11039).
2564 Rewrite doc-string.
2565 (help-window-setup): When the help window appears on another
2566 frame and `help-window-select' is non-nil, give that frame input
2567 focus too (Bug#19012).
2568 (with-help-window): Store selected frame in
2569 help-window-old-frame.
2570
2571 2014-11-28 Ulf Jasper <ulf.jasper@web.de>
2572
2573 * net/newst-treeview.el (newsticker--treeview-load): Take care of
2574 nil value for `newsticker-groups-filename'.
2575
2576 2014-11-28 Daiki Ueno <ueno@gnu.org>
2577
2578 * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
2579 (epa-sign-region, epa-encrypt-region):
2580 Use `epg-context-set-{passphrase,progress}-callback', instead of
2581 `setf'. This partially reverts commit 9e48a95c (bug#19150).
2582 Reported by José A. Romero L.
2583
2584 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2585
2586 * net/eww.el (eww-restore-history):
2587 Bind `inhibit-modification-hooks' instead of `after-change-functions'.
2588
2589 2014-11-27 Ulf Jasper <ulf.jasper@web.de>
2590
2591 * net/newst-backend.el (newsticker--parse-atom-1.0):
2592 Handle embedded (x)html in summary node.
2593
2594 2014-11-27 Sam Steingold <sds@gnu.org>
2595
2596 * menu-bar.el (menu-bar-open): When everything else fails,
2597 use (mouse-menu-bar-map).
2598
2599 2014-11-27 Ulf Jasper <ulf.jasper@web.de>
2600
2601 * net/newst-treeview.el (newsticker-groups-filename):
2602 Change default value to nil. Point out that variable is obsolete in doc
2603 string.
2604 (newsticker--treeview-load): Change wording of the questions the
2605 user is asked when `newsticker-groups-filename' is found to be
2606 used and we offer to read and remove the groups file. (Bug#19165)
2607
2608 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2609
2610 * net/eww.el (eww): Record the new URL immediately, so that if the
2611 HTTP fetch fails, we have the right URL in the buffer.
2612 (eww-process-text-input): Don't shorten the input field if
2613 deleting at the last character (bug#19085).
2614 (eww-restore-history): Inhibit change functions while restoring
2615 the history.
2616 (eww-process-text-input): Fix deletion at the start of the field, too.
2617 (eww-mode): Revert mistanken removal of `buffer-disable-undo'.
2618 (eww-process-text-input): Try to keep track of the size more reliably.
2619
2620 * dom.el (dom-pp): New function.
2621
2622 2014-11-27 Eli Zaretskii <eliz@gnu.org>
2623
2624 * vc/vc-bzr.el (vc-bzr-print-log, vc-bzr-expanded-log-entry):
2625 Don't assume --long is the default for "bzr log", always specify
2626 it explicitly, in case the user defined an alias for 'log' that
2627 uses some other format.
2628
2629 2014-11-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
2630
2631 * progmodes/python.el (python-eldoc--get-doc-at-point):
2632 Strip shell output before returning. (bug#18794)
2633
2634 2014-11-27 Dmitry Gutov <dgutov@yandex.ru>
2635
2636 Fix indentation before `!=' and after `+='. Originally reported
2637 in https://github.com/mooz/js2-mode/issues/174.
2638 * progmodes/js.el (js--indent-operator-re): Make assignments and
2639 (in)equality operator a separate case.
2640 (js--continued-expression-p): Escape the second `+' in the regexp.
2641
2642 2014-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2643
2644 * window.el (handle-select-window): Deactivate shift-region (bug#19003).
2645
2646 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2647
2648 * net/nsm.el (nsm-new-fingerprint-ok-p): Display the certificate
2649 when querying about new certificates.
2650
2651 * net/shr.el (shr-make-table-1): dom.el changes for table rendering.
2652
2653 * dom.el (dom-by-tag): Use `equal' for comparisons so that tags
2654 can be strings.
2655 (dom-elements): Protect against non-text nodes.
2656 (dom-non-text-children): New function.
2657
2658 * net/eww.el (eww-tag-title): Use `dom-text'.
2659
2660 2014-11-26 Sam Steingold <sds@gnu.org>
2661
2662 * textmodes/sgml-mode.el (sgml-validate-command): Pass -utf8 to tidy.
2663
2664 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2665
2666 * net/eww.el (eww-highest-readability): More dom.el fixes.
2667
2668 2014-11-26 Ulf Jasper <ulf.jasper@web.de>
2669
2670 * net/newst-backend.el (newsticker--parse-generic-items):
2671 Take care of UIDs when adding elements to cache.
2672
2673 2014-11-26 Alan Mackenzie <acm@muc.de>
2674
2675 Remove spurious reference to symbol category_properties.
2676 * progmodes/cc-engine.el (c-state-pp-to-literal): Fix here.
2677
2678 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2679
2680 * net/eww.el: Use the new dom.el accessors throughout.
2681
2682 * net/shr.el: Ditto.
2683
2684 * dom.el: New file.
2685
2686 2014-11-26 Glenn Morris <rgm@gnu.org>
2687
2688 * arc-mode.el (archive-visit-single-files): Add :version.
2689
2690 2014-11-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
2691
2692 * net/nsm.el (nsm-format-certificate): Don't bug out on missing
2693 elements.
2694 (nsm-warnings-ok-p): The new version of this function always
2695 returned nil when everything was OK.
2696
2697 2014-11-25 Teodor Zlatanov <tzz@lifelogs.com>
2698
2699 * net/gnutls.el (gnutls): Set :group to 'comm so it's near NSM.
2700
2701 * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
2702 (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
2703
2704 2014-11-20 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2705
2706 * emacs-lisp/byte-run.el (function-put): Match argument names to
2707 docstring.
2708
2709 2014-11-24 Sam Steingold <sds@gnu.org>
2710
2711 * vc/vc-hooks.el (vc-directory-exclusion-list):
2712 Fix a trivial typo (bug#19171).
2713
2714 2014-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2715
2716 * vc/vc-hooks.el (vc-state-base-face): Don't override
2717 mode-line-inactive.
2718
2719 2014-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2720
2721 * net/eww.el (eww-set-character-encoding): Use `read-coding-system'.
2722 (eww-process-text-input): Inhibit read only so that input fields
2723 don't get shortened (bug#19085).
2724
2725 2014-11-24 Leo Liu <sdl.web@gmail.com>
2726
2727 * emacs-lisp/macroexp.el (macroexp-let2*): New macro.
2728
2729 * window.el (with-temp-buffer-window)
2730 (with-current-buffer-window, with-displayed-buffer-window):
2731 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin):
2732 * emacs-lisp/cl-lib.el (substring):
2733 * emacs-lisp/cl-extra.el (cl-getf): Use it.
2734
2735 2014-11-24 Eli Zaretskii <eliz@gnu.org>
2736
2737 * isearch.el (isearch-update): Don't assume
2738 pos-visible-in-window-p will return nil when point is hscrolled
2739 out of view. (Bug#19157)
2740
2741 2014-11-20 Andrey Kotlarski <m00naticus@gmail.com>
2742
2743 * net/eww.el (eww-browse-url): Optionally create new eww buffer.
2744 (eww-follow-link): Follow in new buffer in case of prefix
2745 argument, open externally with double prefix (bug#19130).
2746
2747 2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2748
2749 * net/eww.el (eww-display-html): Decode the document-defined charset.
2750 (eww): Pop to the *eww* buffer immediately after executing the
2751 `M-x eww' command to avoid having buffers pop up later.
2752 (eww-display-html): Don't pop the *eww* buffer.
2753 (eww-display-raw): Ditto.
2754 (eww-display-image): Ditto.
2755 (eww-follow-link): Make going to #targets in the page work again.
2756
2757 2014-11-23 Ivan Shmakov <ivan@siamics.net>
2758
2759 * net/eww.el (eww-suggest-uris): New variable.
2760 (eww-suggested-uris): New function.
2761 (eww): Default to URL under point.
2762 (eww-links-at-point): New function.
2763
2764 2014-11-20 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
2765
2766 * net/eww.el (eww-add-bookmark): Fix bookmark titles.
2767
2768 2014-11-17 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
2769
2770 * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link.
2771
2772 2014-11-23 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
2773
2774 * net/eww.el (eww-set-character-encoding): New command and keystroke.
2775 (eww-display-raw): Use it (bug#16225).
2776
2777 2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2778
2779 * net/nsm.el (network-security-level): Rename from
2780 `nsm-security-level' and documented.
2781
2782 * mail/smtpmail.el (smtpmail-via-smtp): Warn unless encrypted and
2783 we're sending a password.
2784
2785 * net/nsm.el: New file that implements a Network Security Manager.
2786
2787 * net/network-stream.el (open-network-stream): Add a new
2788 :warn-unless-encrypted parameter.
2789 (network-stream-open-plain): Allow warning unless encrypted.
2790 (network-stream-open-starttls): Call the Network Security Manager.
2791 (network-stream-open-tls): Ditto.
2792
2793 2014-11-23 Leo Liu <sdl.web@gmail.com>
2794
2795 * calendar/cal-china.el (calendar-chinese-from-absolute-for-diary)
2796 (calendar-chinese-to-absolute-for-diary)
2797 (calendar-chinese-mark-date-pattern, diary-chinese-anniversary):
2798 Handle leap months in Chinese calendar. (Bug#18953)
2799
2800 2014-11-22 Alan Mackenzie <acm@muc.de>
2801
2802 Fix error with `mark-defun' and "protected:" in C++ Mode.
2803 Fixes: debbugs:19134.
2804
2805 * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Handle a
2806 return code of (label) from c-beginning-of-decl-1.
2807
2808 2014-11-22 Ulf Jasper <ulf.jasper@web.de>
2809
2810 * net/newst-backend.el (newsticker--sentinel-work):
2811 Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787.
2812
2813 2014-11-22 Michael Albinus <michael.albinus@gmx.de>
2814
2815 * net/tramp-sh.el (tramp-sh-handle-start-file-process)
2816 (tramp-sh-handle-process-file): Propagate `process-environment'.
2817
2818 * vc/vc-hg.el (vc-hg-state): No special handling for remote files;
2819 Tramp propagates environment variables now.
2820
2821 2014-11-22 Eric S. Raymond <esr@snark>
2822
2823 * vc/vc-filewise.el: New file to isolate code used only by the
2824 file-oriented back ends (SCCS/RCS/CVS/SRC) which should not
2825 live in vc.el and certainly not in vc-hooks.el.
2826
2827 * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name.
2828 This is preparatory to isolating all the 'master' functions
2829 used only by the file-oriented back ends. With this done first,
2830 the substantive diffs will be easier to read.
2831
2832 2014-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
2833
2834 * play/morse.el (nato-alphabet): Mark URL in docstring in a way
2835 that is recognized by `help-mode'.
2836
2837 2014-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2838
2839 * desktop.el (desktop-create-buffer): Use activate-mark to set
2840 `mark-active' (bug#19058).
2841
2842 2014-11-21 Eric S. Raymond <esr@snark>
2843
2844 * vc/vc-src.el (vc-src-state): Fix bug that produced spurious
2845 nil state.
2846
2847 2014-11-21 Eli Zaretskii <eliz@gnu.org>
2848
2849 * vc/vc.el (vc-deduce-fileset): Support invocation from
2850 *vc-change-log* buffer. (Bug#19084)
2851
2852 2014-11-13 Matthew Leach <matthew@mattleach.net>
2853
2854 * arc-mode.el (archive-visit-single-files): New.
2855 (archive-mode): Visit file if archive contains a single file.
2856 (Bug#1702)
2857
2858 2014-11-21 Ulrich Müller <ulm@gentoo.org>
2859
2860 * vc/vc.el: Fix a typo in the commentary.
2861
2862 2014-11-20 Eric S. Raymond <esr@snark.thyrsus.com>
2863
2864 * vc/vc-src.el, vc/vc.el: Added support for SRC. Needs more
2865 testing and a real log-view mode.
2866
2867 * vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el, vc/vc-git.el:
2868 * vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el:
2869 * vc/vc-svn.el, vc/vc.el: Remove editable argument from the backend
2870 checkout methods; where it matters (which is only in SCCS and RCS)
2871 files are always checked out editable. This may actually have
2872 been dynamically true already - it looks like the vc-next-action
2873 code evolved past visiting the other case. Tested with RCS.
2874
2875 * vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el:
2876 * vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el:
2877 * vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el: Remove never-used rev
2878 argument from the backend checkin methods. Only the RCS, SCCS,
2879 and CVS back ends tried to do anything with it, and that code was
2880 never exercised. Chiseling away the cruft of decades...
2881
2882 2014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2883
2884 * net/eww.el (eww-render): Remove a no-op :title setting.
2885
2886 2014-11-19 Ivan Shmakov <ivan@siamics.net>
2887
2888 * net/eww.el (eww-history-limit): New variable.
2889 (eww-save-history): Use it (bug#19105).
2890 (eww-reload): Reload the page in the right buffer.
2891
2892 2014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2893
2894 * net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
2895
2896 2014-11-19 Ivan Shmakov <ivan@siamics.net>
2897
2898 * net/eww.el (eww-desktop-remove-duplicates)
2899 (eww-restore-desktop, eww-restore-reload-prompt): New variables.
2900 (eww-mode): Set up desktop mode (bug#18010).
2901 (eww-desktop-data-save, eww-desktop-data-1)
2902 (eww-desktop-history-duplicate, eww-desktop-misc-data)
2903 (eww-restore-desktop): New functions.
2904
2905 2014-11-19 Eli Zaretskii <eliz@gnu.org>
2906
2907 * vc/vc.el (vc-log-internal-common): Turn on log-view-mode in the
2908 correct buffer. (Bug#19101)
2909
2910 2014-11-19 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
2911
2912 * vc/vc-git.el (vc-git-diff): Use "difftool -x diff" with
2913 `diff-switches' if `vc-git-diff-switches' is nil. (Bug#19099)
2914
2915 2014-11-19 Artur Malabarba <bruce.connor.am@gmail.com>
2916
2917 * ido.el (ido-bury-buffer-at-head): New command.
2918 (ido-buffer-completion-map): Bind it to C-S-b.
2919
2920 2014-11-18 Juri Linkov <juri@linkov.net>
2921
2922 * simple.el (next-line-or-history-element): Wrap next-line
2923 in with-no-warnings.
2924 (previous-line-or-history-element): Wrap previous-line
2925 in with-no-warnings.
2926
2927 2014-11-18 Juri Linkov <juri@linkov.net>
2928
2929 * progmodes/grep.el (grep-compute-defaults):
2930 Compute grep-highlight-matches before its use.
2931
2932 2014-11-18 Juri Linkov <juri@linkov.net>
2933
2934 * replace.el (query-replace-from-to-separator): Turn defvar into
2935 defcustom. Wrap char-displayable-p in ignore-errors because an
2936 attempt to autoload char-displayable-p fails during pre-loading.
2937 Move (propertize "\0" ... 'separator t) out of customizable part
2938 to query-replace-read-from.
2939 (query-replace-read-from): Call custom-reevaluate-setting on
2940 query-replace-from-to-separator to reevaluate the separator
2941 depending on the return value of char-displayable-p.
2942 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00466.html
2943
2944 2014-11-18 Juri Linkov <juri@linkov.net>
2945
2946 * bindings.el (minibuffer-local-map): Rebind [down] from
2947 next-history-element to next-line-or-history-element, and [up]
2948 from previous-history-element to previous-line-or-history-element.
2949
2950 * simple.el (next-line-or-history-element)
2951 (previous-line-or-history-element): New commands.
2952 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
2953
2954 2014-11-18 Leo Liu <sdl.web@gmail.com>
2955
2956 * emacs-lisp/nadvice.el (define-advice): New macro.
2957 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2958 Add define-advice.
2959 (lisp-font-lock-keywords-1): Add define-advice.
2960
2961 2014-11-18 Daiki Ueno <ueno@gnu.org>
2962
2963 * epg.el (epg-context): New slot EDIT-CALLBACK.
2964 (epg--process-filter): Call EDIT-CALLBACK when editing a key.
2965 (epg-reset): Reset EDIT-CALLBACK of the context.
2966 (epg-start-edit-key): New function.
2967 (epg-edit-key): New function.
2968
2969 2014-11-18 Paul Eggert <eggert@cs.ucla.edu>
2970
2971 Port new time stamp handling to Emacs 23.2.
2972 This fix is for Gnus. Reported by Katsumi Yamaoka.
2973 * calendar/time-date.el (time-add, time-subtract, time-less-p):
2974 Use eval-and-compile, not eval-when-compile.
2975
2976 2014-11-18 Daiki Ueno <ueno@gnu.org>
2977
2978 * epg.el (epg-context-set-passphrase-callback)
2979 (epg-context-set-progress-callback): Check if the CALLBACK
2980 argument is a function, instead of a cons.
2981
2982 2014-11-18 Daiki Ueno <ueno@gnu.org>
2983
2984 * epa-file.el (epa-file-insert-file-contents)
2985 (epa-file-write-region): Remove redundant check of
2986 epa-pinentry-mode.
2987 * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
2988 (epa-sign-region, epa-encrypt-region): Remove redundant check of
2989 epa-pinentry-mode.
2990
2991 2014-11-18 Daiki Ueno <ueno@gnu.org>
2992
2993 * epa-file.el (epa-file-insert-file-contents): Don't show
2994 "*Error*" buffer if input file does not exist.
2995 Reported by Herbert J. Skuhra.
2996
2997 2014-11-18 Paul Pogonyshev <pogonyshev@gmail.com>
2998 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
2999
3000 * progmodes/cc-langs.el: Support some of the new keywords in C++11.
3001 An alternative version of the patch from bug#13871.
3002 (c-operators): Add "alignof".
3003 (c-primitive-type-kwds): Add "char16_t", "char32_t".
3004 (c-type-modifier-kwds): Add "constexpr", "noexcept".
3005 (c-modifier-kwds): Add "thread_local".
3006 (c-constant-kwds): Add "nullptr".
3007
3008 2014-11-17 Michal Nazarewicz <mina86@mina86.com>
3009
3010 * textmodes/tildify.el (tildify-pattern, tildify-space-string):
3011 New variables for specifying tildify pattern and representation of
3012 a hard space -- a no-break space by default -- respectively.
3013 Being buffer-local they are much easier to handle than
3014 `tildify-string-alist' and `tildify-pattern-alist' respectively
3015 that have been used so far. They also works better with derived
3016 modes.
3017 (tildify-foreach-region-function): New variable specifying
3018 a function determining portions of buffer that should be
3019 tildified. It allows major modes to create a filtering function
3020 more elaborate than a set of regular expressions. Initialised to
3021 `tildify--deprecated-ignore-evironments' by default to handle now
3022 deprecated `tildify-ignored-environments-alist' variable.
3023 (tildify--foreach-region): A new function that takes
3024 `tildify-foreach-region-function' into account and calls callback
3025 for regions of the buffer that should be tildified.
3026 (tildify-foreach-ignore-environments): A new function which can be
3027 partially applied and used as `tildify-foreach-region-function'.
3028 (tildify-ignored-environments-alist, tildify-pattern)
3029 (tildify-string-alist, tildify--pick-alist-entry): Mark as obsolete.
3030 (tildify--find-env): Rename from `tildify-find-env' and mark as
3031 obsolete.
3032 (tildify--deprecated-ignore-evironments): New function,
3033 immediately marked as obsolete, used to handle deprecated
3034 `tildify-ignored-environments-alist'.
3035
3036 * textmodes/tex-mode.el (tex-common-initialization):
3037 Set `tildify-space-string' and `tildify-foreach-region-function'
3038 variables in all variants of TeX mode since `tildify-string-alist'
3039 and `tildify-ignored-environments-alist' are now empty by default.
3040
3041 * nxml/nxml-mode.el (nxml-mode): Ditto in `nxml-mode'.
3042 If encoding supports it use no-break space instead of character
3043 entity; this changes previous default which used a numeric
3044 reference.
3045
3046 * textmodes/sgml-mode.el (sgml-mode): ditto in `sgml-mode'.
3047 If encoding does not support no-break space, use numeric reference;
3048 this changes previous default which used named entity (“&nbsp;”)
3049 in HTML mode.
3050
3051 2014-11-17 Ulf Jasper <ulf.jasper@web.de>
3052
3053 * calendar/icalendar.el (icalendar-export-alarms):
3054 New customizable variable. (Bug#5433)
3055 (icalendar-export-region): Export alarms as specified in
3056 `icalendar-export-alarms'.
3057 (icalendar--create-ical-alarm, icalendar--do-create-ical-alarm):
3058 New functions for exporting alarms.
3059
3060 2014-11-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3061
3062 * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'.
3063
3064 2014-11-17 Paul Eggert <eggert@cs.ucla.edu>
3065
3066 Port new time stamp handling to old Emacs and to XEmacs.
3067 This is needed for Gnus, which copies time-date.el and which
3068 runs on older Emacs implementations.
3069 * calendar/time-date.el (with-decoded-time-value):
3070 Handle 'nil' and floating-point arg more compatibly with new Emacs.
3071 (encode-time-value, with-decoded-time-value):
3072 Obsolete only if new Emacs.
3073 (time-add, time-subtract, time-less-p): Define if not new Emacs.
3074
3075 Improve time stamp handling, and be more consistent about it.
3076 This implements a suggestion made in:
3077 http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
3078 Among other things, this means timer.el no longer needs to
3079 autoload the time-date module.
3080 * allout-widgets.el (allout-elapsed-time-seconds): Doc fix.
3081 * arc-mode.el (archive-ar-summarize):
3082 * calendar/time-date.el (seconds-to-time, days-to-time, time-since):
3083 * emacs-lisp/timer.el (timer-relative-time, timer-event-handler)
3084 (run-at-time, with-timeout-suspend, with-timeout-unsuspend):
3085 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
3086 * proced.el (proced-time-lessp):
3087 * timezone.el (timezone-time-from-absolute):
3088 * type-break.el (type-break-schedule, type-break-time-sum):
3089 Simplify by using new functionality.
3090 * calendar/cal-dst.el (calendar-next-time-zone-transition):
3091 Do not return time values in obsolete and undocumented (HI . LO)
3092 format; use (HI LO) instead.
3093 * calendar/time-date.el (with-decoded-time-value):
3094 Treat 'nil' as current time. This is mostly for XEmacs.
3095 (encode-time-value, with-decoded-time-value): Obsolete.
3096 (time-add, time-subtract, time-less-p): Use no-op autoloads, for
3097 XEmacs. Define only if XEmacs, as they're now C builtins in Emacs.
3098 * ldefs-boot.el: Update to match new time-date.el
3099 * proced.el: Do not require time-date.
3100
3101 2014-11-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3102
3103 * net/eww.el (eww-mode): Make the buffer read-only.
3104 (eww-form-text): Inhibit read-only-ness in text input fields
3105 (bug#16476).
3106
3107 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3108
3109 * simple.el (execute-extended-command--shorter): Cut search here.
3110 (execute-extended-command): Instead of here.
3111
3112 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
3113
3114 * progmodes/python.el (python-mode): Avoid use of set-local to
3115 keep Emacs 24.x compatibility.
3116
3117 2014-11-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3118
3119 * net/shr.el (shr): Move to the new defgroup `web'.
3120
3121 * net/eww.el (eww): Ditto.
3122
3123 * simple.el (execute-extended-command): Don't show the help
3124 message if the binding isn't significantly shorter than the
3125 M-x command the user typed (bug#19013).
3126
3127 2014-11-16 Ulf Jasper <ulf.jasper@web.de>
3128
3129 * calendar/icalendar.el (icalendar--convert-tz-offset):
3130 Return complete cons when offsets of standard time and daylight saving
3131 time are equal.
3132 (icalendar-export-region): Fix unbound variable warning.
3133
3134 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
3135
3136 * progmodes/python.el (run-python): Allow CMD to be optional and
3137 default it to a safe command, even for Windows. (bug#18596)
3138
3139 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
3140
3141 * progmodes/python.el (python-shell-calculate-command):
3142 Rename from python-shell-parse-command. Cleanup.
3143 (run-python, run-python-internal): Use it.
3144 (python-shell-calculate-pythonpath): Rename from
3145 python-new-pythonpath.
3146 (python-shell-calculate-process-environment): Use it.
3147 (python-shell-calculate-exec-path): Add comment.
3148
3149 2014-11-16 Thierry Banel <tbanelwebmin@free.fr> (tiny change)
3150
3151 * calc/calc-arith.el (math-max-list, math-min-list): Fix bug
3152 for date handling.
3153
3154 2014-11-16 Andreas Schwab <schwab@linux-m68k.org>
3155
3156 * version.el (emacs-repository-get-version): Use git rev-parse
3157 instead of git log.
3158
3159 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
3160
3161 * progmodes/python.el (python-indent-calculate-levels):
3162 Fix indentation behavior multiline dedenter statement. (Bug#18432)
3163
3164 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
3165
3166 * progmodes/python.el (python-indent-region):
3167 Use python-indent-line and skip special cases. (Bug#18843)
3168
3169 2014-11-16 Peder O. Klingenberg <peder@klingenberg.no>
3170
3171 * mail/emacsbug.el (report-emacs-bug): Make a better guess at
3172 envelope-from when reporting through sendmail (bug#19054).
3173
3174 2014-11-16 Oscar Fuentes <ofv@wanadoo.es>
3175
3176 Add faces for the VC modeline state indicator.
3177 * vc/vc-hooks.el:
3178 (vc-state-faces, vc-state-base-face)
3179 (vc-up-to-date-state, vc-needs-update-state)
3180 (vc-locked-state, vc-locally-added-state)
3181 (vc-conflict-state, vc-removed-state)
3182 (vc-missing-state, vc-edited-state):
3183 New faces.
3184 (vc-default-mode-line-string): Use them
3185
3186 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3187
3188 * emacs-lisp/backquote.el (backquote-process): Optimize away ",'".
3189
3190 2014-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3191
3192 * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
3193
3194 2014-11-15 Fabián Ezequiel Gallina <fgallina@gnu.org>
3195
3196 * progmodes/python.el (python-eldoc-setup-code): Enhance string
3197 type checks, simplify printing. (Bug#18962)
3198
3199 2014-11-14 Ivan Andrus <darthandrus@gmail.com>
3200
3201 * progmodes/python.el (python-shell-font-lock-kill-buffer):
3202 (python-shell-font-lock-with-font-lock-buffer)
3203 (python-shell-get-buffer, python-ffap-module-path):
3204 Use `derived-mode-p' instead of equality test on `major-mode'.
3205
3206 2014-11-14 Fabián Ezequiel Gallina <fgallina@gnu.org>
3207
3208 * progmodes/python.el (python-shell-virtualenv-root): Rename from
3209 python-shell-virtualenv-path.
3210 (python-shell-internal-get-process-name)
3211 (python-shell-calculate-process-environment)
3212 (python-shell-calculate-exec-path): Use it.
3213
3214 2014-11-14 Eli Zaretskii <eliz@gnu.org>
3215
3216 * bindings.el (search-map): Fix last change: don't use 'kbd' in
3217 bindings.el, since it is not yet loaded when bindings.el is
3218 preloaded.
3219
3220 2014-11-14 Fabián Ezequiel Gallina <fgallina@gnu.org>
3221
3222 * progmodes/python.el (python-shell-completion-get-completions):
3223 Fix previous merge.
3224
3225 2014-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3226
3227 * net/eww.el (eww-render): Don't set the title to the URL.
3228
3229 2014-11-13 Ulrich Müller <ulm@gentoo.org>
3230
3231 * version.el (emacs-repository-get-version): Call `git log'
3232 command with proper format argument (bug#19049).
3233
3234 2014-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3235
3236 * bindings.el (search-map): Bind M-s M-s to `eww-search-words'.
3237
3238 2014-11-14 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3239
3240 * net/eww.el (eww-search-words): New command (bug#16258).
3241
3242 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3243
3244 * net/shr.el (shr-inhibit-images): Add a doc string.
3245
3246 * net/eww.el (eww-after-render-hook): New variable.
3247 (eww-render): Use it.
3248
3249 * net/shr.el (shr-descend): Don't descend further than
3250 `max-specpdl-size' allows (bug#16587).
3251 (shr-depth): New variable.
3252 (shr-warning): New variable.
3253
3254 2014-11-13 Ivan Shmakov <ivan@siamics.net>
3255
3256 * net/shr.el (shr-parse-base): Handle <base href=""> correctly.
3257 (shr-expand-url): Expand absolute URLs correctly (bug#17958).
3258
3259 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3260
3261 * net/eww.el (eww): Add comment to clarify.
3262
3263 * net/shr.el (shr-parse-image-data): Remove blocked bits from
3264 external SVG images.
3265 (shr-tag-object): Display images in <object> forms (bug#16244).
3266 (shr-tag-table): Also insert <objects> after the tables.
3267
3268 2014-11-13 Michael Albinus <michael.albinus@gmx.de>
3269
3270 * vc/vc-hg.el (vc-hg-state): Disable pager. (Bug#18940)
3271
3272 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3273
3274 * net/eww.el (eww-form-file): Fix version number.
3275
3276 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3277
3278 * net/eww.el (eww-form-file): :type isn't a valid `defface' keyword.
3279
3280 2014-11-10 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3281
3282 * net/eww.el(eww-form-file(defface)): New defface of file upload form.
3283 (eww-submit-file): New key map of file upload.
3284 (eww-form-file): New file upload button and file name context.
3285 (eww-select-file): Select file and display selected file name.
3286 (eww-tag-input): Handle input tag of file type.
3287 (eww-update-field): Add point offset.
3288 (eww-submit): Add submit with multipart/form-data.
3289
3290 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3291
3292 * net/eww.el (eww-render, eww-display-html, eww-setup-buffer):
3293 Allow taking a buffer to render data in. This allows using several
3294 eww buffers (bug#16211).
3295
3296 2014-11-10 Charles Rendleman <carendle@gmail.com> (tiny change)
3297
3298 * net/eww.el (eww-download-callback): Save only the file contents,
3299 not the headers.
3300
3301 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3302
3303 * net/eww.el (eww-data): New plist to store all the data relevant
3304 to a single page, used throughout the file instead of the
3305 variables `eww-current-url', `eww-current-dom',
3306 `eww-current-source', and `eww-current-title'.
3307 (eww-readable): Copy over pertinent data from the parent page.
3308 (eww-save-history): Don't let the history grow infinitely.
3309
3310 * net/eww.el: Remove `eww-next-url', `eww-previous-url',
3311 `eww-up-url', `eww-home-url', `eww-start-url' and
3312 `eww-contents-url' and put the data into the `eww-data' plist.
3313 This allow restoring these values after going back in the history.
3314
3315 2014-11-10 Sylvain Chouleur <sylvain.chouleur@gmail.com> (tiny change)
3316
3317 Allow VTIMEZONE where daylight and standard time zones are equal.
3318 See: http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00494.html
3319 * calendar/icalendar.el (icalendar--convert-tz-offset):
3320 Support timezone without daylight saving time.
3321
3322 2014-11-10 Glenn Morris <rgm@gnu.org>
3323
3324 * startup.el (command-line): Handle nil elements in load-path.
3325
3326 2014-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3327
3328 * help.el (view-lossage): Include the actual commands run.
3329
3330 2014-11-10 Dmitry Gutov <dgutov@yandex.ru>
3331
3332 * vc/vc-dir.el (vc-dir-hide-state): Also hide `ignored' items when
3333 no state is specified. (Bug#18964)
3334
3335 2014-11-09 Eric Ludlam <zappo@gnu.org>
3336
3337 * emacs-lisp/eieio-custom.el (eieio-customize-object):
3338 Set eieio-cog (current group) to g, which is an improved form of input
3339 group.
3340
3341 2014-11-09 Juri Linkov <juri@jurta.org>
3342
3343 * isearch.el (isearch-message-prefix): Show "Multi-file" and
3344 "Multi-buffer" instead of "Multi". (Bug#13592)
3345
3346 * misearch.el (multi-isearch-file-list):
3347 Autoload multi-isearch-buffer-list and multi-isearch-file-list.
3348 (multi-isearch-end): Reset multi-isearch-buffer-list and
3349 multi-isearch-file-list to nil.
3350
3351 2014-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3352
3353 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3354 Don't call byte-compile-preprocess since the result will go through
3355 cconv.
3356 (byte-compile-output-docform): Handle uninterned `name' correctly.
3357 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Use interned name
3358 to circumvent byte-compiler bug.
3359
3360 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix typo.
3361 (macroexp--compiler-macro): Remove left-over debug code.
3362
3363 * emacs-lisp/cl-extra.el (cl-get): Silence compiler warning.
3364
3365 2014-11-08 Juri Linkov <juri@jurta.org>
3366
3367 * simple.el (shell-command): Use buffer-name when output-buffer is
3368 a buffer. (Bug#18096)
3369
3370 2014-11-08 Juri Linkov <juri@jurta.org>
3371
3372 * minibuffer.el (minibuffer-completion-help): Compare this-command
3373 with completion-at-point. (Bug#17809)
3374
3375 2014-11-08 Glenn Morris <rgm@gnu.org>
3376
3377 * emacs-lisp/bytecomp.el (byte-compile-report-error):
3378 Allow the argument to be a string. Due to the vague doc,
3379 it was already being used this way.
3380
3381 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
3382
3383 * net/tramp.el (tramp-check-cached-permissions): Include hop in
3384 the constructed Tramp file name. (Bug#18943)
3385
3386 2014-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3387
3388 * emulation/cua-base.el (cua--select-keymaps): Use region-active-p
3389 (bug#18952).
3390 (cua-set-mark, cua--post-command-handler-1):
3391 * emulation/cua-gmrk.el (cua-cancel-global-mark): Same.
3392
3393 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
3394
3395 * files.el (file-name-non-special): Wrap the call of
3396 `insert-file-contents' by `unwind-protect', in order to set the
3397 buffer's file name anyway. (Bug#18891)
3398
3399 2014-11-08 Alan Mackenzie <acm@muc.de>
3400
3401 Fix wrong bound to c-font-lock-declarators. Fixes bug #18948.
3402 * progmodes/cc-fonts.el (c-font-lock-declarations):
3403 Pass "(point-max)" as bound to c-font-lock-declarators, not "limit", as
3404 the buffer is sometimes narrowed to less than "limit" (e.g., in
3405 the presence of macros).
3406
3407 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
3408
3409 * net/tramp.el (tramp-error-with-buffer): Show connection buffer
3410 only when message appeared in minibuffer. (Bug#18891)
3411
3412 * net/tramp-adb.el (tramp-adb-handle-file-attributes):
3413 * net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
3414 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Return nil in
3415 case of errors.
3416
3417 2014-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3418
3419 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3420 Don't compile before eval in `eval-and-compile'.
3421 (byte-compile-arglist-warn): Add check for defining macros after their
3422 first use. Check call use even if the function is fboundp.
3423
3424 2014-11-08 Richard Stallman <rms@gnu.org>
3425
3426 * mail/rmail.el (rmail-epa-decrypt): Detect armor with line prefixes.
3427 Check more carefully for mime-part specified character set.
3428 Check for mime-part Content Transfer Encoding.
3429 Notify if no armor found.
3430
3431 2014-11-08 Martin Rudalics <rudalics@gmx.at>
3432
3433 * faces.el (face-set-after-frame-default): Enable running
3434 `window-configuration-change-hook'.
3435
3436 2014-11-07 Juri Linkov <juri@jurta.org>
3437
3438 * replace.el: History for query replace pairs.
3439 (query-replace-defaults): Promote to a list of cons cell. Doc fix.
3440 (query-replace-from-to-separator): New variable.
3441 (query-replace-read-from): Let-bind query-replace-from-to-history
3442 to a list of FROM-TO strings created from query-replace-defaults
3443 and separated by query-replace-from-to-separator. Use it as
3444 the history while reading from the minibuffer. Split the returned
3445 string by the separator to get FROM and TO parts, and add them
3446 to the history variables.
3447 (query-replace-read-to): Add FROM-TO pairs to query-replace-defaults.
3448 (query-replace-regexp-eval): Let-bind query-replace-defaults to nil.
3449 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00253.html
3450
3451 * isearch.el (isearch-text-char-description): Keep characters
3452 intact and put formatted strings with the `display' property.
3453
3454 2014-11-07 Martin Rudalics <rudalics@gmx.at>
3455
3456 * cus-start.el (frame-resize-pixelwise): Fix group.
3457 (frame-inhibit-implied-resize): Add entry.
3458
3459 2014-11-07 Daiki Ueno <ueno@gnu.org>
3460
3461 * epa.el (epa-pinentry-mode): New user option.
3462 (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
3463 (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
3464 * epa-file.el (epa-file-insert-file-contents)
3465 (epa-file-write-region): Respect epa-pinentry-mode.
3466
3467 2014-11-07 Daiki Ueno <ueno@gnu.org>
3468
3469 * epg.el (epg--list-keys-1): Ignore fields after the 15th field
3470 (bug#18979). Reported by Hideki Saito.
3471
3472 2014-11-06 Daiki Ueno <ueno@gnu.org>
3473
3474 * emacs-lisp/package.el (package--display-verify-error): New function.
3475 (package--check-signature): Use it to display output sent to stderr.
3476
3477 2014-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3478
3479 * subr.el (pop): Don't call the getter twice (bug#18968).
3480
3481 * emacs-lisp/macroexp.el (macroexp--expand-all): Optimize away trivial
3482 uses of `funcall'.
3483
3484 2014-11-06 Daiki Ueno <ueno@gnu.org>
3485
3486 * epa.el (epa-error-buffer): New variable.
3487 (epa-display-error): New function.
3488 (epa-decrypt-file, epa-verify-file, epa-verify-region)
3489 (epa-delete-keys, epa-import-keys): Display output sent to stderr.
3490 (epa-sign-file, epa-sign-region, epa-encrypt-region)
3491 (epa-export-keys, epa-insert-keys): Display output sent to stderr.
3492 Use setf instead of epg-context-set-*.
3493 * epa-file.el (epa-file-insert-file-contents):
3494 Use epa-display-error instead of epa-display-info. Mimic the behavior
3495 of jka-compr when decryption program is not found.
3496 (epa-file-write-region): Use epa-display-error instead of
3497 epa-display-info.
3498
3499 2014-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
3500
3501 * vc/vc.el (vc-region-history): New command.
3502 (vc-print-log-internal): Use cl-some.
3503
3504 * vc/vc-git.el (vc-git-region-history): New function.
3505 (vc-git-region-history-mode-map)
3506 (vc-git--log-view-long-font-lock-keywords)
3507 (vc-git-region-history-font-lock-keywords): New vars.
3508 (vc-git-region-history-font-lock): New function.
3509 (vc-git-region-history-mode): New major mode.
3510
3511 2014-11-05 Tassilo Horn <tsdh@gnu.org>
3512
3513 * net/eww.el (subr-x): Require subr-x at compile-time because eww
3514 uses string-trim.
3515
3516 2014-11-05 Daiki Ueno <ueno@gnu.org>
3517
3518 * epg.el (epg-context): Add new slot ERROR-OUTPUT.
3519 (epg-error-output): New buffer-local variable.
3520 (epg--start): Initialize epg-error-output.
3521 (epg--process-filter): Record output lines sent to stderr, in
3522 epg-error-output.
3523 (epg-wait-for-completion): Copy epg-error-output to ERROR-OUTPUT
3524 slot of context.
3525 * epa-file.el (epa-file-insert-file-contents): On error, display
3526 output sent to stderr.
3527 (epa-file-write-region): Likewise.
3528
3529 2014-11-05 Eli Zaretskii <eliz@gnu.org>
3530
3531 * jit-lock.el (jit-lock-stealth-fontify): Be tolerant to nil being
3532 returned by load-average.
3533
3534 2014-11-05 Michael Albinus <michael.albinus@gmx.de>
3535
3536 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Don't use
3537 a local copy; setting `inhibit-file-name-handlers' proper might be
3538 more performant. (Bug#18751)
3539
3540 2014-11-05 Glenn Morris <rgm@gnu.org>
3541
3542 * mail/emacsbug.el (report-emacs-bug): No longer include
3543 recent-keys in the report. (Bug#18900)
3544
3545 2014-11-04 Paul Eggert <eggert@cs.ucla.edu>
3546
3547 * mouse.el (mouse-drag-line): Fix misspelling of "right-fringe".
3548
3549 2014-11-04 Teodor Zlatanov <tzz@lifelogs.com>
3550
3551 * net/eww.el (eww): Trim URL with `string-trim'.
3552 Suggested by Vibhav Pant <vibhavp@gmail.com>.
3553
3554 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3555
3556 * net/eww.el (eww-score-readability): Don't count comments positively.
3557
3558 * net/shr.el (shr-retransform-dom): Typo fix.
3559
3560 * net/eww.el (eww-score-readability): Parse SVC images correctly.
3561 (eww-display-html): Don't leave point inside forms.
3562
3563 * net/shr.el: Ditto.
3564
3565 2014-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3566
3567 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Assume that
3568 edebug-prin1-to-string already handles circularity.
3569
3570 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix compiler-macro
3571 autoloading when specified as a lambda.
3572
3573 * simple.el (execute-extended-command--last-typed): New var.
3574 (read-extended-command): Set it.
3575 Don't complete obsolete commands.
3576 (execute-extended-command--shorter-1)
3577 (execute-extended-command--shorter): New functions.
3578 (execute-extended-command): Use them to suggest shorter names.
3579 (indicate-copied-region, deactivate-mark): Use region-active-p.
3580
3581 2014-11-03 Michael Albinus <michael.albinus@gmx.de>
3582
3583 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Use a
3584 local copy of FILENAME, when it is remote. (Bug#18751)
3585
3586 * net/tramp-adb.el (tramp-adb-handle-process-file): Do not raise
3587 an error when the command fails; the return code must indicate.
3588 (tramp-adb-send-command-and-check): Fix docstring.
3589
3590 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3591
3592 * net/shr.el (shr-retransform-dom): Don't ignore elements that
3593 have no children like <br />.
3594
3595 * net/eww.el (eww-display-html): Clear `url-queue'.
3596 (eww-display-pdf): New function.
3597 (eww-render): Display PDFs with `doc-view'.
3598 (url-queue): Require `url-queue' to avoid compilation warning.
3599 (eww-colorize-region): Remove duplicate function.
3600 (eww-tag-body): Use `shr-colorize-region'.
3601
3602 2014-11-03 Yoni Rabkin <yrk@gnu.org>
3603
3604 * net/eww.el (eww-list-bookmarks): Autoload.
3605
3606 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3607
3608 * net/shr.el (shr-retransform-dom): Allow several text sub-nodes.
3609
3610 * net/eww.el (eww-display-html): The charset is called `utf-8',
3611 not `utf8'.
3612 (eww-readable): Decode the saved text correctly.
3613 (eww-readable): Save the history before displaying so that we can
3614 go back to the non-readable version.
3615 (eww-display-html): Don't try to decode the text if we've been
3616 passed in a pre-parsed DOM.
3617 (eww-tag-title): Remove newlines and extra whitespace from the
3618 displayed title.
3619
3620 2014-11-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3621
3622 * net/eww.el (eww-readable): New command and keystroke.
3623
3624 * net/shr.el (shr-retransform-dom): New function.
3625
3626 * net/eww.el (eww-display-html): Set `eww-current-source' in the
3627 correct buffer.
3628 (eww-view-source): Use it.
3629
3630 2014-11-02 Ivan Shmakov <ivan@siamics.net>
3631
3632 * net/eww.el (eww): Recognize colon-delimited IPv6 addresses.
3633 (Bug#18603).
3634
3635 2014-11-02 Brian McKenna <brian@brianmckenna.org> (tiny change)
3636
3637 * net/eww.el (eww-submit): Encode empty form values as "". (Bug#17785).
3638
3639 2014-11-02 Ivan Shmakov <ivan@siamics.net>
3640
3641 * net/eww.el (eww): Allow "file:/file/name" URLs. (Bug#18825).
3642
3643 2014-11-02 Ivan Shmakov <ivan@siamics.net>
3644
3645 * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
3646 (Bug#18834).
3647
3648 2014-11-02 Eric Abrahamsen <eric@ericabrahamsen.net>
3649
3650 * emacs-lisp/eieio.el (eieio-edebug-prin1-to-string): Adjust for
3651 use as advice.
3652 (edebug-setup-hook): Advise `edebug-prin1-to-string'. (Bug#18897)
3653
3654 2014-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
3655
3656 * emacs-lisp/pp.el (pp-macroexpand-expression): Use macroexpand-1
3657 (bug#18821).
3658 * progmodes/elisp-mode.el (emacs-lisp-macroexpand): Idem.
3659
3660 2014-11-01 Michael R. Mauger <michael@mauger.com>
3661
3662 * sql.el (sql-mode-oracle-font-lock-keywords): Correct regexp
3663 syntax, add new keywords, and parse longer keywords first.
3664 (sql-redirect-one): Protect against empty command.
3665 (sql-mode, sql-interactive-mode): Set `custom-mode-group' property
3666 to SQL. (Bug#14759)
3667
3668 2014-11-01 Michael R. Mauger <michael@mauger.com>
3669
3670 * sql.el (sql-interactive-mode, sql-stop): Correct fix for
3671 Bug#16814 with let-bind of comint-input-ring variables around read
3672 and save functions.
3673
3674 2014-11-01 Michael Albinus <michael.albinus@gmx.de>
3675
3676 * net/tramp-cache.el (tramp-get-file-property)
3677 (tramp-set-file-property): Check that `tramp-cache-get-count-*'
3678 and `tramp-cache-set-count-*' are bound. Otherwise, there might
3679 be compiler warnings.
3680
3681 * net/tramp-sh.el (tramp-get-remote-uid, tramp-get-remote-gid):
3682 Return -1 respective "UNKNOWN", if uid or gid cannot be determined.
3683
3684 2014-11-01 Eli Zaretskii <eliz@gnu.org>
3685
3686 * progmodes/compile.el (compilation-mode): Turn off deferred
3687 fontifications locally. (Bug#18856)
3688
3689 2014-11-01 Wolfgang Jenkner <wjenkner@inode.at>
3690
3691 * net/tramp-sh.el (tramp-send-command): Fix the case where the
3692 remote-echo connection property is non-nil (bug#18858).
3693
3694 2014-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
3695
3696 * simple.el (newline): Add assertions to try and help catch bug#18913.
3697
3698 * emulation/cua-base.el (cua-delete-region): Use delete-active-region
3699 (bug#18886).
3700 (cua--last-deleted-region-pos, cua--last-deleted-region-text): Remove.
3701
3702 2014-11-01 Kim F. Storm <storm@cua.dk>
3703
3704 Restore cua-delete-copy-to-register-0 and M-v command (bug#18886).
3705 * delsel.el (delete-selection-save-to-register)
3706 (delsel--replace-text-or-position): New vars.
3707 (delete-active-region): Use them.
3708 (delete-selection-repeat-replace-region): New command, moved from
3709 cua-base.el.
3710 * emulation/cua-base.el (cua--repeat-replace-text): Remove var.
3711 (cua-repeat-replace-region): Move command to delsel.el.
3712 (cua--init-keymaps): Update binding accordingly.
3713 (cua-mode): Set delete-selection-save-to-register.
3714
3715 2014-11-01 Alan Mackenzie <acm@muc.de>
3716
3717 Make blink-parens work with a closing template delimiter.
3718 * progmodes/cc-cmds.el (c-electric-lt-gt): Cause a redisplay
3719 before calling blink-paren-function, so as to apply syntax-table
3720 properties to the ">".
3721
3722 2014-11-01 Jan Djärv <jan.h.d@swipnet.se>
3723
3724 * select.el (gui-get-selection): Comment: data-type ignored on NS.
3725
3726 2014-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * emacs-lisp/macroexp.el (macroexpand-1): New function (bug#18821).
3729 (macroexp--expand-all): Unrelated tweaks.
3730
3731 * emacs-lisp/gv.el (gv-get): Use macroexpand-1.
3732
3733 2014-10-30 Glenn Morris <rgm@gnu.org>
3734
3735 * startup.el (command-line): Remove pointless attempt to avoid
3736 statting the file-system (which expand-file-name doesn't do).
3737
3738 2014-10-30 Daniel Colascione <dancol@dancol.org>
3739
3740 Add "enum class" support to C++ mode.
3741 * progmodes/cc-langs.el (c-after-brace-list-decl-kwds)
3742 (c-after-brace-list-key): New language consts/variables.
3743 * progmodes/cc-engine.el (c-looking-at-decl-block):
3744 Exclude spurious match of "enum struct" from decl-block recognition.
3745 (c-backward-colon-prefixed-type): New function.
3746 (c-backward-over-enum-header): Call above function to extend
3747 recognition of enum structure.
3748
3749 2014-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
3750
3751 * progmodes/cc-defs.el (c--macroexpand-all): New function (bug#18845).
3752 (c-lang-defconst):
3753 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Use it.
3754
3755 2014-10-30 Eli Zaretskii <eliz@gnu.org>
3756
3757 * progmodes/compile.el (compilation-start):
3758 If compilation-scroll-output is non-nil, don't force window-start of
3759 the compilation buffer to be at beginning of buffer. (Bug#18874)
3760
3761 * startup.el (fancy-about-text): Read the entire tutorial, not
3762 just its first 256 bytes. (Bug#18760)
3763
3764 2014-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
3765
3766 * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
3767 * emacs-lisp/cl-extra.el: Add missing provide.
3768
3769 * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where
3770 all args are copyable (bug#18767).
3771 (=, <, >, <=, >=): Re-enable the optimization.
3772
3773 2014-10-29 Glenn Morris <rgm@gnu.org>
3774
3775 * net/rcirc.el (rcirc-fill-column): Unbump :version. Mark :risky.
3776
3777 * version.el (emacs-bzr-version, emacs-bzr-get-version):
3778 Revert 2014-10-26 change.
3779
3780 2014-10-29 Paul Eggert <eggert@cs.ucla.edu>
3781
3782 Simplify use of current-time and friends.
3783 * allout-widgets.el (allout-widgets-hook-error-handler):
3784 * calendar/appt.el (appt-display-message):
3785 * calendar/icalendar.el (icalendar--convert-float-to-ical):
3786 * calendar/timeclock.el (timeclock-in, timeclock-when-to-leave)
3787 (timeclock-last-period, timeclock-day-base):
3788 * eshell/em-ls.el (eshell-ls-file):
3789 * eshell/esh-util.el (eshell-parse-ange-ls):
3790 * generic-x.el (named-database-print-serial):
3791 * net/newst-backend.el (newsticker--get-news-by-url-callback)
3792 (newsticker-get-news, newsticker--sentinel-work)
3793 (newsticker--image-get, newsticker--image-sentinel):
3794 * net/tramp-sh.el (tramp-get-remote-touch):
3795 * progmodes/opascal.el (opascal-debug-log):
3796 * textmodes/remember.el (remember-mail-date)
3797 (remember-store-in-files):
3798 * vc/vc-annotate.el (vc-annotate-display-autoscale)
3799 (vc-default-annotate-current-time):
3800 * vc/vc-bzr.el (vc-bzr-shelve-snapshot):
3801 * vc/vc-cvs.el (vc-cvs-annotate-current-time):
3802 * vc/vc-rcs.el (vc-rcs-annotate-current-time):
3803 Omit unnecessary call to current-time.
3804 * calendar/time-date.el (time-to-seconds) [!float-time]:
3805 * vc/vc-annotate.el (vc-annotate-convert-time):
3806 Use current time if arg is nil, to be compatible with float-time.
3807 (time-date--day-in-year): New function, with most of the guts of
3808 the old time-to-day-in-year.
3809 (time-to-day-in-year): Use it.
3810 (time-to-days): Use it, to avoid decoding the same time stamp twice.
3811 * calendar/timeclock.el (timeclock-time-to-date):
3812 Arg is now optional, like current-time-string.
3813 (timeclock-update-mode-line):
3814 Don't call current-time twice to get the current time stamp,
3815 as this can lead to inconsistent results.
3816 * completion.el (cmpl-hours-since-origin):
3817 * ido.el (ido-time-stamp):
3818 * vc/vc-annotate.el (vc-annotate-convert-time):
3819 Simplify by using float-time.
3820 * completion.el (save-completions-to-file):
3821 Rename local var to avoid confusion.
3822 * net/rcirc.el (rcirc-float-time): Simplify to an alias because
3823 time-to-seconds now behaves like float-time with respect to nil arg.
3824 * subr.el (progress-reporter-do-update):
3825 Don't call float-time unless needed.
3826
3827 2014-10-29 Leo Liu <sdl.web@gmail.com>
3828
3829 * net/rcirc.el (rcirc-fill-column): Use function.
3830 (rcirc-markup-fill): Remove adjustment.
3831
3832 2014-10-28 Christopher Schmidt <ch@ristopher.com>
3833
3834 * calc/calc.el (quick-calc):
3835 * calc/calc-aent.el (calc-do-quick-calc): New argument INSERT.
3836
3837 2014-10-28 Sam Steingold <sds@gnu.org>
3838
3839 * net/rcirc.el (rcirc-fill-column): Allow any symbolic value for
3840 the sake of `window-body-width' (in addition to `frame-width').
3841
3842 2014-10-26 Eric S. Raymond <esr@thyrsus.com>
3843
3844 * version.el: Fix some fallback values to conform to the actual
3845 release number.
3846
3847 2014-10-25 Eric S. Raymond <esr@thyrsus.com>
3848
3849 * Makefile.in: Change some production names so they're neutral
3850 about the repository type.
3851
3852 2014-10-25 Michael Albinus <michael.albinus@gmx.de>
3853
3854 * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
3855 (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
3856 during initialization. (Bug#18774)
3857
3858 2014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net>
3859
3860 * ses.el (macroexp): Add require for this package, so that
3861 function `ses--cell' gets macroexp-quote --- this change was
3862 supposed to be in my previous commit, but left out by mistake.
3863 (ses--cell): Do not make formula a macroexp-quote of value when
3864 value, not formula, is *skip*.
3865
3866 2014-10-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3867
3868 * ses.el (macroexp): Add require for this package, so that function
3869 `ses--cell gets macroexp-quote.
3870 (ses--cell): Makes formula a macroexp-quote of value when formula
3871 is nil. The rationale of this changr is to allow in the future
3872 shorter SES files, e.g. we could have only `(ses-cell A1 1.0)'
3873 instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case
3874 reference list REFLIST would be re-computed after load --- thus
3875 trading off load time against file size.
3876
3877 * emacs-lisp/package.el (package--alist-to-plist-args):
3878 Use macroexp-quote instead of a lambda expression which has the same
3879 content as macroexp-quote.
3880 (macroexp): Add require for this package, so that function
3881 `package--alist-to-plist-args' gets macroexp-quote.
3882
3883 * emacs-lisp/macroexp.el (macroexp-quote): New defun.
3884
3885 2014-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3886
3887 * term/ns-win.el (ns-store-cut-buffer-internal)
3888 (ns-copy-including-secondary): Use gui-set-selection (bug#18816).
3889
3890 2014-10-24 Martin Rudalics <rudalics@gmx.at>
3891
3892 * mouse.el (mouse-drag-line): Don't use mouse-pixel-position.
3893 Calculate increment from last position instead of window edge.
3894 Add right- and bottom-divider bindings to transient map.
3895
3896 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3897
3898 * emacs-lisp/cl-macs.el (cl-defstruct): Define an internal predicate
3899 even if :predicate was nil, for the benefit of typep.
3900 Record the name of the predicate for typep's use.
3901 (cl--make-type-test): Use pcase. Obey new
3902 cl-deftype-satisfies property.
3903
3904 * epg.el: Use cl-defstruct.
3905 (epg-make-data-from-file, epg-make-data-from-string, epg-data-file)
3906 (epg-data-string): Define via cl-defstruct.
3907 (epg--gv-nreverse): New macro.
3908 (epg-context--make): New constructor (provided vi cl-defstruct).
3909 (epg-make-context): Rewrite using it.
3910 (epg-context-protocol, epg-context-program)
3911 (epg-context-home-directory, epg-context-armor, epg-context-textmode)
3912 (epg-context-include-certs, epg-context-cipher-algorithm)
3913 (epg-context-digest-algorithm, epg-context-compress-algorithm)
3914 (epg-context-passphrase-callback, epg-context-progress-callback)
3915 (epg-context-signers, epg-context-sig-notations, epg-context-process)
3916 (epg-context-output-file, epg-context-result, epg-context-operation)
3917 (epg-context-pinentry-mode): Define using cl-defstruct.
3918 (epg-context-set-protocol, epg-context-set-program)
3919 (epg-context-set-include-certs, epg-context-set-cipher-algorithm)
3920 (epg-context-set-digest-algorithm)
3921 (epg-context-set-sig-notations, epg-context-set-process)
3922 (epg-context-set-output-file, epg-context-set-result)
3923 (epg-context-set-operation, epg-context-set-pinentry-mode)
3924 (epg-context-set-compress-algorithm): Remove. Use setf instead.
3925 (epg-context-set-armor, epg-context-set-textmode)
3926 (epg-context-set-signers): Redefine using setf
3927 and declare as obsolete.
3928 (epg-context-set-passphrase-callback)
3929 (epg-context-set-progress-callback): Use setf.
3930 (epg-signature-notations): Rename from epg-sig-notations.
3931 (epg-make-signature, epg-signature-status, epg-signature-key-id)
3932 (epg-signature-validity, epg-signature-fingerprint)
3933 (epg-signature-creation-time, epg-signature-expiration-time)
3934 (epg-signature-pubkey-algorithm, epg-signature-digest-algorithm)
3935 (epg-signature-class, epg-signature-version): Define vi cl-defstruct.
3936 (epg-signature-set-status, epg-signature-set-key-id)
3937 (epg-signature-set-validity, epg-signature-set-fingerprint)
3938 (epg-signature-set-creation-time, epg-signature-set-expiration-time)
3939 (epg-signature-set-pubkey-algorithm)
3940 (epg-signature-set-digest-algorithm, epg-signature-set-class)
3941 (epg-signature-set-version, epg-signature-set-notations): Remove.
3942 Use setf instead.
3943 (epg-make-new-signature, epg-new-signature-type)
3944 (epg-new-signature-pubkey-algorithm)
3945 (epg-new-signature-digest-algorithm, epg-new-signature-class)
3946 (epg-new-signature-creation-time, epg-new-signature-fingerprint):
3947 Define using cl-defstruct.
3948 (epg-make-key, epg-key-owner-trust, epg-key-sub-key-list)
3949 (epg-key-user-id-list): Define using cl-defstruct.
3950 (epg-key-set-sub-key-list, epg-key-set-user-id-list): Remove.
3951 Use setf instead.
3952 (epg-make-sub-key, epg-sub-key-validity, epg-sub-key-capability)
3953 (epg-sub-key-secret-p, epg-sub-key-algorithm, epg-sub-key-length)
3954 (epg-sub-key-id, epg-sub-key-creation-time)
3955 (epg-sub-key-expiration-time, epg-sub-key-fingerprint): Define using
3956 cl-defstruct.
3957 (epg-sub-key-set-fingerprint): Remove. Use setf instead.
3958 (epg-make-user-id, epg-user-id-validity, epg-user-id-string)
3959 (epg-user-id-signature-list): Define using cl-defstruct.
3960 (epg-user-id-set-signature-list): Remove. Use setf instead.
3961 (epg-make-key-signature, epg-key-signature-validity)
3962 (epg-key-signature-pubkey-algorithm, epg-key-signature-key-id)
3963 (epg-key-signature-creation-time, epg-key-signature-expiration-time)
3964 (epg-key-signature-user-id, epg-key-signature-class)
3965 (epg-key-signature-exportable-p): Define using cl-defstruct.
3966 (epg-make-sig-notation, epg-sig-notation-name)
3967 (epg-sig-notation-value, epg-sig-notation-human-readable)
3968 (epg-sig-notation-critical): Define using cl-defstruct.
3969 (epg-sig-notation-set-value): Remove. Use setf instead.
3970 (epg-make-import-status, epg-import-status-fingerprint)
3971 (epg-import-status-reason, epg-import-status-new)
3972 (epg-import-status-user-id, epg-import-status-signature)
3973 (epg-import-status-sub-key, epg-import-status-secret): Define using
3974 cl-defstruct.
3975 (epg-make-import-result, epg-import-result-considered)
3976 (epg-import-result-no-user-id, epg-import-result-imported)
3977 (epg-import-result-imported-rsa, epg-import-result-unchanged)
3978 (epg-import-result-new-user-ids, epg-import-result-new-sub-keys)
3979 (epg-import-result-new-signatures, epg-import-result-new-revocations)
3980 (epg-import-result-secret-read, epg-import-result-secret-imported)
3981 (epg-import-result-secret-unchanged, epg-import-result-not-imported)
3982 (epg-import-result-imports): Define using cl-defstruct.
3983
3984 * emacs-lisp/package.el: Require EPG during macroexpansion.
3985 (package--check-signature, package-import-keyring): Use setf instead of
3986 epg-context-set-home-directory.
3987
3988 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3989
3990 * emacs-lisp/bytecomp.el (byte-compile--use-old-handlers): Change default.
3991
3992 2014-10-23 Leo Liu <sdl.web@gmail.com>
3993
3994 * progmodes/cfengine.el (cfengine3-defun-full-re): New var.
3995 (cfengine3-create-imenu-index): Use it and use ` ' for separation.
3996 (cfengine3-current-defun): New function.
3997 (cfengine3-mode): Set add-log-current-defun-function.
3998
3999 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4000
4001 * select.el: Use lexical-binding.
4002 (gui-set-selection): Provide an implementation for non-GUI frames
4003 (bug#18791).
4004 * term/x-win.el: Use lexical-binding.
4005 (x-clipboard-yank): Fix up missed renamings.
4006 * term/w32-win.el (libgif-version, libjpeg-version): Silence compiler.
4007 (w32--set-selection): Fix up var names.
4008 * term/pc-win.el: Use lexical-binding.
4009 (w16-selection-exists-p): Silence compiler warning.
4010 (w16-selection-owner-p): Fix up missed renamings.
4011
4012 * emacs-lisp/bytecomp.el (byte-compile-form): Remove left-over debug.
4013
4014 * frame.el (frame-notice-user-settings): Fix excessive quoting.
4015
4016 2014-10-22 Tassilo Horn <tsdh@gnu.org>
4017
4018 * doc-view.el (doc-view-open-text): View the document's plain text
4019 in the current buffer instead of a new one.
4020 (doc-view-toggle-display): Handle the case where the current
4021 buffer contains the plain text contents of the document.
4022 (doc-view-initiate-display): Don't switch to fallback mode if the
4023 user wants to view the doc's plain text.
4024 (doc-view-set-doc-type): Use assoc-string instead of
4025 assoc-ignore-case.
4026
4027 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
4028
4029 * subr.el (read-key): Fix clicks on the mode-line.
4030 (set-transient-map): Return exit function.
4031
4032 * mouse.el (mouse-drag-line): Use set-transient-map (bug#18015).
4033 (mouse--down-1-maybe-follows-link): Remove unused var `this-event'.
4034 (mouse-yank-secondary): Use gui-get-selection.
4035 (mouse--down-1-maybe-follows-link): Use read-key.
4036
4037 * xt-mouse.el: Add `event-kind' property on the fly from
4038 xterm-mouse-translate-1 rather than statically at the outset.
4039
4040 2014-10-21 Daniel Colascione <dancol@dancol.org>
4041
4042 * vc/vc-dispatcher.el (vc-resynch-window): Tell view-mode not to
4043 change window configuration when we turn it off.
4044
4045 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
4046
4047 Get rid of backend-dependent selection-handling functions for kill/yank
4048 and make it generic instead by relying on the lower-level selection
4049 management functions.
4050
4051 * select.el (select-enable-clipboard): Rename from
4052 gui-select-enable-clipboard.
4053 (select-enable-primary): Move from x-win.el and rename from
4054 x-select-enable-primary.
4055 (gui-last-selected-text): Remove.
4056 (gui--last-selected-text-clipboard, gui--last-selected-text-primary):
4057 New vars.
4058 (gui-select-text): Rewrite, based on x-win.el's old x-select-text.
4059 (gui-select-text-alist, gui-selection-value-alist): Remove.
4060 (x-select-request-type): Move from x-win.el.
4061 (gui--selection-value-internal): New function, taken from x-win's
4062 x-selection-value-internal.
4063 (gui-selection-value): Rewrite, based on x-win.el's old x-selection-value.
4064 (gui-set-selection-alist): Rename from gui-own-selection-alist and
4065 extend it to handle a nil value as a "disown" request.
4066 (gui-disown-selection-alist): Remove.
4067 (xselect-convert-to-delete): Adjust accordingly.
4068 (gui-set-selection): Simplify accordingly as well. Use dotimes.
4069
4070 * term/x-win.el (x-last-selected-text-primary)
4071 (x-select-enable-primary): Remove (moved to select.el).
4072 (x-select-request-type): Move to select.el.
4073 (x-selection-value-internal, x--selection-value): Remove functions.
4074 (gui-selection-value, gui-select-text): Remove moethods.
4075 (gui-set-selection): Merge own and disown methods.
4076
4077 * term/w32-win.el (w32--select-text, w32--get-selection-value):
4078 Delete function (move functionality into w32--set-selection and
4079 w32--get-selection).
4080 (gui-select-text, gui-selection-value): Don't define methods.
4081 (w32--set-selection, w32--get-selection, w32--selection-owner-p):
4082 New functions.
4083 (gui-get-selection, gui-selection-owner-p, gui-selection-exists-p):
4084 Use them.
4085 (gui-selection-exists-p): Adjust to new name of C primitive.
4086
4087 * term/pc-win.el (w16-get-selection-value): Add dummy argument and drop
4088 test of gui-select-enable-clipboard, to make it usable as
4089 a gui-get-selection method.
4090 (gui-selection-exists-p): Adjust to new name of C primitive.
4091 (gui-set-selection): Merge own and disown methods.
4092 (gui-select-text, gui-selection-value): Delete methods.
4093 (w16--select-text): Delete function.
4094
4095 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard)
4096 (ns-selection-value): Remove functions.
4097 (gui-select-text, gui-selection-value): Don't define method any more.
4098 (gui-set-selection): Merge the old own and disown methods.
4099 (gui-selection-exists-p, gui-get-selection): Adjust to new name of
4100 underlying C primitive.
4101
4102 * startup.el (command-line): Adjust now that `gui-method' expects nil
4103 for ttys.
4104
4105 * frame.el (gui-method): Use window-system rather than framep.
4106 (gui-method-declare): The tty case is now nil rather than t.
4107 (make-frame): Adjust accordingly.
4108
4109 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
4110
4111 * net/newst-reader.el (newsticker--image-read): Simplify.
4112 (newsticker--icon-read): Use dolist and fix free var error.
4113
4114 * imenu.el (imenu--menubar-keymap): New var.
4115 (imenu-add-to-menubar): Set it to remember the keymap we used.
4116 (imenu-update-menubar): Use it instead of asking lookup-key.
4117
4118 * obsolete/cc-compat.el: Make obsolete (bug#18561).
4119
4120 * epg-config.el (epg-gpg-program): Don't use absolute names by default.
4121
4122 * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
4123 case (bug#18767).
4124
4125 2014-10-21 Glenn Morris <rgm@gnu.org>
4126
4127 * Merge in all changes up to version 24.4 release.
4128
4129 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4130
4131 * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
4132 case (bug#18767).
4133
4134 2014-10-20 Glenn Morris <rgm@gnu.org>
4135
4136 * Merge in all changes up to 24.4 release.
4137
4138 2014-10-20 Ulf Jasper <ulf.jasper@web.de>
4139
4140 * net/newst-backend.el
4141 (newsticker--image-download-by-url-callback): Make this function
4142 actually work: Check status properly, then save image.
4143
4144 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4145
4146 * mouse.el (mouse--down-1-maybe-follows-link): Remove unused var
4147 `this-event'.
4148 (mouse-drag-line): Unless there's no actual mouse, use the event's
4149 position info.
4150
4151 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4152
4153 * textmodes/css-mode.el (scss-mode): New major-mode.
4154 (css-mode-syntax-table): Use d style comment, to ease the scss case.
4155 (css-ident-re): Allow things like @-moz-keyframes.
4156 (scss--hash-re): New const.
4157 (css--font-lock-keywords): New function, extracted from
4158 css-font-lock-keywords.
4159
4160 2014-10-19 Ulf Jasper <ulf.jasper@web.de>
4161
4162 * net/newst-backend.el: Require url-parse.
4163 (newsticker--get-news-by-wget): Store feed name as process property.
4164 (newsticker--sentinel): Read feed name from process property.
4165 (newsticker--sentinel-work): Rename argument name to feed-name.
4166 Rename variable imageurl to image-url. Pick icon url from Atom
4167 1.0 data. Launch download of feed icon.
4168 (newsticker--get-icon-url-atom-1.0): New.
4169 (newsticker--unxml)
4170 (newsticker--unxml-node)
4171 (newsticker--unxml-attribute): Documentation.
4172 (newsticker--icons-dir): New.
4173 (newsticker--image-get): New arguments FILENAME and DIRECTORY.
4174 Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
4175 (newsticker--image-download-by-wget): New. Use process properties
4176 for storing informations.
4177 (newsticker--image-sentinel): Read informations from process properties.
4178 (newsticker--image-save)
4179 (newsticker--image-remove)
4180 (newsticker--image-download-by-url)
4181 (newsticker--image-download-by-url-callback): New.
4182 (newsticker-opml-export): Handle url list entries containing a
4183 function instead of an url string.
4184
4185 * net/newst-reader.el (newsticker-html-renderer): Whitespace.
4186 (newsticker--print-extra-elements)
4187 (newsticker--do-print-extra-element):
4188 Documentation (newsticker--image-read): Optionally limit image height.
4189 Use imagemagick if possible.
4190 (newsticker--icon-read): New.
4191
4192 * net/newst-treeview.el (newsticker--treeview-item-show): Limit height of feed logo.
4193 (newsticker--treeview-tree-expand): Use feed icons in treeview.
4194 (newsticker--tree-widget-icon-create): New. Set the tree widget icon.
4195 (newsticker--tree-widget-leaf-icon): Use feed icon.
4196
4197 2014-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4198
4199 * emacs-lisp/eieio-opt.el (eieio-lambda-arglist): Remove.
4200 Use help-function-arglist instead.
4201
4202 * emacs-lisp/eieio-core.el (eieio-compiled-function-arglist): Remove.
4203 (eieio--with-scoped-class): Use `declare'.
4204 (eieio-defclass): Remove compatibility code.
4205 (no-method-definition, no-next-method, inconsistent-class-hierarchy)
4206 (invalid-slot-type, unbound-slot, invalid-slot-name): Use define-error.
4207
4208 2014-10-18 Jan Djärv <jan.h.d@swipnet.se>
4209
4210 * cus-start.el (x-gtk-whole-detached-tool-bar): Remove.
4211
4212 * term/x-win.el (x-gtk-stock-map): Add icon names suggested as
4213 replacements to stock names before stock names in a list.
4214 Cdr may be a list, each name is tried in turn until one is found.
4215
4216 2014-10-18 Alan Mackenzie <acm@muc.de>
4217
4218 Check that a "macro" found near point-min isn't a ## operator.
4219 Fixes bug #18749.
4220 * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
4221 (c-beginning-of-macro): Use the above new function.
4222
4223 2014-10-18 Teodor Zlatanov <tzz@lifelogs.com>
4224
4225 * net/gnutls.el (gnutls-negotiate): Don't use cl-mapcan; pass
4226 correct data to `gnutls-boot' (Bug#18664).
4227 Reported by Toke Høiland-Jørgensen <toke@toke.dk>.
4228
4229 2014-10-18 Michal Nazarewicz <mina86@mina86.com>
4230
4231 * whitespace.el (whitespace-style, whitespace-big-indent)
4232 (whitespace-big-indent-regexp, whitespace-style-value-list)
4233 (whitespace-toggle-option-alist, whitespace-interactive-char)
4234 (whitespace-toggle-options)
4235 (global-whitespace-toggle-options, whitespace-help-text)
4236 (whitespace-style-face-p, whitespace-color-on): Add a 'big-indent
4237 style to `whitespace-mode' to indicate that the line indentation
4238 is too deep. By default, 32 SPACEs or four TABs are considered
4239 too many but `whitespace-big-indent-regexp' can be configured.
4240
4241 2014-10-17 Michal Nazarewicz <mina86@mina86.com>
4242
4243 * textmodes/tildify.el (tildify--pick-alist-entry): Rename from
4244 tildify-mode-alist.
4245
4246 2014-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
4247
4248 * emacs-lisp/eieio.el: Use lexical-binding drop non-GV fallback.
4249 (defclass, defgeneric, defmethod): Add doc-string position.
4250 (with-slots): Require cl-lib.
4251
4252 * emacs-lisp/eieio-core.el: Use lexical-binding and cl-lib.
4253 (list-of): New type.
4254 (eieio--typep): Remove.
4255 (eieio-perform-slot-validation): Use cl-typep instead.
4256
4257 * emacs-lisp/eieio-base.el: Use lexical-binding and cl-lib.
4258
4259 * emacs-lisp/cl-macs.el (cl--make-type-test): Avoid ((lambda ..) ..).
4260
4261 2014-10-16 Alan Mackenzie <acm@muc.de>
4262
4263 Trigger showing when point is in the "periphery" of a line or just
4264 inside a paren.
4265 * paren.el (show-paren-style, show-paren-delay)
4266 (show-paren-priority, show-paren-ring-bell-on-mismatch):
4267 Remove superfluous :group specifications.
4268 (show-paren-when-point-inside-paren)
4269 (show-paren-when-point-in-periphery): New customizable variables.
4270 (show-paren-highlight-openparen): Make into a defcustom.
4271 (show-paren--unescaped-p, show-paren--categorize-paren)
4272 (show-paren--locate-near-paren): New defuns.
4273 (show-paren--default): Refaactor and trigger on more paren
4274 positions.
4275 (show-paren-function): Small consequential changes.
4276
4277 2014-10-16 Tom Tromey <tom@tromey.com>
4278
4279 * files.el (auto-mode-alist): Use javascript-mode for .jsm
4280 (bug #18719).
4281
4282 2014-10-16 Eli Zaretskii <eliz@gnu.org>
4283
4284 * international/characters.el (bracket-type): Force pre-loading of
4285 uni-brackets.el.
4286
4287 2014-10-16 Alan Mackenzie <acm@muc.de>
4288
4289 * cus-edit.el (custom-command-apply): Specify the return value in
4290 the doc string.
4291 (Custom-reset-standard): Save custom-file (e.g. .emacs) only when
4292 custom-command-apply has returned non-nil.
4293
4294 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
4295
4296 * emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
4297 Remove incorrect handling of eldoc-print-after-edit.
4298 (eldoc-message-commands, eldoc-last-data): Use defvar.
4299 * loadup.el (emacs-lisp/eldoc): Load it.
4300
4301 * progmodes/m4-mode.el (m4-syntax-propertize): New var.
4302 (m4-mode): Use it.
4303 (m4--quoted-p): New function.
4304 (m4-font-lock-keywords): Don't handle #..\n comments any more.
4305 (m4-mode-syntax-table): Use punctuation syntax (according to m4 manual)
4306 for most special characters.
4307
4308 * progmodes/compile.el (compilation--previous-directory): Simplify.
4309 (compilation-next-error): Ensure the parse before we look at
4310 compilation-message property.
4311
4312 2014-10-15 Eli Zaretskii <eliz@gnu.org>
4313
4314 * simple.el (what-cursor-position):
4315 * descr-text.el (describe-char): Update to support the new bidi
4316 characters.
4317
4318 * emacs-lisp/tabulated-list.el (tabulated-list-mode):
4319 Force bidi-paragraph-direction to 'left-to-right'. This fixes
4320 buffer-menu display when the first buffer happens to start with
4321 R2L letter.
4322
4323 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
4324
4325 * progmodes/elisp-mode.el (elisp--local-variables-1):
4326 Handle quoted expressions (bug#18688).
4327
4328 2014-10-14 Jérémy Compostella <jeremy.compostella@intel.com>
4329 Michael Albinus <michael.albinus@gmx.de>
4330
4331 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4332 Reduce the amount of set environment variable commands.
4333
4334 2014-10-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
4335
4336 Fix import completion. (Bug#18582)
4337 * progmodes/python.el (python-shell-completion-get-completions):
4338 Fix import case regexp.
4339
4340 2014-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4341
4342 * progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
4343 (bug#18622). Reported by Arni Magnusson <arnima@hafro.is>.
4344 * progmodes/prolog.el (prolog-electric--underscore): Same.
4345
4346 2014-10-12 Michael Albinus <michael.albinus@gmx.de>
4347
4348 * net/tramp-sh.el (tramp-get-remote-id): Check also for "gid".
4349
4350 2014-10-11 Jan Djärv <jan.h.d@swipnet.se>
4351
4352 * cus-start.el (all): Add missing ns and boolean to
4353 ns-use-fullscreen-animation.
4354
4355 2014-10-11 Leo Liu <sdl.web@gmail.com>
4356
4357 * progmodes/cfengine.el (cfengine3-defuns, cfengine3-vartypes):
4358 Use strings.
4359 (cfengine3-create-imenu-index): New function.
4360 (cfengine3-mode): Use it for `imenu-create-index-function'.
4361 (cfengine-auto-mode): Improve and prefer cfengine3-mode when
4362 buffer is empty.
4363
4364 2014-10-11 Jan Djärv <jan.h.d@swipnet.se>
4365
4366 * cus-start.el (all): Add ns-use-fullscreen-animation.
4367
4368 2014-10-11 Glenn Morris <rgm@gnu.org>
4369
4370 * calendar/diary-lib.el (diary-display-function):
4371 Drop support for deprecated nil and list forms.
4372 (diary-list-entries): Update for the above.
4373 * calendar/cal-x.el (calendar-dedicate-diary): Simplify accordingly.
4374
4375 2014-10-10 Leo Liu <sdl.web@gmail.com>
4376
4377 * window.el (temp-buffer-window-show): Make BUFFER a required arg.
4378 (Bug#18656)
4379
4380 2014-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
4381
4382 * select.el (gui-selection-exists-p-alist): New method.
4383 * menu-bar.el (menu-bar-edit-menu, clipboard-yank):
4384 * simple.el (deactivate-mark): Use it.
4385 * term/x-win.el (gui-selection-exists-p):
4386 * term/w32-win.el (gui-selection-exists-p):
4387 * term/pc-win.el (gui-selection-exists-p):
4388 * term/ns-win.el (gui-selection-exists-p): Provide a backend instance.
4389
4390 2014-10-10 Glenn Morris <rgm@gnu.org>
4391
4392 * info.el (Info-fontify-maximum-menu-size): Bump to 400k. (Bug#16227)
4393 Fix :type. Allow t to mean no limit.
4394 (Info-fontify-node): Handle Info-fontify-maximum-menu-size = t.
4395
4396 2014-10-09 Glenn Morris <rgm@gnu.org>
4397
4398 * frame.el (display-monitor-attributes-list): Doc tweaks.
4399
4400 2014-10-09 Eli Zaretskii <eliz@gnu.org>
4401
4402 * faces.el (display-grayscale-p): Mention in the doc string that
4403 the argument can be either a display name or a frame.
4404
4405 * frame.el (display-pixel-height, display-pixel-width)
4406 (display-mm-height, display-mm-width, display-backing-store)
4407 (display-save-under, display-planes, display-color-cells)
4408 (display-visual-class, display-monitor-attributes-list)
4409 (display-screens): Mention in the doc string that the argument can
4410 be either a display name or a frame. Improve the docs of the
4411 monitor attributes. (Bug#18636)
4412
4413 2014-10-09 Martin Rudalics <rudalics@gmx.at>
4414
4415 * term.el (term-window-width): Subtract 1 from the width when
4416 any fringe has zero width, not just the right fringe. (Bug#18601)
4417
4418 2014-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4419
4420 * frame.el (make-frame): Use t rather than nil for `w' (bug#18653).
4421
4422 2014-10-08 Leo Liu <sdl.web@gmail.com>
4423
4424 * emacs-lisp/cl-extra.el (cl-fresh-line): New function.
4425
4426 2014-10-08 Glenn Morris <rgm@gnu.org>
4427
4428 * calendar/cal-x.el (calendar-dedicate-diary):
4429 Drop support for recently deleted aliases.
4430
4431 2014-10-08 Leo Liu <sdl.web@gmail.com>
4432
4433 * progmodes/cfengine.el (cfengine3-make-syntax-cache):
4434 Always return a syntax. Replace call-process-shell-command with
4435 process-file. Ensure cfengine-mode-syntax-functions-regex is
4436 always set. Ensure cache when cfengine-cf-promises fails.
4437 (Bug#18620)
4438
4439 2014-10-07 Glenn Morris <rgm@gnu.org>
4440
4441 * font-lock.el (font-lock-fontify-buffer): Fix interactive-only markup.
4442
4443 2014-10-07 Wilson Snyder <wsnyder@wsnyder.org>
4444
4445 Sync with upstream verilog-mode revision c075a492.
4446 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
4447 (verilog-menu): Add AUTOINSERTLAST.
4448 (verilog-no-indent-begin-re): When `verilog-indent-begin-after-if'
4449 is nil, fix indenting initial/final to match always statements, bug825.
4450 Reported by Tim Clapp.
4451 (verilog-extended-complete-re): Fix indentation of DPI-C imports,
4452 bug557. Reported by ZeDong Mao and Jason Forkey.
4453 (verilog-read-decls): Fix parsing typed interfaces.
4454 Fix AUTOINOUTMODPORT missing types. Reported by Stephan Bourduas.
4455 (verilog-auto-arg-ports): Fix verilog-auto-arg-format single.
4456 (verilog-auto-output-every): Add regexp to AUTOOUTPUTEVERY, bug793.
4457 Reported by Pierre-David Pfister.
4458 (verilog-auto-insert-lisp): Doc fix.
4459 (verilog-auto-insert-last, verilog-auto): Add AUTOINSERTLAST to
4460 allow post-AUTO user fixups, bug826. Reported by Dennis Muhlestein.
4461 (verilog-sk-ovm-class, verilog-sk-uvm-object)
4462 (verilog-sk-uvm-component): Fix missing string keyword in class
4463 skeletons, bug824. Reported by eldad faruhi.
4464
4465 2014-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4466
4467 * term/w32-win.el: Move all code from 32-common-fns.el here.
4468 (gui-select-text, gui-selection-value): Use w32 handlers in the w32
4469 console as well (bug#18629).
4470 * w32-common-fns.el: Remove.
4471 * loadup.el: Don't load w32-common-fns.el.
4472 * w32-fns.elc: Don't require w32-common-fns.
4473
4474 * icomplete.el: Move Iswitchb autoload here. Much simpler.
4475 * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie.
4476 Remove redundant obsolescence thingy.
4477 * loadup.el: Don't load obsolete/loaddefs.el.
4478 * Makefile.in (obsolete-autoloads): Remove.
4479 (AUTOGENEL): Remove obsolete/loaddefs.el.
4480
4481 2014-10-06 Glenn Morris <rgm@gnu.org>
4482
4483 * Makefile.in (obsolete-autoloads): Write to a separate file,
4484 to workaround autoloads bug. (Bug#17407)
4485 (AUTOGENEL): Add obsolete/loaddefs.el.
4486 * loadup.el: Load obsolete/loaddefs.el if present.
4487 * subr.el (do-after-load-evaluation):
4488 Don't warn about obsolete/loaddefs.el.
4489
4490 * menu-bar.el (menu-bar-games-menu): Remove landmark.
4491 It has zero relationship to a game.
4492
4493 2014-10-06 Leo Liu <sdl.web@gmail.com>
4494
4495 * imenu.el (imenu): Re-write for clarity.
4496
4497 2014-10-06 Glenn Morris <rgm@gnu.org>
4498
4499 Remove calendar code obsolete since at least version 23.1.
4500 * calendar/cal-bahai.el (calendar-absolute-from-bahai)
4501 (calendar-print-bahai-date, calendar-bahai-prompt-for-date)
4502 (calendar-goto-bahai-date, list-bahai-diary-entries)
4503 (mark-bahai-calendar-date-pattern, mark-bahai-diary-entries)
4504 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
4505 (insert-yearly-bahai-diary-entry):
4506 * calendar/cal-china.el (chinese-calendar-time-zone)
4507 (chinese-calendar-location-name)
4508 (chinese-calendar-daylight-time-offset)
4509 (chinese-calendar-standard-time-zone-name)
4510 (chinese-calendar-daylight-time-zone-name)
4511 (chinese-calendar-daylight-savings-starts)
4512 (chinese-calendar-daylight-savings-ends)
4513 (chinese-calendar-daylight-savings-starts-time)
4514 (chinese-calendar-daylight-savings-ends-time)
4515 (chinese-calendar-celestial-stem)
4516 (chinese-calendar-terrestrial-branch)
4517 (calendar-absolute-from-chinese, calendar-print-chinese-date)
4518 (calendar-goto-chinese-date):
4519 * calendar/cal-coptic.el (calendar-absolute-from-coptic)
4520 (calendar-print-coptic-date, coptic-prompt-for-date)
4521 (calendar-goto-coptic-date, calendar-absolute-from-ethiopic)
4522 (calendar-print-ethiopic-date, calendar-goto-ethiopic-date):
4523 * calendar/cal-french.el (calendar-absolute-from-french)
4524 (calendar-print-french-date, calendar-goto-french-date):
4525 * calendar/cal-hebrew.el (diary-sabbath-candles-minutes)
4526 (calendar-absolute-from-hebrew, calendar-print-hebrew-date)
4527 (hebrew-calendar-yahrzeit, calendar-goto-hebrew-date)
4528 (holiday-rosh-hashanah-etc, holiday-hanukkah)
4529 (holiday-passover-etc, holiday-tisha-b-av-etc)
4530 (list-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
4531 (mark-hebrew-diary-entries, insert-hebrew-diary-entry)
4532 (insert-monthly-hebrew-diary-entry)
4533 (insert-yearly-hebrew-diary-entry, list-yahrzeit-dates)
4534 (diary-omer, diary-yahrzeit, diary-rosh-hodesh, diary-parasha)
4535 (diary-sabbath-candles):
4536 * calendar/cal-islam.el (calendar-absolute-from-islamic)
4537 (calendar-print-islamic-date, calendar-goto-islamic-date)
4538 (list-islamic-diary-entries, mark-islamic-calendar-date-pattern)
4539 (mark-islamic-diary-entries, insert-islamic-diary-entry)
4540 (insert-monthly-islamic-diary-entry)
4541 (insert-yearly-islamic-diary-entry):
4542 * calendar/cal-iso.el (calendar-absolute-from-iso)
4543 (calendar-print-iso-date, calendar-iso-read-args)
4544 (calendar-goto-iso-date, calendar-goto-iso-week):
4545 * calendar/cal-julian.el (calendar-absolute-from-julian)
4546 (calendar-print-julian-date, calendar-goto-julian-date)
4547 (calendar-absolute-from-astro, calendar-print-astro-day-number)
4548 (calendar-goto-astro-day-number):
4549 * calendar/cal-mayan.el (calendar-print-mayan-date)
4550 (calendar-next-haab-date, calendar-previous-haab-date)
4551 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
4552 (calendar-next-calendar-round-date)
4553 (calendar-previous-calendar-round-date)
4554 (calendar-absolute-from-mayan-long-count)
4555 (calendar-goto-mayan-long-count-date):
4556 * calendar/cal-move.el (scroll-calendar-left)
4557 (scroll-calendar-right, scroll-calendar-left-three-months)
4558 (scroll-calendar-right-three-months):
4559 * calendar/cal-persia.el (calendar-absolute-from-persian)
4560 (calendar-print-persian-date, persian-prompt-for-date)
4561 (calendar-goto-persian-date):
4562 * calendar/cal-x.el (calendar-after-frame-setup-hooks):
4563 * calendar/calendar.el (view-diary-entries-initially)
4564 (mark-diary-entries-in-calendar, calendar-today-face)
4565 (diary-face, holiday-face, view-calendar-holidays-initially)
4566 (mark-holidays-in-calendar, initial-calendar-window-hook)
4567 (today-visible-calendar-hook, today-invisible-calendar-hook)
4568 (hebrew-diary-entry-symbol, islamic-diary-entry-symbol)
4569 (bahai-diary-entry-symbol, american-date-diary-pattern)
4570 (european-date-diary-pattern, european-calendar-display-form)
4571 (american-calendar-display-form, holidays-in-diary-buffer)
4572 (all-hebrew-calendar-holidays, all-christian-calendar-holidays)
4573 (all-islamic-calendar-holidays, all-bahai-calendar-holidays)
4574 (fancy-diary-buffer, increment-calendar-month)
4575 (extract-calendar-month, extract-calendar-day)
4576 (extract-calendar-year, exit-calendar, calendar-date-is-legal-p)
4577 (mark-visible-calendar-date, calendar-version):
4578 * calendar/diary-lib.el (diary-button-face, sexp-diary-entry-symbol)
4579 (diary-display-hook, list-diary-entries-hook)
4580 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
4581 (nongregorian-diary-marking-hook, print-diary-entries-hook)
4582 (abbreviated-calendar-year, number-of-diary-entries)
4583 (view-other-diary-entries, add-to-diary-list)
4584 (include-other-diary-files, simple-diary-display)
4585 (fancy-diary-display, print-diary-entries, mark-diary-entries)
4586 (mark-sexp-diary-entries, mark-included-diary-files)
4587 (mark-calendar-days-named, mark-calendar-month)
4588 (mark-calendar-date-pattern, sort-diary-entries)
4589 (list-sexp-diary-entries, make-diary-entry, insert-diary-entry)
4590 (insert-weekly-diary-entry, insert-monthly-diary-entry)
4591 (insert-yearly-diary-entry, insert-anniversary-diary-entry)
4592 (insert-block-diary-entry, insert-cyclic-diary-entry)
4593 (fancy-diary-font-lock-keywords, fancy-diary-display-mode):
4594 * calendar/holidays.el (general-holidays, oriental-holidays)
4595 (local-holidays, other-holidays, hebrew-holidays)
4596 (christian-holidays, islamic-holidays, bahai-holidays)
4597 (solar-holidays, list-calendar-holidays)
4598 (check-calendar-holidays, mark-calendar-holidays)
4599 (filter-visible-calendar-holidays):
4600 * calendar/lunar.el (calendar-phases-of-moon, phases-of-moon)
4601 (diary-phases-of-moon): Remove obsolete aliases.
4602 * calendar/cal-menu.el (cal-menu-load-hook): Remove obsolete hook.
4603 * calendar/cal-x.el (calendar-one-frame-setup)
4604 (calendar-only-one-frame-setup, calendar-two-frame-setup):
4605 Remove obsolete functions.
4606 (cal-x-load-hook): Remove obsolete hook.
4607 * calendar/calendar.el (european-calendar-style):
4608 Remove obsolete variable.
4609 (calendar-date-style): No longer consult european-calendar-style.
4610 * calendar/calendar.el (european-calendar, american-calendar):
4611 Remove obsolete commands.
4612 * calendar/calendar.el (calendar-for-loop): Remove obsolete macro.
4613 * calendar/diary-lib.el (diary-face): Remove obsolete variable.
4614 (diary-font-lock-date-forms, diary-fancy-font-lock-keywords):
4615 Use the face `diary' instead of the variable `diary-face'.
4616 * calendar/holidays.el (hebrew-holidays-1, hebrew-holidays-2)
4617 (hebrew-holidays-3, hebrew-holidays-4): Remove obsolete variables.
4618 * calendar/icalendar.el (icalendar--date-style): Remove function.
4619 Replace all uses with calendar-date-style.
4620 * textmodes/remember.el (calendar-date-style): Declare.
4621 (remember-diary-convert-entry):
4622 No longer consult european-calendar-style.
4623
4624 2014-10-05 Leo Liu <sdl.web@gmail.com>
4625
4626 * imenu.el (imenu-default-goto-function): Fix typo.
4627
4628 2014-10-04 Thomas Fitzsimmons <fitzsim@fitzsim.org>
4629
4630 * net/ntlm.el (ntlm-build-auth-request):
4631 Add NTLM2 Session support. (Bug#15603)
4632
4633 2014-10-04 Glenn Morris <rgm@gnu.org>
4634
4635 * apropos.el (apropos-symbols-internal):
4636 Avoid error with non-symbol properties. (Bug#18337#16)
4637
4638 * startup.el (command-line):
4639 Handle altered user-emacs-directory in load-path warning. (Bug#18512)
4640
4641 2014-10-04 Martin Rudalics <rudalics@gmx.at>
4642
4643 * window.el (window-full-height-p): Make it behave correctly for
4644 minibuffer window.
4645 (window-current-scroll-bars): Fix code.
4646 (fit-frame-to-buffer): Use window-scroll-bar-height instead of
4647 window-scroll-bars.
4648 * frame.el (frame-current-scroll-bars): Fix doc-string.
4649 * scroll-bar.el (toggle-horizontal-scroll-bar): New command.
4650
4651 2014-10-04 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
4652
4653 * files.el (auto-mode-alist): Use sh-mode for .zsh files. (Bug#18488)
4654
4655 2014-10-04 Glenn Morris <rgm@gnu.org>
4656
4657 * frame.el (frame-monitor-attributes)
4658 (display-monitor-attributes-list): Doc fixes.
4659
4660 2014-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
4661
4662 Merge trivially safe differences from standalone CC-mode.
4663 * progmodes/cc-mode.el (c-initialize-cc-mode): Don't quote a symbol
4664 just to then pass it to `symbol-value'.
4665 (prog-mode): Provide fallback definition, if needed.
4666 * progmodes/cc-langs.el: Always load `cl'. Don't load `cl-lib'.
4667 Remove "cl-" prefix accordingly.
4668 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Use integerp or
4669 characterp depending on the type of characters.
4670 (c-font-lock-enum-tail): Remove unused var `start'.
4671 * progmodes/cc-engine.el: Load CL at compile-time.
4672 (c-declare-lang-variables): Use mapcan.
4673 (c-append-to-state-cache): Remove unused var `ce+1'.
4674 (c-parse-state-state): Make buffer-local.
4675 (c-ssb-lit-begin): Remove unused var `pps-end-pos'.
4676 (c-just-after-func-arglist-p): Remove unused var `end'.
4677 * progmodes/cc-defs.el: Load cc-fix if delete-dups is undefined.
4678 (c-<-as-paren-syntax, c->-as-paren-syntax): Move definition earlier.
4679 (c-make-keywords-re): Use delete-dups.
4680 (c-get-current-file): Avoid file-name-base.
4681 * progmodes/cc-cmds.el (c-electric-lt-gt): Remove unused var
4682 `close-paren-inserted'.
4683 * progmodes/cc-awk.el (c-forward-sws): Remove unused declaration.
4684
4685 * progmodes/python.el: Avoid building unneeded markers.
4686 (python-font-lock-keywords, python-indent-dedent-line)
4687 (python-fill-paren, python-shell-completion-complete-or-indent):
4688 Prefer point over point-marker.
4689 (inferior-python-mode): Remove redundant completion settings.
4690
4691 2014-10-03 Dmitry Gutov <dgutov@yandex.ru>
4692
4693 * vc/vc-svn.el (vc-svn-ignore-completion-table): Implement.
4694 (vc-svn-ignore): Use it. (Bug#18619)
4695
4696 2014-10-03 Martin Rudalics <rudalics@gmx.at>
4697
4698 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
4699 In doc-string mention need to set `frame-resize-pixelwise'.
4700
4701 2014-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
4702
4703 * vc/vc-svn.el (vc-svn-after-dir-status): Fix the non-remote regexp,
4704 similarly to Rogers's 2010-06-16 change for the remote case
4705 (bug#18605).
4706
4707 2014-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
4708
4709 New gui-selection-value consolidating x-selection-value.
4710 * select.el (gui-selection-value-alist): New method.
4711 (gui-selection-value): New function.
4712 (x-selection-value): Make it an obsolete alias.
4713 * simple.el (interprogram-paste-function): Default to
4714 gui-selection-value.
4715 * w32-common-fns.el (w32-get-selection-value): Simplify.
4716 (x-selection-value): Remove alias.
4717 (interprogram-paste-function): Don't set.
4718 (gui-selection-value): Define for w32.
4719 * term/x-win.el (gui-selection-value): Define for x.
4720 (x--selection-value): Rename from x--selection-value.
4721 (interprogram-paste-function): Don't set.
4722 * term/pc-win.el (w16-get-selection-value): Simplify.
4723 (msdos-initialize-window-system): Don't set
4724 interprogram-paste-function.
4725 (gui-selection-value): Define for pc.
4726 * term/ns-win.el (x-selection-value): Remove.
4727 (gui-selection-value): Define for ns, instead.
4728 * term/common-win.el (x-setup-function-keys): Don't set
4729 interprogram-paste-function.
4730 * obsolete/mouse-sel.el (mouse-sel-get-selection-function):
4731 Use gui-selection-value.
4732
4733 2014-10-02 David Raynes <rayners@gmail.com> (tiny change)
4734
4735 * term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
4736
4737 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4738
4739 * obsolete/lucid.el (read-number): Remove, redundant.
4740 * obsolete/cl-compat.el (cl-floor, cl-ceiling, cl-round, cl-truncate):
4741 Remove, broken.
4742
4743 2014-10-02 Glenn Morris <rgm@gnu.org>
4744
4745 * emacs-lisp/package.el (package-import-keyring):
4746 Create gnupg directory private. (Bug#17625#155)
4747
4748 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4749
4750 * progmodes/python.el (python-shell-completion-get-completions):
4751 Use python-shell--prompt-calculated-input-regexp from the
4752 process buffer (bug#18582).
4753 Don't assume that `line' comes from the process buffer.
4754
4755 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4756
4757 * frame.el: Use lexical-binding (bug#18598).
4758 (make-frame): Use t rather than nil for tty's window-system.
4759 * startup.el (command-line): Use gui-method.
4760
4761 Consolidate management/ownership of selections.
4762 * select.el (gui-get-selection-alist): New method.
4763 (gui-get-selection): Use it. Rename from x-get-selection.
4764 (x-get-selection): Define as obsolete alias.
4765 (x-get-clipboard): Mark obsolete.
4766 (gui-get-primary-selection): New function.
4767 (x-get-selection-value): Mark obsolete.
4768 (gui-own-selection-alist, gui-disown-selection-alist)
4769 (gui-selection-owner-p-alist): New methods.
4770 (gui-set-selection): Use them. Rename from x-set-selection.
4771 (x-set-selection): Define as obsolete alias.
4772 (gui--valid-simple-selection-p): Rename from
4773 x-valid-simple-selection-p.
4774 * w32-common-fns.el (gui-own-selection, gui-disown-selection)
4775 (gui-selection-owner-p, gui-get-selection): Define for w32.
4776 (w32-get-selection-value): Rename from x-get-selection-value.
4777 Use the new gui-last-selected-text.
4778 * term/x-win.el (x-get-selection-value): Remove.
4779 (x-clipboard-yank): Declare obsolete.
4780 (gui-own-selection, gui-disown-selection, gui-get-selection)
4781 (gui-selection-owner-p): Define for x.
4782 * term/w32-win.el (w32-win-suspend-error): Rename from
4783 x-win-suspend-error.
4784 * term/pc-win.el (w16-get-selection-value): Rename from
4785 x-get-selection-value.
4786 (w16-selection-owner-p): Rename from x-selection-owner-p.
4787 (gui-own-selection, gui-disown-selection, gui-get-selection)
4788 (gui-selection-owner-p): Define for pc.
4789 (w16--select-text): New function.
4790 * term/ns-win.el (gui-own-selection, gui-disown-selection)
4791 (gui-get-selection, gui-selection-owner-p): Define for ns.
4792 * term.el (term-mouse-paste):
4793 * mouse.el (mouse-yank-primary): Use gui-get-primary-selection.
4794
4795 2014-10-02 H. Dieter Wilhelm <dieter@duenenhof-wilhelm.de>
4796
4797 * calc/calc-help.el (calc-describe-thing): Quote strings
4798 which could look like regexps.
4799
4800 2014-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4801
4802 Consolidate x-select-text.
4803 * frame.el (gui-method, gui-method-define, gui-method-declare)
4804 (gui-call): New macros.
4805 (gui-method--name): New function.
4806 (frame-creation-function-alist): Use gui-method-declare.
4807 (make-frame): Use gui-method.
4808 * select.el (gui-select-enable-clipboard): Rename from
4809 x-select-enable-clipboard and move here.
4810 (x-select-enable-clipboard): Define as obsolete alias.
4811 (gui-last-selected-text): New var, to replace x-last-selected-text.
4812 (gui-select-text): New GUI method.
4813 (gui-select-text): New function.
4814 (x-select-text): Define as obsolete alias.
4815 * term/common-win.el (x-select-enable-clipboard, x-select-text):
4816 Move to select.el.
4817 * simple.el (interprogram-cut-function): Change default to
4818 x-select-text.
4819 (interprogram-paste-function): Change default to `ignore'.
4820 * w32-common-fns.el (interprogram-cut-function): Don't modify.
4821 * term/x-win.el (interprogram-cut-function): Don't modify.
4822 (gui-select-text): Add method for x.
4823 * term/w32-win.el (gui-select-text): Add method for w32.
4824 * term/pc-win.el (x-last-selected-text): Remove, use
4825 gui-last-selected-text instead.
4826 (msdos-initialize-window-system): Don't set interprogram-cut-function.
4827 (gui-select-text): Add method for pc.
4828 * term/ns-win.el (ns-last-selected-text): Remove, use
4829 gui-last-selected-text instead.
4830 (gui-select-text): Add method for ns.
4831 (x-setup-function-keys): Don't change interprogram-cut-function.
4832 * loadup.el ("startup"): Load after "frame".
4833 * subr.el (package--builtin-versions, package--description-file):
4834 Move from startup.el.
4835 * startup.el (package--builtin-versions, package--description-file):
4836 Move to subr.el.
4837 (handle-args-function-alist, window-system-initialization-alist):
4838 Use gui-method-declare.
4839 (command-line): Use gui-method.
4840
4841 2014-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4842
4843 * subr.el (alist-get): New accessor.
4844 * emacs-lisp/gv.el (alist-get): Provide expander.
4845 * winner.el (winner-remember):
4846 * tempo.el (tempo-use-tag-list):
4847 * progmodes/gud.el (minor-mode-map-alist):
4848 * international/mule-cmds.el (define-char-code-property):
4849 * frameset.el (frameset-filter-params):
4850 * files.el (dir-locals-set-class-variables):
4851 * register.el (get-register, set-register):
4852 * calc/calc-yank.el (calc-set-register): Use it.
4853 * ps-print.el (ps-get, ps-put, ps-del): Mark as obsolete.
4854 * tooltip.el (tooltip-set-param): Mark as obsolete.
4855 (tooltip-show): Use alist-get instead.
4856 * ses.el (ses--alist-get): Remove. Use alist-get instead.
4857
4858 2014-10-01 Ulf Jasper <ulf.jasper@web.de>
4859
4860 * net/newst-backend.el: Remove Time-stamp. Rename variable
4861 `newsticker--download-logos' to `newsticker-download-logos' and
4862 make it customizable.
4863 (newsticker--sentinel-work): Move xml-workarounds to function
4864 `newsticker--do-xml-workarounds', call unless libxml-parser is
4865 used. Allow single quote in regexp for encoding.
4866 Use libxml-parser if available, else fall back to `xml-parse-region'.
4867 Take care of possibly missing namespace prefixes (like "RDF"
4868 instead of "rdf:RDF") when checking xml nodes and attributes (as
4869 libxml correctly removes the prefixes). Always use Atom 1.0 as
4870 fallback feed type. Rename `newsticker--download-logos' to
4871 `newsticker-download-logos'
4872 (newsticker--unxml, newsticker--unxml-node)
4873 (newsticker--unxml-attribute): New.
4874 (newsticker--parse-atom-1.0): Call `unxml' in case that embedded
4875 HTML code has become part of the xml parse tree.
4876 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care
4877 of possibly missing namespace prefixes.
4878 (newsticker--parse-generic-items): Code formatting. Typo.
4879 (newsticker--images-dir): Add trailing slash.
4880 (newsticker--image-get): Fix error message.
4881
4882 * net/newst-plainview.el: Remove Time-stamp.
4883
4884 * net/newst-reader.el: Remove Time-stamp.
4885 (newsticker-download-logos): Rename variable
4886 `newsticker--download-logos' to `newsticker-download-logos' and
4887 make it customizable.
4888 (newsticker--print-extra-elements): Add optional parameter
4889 'htmlish for using html markup. Amend list of ignored elements.
4890 (newsticker--do-print-extra-element): Add parameter 'htmlish for
4891 using html markup.
4892
4893 * net/newst-ticker.el: Remove Time-stamp.
4894
4895 * net/newst-treeview.el (newsticker--treeview-item-show): Use html
4896 for formatting extra elements.
4897
4898 * net/newsticker.el: Remove Time-stamp, Version.
4899 (newsticker-version): Make obsolete.
4900
4901 2014-09-30 Leonardo Nobrega <leonobr@gmail.com> (tiny change)
4902
4903 * progmodes/python.el (python-fill-paren): Don't inf-loop at EOB
4904 (bug#18462).
4905
4906 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4907
4908 * emacs-lisp/package.el (package-check-signature): Default to nil if
4909 GPG is not available.
4910 (package-refresh-contents): Don't mess with the keyring if we won't
4911 check the signatures anyway.
4912
4913 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4914
4915 * ses.el (ses--row, ses--col): New dyn-scoped vars, to replace row&col.
4916 (ses-center, ses-center-span): Use them.
4917 (ses-print-cell): Bind them while calling the printer.
4918 (row, col, maxrow, maxcol): Don't declare as dynamically scoped.
4919 (ses-dorange): Revert last change.
4920 (ses-calculate-cell): Don't bind row&col dynamically while evaluating
4921 the formula.
4922 (ses-set-cell): Avoid `eval'.
4923 (ses--time-check): Rename it from ses-time-check and turn it into
4924 a macro.
4925
4926 * ses.el (ses-setup): Don't assume modifying the iteration var of
4927 dotimes affects the iteration (bug#18191).
4928
4929 2014-09-30 Vincent Belaïche <vincentb1@users.sourceforge.net>
4930
4931 * ses.el (ses-calculate-cell): Bind row and col dynamically to
4932 their values with 'cl-progv'.
4933 (ses-dorange): Bind row, col, maxrow and maxcol dynamically to
4934 their values with 'cl-progv', also use non-interned symbols for
4935 row, minrow, maxrow, mincol and maxcol.
4936 (maxrow maxcol): New defvar, to make the compiler happy.
4937
4938 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4939
4940 * minibuffer.el (completion-at-point): Emit warning for ill-behaved
4941 completion functions.
4942
4943 2014-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4944
4945 * ses.el (ses--letref): Quote value before it gets re-evaluated.
4946
4947 2014-09-28 Thien-Thi Nguyen <ttn@gnu.org>
4948
4949 Font-lock `cl-flet*', too.
4950 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
4951 Add "flet*" to intermediate var `cl-lib-kw'.
4952
4953 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4954
4955 * epg-config.el (epg-gpg-program): Use the plain program names rather
4956 than their absolute file name.
4957
4958 * subr.el (track-mouse): New macro.
4959 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
4960 Remove track-mouse case.
4961 * emacs-lisp/bytecomp.el (byte-compile-track-mouse): Remove.
4962
4963 2014-09-27 Leo Liu <sdl.web@gmail.com>
4964
4965 * progmodes/elisp-mode.el (elisp--eldoc-last-data): Use defvar.
4966
4967 * emacs-lisp/eldoc.el (eldoc-mode): Fix thinko.
4968
4969 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * emacs-lisp/pcase.el (pcase--split-match, pcase--app-subst-match):
4972 Handle the case where `match' is :pcase--succeed or :pcase--fail
4973 (bug#18554).
4974
4975 Introduce global-eldoc-mode. Move Elisp-specific code to elisp-mode.el.
4976 * emacs-lisp/eldoc.el (global-eldoc-mode): New minor mode.
4977 (eldoc-schedule-timer): Obey it.
4978 (eldoc-documentation-function): Default to nil.
4979 (eldoc-mode): Don't enable if eldoc-documentation-function is not set.
4980 (eldoc-documentation-function-default, eldoc-get-fnsym-args-string)
4981 (eldoc-highlight-function-argument, eldoc-get-var-docstring)
4982 (eldoc-last-data-store, eldoc-docstring-first-line)
4983 (eldoc-docstring-format-sym-doc, eldoc-fnsym-in-current-sexp)
4984 (eldoc-beginning-of-sexp, eldoc-current-symbol)
4985 (eldoc-function-argstring): Move to elisp-mode.el.
4986 (eldoc-symbol-function): Remove, unused.
4987 * progmodes/elisp-mode.el: New file. Rename all "eldoc-*" to "elisp--*".
4988 (elisp-completion-at-point): Rename from lisp-completion-at-point.
4989 (elisp--preceding-sexp): Rename from preceding-sexp.
4990 * loadup.el: Load new file progmodes/elisp-mode.
4991 * ielm.el (inferior-emacs-lisp-mode): Set eldoc-documentation-function.
4992 * emacs-lisp/lisp.el (lisp--local-variables-1, lisp--local-variables)
4993 (lisp--local-variables-completion-table, lisp--expect-function-p)
4994 (lisp--form-quoted-p, lisp--company-doc-buffer)
4995 (lisp--company-doc-string, lisp--company-location)
4996 (lisp-completion-at-point): Move to elisp-mode.el.
4997 * emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): New syntax-table,
4998 extracted from emacs-lisp-mode-syntax-table.
4999 (emacs-lisp-mode-abbrev-table, emacs-lisp-mode-syntax-table): Move to
5000 elisp-mode.el.
5001 (lisp-imenu-generic-expression): Add comments to document what comes
5002 from which Lisp dialect.
5003 (emacs-lisp-mode-map, emacs-lisp-byte-compile)
5004 (emacs-lisp-byte-compile-and-load, emacs-lisp-mode-hook)
5005 (emacs-lisp-mode, emacs-list-byte-code-comment-re)
5006 (emacs-lisp-byte-code-comment)
5007 (emacs-lisp-byte-code-syntax-propertize, emacs-lisp-byte-code-mode)
5008 (lisp-interaction-mode-map, lisp-interaction-mode)
5009 (eval-print-last-sexp, last-sexp-setup-props)
5010 (last-sexp-toggle-display, prin1-char, preceding-sexp)
5011 (eval-last-sexp-1, eval-last-sexp-print-value)
5012 (eval-last-sexp-fake-value, eval-sexp-add-defvars, eval-last-sexp)
5013 (eval-defun-1, eval-defun-2, eval-defun): Move to elisp-mode.el.
5014
5015 2014-09-26 Paul Eggert <eggert@cs.ucla.edu>
5016
5017 * progmodes/grep.el (grep-regexp-alist): Use more-accurate regexp.
5018 Do not match file names that end in '/', as they cannot be 'grep'
5019 hits nowadays. This prevents confusion when 'grep -r' reports a
5020 match in a file whose basename is ':12345:'. Conversely, do not
5021 require exactly the same sequence of spaces and tabs after both
5022 colons, and allow spaces or tabs before the second colon, as per
5023 the POSIX spec for 'grep' output.
5024
5025 2014-09-26 Leo Liu <sdl.web@gmail.com>
5026
5027 Add cl-parse-integer based on parse-integer (Bug#18557)
5028 * calendar/parse-time.el (parse-time-digits): Remove.
5029 (digit-char-p, parse-integer) Moved to cl-lib.el.
5030 (parse-time-tokenize, parse-time-rules, parse-time-string):
5031 Use cl-parse-integer.
5032
5033 * emacs-lisp/cl-extra.el (cl-parse-integer): New function.
5034
5035 * emacs-lisp/cl-lib.el (cl-digit-char-table): New var.
5036 (cl-digit-char-p): New function.
5037
5038 2014-09-25 Juri Linkov <juri@jurta.org>
5039
5040 * vc/add-log.el (change-log-next-buffer): Don't create an empty
5041 buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9].
5042 Return the current buffer if no files match the default pattern
5043 ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547)
5044
5045 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
5046
5047 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Don't modify
5048 the global vc-handled-backends (bug#18535).
5049
5050 2014-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5051
5052 * find-cmd.el (find-cmd): Use grep's `find-program' (bug#18518).
5053 Suggested by <lompik@voila.fr>.
5054
5055 2014-09-24 Ulf Jasper <ulf.jasper@web.de>
5056
5057 * net/newst-treeview.el (newsticker--treeview-do-get-node-by-id):
5058 Rename from `newsticker--treeview-do-get-node'.
5059 (newsticker--treeview-get-node-by-id):
5060 Rename from `newsticker--treeview-get-node'.
5061 (newsticker--treeview-buffer-init)
5062 (newsticker--treeview-buffer-init): Disable buffer undo.
5063 (newsticker--treeview-unfold-node): Adapt to modified
5064 `newsticker--group-find-parent-group'.
5065 (newsticker--group-do-find-group):
5066 Rename from `newsticker--group-do-find-group-for-feed'.
5067 Now works for both, groups and feeds.
5068 (newsticker--group-find-parent-group):
5069 Rename from `newsticker--group-find-group-for-feed'.
5070 Now works for both, groups and feeds.
5071 (newsticker--group-do-get-parent-group)
5072 (newsticker--group-get-parent-group): Remove.
5073 (newsticker-group-add-group): Change interactive prompts.
5074 (newsticker-group-add-group): Finally jump to added group.
5075 (newsticker-group-delete-group): Finally jump to current feed.
5076 (newsticker--group-do-rename-group, newsticker-group-rename-group)
5077 (newsticker--get-group-names, newsticker--group-names): New.
5078 (newsticker-group-move-feed): Finally jump to moved feed.
5079 (newsticker-group-shift-feed-down, newsticker-group-shift-feed-up)
5080 (newsticker-group-shift-group-down)
5081 (newsticker-group-shift-group-up, newsticker--group-shift): New.
5082 (newsticker-treeview-mode-map): New keybindings for new shift commands.
5083
5084 * net/newst-backend.el (newsticker--item-list)
5085 (newsticker--item-position, newsticker--prev-message)
5086 (newsticker--scrollable-text): Move to newst-ticker.el.
5087
5088 * net/newst-ticker.el (newsticker--item-list)
5089 (newsticker--item-position, newsticker--prev-message)
5090 (newsticker--scrollable-text): Move from newst-backend.el.
5091
5092 2014-09-22 Kan-Ru Chen <kanru@kanru.info>
5093
5094 * window.el (fit-window-to-buffer): When counting buffer width,
5095 count the whole visible buffer. Correctly convert the body-height
5096 to pixel size for window-text-pixel-size (Bug#18498).
5097
5098 2014-09-22 Sam Steingold <sds@gnu.org>
5099
5100 * progmodes/sql.el (sql-product-alist): Improve the Vertica entry.
5101 (sql-execute): Use `special-mode'.
5102
5103 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
5104
5105 Add pcase-defmacro, as well as `quote' and `app' patterns.
5106 * loadup.el: Increase max-lisp-eval-depth when macroexpanding macroexp.
5107 * emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
5108 (pcase--funcall, pcase--eval): New functions.
5109 (pcase--u1): Use them for guard, pred, let, and app.
5110 (\`): Use the new feature to generate better code for vector patterns.
5111 * emacs-lisp/pcase.el: Use pcase-defmacro to handle backquote.
5112 (pcase--upat): Remove.
5113 (pcase--macroexpand): Don't hardcode handling of `.
5114 (pcase--split-consp, pcase--split-vector): Remove.
5115 (pcase--split-equal): Disregard ` since it's expanded away.
5116 (pcase--split-member): Optimize for quote rather than for `.
5117 (pcase--split-pred): Optimize for quote rather than for `.
5118 (pcase--u1): Remove handling of ` (and of `or' and `and').
5119 Quote non-selfquoting values when passing them to `eq'.
5120 Drop `app's let-binding if the variable is not used.
5121 (pcase--q1): Remove.
5122 (`): Define as a pattern macro.
5123 * emacs-lisp/pcase.el (pcase--match): New smart-constructor function.
5124 (pcase--expand pcase--q1, pcase--app-subst-match): Use it.
5125 (pcase--macroexpand): Handle self-quoting patterns here, expand them to
5126 quote patterns.
5127 (pcase--split-match): Don't hoist or/and here any more.
5128 (pcase--split-equal): Optimize quote patterns as well as ` patterns.
5129 (pcase--flip): New helper macro.
5130 (pcase--u1): Optimize the memq case directly.
5131 Don't handle neither self-quoting nor and/or patterns any more.
5132 * emacs-lisp/pcase.el (pcase-defmacro): New macro.
5133 (pcase--macroexpand): New function.
5134 (pcase--expand): Use it.
5135 * emacs-lisp/pcase.el (pcase--app-subst-match, pcase--app-subst-rest):
5136 New optimization functions.
5137 (pcase--u1): Add support for `quote' and `app'.
5138 (pcase): Document them in the docstring.
5139
5140 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
5141
5142 Use lexical-bindin in Ibuffer.
5143 * ibuffer.el (ibuffer-do-toggle-read-only): `arg' is unused.
5144 (ibuffer-compile-format): Simplify.
5145 (ibuffer-clear-summary-columns): Simplify.
5146 * ibuf-ext.el (ibuffer-generate-filter-groups): Don't use the third
5147 elem of dotimes when we don't refer to the iteration var from it.
5148 (ibuffer-toggle-sorting-mode): Avoid add-to-list.
5149 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-op):
5150 Silence byte-compiler.
5151
5152 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
5153
5154 * font-lock.el (font-lock-compile-keyword): Don't confuse a lambda
5155 expression for a list.
5156
5157 * emacs-lisp/bytecomp.el (byte-compile-lambda): Don't add fundoc usage
5158 for functions with no arguments.
5159
5160 * mpc.el (mpc-data-directory): Use locate-user-emacs-file.
5161 (mpc-volume-refresh): Make sure the corresponding header-line is updated.
5162
5163 2014-09-17 Tom Willemse <tom@ryuslash.org> (tiny change)
5164
5165 * simple.el (clone-indirect-buffer): Mention the return value
5166 (bug#18478).
5167
5168 * progmodes/prog-mode.el (prog-mode-hook): Replace reference to
5169 Text mode in docstring (bug#18464).
5170
5171 2014-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
5172
5173 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5174 Accept underscores in identifiers after "sub" (bug#18502).
5175
5176 2014-09-21 Tassilo Horn <tsdh@gnu.org>
5177
5178 * textmodes/reftex-sel.el (reftex-select-label-mode)
5179 (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes
5180 from special-mode (instead of fundamental-mode) and propertize
5181 with font-lock-face instead of just face. (Bug#18496)
5182
5183 * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto.
5184
5185 2014-09-19 Dmitry Gutov <dgutov@yandex.ru>
5186
5187 * emacs-lisp/lisp.el (lisp-completion-at-point): Only calculate
5188 `table-etc' when `end' is non-nil.
5189 (lisp-completion-at-point): Move `end' back if it's after quote.
5190 If in comment or string, only complete when after backquote.
5191 (Bug#18265)
5192 (lisp-completion-at-point): Don't use
5193 `lisp--local-variables-completion-table' in the
5194 `lisp--form-quoted-p' case.
5195
5196 2014-09-19 Dmitry Gutov <dgutov@yandex.ru>
5197
5198 * emacs-lisp/lisp.el (lisp--expect-function-p)
5199 (lisp--form-quoted-p): New functions.
5200 (lisp-completion-at-point): Use them to see if we're completing a
5201 variable reference, a function name, or just any symbol.
5202 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00229.html
5203
5204 2014-09-18 Ivan Kanis <ivan@kanis.fr>
5205
5206 * net/shr.el, net/eww.el: Don't override `shr-width', but
5207 introduce a new variable `shr-internal-width'. This allows users
5208 to specify a width themselves.
5209
5210 2014-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5211
5212 * image-mode.el (image-toggle-display-image): If we have a
5213 `fit-width' or a `fit-height', don't limit the size of the image
5214 to the window size, because that doesn't preserve the aspect ratio.
5215 * image-mode.el: Move defvars earlier to avoid a byte-compilation
5216 warning.
5217
5218 2014-09-17 Reuben Thomas <rrt@sc3d.org>
5219
5220 * progmodes/js.el: Add interpreter-mode-alist support for various
5221 JavaScript interpreters.
5222
5223 2014-09-17 Paul Eggert <eggert@cs.ucla.edu>
5224
5225 Don't assume 'grep' supports GREP_OPTIONS.
5226 The GREP_OPTIONS environment variable is planned to be marked
5227 obsolescent in GNU grep, due to problems in its use, so stop
5228 relying on it.
5229 * progmodes/grep.el (grep-highlight-matches): Document this.
5230 (grep-process-setup): Do not set GREP_OPTIONS.
5231 (grep-compute-defaults): Use an explicit --color option if supported.
5232
5233 2014-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
5234
5235 * msb.el (msb--make-keymap-menu, msb-menu-bar-update-buffers):
5236 Don't add outdated key-shortcut cache (bug#18482).
5237
5238 2014-09-15 Glenn Morris <rgm@gnu.org>
5239
5240 * image.el (image-multi-frame-p): Fix thinko - do not force
5241 a delay if none was specified. (Bug#18334)
5242
5243 2014-09-15 Kan-Ru Chen <kanru@kanru.info>
5244
5245 * window.el (fit-window-to-buffer): Doc fix.
5246
5247 2014-09-15 Ivan Shmakov <ivan@siamics.net>
5248
5249 * desktop.el (desktop-create-buffer): Check that buffers are still live
5250 before burying them (bug#18373).
5251
5252 2014-09-15 Glenn Morris <rgm@gnu.org>
5253
5254 * calendar/diary-lib.el (diary-list-entries):
5255 Restore 24.3 display behavior. (Bug#18381)
5256
5257 2014-09-15 Eli Zaretskii <eliz@gnu.org>
5258
5259 * mouse.el (mouse-drag-line): On text-mode frames, count the mode
5260 line and header line as 1 pixel. This fixes the 1-"pixel" (row)
5261 discrepancy between window-pixel-edges and mouse events, and
5262 avoids moving mode line up when the mouse click is on the modeline
5263 and no drag is attempted.
5264
5265 2014-09-14 Daniel Colascione <dancol@dancol.org>
5266
5267 * register.el (insert-register): Change default interactive
5268 insertion mode.
5269
5270 2014-09-14 Michael Albinus <michael.albinus@gmx.de>
5271
5272 * net/tramp-cache.el (tramp-flush-file-function): Simplify check.
5273 Suppress debug messages.
5274
5275 * net/tramp.el (tramp-file-name-handler):
5276 * net/tramp-gvfs.el (tramp-gvfs-url-file-name): Apply `cons' where
5277 appropriate.
5278
5279 2014-09-13 Christopher Schmidt <ch@ristopher.com>
5280
5281 * calendar/calendar.el (calendar-update-mode-line):
5282 Do not overwrite mode-line-format if calendar-mode-line-format is
5283 nil. (Bug#18467)
5284
5285 2014-09-13 Leo Liu <sdl.web@gmail.com>
5286
5287 * emacs-lisp/pcase.el (pcase--dontwarn-upats): New var.
5288 (pcase--expand): Use it.
5289 (pcase-exhaustive): New macro. (Bug#16567)
5290
5291 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
5292 Add pcase-exhaustive.
5293
5294 2014-09-13 Eli Zaretskii <eliz@gnu.org>
5295
5296 * mail/rmailmm.el (rmail-mime-insert-html): Decode the HTML part
5297 using the specified transfer-encoding, if any, or 'undecided'.
5298 (rmail-mime-render-html-shr): Bind shr-width to nil, so lines are
5299 broken at the window margin.
5300
5301 2013-12-27 Ken Olum <kdo@cosmos.phy.tufts.edu>
5302
5303 Support rendering of HTML parts in Rmail (bug#4258).
5304 * mail/rmailmm.el (rmail-mime-process): Handle text/html
5305 separately from other text/ types. Suppress tagline for
5306 multipart body.
5307 (rmail-mime-parse): Don't change visibility of tagline here.
5308 (rmail-mime-set-bulk-data, rmail-mime-insert-bulk):
5309 Handle text/html specially.
5310 (rmail-mime-render-html-function,rmail-mime-prefer-html): New variables.
5311 (rmail-mime-insert-html, rmail-mime-render-html-shr)
5312 (rmail-mime-render-html-lynx): New functions.
5313 (rmail-mime-fix-inserted-faces): New function.
5314 (rmail-mime-process-multipart): Find the best part to show
5315 following rmail-mime-prefer-html if set.
5316 (rmail-mime-searching): New variable.
5317 (rmail-search-mime-message): Bind rmail-mime-searching to
5318 suppress rendering while searching.
5319
5320 2014-09-12 Sam Steingold <sds@gnu.org>
5321
5322 * progmodes/sql.el (sql-product-alist): Add vertica.
5323 (sql-vertica-program, sql-vertica-options)
5324 (sql-vertica-login-params, sql-comint-vertica, sql-vertica):
5325 New functions and variables to support Vertica.
5326 Inspired by code by Roman Scherer <roman@burningswell.com>.
5327
5328 2014-09-11 Paul Eggert <eggert@cs.ucla.edu>
5329
5330 * ses.el (ses-file-format-extend-parameter-list): Rename from
5331 ses-file-format-extend-paramter-list, to correct a misspelling.
5332 All uses changed.
5333
5334 2014-09-10 Alan Mackenzie <acm@muc.de>
5335
5336 CC Mode: revert recent changes and fix bug 17463 (cc-langs.elc
5337 gets loaded at run-time).
5338 * progmodes/cc-langs.el (c-no-parens-syntax-table): Rename the
5339 c-lang-const to c-make-no-parens-syntax-table and correct the
5340 logic.
5341 (c-no-parens-syntax-table): Correct the logic of the
5342 c-lang-defvar.
5343
5344 2014-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5345
5346 CC-mode: Set open-paren-in-column-0-is-defun-start to nil;
5347 plus misc cleanup.
5348 * progmodes/cc-mode.el (c-basic-common-init):
5349 Set open-paren-in-column-0-is-defun-start.
5350 (adaptive-fill-first-line-regexp, font-lock-syntactic-keywords):
5351 Remove declarations, unused.
5352 (run-mode-hooks): Remove declaration.
5353 (font-lock-defaults): Use plain `defvar' to declare.
5354 (c-run-mode-hooks): Test existence of run-mode-hooks with fboundp.
5355 * progmodes/cc-langs.el (c-filter-ops): Avoid `setq'.
5356 (c-make-mode-syntax-table): Don't micro-optimize.
5357 (c-keywords, c-keyword-member-alist): Simplify.
5358 (c-kwds-lang-consts): Don't eval at compile-time.
5359 (c-primary-expr-regexp): Comment out unused vars.
5360 * progmodes/cc-fonts.el (c-font-lock-context): Declare at top-level.
5361 (c-font-byte-compile): New var.
5362 (c--compile): New function. Use it instead of `byte-compile'.
5363 (c-cpp-matchers): Quote the value returned by
5364 `c-make-syntactic-matcher' in case it's not self-evaluating.
5365 (c-basic-matchers-before): Avoid a plain MATCHER as keyword, wrap it in
5366 parentheses instead (in case MATCHER happens to be a list).
5367 (c-font-lock-enum-tail): Remove unused var `start'.
5368 (c-font-lock-objc-methods): Silence byte-compiler warnings.
5369 * progmodes/cc-engine.el (c-syntactic-re-search-forward): Sink an `if'
5370 test into an argument.
5371 * progmodes/cc-defs.el (c-point, c-major-mode-is, c-put-char-property)
5372 (c-get-char-property): Don't use `eval' just to unquote a constant.
5373 (c-use-extents): Remove. Use (featurep 'xemacs), compiled
5374 more efficiently.
5375 (c-put-char-property-fun): Don't call `byte-compile' by hand.
5376 (c-clear-char-property, c-clear-char-properties): Check that `property'
5377 is a quoted constant.
5378 (c-emacs-features): Remove `infodock', `syntax-properties', and
5379 `pps-extended-state' (never used), `8-bit' and `1-bit' (use (featurep
5380 'xemacs) instead). Use `with-temp-buffer' and let-bind vars after
5381 changing buffer, so we don't have to setq them again afterwards.
5382 (c-lang-const): Remove redundant symbolp assertions.
5383 (c-find-assignment-for-mode): Use `or'.
5384 * Makefile.in (compile-one-process): Remove cc-mode dependency.
5385
5386 2014-09-09 Sam Steingold <sds@gnu.org>
5387
5388 * progmodes/sql.el (sql-default-directory): Fix type annotation.
5389
5390 2014-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5391
5392 * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
5393 Change doc comments into docstrings.
5394 * Makefile.in: Remove cc-awk dependency.
5395
5396 2014-09-08 Sam Steingold <sds@gnu.org>
5397
5398 * progmodes/sql.el (sql-send-line-and-next): New command,
5399 bound to C-c C-n.
5400 (sql-show-sqli-buffer): Display the buffer instead of its name and
5401 bind the command to C-c C-z.
5402 (sql-default-directory): New user option.
5403 (sql-product-interactive): Bind `default-directory' to it to
5404 enable remote connections using Tramp.
5405 (sql-set-sqli-buffer): Call `sql-product-interactive' when no
5406 suitable buffer is available.
5407
5408 2014-09-08 Glenn Morris <rgm@gnu.org>
5409
5410 * calendar/calendar.el (calendar-basic-setup):
5411 Fix calendar-view-holidays-initially-flag and fancy display.
5412 * calendar/diary-lib.el (diary-live-p): Doc fix.
5413
5414 * calendar/calendar.el (calendar-basic-setup):
5415 Avoid clobbering calendar with diary. (Bug#18381)
5416
5417 2014-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5418
5419 * vc/vc-dir.el (vc-dir-update): Don't burp in corner case.
5420
5421 2014-09-08 Lars Ljung <lars@matholka.se> (tiny change)
5422
5423 * isearch.el (isearch-yank-word-or-char): Obey superword-mode
5424 as well (bug#18400).
5425
5426 2014-09-08 Eli Zaretskii <eliz@gnu.org>
5427
5428 * subr.el (posn-actual-col-row): Doc fix. (Bug#18385)
5429
5430 2014-09-06 Leo Liu <sdl.web@gmail.com>
5431
5432 * emacs-lisp/pcase.el (pcase): Doc fix.
5433 (pcase--split-vector): New function.
5434 (pcase--q1): Support vector qpattern. (Bug#18327)
5435
5436 2014-09-05 Sam Steingold <sds@gnu.org>
5437
5438 * textmodes/tex-mode.el (tex-print-file-extension): New user
5439 option.
5440 (tex-print): Use it instead of the hard-coded string.
5441
5442 2014-09-05 Michael Albinus <michael.albinus@gmx.de>
5443
5444 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5445 Expand `default-directory'.
5446
5447 2014-09-05 Martin Rudalics <rudalics@gmx.at>
5448
5449 * scroll-bar.el (horizontal-scroll-bars-available-p):
5450 New function.
5451 (horizontal-scroll-bar-mode): Rewrite using
5452 horizontal-scroll-bars-available-p.
5453 * menu-bar.el (menu-bar-showhide-scroll-bar-menu): Rewrite using
5454 horizontal-scroll-bars-available-p.
5455
5456 2014-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
5457
5458 * subr.el (call-process-shell-command, process-file-shell-command):
5459 Make the `args' obsolete (bug#18409).
5460 (start-process-shell-command, start-file-process-shell-command):
5461 Use `declare'.
5462
5463 2014-09-05 Jay Belanger <jay.p.belanger@gmail.com>
5464
5465 * calc/calc-forms.el (math-normalize-hms): Do a better check for
5466 "negative" hms forms.
5467
5468 2014-09-04 Rasmus Pank Roulund <emacs@pank.eu>
5469
5470 * vc/vc-git.el (vc-git-conflicted-files): Fix bug when git status
5471 returns nil (bug#18391).
5472
5473 2014-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5474
5475 * emacs-lisp/eldoc.el (eldoc-function-argstring): Don't strip
5476 terminating paren (bug#18352).
5477 (eldoc-last-data-store): Return cached data.
5478 (eldoc-get-var-docstring): Avoid setq.
5479 (eldoc-get-fnsym-args-string): Clarify data flow.
5480
5481 2014-09-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5482
5483 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Handle the
5484 case where we're currently providing part of the &rest arg after some
5485 &key args, as in define-ibuffer-op (bug#18048).
5486
5487 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5488
5489 * progmodes/which-func.el (which-func-ff-hook): Obey pre-existing
5490 buffer-local setting of which-func-mode.
5491 (which-func-mode): Use defvar-local.
5492 (which-function-mode): Don't reset which-func-mode in each buffer since
5493 it might have been set by someone else.
5494 (which-func-update-ediff-windows): Check which-function-mode.
5495
5496 2014-09-03 Martin Rudalics <rudalics@gmx.at>
5497
5498 * frame.el (frame-initialize): Remove horizontal-scroll-bars
5499 from frame-initial-frame-alist.
5500 * scroll-bar.el (previous-horizontal-scroll-bar-mode)
5501 (horizontal-scroll-bar-mode-explicit)
5502 (set-horizontal-scroll-bar-mode, get-horizontal-scroll-bar-mode)
5503 (toggle-horizontal-scroll-bar): Remove.
5504 (horizontal-scroll-bar-mode): Remove defcustom.
5505 (horizontal-scroll-bar-mode): Fix doc-string.
5506 (scroll-bar-toolkit-scroll)
5507 (scroll-bar-toolkit-horizontal-scroll): Add doc-strings stubs.
5508
5509 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5510
5511 * emacs-lisp/package.el (package-generate-description-file):
5512 Properly quote the arguments (bug#18332). Change second arg.
5513 (package--alist-to-plist-args): Rename from package--alist-to-plist and
5514 quote the elements.
5515 (package--make-autoloads-and-stuff): Fix the test for pre-existence of
5516 the *-pkg.el file. Adjust to new calling convention of
5517 package-generate-description-file.
5518
5519 * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
5520 (gud-gdb-completions): Remove obsolete workaround.
5521
5522 2014-09-03 Eli Zaretskii <eliz@gnu.org>
5523
5524 * subr.el (posn-col-row): Revert the change from commit
5525 2010-11-13T21:07:58Z!eliz@gnu.org, which
5526 was inadvertently merged from emacs-23 release branch in 2010-11-18T03:54:14Z!monnier@iro.umontreal.ca
5527 monnier@iro.umontreal.ca-20101118035414-yvlg7k7dk4k4l3q, and
5528 introduced an off-by-one error in the reported row when there is a
5529 header line. (Bug#18384)
5530
5531 2014-09-03 Fabián Ezequiel Gallina <fgallina@gnu.org>
5532
5533 * progmodes/python.el (python-indent-post-self-insert-function):
5534 Avoid electric colon at beginning-of-defun. (Bug#18228)
5535
5536 2014-09-03 Glenn Morris <rgm@gnu.org>
5537
5538 * tutorial.el (tutorial--display-changes):
5539 Fix 2014-08-01 change. (Bug#18382)
5540
5541 2014-09-03 Ken Brown <kbrown@cornell.edu>
5542
5543 * startup.el (fancy-splash-frame): Extend the fix for Bug#16014 to
5544 the Cygwin-w32 build. (Bug#18347)
5545
5546 2014-09-03 Glenn Morris <rgm@gnu.org>
5547
5548 * tar-mode.el (tar--extract, tar-extract):
5549 Avoid permanently disabling undo in extracted buffers. (Bug#18344)
5550
5551 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5552
5553 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Try to better
5554 handle multiline elements (bug#18380).
5555
5556 2014-09-01 Eli Zaretskii <eliz@gnu.org>
5557
5558 * ls-lisp.el (ls-lisp-use-string-collate)
5559 (ls-lisp-UCA-like-collation): New defcustoms.
5560 (ls-lisp-string-lessp): Use them to control sorting by file
5561 names. (Bug#18051)
5562 (ls-lisp-version-lessp): New function.
5563 (ls-lisp-handle-switches): Use it to implement the -v switch of
5564 GNU ls.
5565 (ls-lisp--insert-directory): Mention the -v switch in the doc string.
5566
5567 2014-08-31 Christoph Scholtes <cschol2112@gmail.com>
5568
5569 * ibuffer.el: Replace mode-specific quit function with
5570 `quit-window' via `special-mode'.
5571 (ibuffer-mode-map): Use keybindings from special-mode-map instead
5572 of local overrides.
5573 (ibuffer): Don't store previous windows configuration.
5574 Let `quit-window' handle restoring.
5575 (ibuffer-quit): Remove function. Use `quit-window' instead.
5576 (ibuffer-restore-window-config-on-quit): Remove variable.
5577 (ibuffer-prev-window-config): Remove variable.
5578
5579 2014-08-29 Michael Heerdegen <michael_heerdegen@web.de>
5580
5581 * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
5582 name instead of variable name in hook docstring. (Bug#18349)
5583
5584 2014-08-29 Martin Rudalics <rudalics@gmx.at>
5585
5586 * window.el (display-buffer-at-bottom): Prefer bottom-left
5587 window to other bottom windows. Reuse a bottom window if it
5588 shows the buffer already. Suggested by Juri Linkov
5589 <juri@jurta.org> in discussion of (Bug#18181).
5590
5591 2014-08-29 Leo Liu <sdl.web@gmail.com>
5592
5593 * files.el (minibuffer-with-setup-hook): Allow (:append FUN) to
5594 append to minibuffer-setup-hook. (Bug#18341)
5595
5596 2014-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5597
5598 * progmodes/cc-defs.el: Expose c-lanf-defconst's expressions to the
5599 byte-compiler.
5600 (lookup-syntax-properties): Silence byte-compiler.
5601 (c-lang-defconst): Quote the code with `lambda' rather than with
5602 `quote'.
5603 (c-lang-const): Avoid unneeded setq.
5604 (c-lang-constants-under-evaluation): Add docstring.
5605 (c-lang--novalue): New constant.
5606 (c-find-assignment-for-mode): Use it instead of c-lang-constants.
5607 (c-get-lang-constant): Same here.
5608 Get the mode's value using `funcall' now that the code is quoted
5609 with `lambda'.
5610
5611 2014-08-28 Michael Albinus <michael.albinus@gmx.de>
5612
5613 * net/tramp.el (tramp-handle-shell-command): Use `display-buffer'.
5614 (Bug#18326)
5615
5616 2014-08-28 Martin Rudalics <rudalics@gmx.at>
5617
5618 * scroll-bar.el (scroll-bar-horizontal-drag-1): Handle new
5619 interpretation of `portion-whole'.
5620
5621 2014-08-28 Michael Albinus <michael.albinus@gmx.de>
5622
5623 * net/tramp-adb.el: Spell author name correctly.
5624
5625 2014-08-28 João Távora <joaotavora@gmail.com>
5626
5627 * net/shr.el (shr-expand-url): Plain expand-file-name is not enough;
5628 use url-expand-file-name. (Bug#18310)
5629
5630 2014-08-28 Glenn Morris <rgm@gnu.org>
5631
5632 * emulation/cua-rect.el (cua--highlight-rectangle):
5633 Avoid error at point-min. (Bug#18309)
5634
5635 2014-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5636
5637 * progmodes/python.el (python-shell-prompt-detect): Remove redundant
5638 executable-find (bug#18244).
5639
5640 * simple.el (self-insert-uses-region-functions): Defvar.
5641
5642 2014-08-28 Glenn Morris <rgm@gnu.org>
5643
5644 * subr.el (remq): Revert 2014-08-25 doc change (not always true).
5645
5646 2014-08-27 Dmitry Antipov <dmantipov@yandex.ru>
5647
5648 * startup.el (normal-top-level): Now use internal--top-level-message.
5649
5650 2014-08-26 Dmitry Antipov <dmantipov@yandex.ru>
5651
5652 * startup.el (normal-top-level): Use top-level-message.
5653
5654 2014-08-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5655
5656 * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
5657 URLs containing spaces and the like.
5658
5659 2014-08-25 Christoph Scholtes <cschol2112@gmail.com>
5660
5661 * subr.el (remq): Fix docstring (Bug#18253).
5662
5663 2014-08-25 Christoph Scholtes <cschol2112@gmail.com>
5664
5665 * replace.el (query-replace): Fix typo in docstring (Bug#18320).
5666
5667 2014-08-24 Alan Mackenzie <acm@muc.de>
5668
5669 Handle C++11's "auto" and "decltype" constructions.
5670 * progmodes/cc-engine.el (c-forward-type): Enhance to recognise
5671 and return 'decltype.
5672 (c-forward-decl-or-cast-1): New let variables backup-kwd-sym,
5673 prev-kwd-sym, new-style-auto. Enhance to handle the new "auto"
5674 keyword.
5675 * progmodes/cc-fonts.el (c-font-lock-declarations): Handle the
5676 "decltype" keyword.
5677 (c-font-lock-c++-new): Handle "decltype" constructions.
5678 * progmodes/cc-langs.el (c-auto-ops, c-auto-ops-re):
5679 New c-lang-defconsts/defvars.
5680 (c-haskell-op, c-haskell-op-re): New c-lang-defconsts/defvars.
5681 (c-typeof-kwds, c-typeof-key): New c-lang-defconsts/defvars.
5682 (c-typeless-decl-kwds): Append "auto" onto the C++ value.
5683 (c-not-decl-init-keywords): Also exclude c-typeof-kwds from value.
5684
5685 Make ">>" act as double template ender in C++ Mode. (Bug#11386)
5686 * progmodes/cc-langs.el (c->-op-cont-tokens): New lang-const split
5687 off from c->-op-cont-re.
5688 (c->-op-cont-tokens): Change to use the above.
5689 (c->-op-without->-cont-regexp): New lang-const.
5690 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
5691 Use c->-op-without->-cont-regexp in place of c->-op-cont-tokens.
5692
5693
5694 2014-08-23 Alan Mackenzie <acm@muc.de>
5695
5696 * progmodes/cc-fonts.el (c-font-lock-declarators): Fix infinite
5697 loop, bug #18306. The bug was introduced on 2014-08-02.
5698
5699 2014-08-21 Eli Zaretskii <eliz@gnu.org>
5700
5701 * textmodes/texnfo-upd.el (texinfo-specific-section-type):
5702 Don't recognize a Top node if there are other sectioning commands
5703 earlier in the Texinfo file. This fixes a bug in
5704 texinfo-make-menu and avoids inflooping in
5705 texinfo-all-menus-update when they are invoked on texinfo.texi.
5706
5707 2014-08-21 Martin Rudalics <rudalics@gmx.at>
5708
5709 * window.el (window--side-window-p): New function.
5710 (split-window, window-splittable-p): Use window--side-window-p to
5711 determine whether WINDOW can be split (Bug#18304).
5712 * calendar/calendar.el (calendar-basic-setup): Fix one call of
5713 `window-splittable-p' and add another (Bug#18304).
5714
5715 2014-08-20 Sam Steingold <sds@gnu.org>
5716
5717 * progmodes/python.el (python-new-pythonpath): Extract from
5718 `python-shell-calculate-process-environment'.
5719
5720 2014-08-18 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5721
5722 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Add support
5723 for &key args (bug#18048).
5724
5725 2014-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5726
5727 * emacs-lisp/eldoc.el (eldoc-argument-case): Obsolete and change default.
5728 (eldoc-function-argstring-format): Remove.
5729 (eldoc-function-argstring): Always return upcase args.
5730 Use help-make-usage. Don't add parens.
5731 (eldoc-get-fnsym-args-string): Don't obey eldoc-argument-case since
5732 it's too late to do it right (bug#18048).
5733
5734 2014-08-18 Eli Zaretskii <eliz@gnu.org>
5735
5736 * scroll-bar.el (scroll-bar-horizontal-drag-1)
5737 (scroll-bar-toolkit-horizontal-scroll): When determining the
5738 paragraph direction, use the buffer of the window designated in
5739 the event.
5740
5741 2014-08-16 Andreas Schwab <schwab@linux-m68k.org>
5742
5743 * vc/diff-mode.el (diff-fixup-modifs): Handle empty line in
5744 context of unified diff.
5745
5746 2014-08-16 Paul Eggert <eggert@cs.ucla.edu>
5747
5748 Add dependencies to fix loaddefs race during parallel builds.
5749 Without this, for example, 'make -j bootstrap' can fail and report
5750 "Opening input file: no such file or directory,
5751 .../lisp/calendar/diary-loaddefs.el ... recipe for target
5752 'calendar/hol-loaddefs.el' failed", where the hol-loaddefs.el rule
5753 got confused because diary-loaddefs.el was being built in parallel.
5754 * Makefile.in ($(CAL_DIR)/diary-loaddefs.el):
5755 Depend on $(CAL_DIR)/cal-loaddefs.el.
5756 ($(CAL_DIR)/hol-loaddefs.el): Depend on $(CAL_DIR)/diary-loaddefs.el.
5757
5758 2014-08-16 Martin Rudalics <rudalics@gmx.at>
5759
5760 * scroll-bar.el (scroll-bar-horizontal-drag-1): Use cdr of
5761 portion-whole for scrolling right-to-left text.
5762
5763 2014-08-15 Leo Liu <sdl.web@gmail.com>
5764
5765 * speedbar.el (speedbar-generic-list-tag-p): Allow special
5766 elements from imenu.
5767
5768 2014-08-15 Glenn Morris <rgm@gnu.org>
5769
5770 * subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.
5771
5772 2014-08-13 Jan Nieuwenhuizen <janneke@gnu.org>
5773
5774 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5775 Add Guile regexpses.
5776
5777 2014-08-13 Jan Nieuwenhuizen <janneke@gnu.org>
5778
5779 * progmodes/gud.el (guiler): New function. Starts the Guile REPL;
5780 add Guile debugger support for GUD.
5781
5782 2014-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
5783
5784 * obsolete/mouse-sel.el (mouse-sel-mode): Use add/remove-function.
5785 (mouse-sel--ignore): New function.
5786 (mouse-sel-has-been-enabled, mouse-sel-original-bindings)
5787 (mouse-sel-original-interprogram-cut-function)
5788 (mouse-sel-original-interprogram-paste-function): Remove.
5789
5790 2014-08-13 Eric S. Raymond <esr@thyrsus.com>
5791
5792 * vc/vc-git.el (vc-git-resolve-when-done): New function.
5793 Call "git add" when there are no longer conflict markers.
5794
5795 2014-08-13 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5796
5797 * vc/vc-git.el (vc-git-find-file-hook): New function.
5798 Adds support for calling smerge (and resolve) on a conflicted file.
5799 (vc-git-conflicted-files): New function.
5800 Useful in itself and a step towards better smerge support.
5801
5802 2014-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5803
5804 * mpc.el (mpc-reorder): Don't bother splitting the "active" elements
5805 to the first part if they're the same as the selection.
5806
5807 2014-08-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
5808
5809 * image-mode.el (image-transform-reset): New command and menu item.
5810 (image-mode-map): Rearrange the menu items to put presumably more
5811 obscure items at the end.
5812
5813 2014-08-12 Juri Linkov <juri@jurta.org>
5814
5815 * vc/vc-annotate.el (vc-annotate-background-mode):
5816 Use `with-demoted-errors' instead of `ignore-errors'. (Bug#18189)
5817
5818 2014-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5819
5820 * files.el (out-of-memory-warning-percentage): Turn it off by default.
5821
5822 2014-08-11 Sam Steingold <sds@gnu.org>
5823
5824 * textmodes/sgml-mode.el (sgml-validate-command): Set depending on
5825 the presence of known validators (tidy, (o)nsgmls).
5826
5827 2014-08-11 Ulf Jasper <ulf.jasper@web.de>
5828
5829 Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227)
5830 * net/newst-treeview.el (newsticker-treeview-date-format): New.
5831 (newsticker--treeview-list-add-item):
5832 Use `newsticker-treeview-date-format'.
5833
5834 2014-08-11 Glenn Morris <rgm@gnu.org>
5835
5836 * files.el (basic-save-buffer-2): Revert 2013-01-31 change, which
5837 chose coding system for writing before backing up, since it causes
5838 a more serious problem than the one it solves. (Closes Bug#18141,
5839 reopens Bug#13522.)
5840
5841 2014-08-11 Martin Rudalics <rudalics@gmx.at>
5842
5843 * window.el (window-total-size): Make doc-string more self-contained.
5844
5845 * window.el (display-buffer-below-selected): Restore original
5846 behavior if buffer is already displayed in the window below the
5847 selected one (Bug#18181).
5848
5849 2014-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
5850
5851 * mouse.el (mouse--down-1-maybe-follows-link): Don't convert the down
5852 event (bug#18212).
5853
5854 2014-08-11 Eli Zaretskii <eliz@gnu.org>
5855
5856 * info.el (info): Doc fix.
5857
5858 2014-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
5859
5860 * info.el (Info-mode-map): Override a global down-mouse-2 binding
5861 (bug#18212).
5862
5863 2014-08-11 Eli Zaretskii <eliz@gnu.org>
5864
5865 * simple.el (default-line-height): A floating-point value of
5866 line-spacing means a fraction of the default frame font's height,
5867 not of the font currently used by the 'default' face.
5868 Truncate the pixel value, like the display engine does.
5869 (window-screen-lines): Use window-inside-pixel-edges for
5870 determining the window height in pixels. (Bug#18195)
5871
5872 2014-08-11 Grégoire Jadi <daimrod@gmail.com>
5873
5874 * leim/quail/latin-post.el: Transform " __" into " _". (Bug#18023)
5875
5876 2014-08-10 Ulf Jasper <ulf.jasper@web.de>
5877
5878 Enumerate evaluated sexp diary entries (Bug#7911).
5879 * calendar/icalendar.el (icalendar-export-sexp-enumerate-all)
5880 (icalendar-export-sexp-enumeration-days): New.
5881 (icalendar-export-region): Now `icalendar--convert-to-ical'
5882 returns a cons cell or a list of cons cells.
5883 (icalendar--convert-to-ical): Take care of
5884 `icalendar-export-sexp-enumerate-all'. Return (a list of) cons cells.
5885 (icalendar--convert-ordinary-to-ical)
5886 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
5887 (icalendar--convert-block-to-ical, icalendar--convert-block-to-ical)
5888 (icalendar--convert-float-to-ical, icalendar--convert-cyclic-to-ical)
5889 (icalendar--convert-anniversary-to-ical): Return cons cell.
5890 (icalendar--convert-sexp-to-ical): Enumerate evaluated sexp
5891 entries. Return (list of) cons cells.
5892
5893 2014-08-09 Juri Linkov <juri@jurta.org>
5894
5895 * vc/vc-annotate.el (vc-annotate-background-mode): Add :set
5896 to reevaluate `vc-annotate-color-map'. (Bug#18189)
5897
5898 2014-08-09 Alan Mackenzie <acm@muc.de>
5899
5900 * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
5901 for top-level that can cause unacceptable slow-down in scrolling.
5902 See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
5903 Antipov from 2013-10-14 in emacs-devel.
5904
5905 2014-08-08 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5906
5907 * ibuffer.el (ibuffer-mode-map): Use toggle button for
5908 `ibuffer-auto-mode' menu entry.
5909 (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
5910
5911 2014-08-08 Matthias Meulien <orontee@gmail.com>
5912
5913 * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
5914 (Bug#16394)
5915
5916 2014-08-07 Martin Rudalics <rudalics@gmx.at>
5917
5918 * window.el (window--min-size-1): Explicitly set WINDOW arg in
5919 calls of window-min-pixel-height and window-min-pixel-width.
5920
5921 2014-08-07 Reuben Thomas <rrt@sc3d.org>
5922
5923 * progmodes/ada-mode.el:
5924 * net/tramp.el (tramp-handle-file-symlink-p):
5925 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
5926 about VMS, which we no longer support.
5927 * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
5928 and fix a FIXME, using convert-standard-filename in place of
5929 removed ada-convert-file-name.
5930
5931 2014-08-07 Eli Zaretskii <eliz@gnu.org>
5932
5933 * files.el (auto-mode-alist): Remove support for VMS from a pattern.
5934
5935 2014-08-07 Reuben Thomas <rrt@sc3d.org>
5936
5937 Refer to MS-DOS using the same name everywhere.
5938 * arc-mode.el, files.el, frame.el: ``MS-DOG'', ``MSDOG'' and
5939 ``msdog'' become ``MS-DOS''.
5940
5941 2014-08-07 Michael Albinus <michael.albinus@gmx.de>
5942
5943 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
5944 Use cached "remote-copy-args" value, if available. (Bug#18199)
5945
5946 2014-08-07 Leo Liu <sdl.web@gmail.com>
5947
5948 * help.el (temp-buffer-setup-hook,temp-buffer-show-hook):
5949 Revert change on 2014-03-22.
5950
5951 2014-08-06 Ulf Jasper <ulf.jasper@web.de>
5952
5953 * calendar/icalendar.el (icalendar--diarytime-to-isotime)
5954 (icalendar--convert-ordinary-to-ical): Allow for missing minutes
5955 (Bug#13750).
5956
5957
5958 2014-08-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5959
5960 * image-mode.el (image-toggle-display-image): Always rescale images
5961 to not be bigger than the current window.
5962
5963 2014-08-05 Eric Brown <brown@fastmail.fm> (tiny change)
5964
5965 * net/eww.el (eww-bookmarks-directory): New variable.
5966 (eww-write-bookmarks): Use it.
5967 (eww-read-bookmarks): Ditto.
5968
5969 2014-08-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5970
5971 * net/shr.el (shr-copy-url): Also copy the image URL.
5972
5973 2014-08-05 Michael Albinus <michael.albinus@gmx.de>
5974
5975 * net/tramp-cache.el (tramp-flush-file-function): Suppress function
5976 also for Tramp working buffers.
5977
5978 2014-08-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
5979
5980 * progmodes/python.el: Fix completions inside (i)pdb.
5981 (python-shell-completion-pdb-string-code): Make obsolete.
5982 (python-shell-completion-get-completions):
5983 Use python-shell-completion-string-code resending setup code
5984 continuously for (i)pdb.
5985
5986 2014-08-04 Paul Eggert <eggert@cs.ucla.edu>
5987
5988 * rect.el (rectangle--default-line-number-format): Rename
5989 from misspelled rectange--default-line-number-format (Bug#18045).
5990 All uses changed.
5991
5992 2014-08-03 Paul Eggert <eggert@cs.ucla.edu>
5993
5994 Don't mishandle year-9999 dates (Bug#18176).
5995 * calendar/parse-time.el (parse-time-rules):
5996 Allow years up to most-positive-fixnum.
5997 * calendar/time-date.el (date-to-time):
5998 Pass "Specified time is not representable" errors through.
5999
6000 2014-08-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
6001
6002 * progmodes/python.el: Completion code cleanups.
6003 (python-shell-completion-get-completions): Detect and send import
6004 statements directly to completion function.
6005 (python-shell-completion-at-point): Simplify prompt calculation
6006 and import vs input completion logic.
6007
6008 2014-08-02 Alan Mackenzie <acm@muc.de>
6009
6010 Fix confusion in C++ file caused by comma in "= {1,2},".
6011 Bug #17756.
6012 * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
6013 for a statement boundary marked by "}", check there's no "="
6014 before the "{".
6015 (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
6016 non-nil `comma-delim' argument.
6017 * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
6018 initializer expression more accurately.
6019
6020 Correct loop termination condition in c-syntactic-skip-backward.
6021 * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
6022 the situation where, after moving back out of a literal,
6023 skip-chars-backward doesn't move further, yet checks have still to
6024 be done.
6025
6026 2014-08-01 Eli Zaretskii <eliz@gnu.org>
6027
6028 * tutorial.el (tutorial--display-changes): Accept punctuation
6029 characters before the key binding. (Bug#18146)
6030
6031 2014-07-31 Fabián Ezequiel Gallina <fgallina@gnu.org>
6032
6033 * progmodes/python.el: Shell output capture enhancements.
6034 (python-shell-accept-process-output): New function.
6035 (inferior-python-mode)
6036 (python-shell-send-setup-code): Use it.
6037
6038 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change)
6039
6040 * calendar/icalendar.el (icalendar--decode-isodatetime):
6041 Use actual current-time-zone when converting to local time. (Bug#15408)
6042
6043 2014-07-29 Martin Rudalics <rudalics@gmx.at>
6044
6045 * window.el (window--state-put-2): Handle horizontal scroll
6046 bars, if present.
6047
6048 2014-07-29 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6049
6050 * menu-bar.el (menu-bar-update-buffers): Update item list format
6051 in `buffers-menu' to confirm with changes to `get_keyelt'
6052 (r117463). (Bug#18016)
6053
6054 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6055
6056 * progmodes/python.el (inferior-python-mode): Make input prompts
6057 read-only.
6058
6059 2014-07-28 Emilio C. Lopes <eclig@gmx.net>
6060
6061 * net/tramp-sh.el (tramp-get-remote-python): Also search for
6062 executables named "python2" or "python3".
6063 (tramp-get-remote-uid-with-python): Use parentheses around
6064 arguments to `print' to make it compatible with Python 3.
6065 (tramp-get-remote-gid-with-python): Ditto. (Bug#18118)
6066
6067 2014-07-28 Eli Zaretskii <eliz@gnu.org>
6068
6069 * window.el (window--pixel-to-total): Use FRAME's root window, not
6070 that of the selected frame. (Bug#18112, Bug#16674)
6071
6072 2014-07-28 Andreas Schwab <schwab@linux-m68k.org>
6073
6074 * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
6075 (Bug#18117)
6076
6077 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6078
6079 * progmodes/python.el (inferior-python-mode): Doc fix.
6080
6081 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
6082
6083 * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
6084 not a character, ignore it instead of raising an error.
6085
6086 * calendar/todo-mode.el: Fix handling of marked items and make
6087 minor code improvements.
6088 (todo-edit-item): If there are marked items, ensure user can only
6089 invoke editing commands that work with marked items.
6090 (todo-edit-item--text): When there are marked items, make it a
6091 noop if invoked with point not on an item; otherwise, ensure it
6092 applies only to item at point.
6093 (todo-item-undone): If there are marked not-done items, return
6094 point to its original position before signaling user error.
6095 (todo--user-error-if-marked-done-item): New function.
6096 (todo-edit-item--header, todo-edit-item--diary-inclusion)
6097 (todo-item-done): Use it.
6098
6099 2014-07-28 Glenn Morris <rgm@gnu.org>
6100
6101 * files.el (toggle-read-only): Re-add basic doc-string.
6102 * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
6103
6104 * progmodes/prolog.el (prolog-mode-keybindings-edit):
6105 Replace missing `switch-to-prolog' with `run-prolog'.
6106 (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
6107
6108 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
6109
6110 * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
6111 of file-wide setting when changing category-wide setting.
6112
6113 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
6114
6115 * doc-view.el (doc-view-open-text): Don't require that the
6116 document is saved in a file (e.g., email attachment).
6117
6118 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6119
6120 Parse completion input in a iPython friendly way. (Bug#18084)
6121 * progmodes/python.el
6122 (python-shell-completion-at-point): Rename from
6123 python-shell-completion-complete-at-point.
6124 (inferior-python-mode): Use it.
6125 (python-completion-at-point): Rename from
6126 python-completion-complete-at-point. Parse input up to first
6127 backward occurrence of whitespace, open-paren, close-paren or
6128 string delimiter.
6129 (python-mode): Use it.
6130
6131 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6132
6133 * progmodes/python.el
6134 (python-shell-with-shell-buffer): New macro.
6135 (python-shell-font-lock-get-or-create-buffer)
6136 (python-shell-font-lock-kill-buffer)
6137 (python-shell-font-lock-with-font-lock-buffer)
6138 (python-shell-font-lock-cleanup-buffer)
6139 (python-shell-font-lock-toggle): Use it.
6140 (python-shell-font-lock-turn-on)
6141 (python-shell-font-lock-turn-off): Use it. Make command.
6142
6143 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6144
6145 Grab all Python process output before inferior-python-mode hooks.
6146 * progmodes/python.el (inferior-python-mode):
6147 Call accept-process-output and sit-for to ensure all output for process
6148 has been received before running hooks.
6149 (python-shell-internal-get-or-create-process):
6150 Cleanup accept-process-output and sit-for calls.
6151
6152 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
6153
6154 More robust shell startup and code setup.
6155 * progmodes/python.el (python-shell-make-comint):
6156 Remove accept-process-output call.
6157 (python-shell-get-buffer): Return current buffer if major-mode is
6158 inferior-python-mode.
6159 (python-shell-get-or-create-process): Use it.
6160 (python-shell-send-setup-code): Send all setup code in one string,
6161 output success message and accept-process-output.
6162
6163 2014-07-27 Eli Zaretskii <eliz@gnu.org>
6164
6165 * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll):
6166 Add rudimentary support for bidirectional text.
6167
6168 2014-07-27 Martin Rudalics <rudalics@gmx.at>
6169
6170 * frame.el (frame-notice-user-settings): Rewrite using
6171 frame-initial-frame-tool-bar-height.
6172 * menu-bar.el (menu-bar-horizontal-scroll-bar)
6173 (menu-bar-no-horizontal-scroll-bar): New functions.
6174 (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
6175 scroll bars.
6176 * scroll-bar.el (scroll-bar-lines)
6177 (set-horizontal-scroll-bar-mode)
6178 (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
6179 (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
6180 (scroll-bar-toolkit-horizontal-scroll): New functions.
6181 (horizontal-scroll-bar-mode)
6182 (previous-horizontal-scroll-bar-mode)
6183 (horizontal-scroll-bar-mode-explicit): New variables.
6184 (horizontal-scroll-bar-mode): New option.
6185 (toggle-horizontal-scroll-bar): Do something.
6186 (top-level): Bind horizontal-scroll-bar mouse-1.
6187 * startup.el (tool-bar-originally-present): Remove variable.
6188 (command-line): Don't set tool-bar-originally-present.
6189 * window.el (window-min-height): Update doc-string.
6190 (window--dump-frame): Dump horizontal scroll bar values.
6191 (window--min-size-1): Handle minibuffer window separately.
6192 Count in margins and horizontal scroll bar. Return safe value
6193 iff IGNORE equals 'safe.
6194 (frame-windows-min-size): New function (used by frame resizing
6195 routines).
6196 (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
6197 scroll bars.
6198 (window--sanitize-window-sizes): New function.
6199 (window-split-min-size): Remove.
6200 (split-window): Count divider-width. Don't use
6201 `window-split-min-size' any more. Reword error messages.
6202 Sanitize windows sizes after splitting.
6203
6204 2014-07-27 Thien-Thi Nguyen <ttn@gnu.org>
6205
6206 Use `defvar-local' more.
6207 * progmodes/hideshow.el
6208 (hs-c-start-regexp, hs-block-start-regexp)
6209 (hs-block-start-mdata-select, hs-block-end-regexp)
6210 (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
6211 remove corresponding `make-variable-buffer-local' top-level calls.
6212
6213 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
6214
6215 Cleanup error signals. (Bug#18067)
6216 * progmodes/python.el
6217 (python-indent-shift-left): Use user-error instead.
6218 (python-shell-prompt-detect): Use lwarn with python group.
6219 (python-completion-complete-at-point)
6220 (python-eldoc--get-doc-at-point): Don't signal error.
6221
6222 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
6223
6224 Support for packages in Python shell. (Bug#13570)
6225 * progmodes/python.el (python-shell--package-depth): New var.
6226 (python-shell-package-enable): New command.
6227 (python-util-list-directories, python-util-list-files)
6228 (python-util-list-packages): New functions.
6229
6230 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
6231
6232 Faster comint output. (Bug#16875)
6233 * progmodes/python.el:
6234 (python-comint-output-filter-function): Make obsolete.
6235 (python-comint-postoutput-scroll-to-bottom): New function.
6236 (inferior-python-mode): Set comint-output-filter-functions to a
6237 minimum.
6238
6239 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
6240
6241 * progmodes/python.el (python-shell-font-lock-post-command-hook):
6242 Safeguard current point and undo history.
6243
6244 2014-07-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
6245
6246 Robust shell syntax highlighting. (Bug#18084, Bug#16875)
6247 * progmodes/python.el:
6248 (python-shell-prompt-input-regexps): Add iPython block prompt.
6249 (python-shell-output-syntax-table): Delete var.
6250 (python-shell-font-lock-with-font-lock-buffer): New macro.
6251 (python-shell-font-lock-get-or-create-buffer)
6252 (python-shell-font-lock-kill-buffer)
6253 (python-shell-font-lock-cleanup-buffer)
6254 (python-shell-font-lock-post-command-hook)
6255 (python-shell-font-lock-turn-off): New functions.
6256 (python-shell-font-lock-turn-on): New function.
6257 (inferior-python-mode): Use it.
6258 (python-shell-font-lock-toggle): New command.
6259 (python-shell-font-lock-enable): Rename from
6260 python-shell-enable-font-lock.
6261 (run-python-internal): Use it.
6262 (python-shell-font-lock-comint-output-filter-function): New function.
6263 (python-shell-comint-end-of-output-p): New function.
6264 (python-shell-output-filter): Use it.
6265 (python-util-comint-last-prompt): New function.
6266 (python-util-text-properties-replace-name): New function.
6267
6268 2014-07-25 Glenn Morris <rgm@gnu.org>
6269
6270 * vc/ediff-init.el (ediff-toggle-read-only-function):
6271 * vc/ediff-util.el (ediff-toggle-read-only):
6272 Replace obsolete toggle-read-only with read-only-mode.
6273
6274 2014-07-24 Michael Albinus <michael.albinus@gmx.de>
6275
6276 * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
6277 with `save-match-data'. (Bug#18095)
6278
6279 2014-07-21 Vincent Belaïche <vincentb1@users.sourceforge.net>
6280
6281 * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
6282 order to ensure that row and col are lexically bound inside the
6283 evaluated sexp.
6284
6285 2014-07-21 Glenn Morris <rgm@gnu.org>
6286
6287 * progmodes/hideif.el (hide-ifdef-mode-submap):
6288 Also substitute read-only-mode.
6289 * bindings.el (mode-line-toggle-read-only):
6290 * bs.el (bs-toggle-readonly):
6291 * buff-menu.el (Buffer-menu-toggle-read-only):
6292 * dired.el (dired-toggle-read-only):
6293 * files.el (view-read-only, find-file-read-only)
6294 (find-file-read-only-other-window)
6295 (find-file-read-only-other-frame):
6296 * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
6297 Doc fixes re toggle-read-only.
6298
6299 2014-07-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
6300
6301 * progmodes/python.el: Add comment about pipe buffering and
6302 solutions for missing/delayed output in inferior Python shells.
6303 (Bug#17304)
6304
6305 * progmodes/python.el (python-mode): Don't set
6306 mode-require-final-newline. (Bug#17990)
6307
6308 Make python.el work with IPython automatically. (Bug#15510)
6309 * progmodes/python.el:
6310 (python-shell-completion-setup-code): New value supporting iPython.
6311 (python-shell-completion-string-code): New value supporting iPython.
6312 (python-shell-completion-get-completions): Use them.
6313 (python-shell-completion-module-string-code): Make obsolete.
6314 (python-shell-prompt-input-regexps)
6315 (python-shell-prompt-output-regexps): Add safeguard for ipdb.
6316 (python-shell-output-filter): Fix comment typo.
6317
6318 Fix Python shell prompts detection for remote hosts.
6319 * progmodes/python.el (python-shell-prompt-detect):
6320 Replace call-process with process-file and make it more robust.
6321
6322 Autodetect Python shell prompts. (Bug#17370)
6323 * progmodes/python.el:
6324 (python-shell-interpreter-interactive-arg)
6325 (python-shell-prompt-detect-enabled)
6326 (python-shell-prompt-detect-failure-warning)
6327 (python-shell-prompt-input-regexps)
6328 (python-shell-prompt-output-regexps): New vars.
6329 (python-shell-prompt-calculated-input-regexp)
6330 (python-shell-prompt-calculated-output-regexp): New vars.
6331 (python-shell-get-process-name)
6332 (python-shell-internal-get-process-name)
6333 (python-shell-output-filter)
6334 (python-shell-completion-get-completions): Use them.
6335 (python-shell-prompt-detect)
6336 (python-shell-prompt-validate-regexps): New functions.
6337 (python-shell-prompt-set-calculated-regexps): New function.
6338 (inferior-python-mode): Use it. Also honor overriden
6339 python-shell-interpreter and python-shell-interpreter-args.
6340 (python-shell-make-comint): Honor overriden
6341 python-shell-interpreter and python-shell-interpreter-args.
6342 (python-shell-get-or-create-process): Make it testable by allowing
6343 to call run-python non-interactively.
6344 (python-util-valid-regexp-p): New function.
6345 (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
6346 (python-shell-prompt-output-regexp)
6347 (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
6348
6349 2014-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * emacs-lisp/smie.el (smie-config--guess-1): Split from
6352 smie-config--guess.
6353 (smie-config--guess): Use it.
6354
6355 * emacs-lisp/edebug.el: Use nadvice.
6356 (edebug-original-read): Remove.
6357 (edebug--read): Rename from edebug-read and add `orig' arg.
6358 (edebug-uninstall-read-eval-functions)
6359 (edebug-install-read-eval-functions): Use nadvice.
6360 (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
6361 (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
6362 (edebug-read-string, edebug-read-function): Use just `read'.
6363 (edebug-original-debug-on-entry): Remove.
6364 (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
6365 `orig' arg.
6366 (debug-on-entry): Override with nadvice.
6367
6368 * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
6369 it also makes sense to bind it to a non-mouse event.
6370
6371 * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
6372
6373 2014-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
6374
6375 * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
6376 (bug#18015).
6377
6378 * rect.el (rectangle--string-preview): Don't assume there
6379 a non-nil default (bug#17984).
6380
6381 2014-07-16 Glenn Morris <rgm@gnu.org>
6382
6383 * desktop.el (after-init-hook): Disable startup frame restoration
6384 in non-graphical situations. (Bug#17693)
6385
6386 * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
6387 if it was "empty", or used for a different set of files. (Bug#17884)
6388
6389 2014-07-16 Eli Zaretskii <eliz@gnu.org>
6390
6391 * bindings.el (mode-line-remote): If default-directory is not a
6392 string, don't call file-remote-p on it; instead state in the
6393 help-echo that it is nil. (Bug#17986)
6394
6395 2014-07-14 Daniel Colascione <dancol@dancol.org>
6396
6397 * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
6398 to `macroexpand-all'
6399
6400 * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
6401 Use `macroexpand-all' instead of `cl-macroexpand-all'.
6402
6403 2014-07-12 Paul Eggert <eggert@cs.ucla.edu>
6404
6405 Fix bug: C-x v v discarded existing log message (Bug#17884).
6406 * vc/vc-dispatcher.el (vc-log-edit):
6407 Don't clobber an already-existing log message.
6408
6409 2014-07-12 Glenn Morris <rgm@gnu.org>
6410
6411 * vc/log-edit.el (log-edit-changelog-entries):
6412 Check for a visited-but-never-saved ChangeLog.
6413
6414 2014-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
6415
6416 * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
6417 a non-existing file (bug#17970).
6418
6419 * faces.el (face-name): Undo last change.
6420 (x-resolve-font-name): Don't call face-name (bug#17956).
6421
6422 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6423
6424 Fix dedenters and electric colon handling. (Bug#15163)
6425 * progmodes/python.el
6426 (python-rx-constituents): Add dedenter and block-ender.
6427 (python-indent-dedenters, python-indent-block-enders): Delete.
6428 (python-indent-context): Return new case for dedenter-statement.
6429 (python-indent-calculate-indentation): Handle new case.
6430 (python-indent-calculate-levels): Fix levels calculation for
6431 dedenter statements.
6432 (python-indent-post-self-insert-function): Fix colon handling.
6433 (python-info-dedenter-opening-block-message): New function.
6434 (python-indent-line): Use it.
6435 (python-info-closing-block)
6436 (python-info-closing-block-message): Remove.
6437 (python-info-dedenter-opening-block-position)
6438 (python-info-dedenter-opening-block-positions)
6439 (python-info-dedenter-statement-p): New functions.
6440
6441 2014-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6442
6443 * files.el (out-of-memory-warning-percentage): New defcustom.
6444 (warn-maybe-out-of-memory): Use it.
6445
6446 2014-07-11 Michael Albinus <michael.albinus@gmx.de>
6447
6448 * subr.el (read-passwd): Use `read-hide-char' if non-nil. Bind it
6449 when calling `read-string'. (Bug#17839)
6450
6451 2014-07-10 Eli Zaretskii <eliz@gnu.org>
6452
6453 * files.el (warn-maybe-out-of-memory): Fix the wording of the
6454 warning.
6455
6456 2014-07-10 Dmitry Antipov <dmantipov@yandex.ru>
6457
6458 * files.el (warn-maybe-out-of-memory): New function.
6459 (find-file-noselect): Use it.
6460
6461 2014-07-09 Sam Steingold <sds@gnu.org>
6462
6463 * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
6464 `constant' like `bless', `return' &c
6465
6466 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
6467
6468 * rect.el (apply-on-rectangle): Check forward-line really moved to the
6469 next line.
6470
6471 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
6472
6473 * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
6474 the middle of a line (bug#17896).
6475
6476 2014-07-09 Juri Linkov <juri@jurta.org>
6477
6478 * startup.el (command-line): Append displaying the warning about
6479 the errors in the init file to the end of `after-init-hook'.
6480 (Bug#17927)
6481
6482 * faces.el (face-name): Return input arg `face' as-is
6483 when it's not a symbol.
6484 (x-resolve-font-name): Don't check if the face is a symbol.
6485 (Bug#17956)
6486
6487 * facemenu.el (list-colors-print): In help-echo format use %.2f
6488 instead of %d because now HSV values are floating-point components
6489 between 0.0 and 1.0.
6490
6491 2014-07-09 Glenn Morris <rgm@gnu.org>
6492
6493 * emulation/cua-rect.el (cua--activate-rectangle):
6494 Avoid setting cua--rectangle to nil. (Bug#17877)
6495
6496 2014-07-09 Stephen Berman <stephen.berman@gmx.net>
6497
6498 * calendar/todo-mode.el: Fix wrong-type-argument error when
6499 marking multiple consecutive items.
6500 (todo-toggle-mark-item): Don't try to mark the empty lines at the
6501 end of the todo and done items sections. Note in doc string that
6502 items marked by passing a numeric prefix argument can include the
6503 last todo and first done items.
6504 (todo-mark-category): Don't try to mark the empty line between the
6505 todo and done items sections.
6506
6507 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
6508
6509 * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
6510 proper Lisp quoting (bug#17934).
6511
6512 * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
6513 require-final-newline since prog-mode already took care of it (bug#17947).
6514
6515 2014-07-09 Stephen Berman <stephen.berman@gmx.net>
6516
6517 * calendar/todo-mode.el: Fix two bugs. Shorten Commentary and
6518 refer to the Todo mode Info manual. Update the comment on
6519 requiring cl-lib.
6520 (todo-find-filtered-items-file): Add todo-prefix overlays.
6521 (todo-filter-items): Reorder a let-bound variable to avoid a
6522 wrong-type-argument error on canceling the file choice dialog.
6523
6524 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
6525
6526 * progmodes/octave.el (inferior-octave-mode):
6527 Set comint-input-ring-size to a number (bug#17912).
6528
6529 2014-07-09 Juri Linkov <juri@jurta.org>
6530
6531 * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
6532 and `isearch-mode' associated with nil. (Bug#17849)
6533
6534 2014-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
6535
6536 * linum.el (linum--face-height): New function (bug#17813).
6537 (linum-update-window): Use it to adjust margin to linum's width.
6538
6539 * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
6540 * eshell/em-smart.el (eshell-smart-scroll-window):
6541 Use with-selected-window.
6542
6543 * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
6544 Remove also pointless window&mark manipulation.
6545
6546 * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
6547 (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
6548 (perl-continuation-line-p): Don't skip over anything else than labels.
6549 Return the previous char.
6550 (perl-calculate-indent): Use syntax-ppss instead of parse-start
6551 and update callers accordingly. For continuation lines, check the
6552 the case of array hashes.
6553 (perl-backward-to-noncomment): Make it non-interactive.
6554 (perl-backward-to-start-of-continued-exp): Rewrite.
6555
6556 2014-07-08 Sam Steingold <sds@gnu.org>
6557
6558 * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
6559 New user commands.
6560
6561 2014-07-08 Juri Linkov <juri@jurta.org>
6562
6563 * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
6564 (vc-annotate-color-map): Use less saturated colors (20%) for
6565 background-mode.
6566 (vc-annotate-very-old-color): Add default value for background-mode.
6567 (vc-annotate-background): Set default value to nil since now text on
6568 the default backgrounds should be legible in light and dark modes.
6569 (vc-annotate-lines): Use `vc-annotate-background-mode'. Doc fix.
6570 (Bug#17808)
6571
6572 2014-07-08 Juri Linkov <juri@jurta.org>
6573
6574 * simple.el (transpose-chars): Don't move point into read-only area.
6575 (Bug#17829)
6576
6577 2014-07-08 Juri Linkov <juri@jurta.org>
6578
6579 * window.el (with-displayed-buffer-window): New macro.
6580 (with-temp-buffer-window, with-current-buffer-window):
6581 Use `macroexp-let2' to evaluate and bind variables
6582 in the same order as macro arguments.
6583 (display-buffer--action-function-custom-type):
6584 Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
6585
6586 * minibuffer.el (minibuffer-completion-help): Replace
6587 `with-output-to-temp-buffer' with `with-displayed-buffer-window'
6588 with actions that display *Completions* at-bottom when called
6589 from the minibuffer, or below-selected in a normal buffer.
6590 Associate `window-height' with `fit-window-to-buffer'.
6591 Let-bind `pop-up-windows' to nil.
6592
6593 * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
6594 instead of `with-current-buffer-window'. (Bug#17809)
6595
6596 2014-07-07 Luke Lee <luke.yx.lee@gmail.com>
6597
6598 * progmodes/hideif.el (hide-ifdef-env): Change to global.
6599 (hide-ifdef-env-backup): New variable.
6600 (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
6601 New customizable variables.
6602 (hif-clear-all-ifdef-defined): New defun.
6603 (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
6604 (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
6605 (hif-tokenize): Fix for MS-DOS/Win EOL style.
6606 (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
6607 Fix bug to hide the correct #elif region(s).
6608 (hif-range-elif): New defun.
6609 (hif-recurse-level): New var.
6610 (hif-evaluate-region, hif-evaluate-macro): New defun.
6611 (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
6612 fully hidden.
6613 (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
6614 Better interaction.
6615
6616 2014-07-04 Michael Albinus <michael.albinus@gmx.de>
6617
6618 * net/dbus.el (dbus-peer-handler): New defun.
6619 (dbus-register-service): Register it. (Bug#17858)
6620 (dbus-managed-objects-handler): Fix docstring.
6621
6622 2014-07-04 Phil Sainty <psainty@orcon.net.nz>
6623
6624 * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
6625 (narrow-to-defun): New arg include-comments, defaulting to it
6626 (bug#16328).
6627
6628 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6629
6630 * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
6631 different calling convention to rectangle--unhighlight-for-redisplay.
6632
6633 2014-07-03 Michael Albinus <michael.albinus@gmx.de>
6634
6635 * net/tramp.el (tramp-call-process): Handle error strings.
6636
6637 * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
6638
6639 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
6640 (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
6641
6642 * net/trampver.el: Update release number.
6643
6644 2014-07-03 Juri Linkov <juri@jurta.org>
6645
6646 * desktop.el (desktop-save): Rename arg `auto-save' to
6647 `only-if-changed'. Doc fix. (Bug#17873)
6648
6649 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6650
6651 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
6652 Use insert-for-yank (bug#17271).
6653
6654 2014-07-03 Leo Liu <sdl.web@gmail.com>
6655
6656 * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
6657 Support lexical-binding.
6658
6659 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6660
6661 * vc/log-edit.el (log-edit-goto-eoh): New function.
6662 (log-edit--match-first-line): Use it (bug#17861).
6663
6664 2014-07-03 Glenn Morris <rgm@gnu.org>
6665
6666 * vc/log-edit.el (log-edit-hook): Add missing :version.
6667
6668 2014-07-03 Fabián Ezequiel Gallina <fgallina@gnu.org>
6669
6670 * progmodes/python.el (python-indent-post-self-insert-function):
6671 Enhancements to electric indentation behavior inside
6672 parens. (Bug#17658)
6673
6674 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6675
6676 * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
6677 buffer-invisibility-spec (bug#17867).
6678
6679 2014-07-03 Andreas Schwab <schwab@linux-m68k.org>
6680
6681 * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
6682 pass "-a".
6683
6684 2014-07-03 Glenn Morris <rgm@gnu.org>
6685
6686 * cus-edit.el (help):
6687 * finder.el (finder-known-keywords):
6688 * help.el (help-for-help-internal):
6689 * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
6690 (ediff-redraw-registry-buffer):
6691 * vc/ediff-ptch.el (ediff-patch-file-internal):
6692 Doc fixes re "online" help. (Bug#17803)
6693
6694 * progmodes/idlwave.el (idlwave): Update url-link for custom group.
6695 (idlwave-mode): Doc URL update.
6696
6697 2014-07-01 Juri Linkov <juri@jurta.org>
6698
6699 * man.el: Display man pages immediately and use process-filter
6700 to format them asynchronously.
6701 (Man-width): Doc fix.
6702 (man): Doc fix.
6703 (Man-start-calling): Use `with-selected-window' to get
6704 `frame-width' and `window-width'.
6705 (Man-getpage-in-background): Call `Man-notify-when-ready'
6706 immediately after creating a new buffer. Call `Man-mode' and set
6707 `mode-line-process' in the created buffer. Set process-filter to
6708 `Man-bgproc-filter' in start-process branch. In call-process branch
6709 call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
6710 Use `Man-start-calling' inside `with-current-buffer'.
6711 (Man-fontify-manpage): Don't print messages. Fix boundary condition.
6712 (Man-cleanup-manpage): Don't print messages.
6713 (Man-bgproc-filter): New function.
6714 (Man-bgproc-sentinel): Add `save-excursion' to keep point when
6715 user moved it during asynchronous formatting. Move calls of
6716 `Man-fontify-manpage' and `Man-cleanup-manpage' to
6717 `Man-bgproc-filter'. Move the call of `Man-mode' to
6718 `Man-getpage-in-background'. Use `quit-restore-window'
6719 instead of `kill-buffer'. Use `message' instead of `error'
6720 because errors are caught by process sentinel.
6721 (Man-mode): Move calls of `Man-build-page-list',
6722 `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
6723 `Man-bgproc-sentinel'. Doc fix. (Bug#2588, bug#5054, bug#9084, bug#17831)
6724
6725 * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
6726 for the message about the man page cleaned up.
6727
6728 2014-07-01 Mario Lang <mlang@delysid.org>
6729
6730 * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
6731 cosutomization option `gnutls-verify-error'.
6732
6733 2014-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
6734
6735 * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
6736 Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
6737
6738 * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
6739 (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
6740 is suspended (bug#17857).
6741
6742 2014-07-01 Michael Albinus <michael.albinus@gmx.de>
6743
6744 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
6745 Prefer utf-8 coding. (Bug#17859)
6746
6747 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
6748
6749 * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
6750 for `reverse'.
6751
6752 2014-06-30 Glenn Morris <rgm@gnu.org>
6753
6754 * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
6755 (autoload-ensure-default-file): Maybe make existing output writable.
6756 * Makefile.in (AUTOGEN_VCS): Remove.
6757 (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
6758
6759 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
6760
6761 * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
6762
6763 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
6764
6765 New if-let, when-let, thread-first and thread-last macros.
6766
6767 * emacs-lisp/subr-x.el
6768 (internal--listify, internal--check-binding)
6769 (internal--build-binding-value-form, internal--build-binding)
6770 (internal--build-bindings): New functions.
6771 (internal--thread-argument, thread-first, thread-last)
6772 (if-let, when-let): New macros.
6773
6774 2014-06-30 Grégoire Jadi <daimrod@gmail.com>
6775
6776 * net/rcirc.el (rcirc-buffer-process): Restore previous
6777 behaviour. (Bug#17772)
6778
6779 2014-06-29 Alan Mackenzie <acm@muc.de>
6780
6781 Don't call c-parse-state when c++-template-syntax-table is active.
6782 * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
6783 (c-guess-basic-syntax CASE 5D.3): Rearrange so that
6784 c-syntactic-skip-backwards isn't called with the pertinent syntax table.
6785
6786 2014-06-28 Stephen Berman <stephen.berman@gmx.net>
6787
6788 * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
6789 account for file-wide setting of todo-top-priorities-overrides.
6790 Make code a bit cleaner.
6791
6792 2014-06-28 Glenn Morris <rgm@gnu.org>
6793
6794 * net/eww.el (eww-mode) <eww-current-title>: Make local. (Bug#17860)
6795
6796 2014-06-28 Stephen Berman <stephen.berman@gmx.net>
6797
6798 * calendar/todo-mode.el (todo-prefix-overlays): If there is no
6799 category-wide setting of todo-top-priorities-overrides, check for
6800 a file-wide setting and fontify accordingly.
6801
6802 2014-06-28 Glenn Morris <rgm@gnu.org>
6803
6804 * subr.el (read-passwd): Warn about batch mode. (Bug#17839)
6805
6806 2014-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6807
6808 * progmodes/hideif.el: Use lexical-binding. Fix up cl-lib usage.
6809
6810 2014-06-28 K. Handa <handa@gnu.org>
6811
6812 Fix Bug#17739.
6813
6814 * composite.el: Setup composition-function-table for dotted circle.
6815 (compose-gstring-for-dotted-circle): New function.
6816
6817 * international/characters.el: Add category "^" to all
6818 non-spacing characters.
6819
6820 2014-06-28 Glenn Morris <rgm@gnu.org>
6821
6822 * Makefile.in (doit): Remove force rule.
6823 (custom-deps, finder-data, autoloads, update-subdirs)
6824 (compile-one-process): PHONY targets do not need force rules.
6825
6826 * Makefile.in (compile-main, compile, compile-always):
6827 No need to explicitly pass variables to ourself in recursive calls.
6828
6829 2014-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6830
6831 * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
6832
6833 2014-06-26 Glenn Morris <rgm@gnu.org>
6834
6835 * Makefile.in (update-authors): Update for moved authors.el.
6836
6837 2014-06-26 Leo Liu <sdl.web@gmail.com>
6838
6839 * skeleton.el (skeleton-end-hook): Default to nil and move the
6840 work to skeleton-insert. (Bug#17850)
6841
6842 2014-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6843
6844 * calc/calc-alg.el (math-beforep):
6845 * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
6846 Simplify because string-lessp can accept symbols as args.
6847
6848 2014-06-26 Daiki Ueno <ueno@gnu.org>
6849
6850 * emacs-lisp/package.el (package--check-signature):
6851 If package-check-signature is allow-unsigned, don't signal error when
6852 we can't verify signature because of missing public key
6853 (bug#17625).
6854
6855 2014-06-26 Glenn Morris <rgm@gnu.org>
6856
6857 * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
6858 Remove outdated declaration.
6859
6860 * emacs-lisp/authors.el (authors-valid-file-names)
6861 (authors-renamed-files-alist): Additions.
6862
6863 2014-06-26 Leo Liu <sdl.web@gmail.com>
6864
6865 * textmodes/picture.el (picture-set-tab-stops):
6866 * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
6867 (ruler-mode-ruler): Fix to work with nil tab-stop-list.
6868
6869 * progmodes/asm-mode.el (asm-calculate-indentation):
6870 Use indent-next-tab-stop.
6871
6872 * indent.el (indent-accumulate-tab-stops): New function.
6873
6874 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6875
6876 * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
6877 (package-desc-status): Obey it.
6878
6879 2014-06-26 Stephen Berman <stephen.berman@gmx.net>
6880
6881 * calendar/todo-mode.el: Fix two bugs.
6882 (todo-insert-item--basic): If user cancels item insertion to
6883 another category before setting priority, show original category
6884 whether it is in the same or a different file.
6885 (todo-set-item-priority): After selecting category, instead of
6886 moving point to top, which extends an active region, restore it.
6887
6888 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * help-fns.el (describe-function-1): Check file-name is a string before
6891 calling help-fns--autoloaded-p (bug#17564).
6892
6893 2014-06-26 Juri Linkov <juri@jurta.org>
6894
6895 * desktop.el (desktop-auto-save-enable)
6896 (desktop-auto-save-disable): New functions.
6897 (desktop-save-mode, desktop-auto-save-timeout): Use them.
6898 (desktop-read): Disable the autosave before loading the desktop,
6899 and enable afterwards. (Bug#17351)
6900
6901 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6902
6903 Fix some indentation problem with \; and pipes (bug#17842).
6904 * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
6905 (sh-smie--default-forward-token, sh-smie--default-backward-token):
6906 New functions.
6907 (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
6908 (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
6909 (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
6910
6911 2014-06-26 Glenn Morris <rgm@gnu.org>
6912
6913 * emacs-lisp/find-func.el (find-function-C-source-directory):
6914 Use file-accessible-directory-p.
6915
6916 * ps-samp.el: Make it slightly less awful.
6917 (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
6918 (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
6919 Only set local values.
6920 (ps-article-subject, ps-article-author): Use standard functions
6921 like mail-fetch-field.
6922 (ps-info-file, ps-info-node): Use match-string.
6923 (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
6924 (ps-samp-ps-setup): ... new function.
6925
6926 * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
6927 Optimize away code unneeded on any modern Emacs.
6928
6929 * emacs-lisp/authors.el: Move to ../admin.
6930
6931 * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
6932
6933 2014-06-26 Luke Lee <luke.yx.lee@gmail.com>
6934
6935 * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
6936 (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
6937 performance enhancements.
6938 (hif-parse-if-exp): Rename to `hif-parse-exp'. Enhance for macro
6939 expansion.
6940 (hif-factor, hif-string-concatenation, intern-safe): Support string
6941 concatenation and argumented macro expansion.
6942 (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
6943 (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
6944 (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
6945 (hif-canonicalize-tokens, hif-place-macro-invocation)
6946 (hif-parse-macro-arglist): Mostly new functions for supporting
6947 argumented macro expansion.
6948 (hif-string-concatenation, hif-stringify, hif-token-concat)
6949 (hif-token-stringification, hif-token-concatenation):
6950 Stringification and concatenation.
6951 (hif-find-next-relevant): Fix comments.
6952 (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
6953 some cases involving #elif.
6954 (hif-find-define, hif-add-new-defines): New functions for automatically
6955 scanning of defined symbols.
6956 (hide-ifdef-guts): Fix for defined symbol auto scanning.
6957 (hide-ifdef-undef): Fix behavior to match CPP.
6958
6959 2014-06-25 Glenn Morris <rgm@gnu.org>
6960
6961 * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
6962 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
6963 ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
6964 files. They are not relevant to the original issue (bug#1004),
6965 and cause unnecessary recompilation (bug#2151).
6966
6967 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
6968
6969 * play/landmark.el: Use lexical-binding and avoid `intangible'.
6970 (landmark--last-pos): New var.
6971 (landmark--intangible-chars): New const.
6972 (landmark--intangible): New function.
6973 (landmark-mode, landmark-move): Use it.
6974 (landmark-mode): Remove properties.
6975 (landmark-plot-square, landmark-point-square, landmark-goto-xy)
6976 (landmark-cross-qtuple):
6977 Don't worry about `intangible' any more.
6978 (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
6979 (landmark-init-display): Don't set `intangible' and `point-entered'.
6980 (square): Remove. Inline it instead.
6981 (landmark--distance): Rename from `distance'.
6982 (landmark-calc-distance-of-robot-from): Rename from
6983 calc-distance-of-robot-from.
6984 (landmark-calc-smell-internal): Rename from calc-smell-internal.
6985
6986 2014-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6987
6988 * files.el (dir-locals-find-file, file-relative-name):
6989 * info.el (Info-complete-menu-item):
6990 * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
6991 to compare-strings to avoid out-of-range errors.
6992 * subr.el (string-prefix-p): Adjust to match strict range
6993 checking in compare-strings.
6994
6995 2014-06-24 Leonard Randall <leonard.a.randall@gmail.com> (tiny change)
6996
6997 * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
6998 for comment lines non-greedy and stopping at newlines to fix stack
6999 overflows with large files.
7000
7001 2014-06-24 Eli Barzilay <eli@barzilay.org>
7002
7003 * calculator.el (calculator-last-input): Drop 'ascii-character property
7004 lookup.
7005
7006 2014-06-24 Leo Liu <sdl.web@gmail.com>
7007
7008 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
7009 tab-stop-list to nil. (Bug#16381)
7010
7011 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
7012 (indent-rigidly-left-to-tab-stop)
7013 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
7014 (move-to-tab-stop): Change callers.
7015
7016 2014-06-24 Eli Zaretskii <eliz@gnu.org>
7017
7018 * skeleton.el (skeleton-insert): Yet another fix of the doc string
7019 wrt behavior of \n as the first/last element of a skeleton.
7020
7021 2014-06-24 Michael Albinus <michael.albinus@gmx.de>
7022
7023 * net/tramp-adb.el (tramp-adb-handle-process-file):
7024 * net/tramp-sh.el (tramp-sh-handle-process-file):
7025 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
7026 the output buffer when DISPLAY is non-nil. (Bug#17815)
7027
7028 2014-06-24 Glenn Morris <rgm@gnu.org>
7029
7030 * play/landmark.el (landmark-move-down, landmark-move-up):
7031 Fix 2007-10-20 change - preserve horizontal position.
7032
7033 2014-06-23 Sam Steingold <sds@gnu.org>
7034
7035 * simple.el (kill-append): Remove undo boundary depending on ...
7036 (kill-append-merge-undo): New user option.
7037
7038 2014-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
7039
7040 * simple.el (handle-shift-selection, exchange-point-and-mark)
7041 (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
7042 (transient-mark-mode): Use&set the global value.
7043 * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
7044 * emulation/edt.el (edt-emulation-off): Save&restore the global
7045 transient-mark-mode setting.
7046 * obsolete/pc-select.el (pc-selection-mode): Use the
7047 transient-mark-mode function.
7048
7049 2014-06-23 Eli Zaretskii <eliz@gnu.org>
7050
7051 * international/fontset.el (script-representative-chars):
7052 Add representative characters for scripts added in Unicode 7.0.
7053 (otf-script-alist): Synchronize with the latest registry of OTF
7054 script tags.
7055
7056 * international/characters.el (char-script-table): Update for
7057 scripts added and codepoint ranges changed in Unicode 7.0.
7058
7059 2014-06-23 Eli Barzilay <eli@barzilay.org>
7060
7061 * calculator.el (calculator-standard-displayer): Fix bug in use of
7062 `calculator-groupize-number'.
7063 (calculator-funcall): Fix broken `cl-flet' use by moving it into the
7064 `eval' code, so it works in v24.3.1 too.
7065 (calculator-last-input): Comment to clarify purpose.
7066
7067 2014-06-22 Mario Lang <mlang@delysid.org>
7068
7069 * textmodes/rst.el (rst-comment-region): From from -> from.
7070
7071 * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
7072
7073 2013-06-22 Dmitry Antipov <dmantipov@yandex.ru>
7074
7075 * electric.el (electric-layout-post-self-insert-function):
7076 * emacs-lisp/ert.el (ert--insert-infos):
7077 * obsolete/vi.el (vi-set-mark):
7078 * term.el (term-handle-scroll):
7079 * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
7080 * wid-edit.el (widget-editable-list-value-create):
7081 Prefer point-marker to copy-marker of point.
7082
7083 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
7084
7085 Fix completion retrieval parsing (bug#17209).
7086 * progmodes/python.el (python-mode):
7087 (python-util-strip-string): New function.
7088 (python-shell-completion-get-completions): Use it.
7089
7090 2014-06-21 Eli Zaretskii <eliz@gnu.org>
7091
7092 * skeleton.el (skeleton-insert): Fix last change.
7093
7094 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
7095
7096 Enhancements for outline integration (bug#17796).
7097 * progmodes/python.el (python-mode): Properly set
7098 outline-heading-end-regexp so that comments after colons for
7099 defuns are supported.
7100
7101 2014-06-21 Eli Zaretskii <eliz@gnu.org>
7102
7103 * skeleton.el (skeleton-insert): Doc fix.
7104
7105 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7106
7107 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
7108 (smie-config-guess): Use smie-config-local so the rules are obeyed
7109 (bug#17818).
7110
7111 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
7112 since it's already done inside the loop (bug#17819).
7113
7114 2014-06-21 Martin Rudalics <rudalics@gmx.at>
7115
7116 * mouse.el (mouse-drag-line): Re-remove code initially removed
7117 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
7118 (Bug#17819).
7119
7120 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7121
7122 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
7123 align with the surrounding parent (bug#17721).
7124
7125 2014-06-21 Eli Zaretskii <eliz@gnu.org>
7126
7127 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
7128 locally to nil.
7129 (texinfo-insert-block, texinfo-insert-@end)
7130 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
7131 local setting of skeleton-end-newline by adding an explicit \n to
7132 the skeletons where appropriate. (Bug#17801)
7133
7134 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7135
7136 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
7137 (smie-indent--hanging-p): Use it.
7138 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
7139
7140 2014-06-21 Leo Liu <sdl.web@gmail.com>
7141
7142 * simple.el (read-quoted-char): Don't let help chars pop up help
7143 buffer. (Bug#16617)
7144
7145 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7146
7147 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
7148 for | (bug#17621).
7149
7150 * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
7151 Drop unknown events instead of burping.
7152
7153 2014-06-21 Eli Zaretskii <eliz@gnu.org>
7154
7155 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
7156 and later. (Bug#17790)
7157
7158 2014-06-21 Juri Linkov <juri@jurta.org>
7159
7160 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
7161 to `soft'. (Bug#17554)
7162
7163 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7164
7165 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
7166 (bug#17737).
7167
7168 2014-06-21 Dmitry Gutov <dgutov@yandex.ru>
7169
7170 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
7171 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
7172
7173 2014-06-21 Michael Albinus <michael.albinus@gmx.de>
7174
7175 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
7176 `unread-command-events'.
7177
7178 2014-06-19 William Xu <william.xwl@gmail.com>
7179
7180 * progmodes/hideif.el (hif-string-to-number): Don't return float for
7181 hex integer constants (bug#17807).
7182
7183 2014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
7184
7185 * international/mule-util.el (truncate-string-ellipsis): New var.
7186 (truncate-string-to-width): Use it.
7187
7188 2014-06-19 Robert Brown <robert.brown@gmail.com> (tiny change)
7189
7190 * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
7191 (lisp-string-in-doc-position-p): New function, extracted from
7192 lisp-font-lock-syntactic-face-function.
7193 (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
7194
7195 2014-06-19 Grégoire Jadi <daimrod@gmail.com>
7196
7197 * net/rcirc.el (rcirc-omit-mode): Fix recenter error. (Bug#17769)
7198
7199 2014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7200
7201 * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
7202 (bubbles--game-over): Don't add `intangible' properties since they
7203 didn't work anyway.
7204
7205 2014-06-18 Juri Linkov <juri@jurta.org>
7206
7207 * vc/ediff-init.el (ediff-current-diff-Ancestor)
7208 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
7209 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
7210 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
7211 Add `min-colors 88' version with removed black/white foregrounds.
7212 (Bug#10181)
7213
7214 2014-06-18 Juri Linkov <juri@jurta.org>
7215
7216 * vc/diff-mode.el (diff-changed): Empty face definition to use
7217 `diff-removed' and `diff-added' on tty as well. (Bug#10181)
7218 (diff-context): Use darker color on light background and
7219 lighter color on dark background.
7220
7221 2014-06-18 Juri Linkov <juri@jurta.org>
7222
7223 * vc/diff-mode.el (diff-refine-changed): Rename from
7224 `diff-refine-change' for consistency with `diff-changed'.
7225 (diff-refine-change): Add obsolete face alias. (Bug#10181)
7226
7227 * vc/smerge-mode.el (smerge-refined-changed): Rename from
7228 `smerge-refined-change'.
7229 (smerge-refined-change): Add obsolete face alias.
7230
7231 2014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
7232
7233 * rect.el (rectangle-preview): New custom.
7234 (rectangle): New group.
7235 (rectangle--pos-cols): Add `window' argument.
7236 (rectangle--string-preview-state, rectangle--string-preview-window):
7237 New vars.
7238 (rectangle--string-flush-preview, rectangle--string-erase-preview)
7239 (rectangle--space-to, rectangle--string-preview): New functions.
7240 (string-rectangle): Use them.
7241 (rectangle--inhibit-region-highlight): New var.
7242 (rectangle--highlight-for-redisplay): Obey it. Make sure
7243 `apply-on-region' uses the point-crutches of the right window.
7244 Use :align-to rather than multiple spaces.
7245
7246 2014-06-16 Andrea Rossetti <andrea.rossetti@gmail.com> (tiny change)
7247
7248 * ruler-mode.el (ruler-mode-window-col)
7249 (ruler-mode-mouse-set-left-margin)
7250 (ruler-mode-mouse-set-right-margin): Fix calculation of column
7251 from mouse position (Bug#17768).
7252
7253 2014-06-16 Ron Schnell <ronnie@driver-aces.com>
7254
7255 * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
7256 without varname or rhs causes crash.
7257 (dun-ftp): Fix bug where blank ftp password is allowed, making it
7258 impossible to win endgame.
7259 (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
7260 rlogin is anymore.
7261 (dun-help): Bump version number; update contact info.
7262
7263 2014-06-15 Eli Barzilay <eli@barzilay.org>
7264
7265 * calculator.el (calculator-prompt, calculator-remove-zeros)
7266 (calculator-mode-hook, calculator-operators, calculator-stack)
7267 (calculator-mode): Tweak docstring.
7268 (calculator-user-operators): Tweak docstring, fix a bug in the last
7269 example.
7270 (calculator-displayer): `std' case has an optional boolean.
7271 (calculator-displayers): Use the new boolean to group in decimal mode.
7272 (calculator-mode-map, calculator, calculator-message)
7273 (calculator-op-arity, calculator-add-operators)
7274 (calculator-string-to-number, calculator-displayer-prev)
7275 (calculator-displayer-next, calculator-remove-zeros)
7276 (calculator-eng-display, calculator-number-to-string)
7277 (calculator-update-display, calculator-last-input)
7278 (calculator-clear-fragile, calculator-digit, calculator-decimal)
7279 (calculator-exp, calculator-saved-move, calculator-clear)
7280 (calculator-copy, calculator-put-value, calculator-help)
7281 (calculator-expt, calculator-truncate): Minor code improvements.
7282 (calculator-need-3-lines): New function pulling out code from
7283 `calculator'.
7284 (calculator-get-display): Rename from `calculator-get-prompt', and
7285 improved.
7286 (calculator-push-curnum): Rename from `calculator-curnum-value', and
7287 extended for all uses of it. All callers changed.
7288 (calculator-groupize-number): New utility for splitting a number into
7289 groups.
7290 (calculator-standard-displayer): Improve code, new optional argument to
7291 use comma-split groups, make second argument optional too to use with
7292 'left/'right inputs. All callers changed.
7293 (calculator-reduce-stack-once): New utility, doing the meat of what
7294 `calculator-reduce-stack' used to do, much improved (mostly using
7295 `pcase' for conciseness and clarity).
7296 (calculator-reduce-stack): Now doing just the reduction loop using
7297 `calculator-reduce-stack-once'.
7298 (calculator-funcall): Improve code, make it work in v24.3.1 too.
7299 (calculator-last-input): Improve code, remove some old cruft.
7300 (calculator-quit): Kill `calculator-buffer' in electric mode too.
7301 (calculator-integer-p): Remove.
7302 (calculator-fact): Improve code, make it work on non-integer values
7303 too (using truncated numbers).
7304
7305 2014-06-15 Michael Albinus <michael.albinus@gmx.de>
7306
7307 Sync with Tramp 2.2.10.
7308
7309 * net/tramp.el (tramp-methods): Tweak docstring.
7310 (tramp-handle-file-accessible-directory-p): Check for
7311 `file-readable-p' instead of `file-executable-p'.
7312 (tramp-check-cached-permissions):
7313 Use `tramp-compat-file-attributes'.
7314 (tramp-call-process): Add new argument VEC. Adapt callees in all
7315 tramp*.el files.
7316
7317 * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
7318 (tramp-adb-maybe-open-connection): Don't set
7319 `tramp-current-*' variables.
7320
7321 * net/tramp-cache.el (tramp-flush-file-function): Do not flush
7322 file properties of temporary buffers.
7323
7324 * net/tramp-ftp.el (top): Remove special handling for URL syntax.
7325
7326 * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
7327 (tramp-gvfs-handle-delete-file): Flush file
7328 properties, not directory properties.
7329 (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
7330 reading "unix::mode".
7331 (tramp-gvfs-handle-file-name-all-completions):
7332 Use "-h" option for "gvfs-ls".
7333 (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
7334 (tramp-gvfs-send-command): Simplify traces.
7335
7336 * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
7337 (vc-git-program, vc-hg-program): Declare.
7338 (tramp-methods) <sftp>: Remove. It has never worked satisfactorily.
7339 (tramp-methods) <nc>: Add new method.
7340 (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
7341 (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
7342 `tramp-login-args'.
7343 (tramp-default-user-alist): Add "nc".
7344 (top): Remove completion function for "sftp". Add completion
7345 functions for "nc" and "psftp".
7346 (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
7347 Implement support for "nc" method.
7348 (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
7349 (tramp-remote-coding-commands, tramp-call-local-coding-command):
7350 Tweak docstring.
7351 (tramp-sh-handle-write-region): Tweak error message.
7352 (tramp-sh-handle-vc-registered): Remove backends when the remote
7353 binary does not exist.
7354 (tramp-find-inline-encoding): Do not raise an error.
7355 (tramp-make-copy-program-file-name): Tweak docstring. Handle also
7356 the "nc" case. Quote result also locally.
7357
7358 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
7359 (tramp-smb-handle-set-file-acl): Use `start-process'.
7360 (tramp-smb-handle-insert-directory): Use progress reporter.
7361 (tramp-smb-handle-rename-file): Flush also file properties of
7362 FILENAME.
7363
7364 * net/trampver.el: Update release number.
7365
7366 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
7367
7368 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
7369 add-to-list.
7370 (ses-localvars): Remove ses--local-printer-list, unused.
7371 (ses--metaprogramming): New macro. Use it to defvar variables.
7372 (ses-set-localvars): Simplify.
7373 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
7374 property-list into an alist.
7375 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
7376 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
7377 Remove; use defstruct accessors/setters instead.
7378 (ses-cell-formula-aset, ses-cell-printer-aset)
7379 (ses-cell-references-aset): Remove, use setf instead.
7380 (ses--alist-get): New function.
7381 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
7382 Use an alist instead of a plist and don't do move-to-front since the
7383 list is always short.
7384 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
7385 (ses-cell-property-set-fun, ses-cell-property-set)
7386 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
7387 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
7388 (ses--letref): New macro.
7389 (ses-cell-property-pop): Rewrite.
7390 (ses--cell): Rename from ses-cell and make it into a function.
7391 Make `formula' fallback on `value' if nil.
7392 (ses--local-printer): Rename from ses-local-printer and make it into
7393 a function.
7394 (ses-set-cell): Turn it into a macro so finding the accessor from the
7395 field name is done at compile time.
7396 (ses-repair-cell-reference-all): Test presence of `sym' rather than
7397 `ref' before adding `sym' to :ses-repair-reference.
7398 (ses-calculate-cell): Use ses--letref rather than
7399 ses-cell-property-get-handle.
7400 (ses-write-cells): Use a single prin1-to-string.
7401 (ses-setter-with-undo): New function.
7402 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
7403 (ses-unset-with-undo): Remove.
7404 (ses-load): Prefer apply' over `eval'.
7405 (ses-read-printer, ses-set-column-width): Use standard "(default
7406 foo)" format.
7407
7408 2014-06-15 Glenn Morris <rgm@gnu.org>
7409
7410 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
7411
7412 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
7413 Replace delete-duplicates and mapcan by cl- versions throughout.
7414 And cl-macroexpand-all by macroexpand-all.
7415 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
7416
7417 2014-06-15 Eli Zaretskii <eliz@gnu.org>
7418
7419 * subr.el (posn-col-row): Doc fix. (Bug#17768)
7420
7421 2014-06-15 Juri Linkov <juri@jurta.org>
7422
7423 * bindings.el: Put `ascii-character' property on keypad keys
7424 mapped to characters. (Bug#17759)
7425
7426 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
7427
7428 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
7429 bumping forward into a closing paren (bug#17761).
7430
7431 * term/xterm.el (xterm--version-handler): Work around for OSX
7432 Terminal.app (bug#17607).
7433
7434 2014-06-14 Ron Schnell <ronnie@driver-aces.com>
7435
7436 * play/dunnet.el (dun-describe-room, dun-mode):
7437 If a lamp is in the room, you won't be eaten by a grue.
7438
7439 2014-06-13 Glenn Morris <rgm@gnu.org>
7440
7441 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
7442 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
7443 (compile-always): GNU make automatically passes
7444 command-line arguments to sub-makes.
7445
7446 * calendar/calendar.el (calendar-generate-window):
7447 Remove pointless call to font-lock-fontify-buffer.
7448
7449 2014-06-13 Matthias Meulien <orontee@gmail.com>
7450
7451 * simple.el (completion-list-mode-map): Navigate with tab and backtab
7452 (bug#17767).
7453
7454 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
7455
7456 * simple.el (set-mark-command): Simplify a bit.
7457
7458 2014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
7459
7460 * help.el (help--key-binding-keymap): New function.
7461 (help--binding-locus): New function.
7462 (describe-key): Mention the keymap in which the binding was
7463 found. (bug#13948)
7464
7465 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
7466
7467 * hippie-exp.el (he--all-buffers): New function.
7468 (try-expand-line-all-buffers, try-expand-list-all-buffers)
7469 (try-expand-dabbrev-all-buffers): Use it.
7470
7471 2014-06-12 Emilio C. Lopes <eclig@gmx.net>
7472
7473 * hippie-exp.el (try-expand-line-all-buffers)
7474 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
7475 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
7476 original buffer, in case they're buffer-local.
7477
7478 2014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
7479
7480 * ses.el (ses-initial-global-parameters-re): New defconst, a
7481 specific regexp is needed now that ses.el can handle both
7482 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
7483 local printers.
7484 (ses-localvars): Add local variables needed for local printer handling.
7485 (ses-set-localvars): Handle hashmap initialisation.
7486 (ses-paramlines-plist): Add param-line for number of local printers.
7487 (ses-paramfmt-plist): New defconst, needed for code factorization
7488 between functions `ses-set-parameter' and
7489 `ses-file-format-extend-paramter-list'
7490 (ses-make-local-printer-info): New defsubst.
7491 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
7492 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
7493 (ses-cell-printer-aset): New defmacro.
7494 (ses-local-printer-compile): New defun.
7495 (ses-local-printer): New defmacro.
7496 (ses-printer-validate, ses-call-printer): Add support for local
7497 printer functions.
7498 (ses-file-format-extend-paramter-list): New defun.
7499 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
7500 factorization.
7501 (ses-load): Add support for local printer functions.
7502 (ses-read-printer): Update docstring and add support for local printer
7503 functions.
7504 (ses-refresh-local-printer, ses-define-local-printer): New defun.
7505 (ses-safe-printer): Add support for local printer functions.
7506
7507 2014-06-12 Ivan Andrus <darthandrus@gmail.com>
7508
7509 * ffap.el (ffap-lax-url): New var (bug#17723).
7510 (ffap-url-at-point): Use it.
7511 (ffap-file-at-point): Avoid returning just "/".
7512
7513 2014-06-12 Matthias Meulien <orontee@gmail.com>
7514
7515 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
7516 (python-mode-map): Bind it.
7517
7518 * progmodes/python.el (class skeleton): Don't erase last char of class
7519 name (bug#17683).
7520
7521 2014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
7522
7523 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
7524
7525 2014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
7526
7527 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
7528 (bug#17745).
7529
7530 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
7531
7532 * international/mule-cmds.el: Use lexical-binding.
7533 (ucs-names): Simplify.
7534
7535 2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
7536
7537 * progmodes/python.el (run-python): Use read-shell-command.
7538
7539 2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7540
7541 * rect.el: Make it possible to move bounds past EOL or into TABs.
7542 (operate-on-rectangle): Use apply-on-rectangle.
7543 (rectangle--mark-crutches): New var.
7544 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
7545 (rectangle--crutches, rectangle--reset-crutches): New functions.
7546 (apply-on-rectangle): Obey crutches. Avoid setq.
7547 Fix missing final iteration if end is at EOB&BOL.
7548 (rectangle-mark-mode-map): Add remap bindings for
7549 exchange-point-and-mark and char/line movements.
7550 (rectangle--*-char): New function.
7551 (rectangle-exchange-point-and-mark, rectangle-right-char)
7552 (rectangle-left-char, rectangle-forward-char)
7553 (rectangle-backward-char, rectangle-next-line)
7554 (rectangle-previous-line): New commands.
7555 (rectangle--place-cursor): New function.
7556 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
7557
7558 2014-06-08 Glenn Morris <rgm@gnu.org>
7559
7560 * startup.el (initial-buffer-choice): Doc fix.
7561 Reset :version (adding an option does not merit a :version bump).
7562
7563 * bookmark.el (bookmark-load):
7564 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
7565
7566 2014-06-08 Juri Linkov <juri@jurta.org>
7567
7568 * desktop.el: Activate auto-saving on window configuration changes.
7569 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
7570 `desktop-auto-save-set-timer' to/from
7571 `window-configuration-change-hook'.
7572 (desktop-auto-save-set-timer): Change REPEAT arg of
7573 `run-with-idle-timer' from t to nil.
7574 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
7575
7576 2014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
7577
7578 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
7579 vc-hg-command (bug#17570).
7580
7581 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7582
7583 * international/mule-cmds.el (ucs-names): Add special entry for BEL
7584 (bug#17702).
7585
7586 2014-06-08 Glenn Morris <rgm@gnu.org>
7587
7588 * startup.el (window-setup-hook): Doc fix.
7589
7590 * emacs-lisp/package.el (package-check-signature)
7591 (package-unsigned-archives): Doc fixes.
7592
7593 2014-06-08 Martin Rudalics <rudalics@gmx.at>
7594
7595 * window.el (display-buffer-use-some-window): Don't make window
7596 used smaller than it was before (Bug#17671).
7597
7598 2014-06-08 Eli Zaretskii <eliz@gnu.org>
7599
7600 * menu-bar.el (menu-bar-open): Fix last change: use the PC
7601 'redisplay' instead of '(sit-for 0)'.
7602
7603 2014-06-08 Michael Albinus <michael.albinus@gmx.de>
7604
7605 * net/tramp.el (tramp-ssh-controlmaster-options):
7606 Improve search regexp. (Bug#17653)
7607
7608 2014-06-08 Glenn Morris <rgm@gnu.org>
7609
7610 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
7611
7612 2014-06-08 Eli Zaretskii <eliz@gnu.org>
7613
7614 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
7615
7616 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
7617
7618 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
7619 (bug#17586).
7620
7621 * vc/vc-hg.el (vc-hg-log-graph): New var.
7622 (vc-hg-print-log): Use it.
7623 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
7624 graph output (bug#17515).
7625
7626 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7627
7628 * mouse.el (mouse-posn-property): Ignore buffer position info when the
7629 even happened elsewhere.
7630
7631 2014-06-06 Mario Lang <mlang@delysid.org>
7632
7633 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
7634 `recenter' if `current-buffer' is equal to `window-buffer'.
7635
7636 2014-06-05 Leo Liu <sdl.web@gmail.com>
7637
7638 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
7639
7640 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
7641
7642 * textmodes/tildify.el (tildify-foreach-region-outside-env):
7643 New function which calls a callback on portions of the buffer that are
7644 outside of ignored environments.
7645 (tildify-build-regexp): Remove function since it is now
7646 incorporated in `tildify-foreach-region-outside-env' where it is
7647 optimized and simplified by the use of `mapconcat'.
7648 (tildify-tildify): Return number of substitutions made so that…
7649 (tildify-count): …can be removed.
7650 (tildify-find-env): Accept a new PAIRS argument which was
7651 previously looked up in `tildify-ignored-environments-alist' each
7652 time the function was called. With this change, the lookup is
7653 performed only once in `tildify-foreach-region-outside-env'.
7654 (tildify-region): Greatly simplify the function since now most of
7655 the work is done by `tildify-foreach-region-outside-env'.
7656 (tildify-mode-alist): Simplify slightly by avoiding if and setq
7657 and instead using or.
7658
7659 * textmodes/tildify.el (tildify-ignored-environments-alist):
7660 Optimize environments regexes
7661
7662 Each time beginning of an environment to ignore is found,
7663 `tildify-find-env' needs to identify regexp for the ending
7664 of the environment. This is done by trying all the opening
7665 regexes on matched text in a loop, so to speed that up, this
7666 loop should have fewer things to match, which can be done by
7667 using alternatives in the opening regexes.
7668
7669 Coincidentally, this should make matching of the opening
7670 regexp faster as well thanks to the use of `regexp-opt' and
7671 having common prefix pulled from many regexes.
7672
7673 * textmodes/tildify.el (tildify-string-alist)
7674 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
7675 of supported modes since `xml-mode' is no longer a thing but just
7676 an alias to the former. Also include comments and insides of tags
7677 in `tildify-ignored-environments-alist' for XML modes. Finally,
7678 since XML does not define “&nbsp;”[1], use a numeric reference for
7679 a no-break space (namely “&#160;”)
7680
7681 [1] XML specification defines only a handful of predefined entities.
7682 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
7683 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
7684 >, &, ' and " respectively). This is in contrast to HTML and even
7685 XHTML which defined a whole bunch of entities including “&nbsp;”.
7686
7687 * textmodes/tildify.el (tildify-pattern-alist)
7688 (tildify-string-alist, tildify-ignored-environments-alist):
7689 Improve defcustom's types by adding more tags explaining what each
7690 value means and replace “sexp” used in
7691 `tildify-ignored-environments-alist' with a full type declaration.
7692
7693 * textmodes/tildify.el (tildify-find-env): Fix matched group
7694 indexes in end-regex building
7695
7696 When looking for a start of an ignore-environment, the regex is built
7697 by concatenating regexes of all the environments configured in
7698 `tildify-ignored-environments-alist'. So for example, the following
7699 list could be used to match TeX's \verb and \verb* commands:
7700
7701 (("\\\\verb\\(.\\)" . (1))
7702 ("\\\\verb\\*\\(.\\)" . (1)))
7703
7704 This would result in the following regex being used to find the start
7705 of any of the variants of the \verb command:
7706
7707 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
7708
7709 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
7710 won't match anything, and thus (match-string 1) will be nil, which
7711 will cause building of the end-matching regex to fail.
7712
7713 Fix this by using capture groups from the time when the opening
7714 regexes are matched individually.
7715
7716 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
7717 in `tildify-find-env'
7718
7719 The `tildify-ignored-environments-alist' allows the end-regex to
7720 be provided not as a static string but mix of strings and indexes
7721 of groups matched the begin-regex. For example, the “\verb!…!”
7722 TeX-command (where “!” is an arbitrary character) is handled
7723 using:
7724
7725 ("\\\\verb\\*?\\(.\\)" . (1))
7726
7727 In the same way, the following should be supported as well:
7728
7729 ("open-\\(.\\)" . ("end-" 1))
7730
7731 However the tildify-find-env function fails at
7732
7733 (concat result
7734 (if (stringp (setq aux (car expression)))
7735 expression ; BUG: expression is a list
7736 (regexp-quote (match-string aux))))
7737
7738 where the string part is handled incorrectly.
7739
7740 The most trivial fix would be to replace `expression' in the
7741 true-part of the if-statement with `aux', but instead, this commit
7742 optimizes `tildify-find-env' by changing it to use `mapconcat'
7743 rather than open-coded while-loop.
7744
7745 2014-06-05 Mario Lang <mlang@delysid.org>
7746
7747 * woman.el (woman-mapcan): Remove.
7748 (woman-parse-colon-path): Use cl-mapcan instead.
7749
7750 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7751
7752 * register.el: Add link to Emacs manual in Commentary.
7753
7754 2014-06-02 Sam Steingold <sds@gnu.org>
7755
7756 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
7757 (popup-menu): ...here.
7758 (menu-bar-open): Use it to avoid an error when `lookup-key'
7759 returns a number.
7760
7761 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
7762
7763 * net/tramp.el (tramp-call-process): Add traces.
7764 (tramp-handle-unhandled-file-name-directory): Return "/".
7765
7766 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
7767
7768 Sync with upstream verilog-mode revision 3cd8144.
7769 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
7770 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
7771 (verilog-type-font-keywords): Add nor.
7772 (verilog-batch-execute-func): Force reading of Local Variables.
7773 Fix printing "no changes to be saved" with verilog-batch.
7774 (verilog-auto-arg-ports): Doc fix.
7775 Add verilog-auto-arg-format to support newlines in AUTOARG.
7776 (verilog-auto-arg): Doc fix.
7777
7778 2014-06-02 Glenn Morris <rgm@gnu.org>
7779
7780 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
7781 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
7782 * emulation/ws-mode.el: Move to obsolete/.
7783 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
7784
7785 2014-06-02 Eli Zaretskii <eliz@gnu.org>
7786
7787 * simple.el (keyboard-quit): Force update of mode lines, to remove
7788 the "Def" indicator, if we were defining a macro. (Bug#17615)
7789
7790 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7791
7792 * minibuffer.el (minibuffer-force-complete-and-exit):
7793 Obey minibuffer-default (bug#17545).
7794
7795 * progmodes/js.el (js-indent-line): Don't mix columns and chars
7796 (bug#17619).
7797
7798 * subr.el (set-transient-map): Don't wait for some "nested"
7799 transient-map to finish if we're only supposed to be active for
7800 the next command (bug#17642).
7801
7802 2014-06-02 Leo Liu <sdl.web@gmail.com>
7803
7804 * emacs-lisp/gv.el (window-buffer, window-display-table)
7805 (window-dedicated-p, window-hscroll, window-point, window-start):
7806 Fix gv-expander. (Bug#17630)
7807
7808 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7809
7810 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
7811 clicks (bug#17633).
7812
7813 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
7814 for the single comma, since ", " is *very* common in normal French text
7815 (bug#17643).
7816
7817 2014-06-02 Glenn Morris <rgm@gnu.org>
7818
7819 * emacs-lisp/package.el (package-check-signature)
7820 (package-unsigned-archives): Fix :version.
7821
7822 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7823
7824 * subr.el (sit-for): Don't run input-methods (bug#15614).
7825
7826 2014-06-02 Glenn Morris <rgm@gnu.org>
7827
7828 * cus-start.el: Fix some :version numbers.
7829
7830 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7831
7832 * simple.el (deactivate-mark): Set mark-active to nil even if
7833 deactivation is done via setting transient-mark-mode to nil,
7834 since one is buffer-local and the other is global.
7835
7836 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
7837 there can't be more than 2 arguments (bug#17584).
7838
7839 2014-06-02 Glenn Morris <rgm@gnu.org>
7840
7841 * simple.el (filter-buffer-substring-functions)
7842 (filter-buffer-substring-function, buffer-substring-filters)
7843 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
7844
7845 * minibuffer.el (completion-in-region-functions, completion-in-region)
7846 (completion--in-region): Doc fixes.
7847
7848 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
7849 (expand-abbrev, abbrev--default-expand): Doc fixes.
7850
7851 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
7852
7853 Include sources used to create macuvs.h.
7854 * international/README: Refer to the Unicode Terms of Use rather
7855 than copying it bodily here, as that simplifies maintenance.
7856
7857 2014-06-01 Glenn Morris <rgm@gnu.org>
7858
7859 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
7860
7861 2014-05-31 Glenn Morris <rgm@gnu.org>
7862
7863 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
7864
7865 2014-05-30 Glenn Morris <rgm@gnu.org>
7866
7867 * loadup.el: Treat `command-line-args' more flexibly.
7868
7869 2014-05-30 Alan Mackenzie <acm@muc.de>
7870
7871 Guard (looking-at "\\s!") from XEmacs.
7872 * progmodes/cc-engine.el (c-state-pp-to-literal): Add guard form.
7873
7874 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu>
7875
7876 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
7877 The argument COUNT is now optional, to be more backward-compatible.
7878 Doc fix. (Bug#17560)
7879
7880 2014-05-29 Reuben Thomas <rrt@sc3d.org>
7881
7882 * whitespace.el (whitespace-report-region):
7883 Simplify documentation.
7884 (whitespace-report-region): Allow report-if-bogus to take the
7885 value `never', for non-interactive use.
7886 (whitespace-report): Refer to whitespace-report-region's
7887 documentation.
7888
7889 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7890
7891 * whitespace.el: Use font-lock-flush. Minimize refontifications.
7892 Side benefit: it works without jit-lock.
7893 (whitespace-point--used): New buffer-local var.
7894 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
7895 (whitespace-color-off): Use font-lock-flush.
7896 (whitespace-point--used, whitespace-point--flush-used): New functions.
7897 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7898 (whitespace-empty-at-eob-regexp): Use them.
7899 (whitespace-post-command-hook): Rewrite.
7900
7901 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
7902 (font-lock-fontify-buffer): Mark interactive-only.
7903 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
7904 Make buffer-local.
7905 (font-lock-specified-p): Remove redundant boundp check.
7906 (font-lock-flush-function, font-lock-ensure-function): New vars.
7907 (font-lock-turn-on-thing-lock): Set them.
7908 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
7909 (font-lock-after-change-function): Make `old-len' optional.
7910 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
7911 Call font-lock-flush, just in case.
7912 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
7913 recent Emacsen.
7914 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
7915 (vera-mode-map, vera-mode-menu): Remove bindings to it.
7916 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
7917 and with-syntax-table.
7918 * textmodes/conf-mode.el (conf-quote-normal):
7919 * progmodes/sh-script.el (sh-set-shell):
7920 * progmodes/prog-mode.el (prettify-symbols-mode):
7921 * progmodes/f90.el (f90-font-lock-n):
7922 * progmodes/cwarn.el (cwarn-mode):
7923 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
7924 * progmodes/compile.el (compilation-setup, compilation--unsetup):
7925 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
7926 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
7927 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
7928 font-lock-fontify-buffer-function and
7929 font-lock-unfontify-buffer-function.
7930 (rmail-unfontify-buffer-function, rmail-fontify-message):
7931 Use with-silent-modifications.
7932 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
7933 and font-lock-ensure.
7934 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
7935
7936 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
7937
7938 * emacs-lisp/package.el (package-generate-autoloads):
7939 Inhibit backup files.
7940
7941 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7942
7943 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
7944 (bug#17608).
7945
7946 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
7947
7948 * textmodes/tildify.el (tildify-buffer, tildify-region):
7949 Add dont-ask option.
7950
7951 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7952
7953 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
7954 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
7955
7956 * subr.el (internal--funcall-interactively): New.
7957 (internal--call-interactively): Remove.
7958 (called-interactively-p): Detect funcall-interactively instead of
7959 call-interactively.
7960 * simple.el (repeat-complex-command): Use funcall-interactively.
7961 (repeat-complex-command--called-interactively-skip): Remove.
7962
7963 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * register.el (register-read-with-preview): Don't burp on
7966 frame switches (e.g. due to the frame we just popped).
7967
7968 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
7969 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
7970
7971 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
7972
7973 * cus-face.el (custom-face-attributes): Add :distant-foreground.
7974
7975 2014-05-26 Martin Rudalics <rudalics@gmx.at>
7976
7977 * window.el (window--dump-frame): Remove interactive specification.
7978
7979 2014-05-26 Glenn Morris <rgm@gnu.org>
7980
7981 * hippie-exp.el (he-line-search-regexp):
7982 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
7983
7984 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
7985
7986 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
7987 to avoid errors when trying to create or visit a file foo.todo
7988 located outside to todo-directory, and to allow having such files
7989 without them being tied to Todo mode (bug#17482).
7990 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
7991 (todo-archive-done-item, todo-find-filtered-items-file)
7992 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
7993 (todo-category-completions, todo-read-category): When visiting a
7994 Todo file, make sure we're in the right mode and the buffer local
7995 variables are set.
7996 (todo-make-categories-list, todo-reset-nondiary-marker)
7997 (todo-reset-done-string, todo-reset-comment-string):
7998 After processing all Todo files, kill the buffers of those files that
7999 weren't being visited before the processing.
8000 (todo-display-as-todo-file, todo-add-to-buffer-list)
8001 (todo-visit-files-commands): Comment out.
8002 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
8003 (auto-mode-alist): Remove add-to-list calls making Todo file
8004 extensions unrestrictedly tied to Todo modes.
8005
8006 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
8007
8008 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
8009 (advice-function-member-p): Tell it to check both names and functions
8010 (bug#17531).
8011 (advice--add-function): Adjust call accordingly.
8012
8013 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
8014
8015 * calendar/todo-mode.el: Miscellaneous bug fixes.
8016 (todo-delete-file): When deleting an archive but not its todo
8017 file, make sure to update the todo file's category sexp.
8018 (todo-move-category): Keep the moved category's name unless the
8019 file moved to already has a category with that name. If the
8020 numerically last category of the source file was moved, make the
8021 first category current to avoid selecting a nonexisting category.
8022 (todo-merge-category): Fix implementation to make merging to a
8023 category in another file work as documented. Eliminate now
8024 insufficient and unnecessary renaming of archive category, correct
8025 document string accordingly, and clarify it. If the numerically
8026 last category of the source file was merged, make the first
8027 category current to avoid selecting a nonexisting category.
8028 (todo-archive-done-item): When there are marked items and point
8029 happens to be on an unmarked item, ignore the latter. Don't leave
8030 point below last item after archiving marked items.
8031 (todo-unarchive-items): Fix logic to ensure unarchiving an item
8032 from an archive with only one category deletes the archive only
8033 when the category is empty after unarchiving. Make sure the todo
8034 file's category sexp is updated.
8035 (todo-read-file-name): Allow an existing file name even when it is
8036 not required (todo-move-category needs this to work as documented).
8037 (todo-add-file): Call todo-validate-name to reject the name of an
8038 existing todo file (needed due to fix in todo-read-file-name).
8039 (todo-reset-nondiary-marker): Also reset in filtered items files.
8040 (todo-reset-done-string, todo-reset-comment-string): Also reset in
8041 regexp filtered items files.
8042 (todo-reset-highlight-item): Also reset in filtered items files.
8043 Fix incorrect variable reference in document string.
8044
8045 2014-05-26 Glenn Morris <rgm@gnu.org>
8046
8047 * window.el (window--dump-frame): Avoid error in --without-x builds.
8048
8049 2014-05-26 Glenn Morris <rgm@gnu.org>
8050
8051 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
8052
8053 2014-05-26 Eli Zaretskii <eliz@gnu.org>
8054
8055 * frame.el (set-frame-font): Doc fix.
8056
8057 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
8058
8059 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
8060
8061 * emacs-lisp/package.el (package--download-one-archive):
8062 Use `write-region' instead of `save-buffer' to avoid running various
8063 hooks. (Bug#17155)
8064 (describe-package-1): Same. Insert newline at the end of the
8065 buffer if appropriate.
8066
8067 2014-05-26 Juri Linkov <juri@jurta.org>
8068
8069 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
8070 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
8071 Add more modifiers: meta, control, shift, hyper, super, alt.
8072 (Bug#17439)
8073
8074 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
8075 to allow changing its value with `set-variable'.
8076
8077 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
8078
8079 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
8080 #; comments.
8081 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
8082 New functions.
8083 (scheme-mode-variables): Set syntax-propertize-function instead of
8084 font-lock-syntactic-face-function.
8085 (scheme-font-lock-syntactic-face-function): Delete.
8086
8087 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
8088
8089 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
8090 (bug#17392).
8091
8092 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
8093
8094 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
8095 for a temporary file name.
8096
8097 2014-05-26 Eli Zaretskii <eliz@gnu.org>
8098
8099 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
8100
8101 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
8102
8103 * net/dbus.el (dbus-init-bus, dbus-call-method)
8104 (dbus-call-method-asynchronously, dbus-send-signal)
8105 (dbus-method-return-internal, dbus-method-error-internal):
8106 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
8107
8108 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
8109
8110 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
8111 methods which do not have a doc string. (Bug#17490)
8112
8113 2014-05-25 Tassilo Horn <tsdh@gnu.org>
8114
8115 * textmodes/reftex-ref.el (reftex-format-special): Make it work
8116 also for AMS Math's \eqref macro.
8117
8118 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
8119
8120 Arrange to never byte-compile the generated -pkg.el file.
8121
8122 * emacs-lisp/package.el (package-generate-description-file):
8123 Output first-line comment to set buffer-local var `no-byte-compile'.
8124 Suggested by Dmitry Gutov:
8125 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
8126
8127 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
8128
8129 Fix bug: Properly quote args to generated -pkg.el `define-package'.
8130
8131 * emacs-lisp/package.el (package-generate-description-file):
8132 Inline `package--alist-to-plist'; rewrite to selectively
8133 quote alist values that are not self-quoting.
8134 (package--alist-to-plist): Delete func.
8135
8136 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
8137
8138 * term/xterm.el (xterm-function-map): Add mapping for shifted
8139 keypad keys.
8140
8141 2014-05-24 Daniel Colascione <dancol@dancol.org>
8142
8143 * progmodes/subword.el (subword-find-word-boundary): Move point to
8144 correct spot before search. (Bug#17580)
8145
8146 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
8147 breaking the build.
8148
8149 2014-05-24 Leo Liu <sdl.web@gmail.com>
8150
8151 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
8152
8153 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
8154
8155 * minibuffer.el (completion--sreverse): Remove.
8156 (completion--common-suffix): Use `reverse' instead.
8157 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
8158
8159 2014-05-22 Glenn Morris <rgm@gnu.org>
8160
8161 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
8162
8163 2014-05-21 Daniel Colascione <dancol@dancol.org>
8164
8165 * files.el (interpreter-mode-alist): Add mksh.
8166
8167 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
8168 derivative.
8169 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
8170 mksh. Improve custom spec; allow regular expressions.
8171 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
8172 (sh-after-hack-local-variables): New function.
8173 (sh-mode): Use it; respect file-local `sh-shell' variable. (Bug#17333)
8174 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
8175 the normalization.
8176 (sh-canonicalize-shell): Rewrite to support regexes.
8177
8178 2014-05-21 Leo Liu <sdl.web@gmail.com>
8179
8180 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
8181
8182 2014-05-19 Leo Liu <sdl.web@gmail.com>
8183
8184 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
8185
8186 2014-05-18 Glenn Morris <rgm@gnu.org>
8187
8188 * loadup.el:
8189 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
8190
8191 2014-05-14 Sam Steingold <sds@gnu.org>
8192
8193 * progmodes/python.el (python-shell-get-or-create-process):
8194 Do not bind `current-prefix-arg' so that C-c C-z does not talk
8195 back unless requested.
8196
8197 2014-05-14 Glenn Morris <rgm@gnu.org>
8198
8199 * subr.el (with-file-modes): New macro.
8200 * printing.el (pr-save-file-modes): Make obsolete.
8201 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
8202 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
8203 Add with-file-modes.
8204 * doc-view.el (doc-view-make-safe-dir):
8205 * epg.el (epg--start):
8206 * files.el (locate-user-emacs-file, make-temp-file)
8207 (backup-buffer-copy, move-file-to-trash):
8208 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
8209 * eshell/esh-util.el (eshell-with-private-file-modes)
8210 (eshell-make-private-directory):
8211 * net/browse-url.el (browse-url-mosaic):
8212 * obsolete/mailpost.el (post-mail-send-it):
8213 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
8214 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
8215 Use with-file-modes.
8216
8217 * vc/emerge.el (emerge-make-temp-file): Simplify.
8218
8219 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
8220 Stefan Monnier <monnier@iro.umontreal.ca>
8221
8222 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
8223 suffix (bug#15419).
8224
8225 2014-05-14 Glenn Morris <rgm@gnu.org>
8226
8227 * vc/emerge.el (emerge-temp-file-prefix):
8228 Make pointless option obsolete.
8229 (emerge-temp-file-mode): Make non-functional option obsolete.
8230
8231 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
8232
8233 * net/browse-url.el (browse-url):
8234 Use `unhandled-file-name-directory' when setting `default-directory',
8235 in order to circumvent stalled remote connections. (Bug#17425)
8236
8237 2014-05-14 Glenn Morris <rgm@gnu.org>
8238
8239 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
8240 Optimize on Emacs, which has the relevant functions for ages.
8241
8242 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
8243
8244 * simple.el (undo-make-selective-list): Obey undo-no-redo.
8245
8246 2014-05-12 Sam Steingold <sds@gnu.org>
8247
8248 * calendar/time-date.el (seconds-to-string): New function to
8249 pretty print time delay in seconds.
8250
8251 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
8252
8253 * mpc.el (mpc-format): Trim Date to the year.
8254 (mpc-songs-hashcons): Shorten the Date field.
8255
8256 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
8257 into autoloading just because of a silly indirection.
8258
8259 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
8260
8261 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
8262
8263 2014-05-12 Glenn Morris <rgm@gnu.org>
8264
8265 * emacs-lisp/find-gc.el: Move to ../admin.
8266
8267 * printing.el (pr-version):
8268 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
8269
8270 * net/browse-url.el (browse-url-mosaic):
8271 Create /tmp/Mosaic.PID as a private file.
8272
8273 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
8274
8275 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
8276 (advice--member-p): If name is given, only compare the name.
8277 (advice--remove-function): Don't stop at the first match.
8278 (advice--normalize-place): New function.
8279 (add-function, remove-function): Use it.
8280 (advice--add-function): Pass the name, if any, to
8281 advice--remove-function.
8282
8283 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
8284
8285 * electric.el (electric-indent-post-self-insert-function): Don't use
8286 `pos' after modifying the buffer (bug#17449).
8287
8288 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
8289
8290 * calendar/todo-mode.el (todo-insert-item-from-calendar):
8291 Correct argument list to conform to todo-insert-item--basic.
8292
8293 2014-05-12 Glenn Morris <rgm@gnu.org>
8294
8295 * files.el (cd-absolute): Test if directory is accessible
8296 rather than executable. (Bug#17330)
8297
8298 * progmodes/compile.el (recompile):
8299 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
8300
8301 * net/browse-url.el (browse-url-mosaic):
8302 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
8303 This is CVE-2014-3423.
8304
8305 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
8306
8307 * mouse.el: Use the normal toplevel loop while dragging.
8308 (mouse-set-point): Handle multi-clicks.
8309 (mouse-set-region): Handle multi-clicks for drags.
8310 (mouse-drag-region): Update call accordingly.
8311 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
8312 Use the normal event loop instead of a local while/read-event loop.
8313 (global-map): Remove redundant bindings for double/triple-mouse-1.
8314 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
8315 Generate synthetic down events when the protocol only sends up events.
8316 (xterm-mouse-last): Remove.
8317 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
8318 terminal parameter instead.
8319 (xterm-mouse--set-click-count): New function.
8320 (xterm-mouse-event): Detect/generate double/triple clicks.
8321 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
8322
8323 * info.el (Info-quoted): New face.
8324 (Info-mode-font-lock-keywords): New var.
8325 (Info-mode): Use it.
8326
8327 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
8328 are a hindrance for C-x C-e.
8329
8330 2014-05-11 Leo Liu <sdl.web@gmail.com>
8331
8332 * net/rcirc.el (rcirc-sentinel): Fix last change.
8333
8334 2014-05-08 Sam Steingold <sds@gnu.org>
8335
8336 * net/rcirc.el (rcirc-reconnect-delay): New user option.
8337 (rcirc-sentinel): Auto-reconnect to the server if
8338 `rcirc-reconnect-delay' is non-0 (but not more often than its
8339 value in case the host is off-line).
8340
8341 2014-05-09 Eli Zaretskii <eliz@gnu.org>
8342
8343 * progmodes/grep.el (lgrep): Fix a typo in last commit.
8344
8345 2014-05-09 Glenn Morris <rgm@gnu.org>
8346
8347 * files.el (file-expand-wildcards):
8348 * man.el (Man-support-local-filenames):
8349 * printing.el (pr-i-directory, pr-interface-directory):
8350 * progmodes/grep.el (lgrep, rgrep):
8351 * textmodes/ispell.el (ispell-call-process)
8352 (ispell-call-process-region, ispell-start-process)
8353 (ispell-init-process): Use file-accessible-directory-p.
8354
8355 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8356
8357 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
8358 (xterm-mouse--read-event-sequence-1000): Return nil if something
8359 looks fishy.
8360 (xterm-mouse-event): Propagate it.
8361 (xterm-mouse-translate-1): Handle it.
8362
8363 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
8364
8365 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
8366 four slots of the parameter list are filled, make sure to pass it
8367 to the argument list of todo-insert-item--basic.
8368
8369 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8370
8371 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
8372 Add optional `seen' argument to detect and break infinite loops.
8373
8374 2014-05-08 Eli Zaretskii <eliz@gnu.org>
8375
8376 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
8377 (trace-unsafe, trace-use-tree): Make parentheses style be
8378 according to Emacs style.
8379
8380 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
8381
8382 * net/tramp-sh.el (tramp-remote-process-environment):
8383 Remove HISTFILE and HISTSIZE; it's too late to set them here.
8384 Add :version entry.
8385 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
8386 Add "HISTFILE=/dev/null" to the shell's env arguments. Do not send
8387 extra "PSx=..." commands.
8388 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
8389 (Bug#17295)
8390
8391 (tramp-uudecode): Replace the hard-coded temporary file name by a
8392 format specifier.
8393 (tramp-remote-coding-commands): Enhance docstring.
8394 (tramp-find-inline-encoding): Replace "%t" by a temporary file
8395 name. (Bug#17415)
8396 This is CVE-2014-3424.
8397
8398 2014-05-08 Glenn Morris <rgm@gnu.org>
8399
8400 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
8401 (find-gc-source-files): Update some names.
8402 (trace-call-tree): Simplify and update.
8403 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
8404 This is CVE-2014-3422.
8405
8406 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8407
8408 * minibuffer.el (completion--try-word-completion): Revert fix for
8409 Bug#15980 (bug#17375).
8410
8411 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
8412 Always store button numbers in the same way in xterm-mouse-last;
8413 Don't burp is xterm-mouse-last is not set as expected.
8414 Never return negative indices.
8415
8416 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
8417
8418 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
8419 Backtrack one char if the global/char-literal var matcher hits
8420 inside a string. The next char could be the beginning of an
8421 expression expansion.
8422
8423 2014-05-08 Glenn Morris <rgm@gnu.org>
8424
8425 * help-fns.el (describe-function-1): Test for an autoload before a
8426 macro, since `macrop' works on autoloads. (Bug#17410)
8427
8428 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8429
8430 * electric.el (electric-indent-functions-without-reindent): Add yaml.
8431
8432 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
8433 Make sure the new point we return is within the new string (bug#17239).
8434
8435 2014-05-05 Daniel Colascione <dancol@dancol.org>
8436
8437 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8438 Port `gnu' pattern to rx.
8439
8440 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
8441
8442 Remove unneeded prompt when closing a buffer with active
8443 emacsclient ("Buffer ... still has clients"), #16548.
8444 * server.el (server-start): Remove the only call to:
8445 (server-kill-buffer-query-function): Remove.
8446
8447 2014-05-04 Leo Liu <sdl.web@gmail.com>
8448
8449 * calendar/diary-lib.el (calendar-chinese-month-name-array):
8450 Defvar to pacify compiler.
8451
8452 2014-05-04 Eli Zaretskii <eliz@gnu.org>
8453
8454 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
8455
8456 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8457
8458 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
8459 Use nil rather than `default' for the "default" appearance (bug#17388).
8460 * vc/ediff-util.el (ediff-inferior-compare-regions)
8461 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
8462 a misleading `default' value when it's really a boolean.
8463 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
8464 overlay is not visible.
8465
8466 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
8467
8468 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
8469 (todo-menu): Uncomment and update.
8470
8471 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
8472
8473 * calendar/todo-mode.el: Reimplement item editing to have the same
8474 basic user interface as item insertion, and make small UI and
8475 larger internal improvements to the latter.
8476 (todo-insert-item): Add reference to the Todo mode user manual to
8477 the documentation string.
8478 (todo-insert-item--basic): Rename from todo-basic-insert-item and
8479 adjust all callers. Change signature to combine diary and
8480 nonmarking arguments. Incorporate functionality of deleted item
8481 copying command and add error checking. Remove detailed
8482 descriptions of the arguments from the documentation string, since
8483 this is treated in the Todo mode user manual.
8484 (todo-copy-item, todo-edit-multiline-item)
8485 (todo-edit-done-item-comment, todo-edit-item-header)
8486 (todo-edit-item-time, todo-edit-item-date-from-calendar)
8487 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
8488 (todo-edit-item-date-year, todo-edit-item-date-month)
8489 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
8490 Remove.
8491 (todo-edit-item): Reimplement as wrapper command for
8492 todo-edit-item--next-key and make it distinguish done and not done
8493 todo items.
8494 (todo-edit-item--text): New function, replacing old command
8495 todo-edit-item and incorporating deleted commands
8496 todo-edit-multiline-item and todo-edit-done-item-comment.
8497 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
8498 Use only numeric value of prefix argument. Remove detailed
8499 descriptions of the arguments from the documentation string, since
8500 this is treated in the Todo mode user manual.
8501 (todo-edit-item--diary-inclusion): New function, replacing old
8502 command todo-edit-item-diary-inclusion and incorporating and fixing
8503 functionality of deleted command todo-edit-item-diary-nonmarking,
8504 making sure to remove todo-nondiary-marker when adding
8505 diary-nonmarking-symbol.
8506 (todo-edit-category-diary-inclusion): Make sure to delete
8507 diary-nonmarking-symbol when adding todo-nondiary-marker.
8508 (todo-edit-category-diary-nonmarking): Fix indentation.
8509 (todo-insert-item--parameters): Group diary and nonmarking
8510 parameters together.
8511 (todo-insert-item--apply-args): Adjust to signature of
8512 todo-insert-item--basic and incorporate copy parameter.
8513 Make small code improvements.
8514 (todo-insert-item--next-param): Improve prompt and adjust it to
8515 new parameter grouping. Remove obsolete code.
8516 (todo-edit-item--param-key-alist)
8517 (todo-edit-item--date-param-key-alist)
8518 (todo-edit-done-item--param-key-alist): New defconsts.
8519 (todo-edit-item--prompt): New variable.
8520 (todo-edit-item--next-key): New function.
8521 (todo-key-bindings-t): Bind "e" to todo-edit-item.
8522 Remove bindings of deleted commands.
8523
8524 2014-05-04 Leo Liu <sdl.web@gmail.com>
8525
8526 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
8527
8528 2014-05-04 Glenn Morris <rgm@gnu.org>
8529
8530 * allout-widgets.el (allout-widgets-tally)
8531 (allout-decorate-item-guides):
8532 * menu-bar.el (menu-bar-positive-p):
8533 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
8534 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
8535 * progmodes/js.el (js--inside-param-list-p)
8536 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
8537 * progmodes/prolog.el (region-exists-p):
8538 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
8539 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
8540 Doc fixes (replace `iff').
8541
8542 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8543
8544 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
8545
8546 2014-05-04 Leo Liu <sdl.web@gmail.com>
8547
8548 Support Chinese diary entries in calendar and diary. (Bug#17393)
8549 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
8550 (calendar-chinese-from-absolute-for-diary)
8551 (calendar-chinese-to-absolute-for-diary)
8552 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
8553 (diary-chinese-list-entries): New functions to list and mark
8554 Chinese diary entries in the calendar window.
8555 (diary-chinese-anniversary)
8556 (diary-chinese-insert-anniversary-entry)
8557 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
8558 (diary-chinese-insert-yearly-entry): New commands to insert
8559 Chinese diary entries.
8560
8561 * calendar/diary-lib.el (diary-font-lock-keywords):
8562 Support font-locking Chinese dates.
8563
8564 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
8565 inserting Chinese diary entries.
8566
8567 * calendar/calendar.el (diary-chinese-entry-symbol):
8568 New customizable variable.
8569 (calendar-mode-map): Add bindings for inserting Chinese diary
8570 entries.
8571
8572 2014-05-03 Juri Linkov <juri@jurta.org>
8573
8574 * dired.el (dired-check-switches, dired-switches-recursive-p):
8575 New functions. (Bug#17218)
8576 (dired-switches-escape-p, dired-move-to-end-of-filename):
8577 Use `dired-check-switches'.
8578 (dired-insert-old-subdirs, dired-build-subdir-alist)
8579 (dired-sort-R-check): Use `dired-switches-recursive-p'.
8580
8581 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
8582
8583 * simple.el (undo-make-selective-list): New algorithm fixes
8584 incorrectness of position adjustments when undoing in region.
8585 (Bug#17235)
8586 (undo-elt-crosses-region): Make obsolete.
8587 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
8588 New functions to adjust positions using undo-deltas.
8589
8590 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8591
8592 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
8593 the last consecutive closing paren (bug#17345).
8594
8595 2014-04-30 Reuben Thomas <rrt@sc3d.org>
8596
8597 * dired.el (dired-mode): make terminology for eXpunge command
8598 consistent. (Bug#17276)
8599
8600 2014-04-30 Eli Zaretskii <eliz@gnu.org>
8601
8602 * dired.el (dired-initial-position-hook, dired-initial-position):
8603 Doc string fixes.
8604
8605 2014-04-30 Glenn Morris <rgm@gnu.org>
8606
8607 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
8608
8609 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
8610
8611 * faces.el (face-spec-recalc): Apply X resources only after the
8612 defface spec has been applied. Thus, X resources are no longer
8613 overriden by the defface spec which also fixes issues on win32 where
8614 the toolbar coloring was wrong because it is set through X resources
8615 and was (wrongfully) overriden. (Bug#16694)
8616
8617 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
8618
8619 * textmodes/rst.el (electric-pair-pairs): Declare.
8620 (rst-mode): Set it (bug#17131).
8621
8622 2014-04-30 Juri Linkov <juri@jurta.org>
8623
8624 * desktop.el (desktop-value-to-string): Let-bind `print-length'
8625 and `print-level' to nil. (Bug#17351)
8626
8627 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
8628
8629 * battery.el (battery-update): Handle the case where battery
8630 status is "N/A" (bug#17319).
8631
8632 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8633
8634 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
8635 to syntax-propertize.
8636 (ps-mode-auto-indent): Mark as obsolete.
8637 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
8638 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
8639 word regexp operators.
8640 (ps-mode-map): Move initialization into declaration. Remove binding
8641 for TAB, RET, >, ], and }.
8642 (ps-mode-syntax-table): Move initialization into declaration.
8643 Don't give word syntax to non-word chars.
8644 (ps-run-mode-map): Move initialization into declaration.
8645 (ps-mode-menu-main): Remove auto-indent entry.
8646 (ps-mode-smie-rules): New function.
8647 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
8648 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
8649 (ps-mode--string-syntax-table): New const.
8650 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
8651 New functions.
8652 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
8653 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
8654
8655 2014-04-27 Daniel Colascione <dancol@dancol.org>
8656
8657 * term/xterm.el (xterm-paste): Use large finite timeout when
8658 reading event to avoid putting keys in this-command-keys.
8659
8660 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8661
8662 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
8663 (perl-syntax-propertize-function): Use it. Extend handling of
8664 here-docs to the unquoted case.
8665
8666 2014-04-25 Eli Zaretskii <eliz@gnu.org>
8667
8668 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
8669 Use equal-including-properties to compare help-echo strings (bug#17331).
8670
8671 2014-04-25 Leo Liu <sdl.web@gmail.com>
8672
8673 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8674 Fix syntax for @. (Bug#17325)
8675
8676 2014-04-25 Daniel Colascione <dancol@dancol.org>
8677
8678 * emacs-lisp/cl.el (gv): Require gv early to break eager
8679 macro-expansion cycles.
8680
8681 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8682
8683 * simple.el (region-active-p): Check there's a mark (bug#17324).
8684
8685 * simple.el (completion-list-mode-map): Use choose-completion for the
8686 mouse binding as well (bug#17302).
8687 (completion-list-mode, completion-setup-function): Adjust docstring and
8688 echo area message accordingly.
8689 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
8690 calling convention of choose-completion.
8691 * comint.el (comint-dynamic-list-completions):
8692 * term.el (term-dynamic-list-completions): Accept choose-completion.
8693
8694 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
8695 &, |, +, - and * can't be a division (bug#17317).
8696
8697 * term/xterm.el (xterm--version-handler): Don't use modern xterm
8698 features on gnome-terminal (bug#16988).
8699
8700 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
8701
8702 Improve Scheme font-locking for (define ((foo ...) ...) ...).
8703
8704 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
8705 the declared object, ignore zero or more parens, not zero or one.
8706
8707 2014-04-24 Leo Liu <sdl.web@gmail.com>
8708
8709 * progmodes/xscheme.el (xscheme-expressions-ring)
8710 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
8711 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
8712 (xscheme-allow-output-p, xscheme-prompt)
8713 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
8714
8715 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
8716 Comment out unused functions.
8717
8718 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8719
8720 * info.el: Use lexical-binding and cl-lib.
8721 Use defvar-local and setq-local instead of make-local-variable.
8722 (Info-apropos-matches): Avoid add-to-list.
8723 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
8724
8725 2014-04-24 Daniel Colascione <dancol@dancol.org>
8726
8727 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
8728
8729 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8730
8731 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
8732
8733 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
8734
8735 * dired.el (dired-insert-set-properties): Do not consider
8736 subdirectory headings and empty lines to be information that
8737 `dired-hide-details-mode' should hide. (Bug#17228)
8738
8739 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
8740
8741 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8742 Remove test messages.
8743 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
8744 and `target' twice.
8745
8746 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8747
8748 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
8749 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
8750
8751 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
8752
8753 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
8754
8755 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8756 Set "IFS=" when using read builtin, in order to preserve spaces in
8757 the file name. Add test messages for hunting a bug on hydra.
8758 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
8759
8760 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8761
8762 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
8763 Don't prettify a word within a symbol.
8764
8765 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
8766
8767 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
8768 possible.
8769
8770 2014-04-22 Daniel Colascione <dancol@dancol.org>
8771
8772 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
8773 use defun to define `function-put'.
8774
8775 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8776
8777 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
8778 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
8779 (lisp-mode-variables): Set font-lock-extra-managed-props.
8780
8781 * emacs-lisp/byte-run.el (function-put): New function.
8782 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
8783 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
8784 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
8785 Use them.
8786
8787 2014-04-22 Daniel Colascione <dancol@dancol.org>
8788
8789 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
8790 Add `full-p' parameter; when nil, call `macroexpand' instead of
8791 `macroexpand-all'.
8792
8793 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
8794 Improve docstrings.
8795
8796 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
8797 Use lambda function values, not quoted lambdas.
8798 (byte-compile-recurse-toplevel): Remove extraneous &optional.
8799
8800 * emacs-lisp/cl-macs.el
8801 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
8802 (cl-struct-slot-value): Conditionally use aref or nth so that the
8803 compiler produces optimal code.
8804
8805 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8806
8807 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
8808 (inline): Don't inline cl--set-elt.
8809 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
8810 Define as inlinable instead.
8811 (cl-struct-set-slot-value): Remove.
8812
8813 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
8814 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
8815 Use setf instead.
8816
8817 2014-04-21 Daniel Colascione <dancol@dancol.org>
8818
8819 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
8820 last two parameters after all.
8821 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
8822 (cl--compiler-macro-assoc,cl-struct-slot-value)
8823 (cl-struct-set-slot-value): Stop using them.
8824
8825 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
8826
8827 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
8828 entry in image-mode-winprops-alist.
8829
8830 2014-04-21 Daniel Colascione <dancol@dancol.org>
8831
8832 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
8833 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
8834 (byte-compile-toplevel-file-form): Use it.
8835
8836 * emacs-lisp/cl-macs.el:
8837 (cl--loop-let): Properly destructure `while' clauses.
8838
8839 2014-04-20 Daniel Colascione <dancol@dancol.org>
8840
8841 * vc/vc.el (vc-root-dir): New public autoloaded function for
8842 generically finding the current VC root.
8843 * vc/vc-hooks.el (vc-not-supported): New error.
8844 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
8845
8846 2014-04-20 Daniel Colascione <dancol@dancol.org>
8847
8848 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
8849 argument.
8850 (cl--const-expr-val): cl--const-expr-val should macroexpand its
8851 argument in case we're inside a symbol-macrolet.
8852 (cl--do-arglist, cl--compiler-macro-typep)
8853 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
8854 environment to `cl--const-expr-val'.
8855 (cl-struct-sequence-type,cl-struct-slot-info)
8856 (cl-struct-slot-offset, cl-struct-slot-value)
8857 (cl-struct-set-slot-value): New functions.
8858
8859 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8860
8861 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
8862 assignments such as "case=hello" (bug#17297).
8863
8864 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
8865
8866 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
8867 Do not autoload.
8868 (tramp-file-name-handler, tramp-completion-file-name-handler):
8869 Revert patch from 2014-04-10, it isn't necessary anymore.
8870 (tramp-autoload-file-name-handler)
8871 (tramp-register-autoload-file-name-handlers): New defuns.
8872 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
8873 (tramp-register-file-name-handlers): Remove also
8874 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
8875 Do not autoload its invocation, but eval it after loading of 'tramp.
8876
8877 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
8878
8879 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
8880
8881 2014-04-17 Daniel Colascione <dancol@dancol.org>
8882
8883 Add support for bracketed paste mode; add infrastructure for
8884 managing terminal mode enabling and disabling automatically.
8885
8886 * xt-mouse.el:
8887 (xterm-mouse-mode): Simplify.
8888 (xterm-mouse-tracking-enable-sequence)
8889 (xterm-mouse-tracking-disable-sequence): New constants.
8890 (turn-on-xterm-mouse-tracking-on-terminal)
8891 (turn-off-xterm-mouse-tracking-on-terminal):
8892 Use tty-mode-set-strings and tty-mode-reset-strings terminal
8893 parameters instead of random hooks.
8894 (turn-on-xterm-mouse-tracking)
8895 (turn-off-xterm-mouse-tracking): Delete.
8896
8897 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
8898 (xterm-paste-ending-sequence): New constant.
8899 (xterm-paste): New command used for bracketed paste support.
8900
8901 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
8902 (terminal-init-xterm-bracketed-paste-mode): New function.
8903 (terminal-init-xterm): Call it.
8904 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
8905 and tty-mode-reset-strings instead of random hooks.
8906 (xterm-turn-on-modify-other-keys)
8907 (xterm-turn-off-modify-other-keys)
8908 (xterm-remove-modify-other-keys): Delete obsolete functions.
8909
8910 * term/screen.el: Rewrite to just use the xterm code.
8911 Add copyright notice. Mention tmux.
8912
8913 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
8914
8915 * image-mode.el (image-mode-window-put): Also update the property of
8916 the "default window".
8917 * doc-view.el (doc-view-new-window-function): If no window
8918 exists, move to the last known page.
8919
8920 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8921
8922 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
8923 here-documents (bug#17262).
8924
8925 2014-04-16 Eli Zaretskii <eliz@gnu.org>
8926
8927 * term/pc-win.el (x-list-fonts, x-get-selection-value):
8928 Provide doc strings, as required by snarf-documentation.
8929
8930 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8931
8932 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
8933 arg of overlays-at. Use `invisible-p'.
8934
8935 * obsolete/lucid.el (extent-at):
8936 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
8937 overlays-at.
8938 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
8939
8940 2014-04-16 João Távora <joaotavora@gmail.com>
8941
8942 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
8943 links. (Bug#17217).
8944
8945 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8946
8947 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
8948 Use mapc to loop over a vector. (Bug#17257).
8949
8950 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
8951
8952 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
8953 patch, there are new problems with file names containing spaces.
8954 Get rid of backticks. (Bug#17238)
8955
8956 2014-04-16 João Távora <joaotavora@gmail.com>
8957
8958 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
8959 possible bug.
8960
8961 2014-04-16 Eli Zaretskii <eliz@gnu.org>
8962
8963 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
8964 (blink-cursor-mode): Mention customization variables and the
8965 effect of 'blink-cursor-blinks'.
8966
8967 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
8968
8969 * simple.el (undo): Prevent insertion of identity mapping into
8970 undo-equiv-table so as undo-only does not inf loop in the presence
8971 of consecutive nils in undo list.
8972
8973 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
8974
8975 * faces.el (make-face): Deprecate optional argument as it is no
8976 longer needed/used since the conditional X resources handling
8977 has been pushed down to make-face-x-resource-internal itself.
8978 (make-empty-face): Don't pass optional argument to make-face.
8979
8980 2014-04-16 Karl Fogel <kfogel@red-bean.com>
8981
8982 * savehist.el (savehist-save): Remove workaround for a read-passwd
8983 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
8984 noticing that the shim was still present.
8985
8986 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8987
8988 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
8989
8990 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
8991
8992 * faces.el (face-set-after-frame-default): Remove unused local variable.
8993
8994 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8995
8996 * progmodes/grep.el: Use lexical-binding.
8997 (grep-expand-template): Pass explicit lexical env to `eval'.
8998 (zrgrep): Let-bind grep-find-template explicitly.
8999
9000 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
9001 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
9002
9003 2014-04-12 Eli Zaretskii <eliz@gnu.org>
9004
9005 * international/characters.el <standard-case-table>: Add entries
9006 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
9007 Set category of Coptic characters be 'g' (Greek).
9008
9009 2014-04-12 Leo Liu <sdl.web@gmail.com>
9010
9011 * progmodes/octave.el (completion-table-with-cache):
9012 Define if not available.
9013 (octave-goto-function-definition, octave-sync-function-file-names)
9014 (octave-find-definition-default-filename):
9015 Backquote upattern for compatibility.
9016
9017 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
9018
9019 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
9020 name twice due to backticks. (Bug#17238)
9021
9022 2014-04-12 Glenn Morris <rgm@gnu.org>
9023
9024 * term/w32-win.el (x-win-suspend-error):
9025 * term/x-win.el (x-win-suspend-error): Sync docs.
9026
9027 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
9028
9029 * faces.el (make-face): Remove deprecated optional argument.
9030 The conditional application of X resources is handled directly by
9031 make-face-x-resource-internal since Emacs 24.4.
9032 (make-empty-face): Don't pass optional argument to make-face.
9033
9034 2014-04-11 Glenn Morris <rgm@gnu.org>
9035
9036 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
9037
9038 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9039
9040 Ediff's overlay priorities cause more trouble than they solve.
9041 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
9042 (ediff-highest-priority): Remove function (bug#17234).
9043 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
9044 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
9045 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
9046 overlay priorities.
9047
9048 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
9049
9050 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
9051 entry; use symbol boundaries to avoid mis-matches.
9052
9053 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
9054
9055 * net/tramp.el (tramp-file-name-handler)
9056 (tramp-completion-file-name-handler): Avoid recursive loading.
9057
9058 * net/tramp-sh.el (tramp-make-copy-program-file-name):
9059 Quote result also locally.
9060
9061 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9062
9063 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
9064 Remove left-over code.
9065
9066 * newcomment.el (comment-indent-new-line): Sink code where it's used.
9067 Reuse the previous comment's indentation unconditionally if it's on its
9068 own line.
9069
9070 2014-04-09 Daniel Colascione <dancol@dancol.org>
9071
9072 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
9073 `no-syntax-crossing' arguments. Forward to `up-list'.
9074 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
9075 Implement logic for escaping from strings. Use narrowing to deal
9076 with corner cases.
9077
9078 2014-04-09 Leo Liu <sdl.web@gmail.com>
9079
9080 * net/rcirc.el (rcirc-connection-info): New variable.
9081 (rcirc-connect): Use it to store connection info.
9082 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
9083 for killed process.
9084 (rcirc-cmd-reconnect): New command. (Bug#17045)
9085 (rcirc-mode, set-rcirc-encode-coding-system)
9086 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
9087
9088 2014-04-09 Daniel Colascione <dancol@dancol.org>
9089
9090 * emacs-lisp/cl-indent.el: Add comment claiming
9091 facility is also good for elisp.
9092 (lisp-indent-find-method): New function.
9093 (common-lisp-indent-function): Recognize cl-loop.
9094 (common-lisp-indent-function-1): Recognize cl constructs; use
9095 `lisp-indent-find-method' instead of `get' directly.
9096 (if): Use else-body style for elisp.
9097
9098 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
9099
9100 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
9101 Module methods. (Bug#17216)
9102
9103 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
9104
9105 * help.el (describe-bindings): Fix buffer handling (bug#17210).
9106 (describe-bindings-internal): Mark obsolete.
9107
9108 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
9109
9110 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
9111 buffer-file-name, and buffer-file-truename any more.
9112
9113 2014-04-08 Leo Liu <sdl.web@gmail.com>
9114
9115 Use lexical-binding and require cl-lib.
9116 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
9117 (rcirc-handler-generic, rcirc-fill-paragraph)
9118 (rcirc-format-response-string, rcirc-target-buffer)
9119 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
9120 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
9121 (rcirc-ctcp-sender-PING, rcirc-browse-url)
9122 (rcirc-markup-timestamp, rcirc-markup-attributes)
9123 (rcirc-markup-my-nick, rcirc-markup-urls)
9124 (rcirc-markup-bright-nicks, rcirc-markup-fill)
9125 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
9126 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
9127 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
9128 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
9129 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
9130 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
9131 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
9132 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
9133 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
9134 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
9135 use cl-lib.
9136
9137 2014-04-07 João Távora <joaotavora@gmail.com>
9138
9139 * elec-pair.el (electric-pair--syntax-ppss):
9140 When inside comments parse from comment beginning.
9141 (electric-pair--balance-info): Fix typo in comment.
9142 (electric-pair--in-unterminated-string-p): Delete.
9143 (electric-pair--unbalanced-strings-p): New function.
9144 (electric-pair-string-bound-function): New var.
9145 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
9146 according to `electric-pair--in-unterminated-string-p'
9147
9148 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
9149 Inhibit quote pairing if point-max is inside an unterminated string.
9150 (electric-pair--looking-at-unterminated-string-p): Delete.
9151 (electric-pair--in-unterminated-string-p): New function.
9152
9153 2014-04-07 Glenn Morris <rgm@gnu.org>
9154
9155 * shell.el (shell-directory-tracker):
9156 Go back to just ignoring failures. (Bug#17159)
9157
9158 2014-04-07 João Távora <joaotavora@gmail.com>
9159
9160 Fix `electric-pair-delete-adjacent-pairs' in modes binding
9161 backspace. (Bug#16981)
9162 * elec-pair.el (electric-pair-backward-delete-char): Delete.
9163 (electric-pair-backward-delete-char-untabify): Delete.
9164 (electric-pair-mode-map): Bind backspace to a menu item filtering
9165 a new `electric-pair-delete-pair' command.
9166 (electric-pair-delete-pair): New command.
9167
9168 * progmodes/python.el (python-electric-pair-string-delimiter):
9169 Fix triple-quoting electricity. (Bug#17192)
9170
9171 * elec-pair.el (electric-pair-post-self-insert-function):
9172 Don't skip whitespace when `electric-pair-text-pairs' and
9173 `electric-pair-pairs' were used. syntax to
9174 electric-pair--skip-whitespace. (Bug#17183)
9175
9176 2014-04-07 Eli Zaretskii <eliz@gnu.org>
9177
9178 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
9179 "<F>". (Bug#17199)
9180
9181 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
9182
9183 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
9184 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
9185
9186 2014-04-07 Glenn Morris <rgm@gnu.org>
9187
9188 * help.el (view-lossage): Doc tweak.
9189
9190 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
9191
9192 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
9193 only when inhibit-x-resources is nil, and do that earlier in the
9194 function. Doc fix. (Bug#16694)
9195 (face-spec-choose): Accept additional optional argument, whose
9196 value is returned if no matching attributes are found.
9197 (face-spec-recalc): Use the new optional argument when calling
9198 face-spec-choose. (Bug#16378)
9199 (make-face-x-resource-internal): Do nothing when
9200 inhibit-x-resources is non-nil. Don't touch the default face if
9201 reversed video is given--as was done in previous versions of Emacs.
9202 (face-set-after-frame-default): Don't call
9203 make-face-x-resource-internal here. (Bug#16434)
9204
9205 2014-04-07 Tassilo Horn <tsdh@gnu.org>
9206
9207 * doc-view.el (doc-view-bookmark-jump):
9208 Use `bookmark-after-jump-hook' to jump to the right page after the
9209 buffer is shown in a window. (bug#16090)
9210
9211 2014-04-07 Eli Zaretskii <eliz@gnu.org>
9212
9213 * international/characters.el (mirroring): Fix last change:
9214 instead of loading uni-mirrored.el explicitly, do that implicitly
9215 by creating the 'mirroring' uniprop table. This avoids announcing
9216 the loading of uni-mirrored.el.
9217
9218 2014-04-07 Glenn Morris <rgm@gnu.org>
9219
9220 * files.el (buffer-stale--default-function)
9221 (buffer-stale-function, revert-buffer--default):
9222 * autorevert.el (auto-revert-buffers): Doc tweaks.
9223
9224 2014-04-07 Eli Zaretskii <eliz@gnu.org>
9225
9226 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
9227
9228 2014-04-07 Glenn Morris <rgm@gnu.org>
9229
9230 * files.el (make-backup-file-name-function)
9231 (make-backup-file-name, make-backup-file-name--default-function)
9232 (make-backup-file-name-1, find-backup-file-name)
9233 (revert-buffer-function, revert-buffer-insert-file-contents-function)
9234 (buffer-stale--default-function, buffer-stale-function)
9235 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
9236 (revert-buffer, revert-buffer--default)
9237 (revert-buffer-insert-file-contents--default-function):
9238 Doc fixes related to defaults no longer being nil.
9239 (make-backup-file-name-function): Bump :version.
9240 Restore nil as a valid but deprecated custom type.
9241
9242 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
9243
9244 * progmodes/perl-mode.el (perl-syntax-propertize-function):
9245 Handle $' used as a variable (bug#17174).
9246
9247 * progmodes/perl-mode.el (perl-indent-new-calculate):
9248 Handle forward-sexp failure (bug#16985).
9249 (perl-syntax-propertize-function): Add "foreach" and "for" statement
9250 modifiers introducing expressions (bug#17116).
9251
9252 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
9253
9254 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
9255
9256 2014-04-05 Leo Liu <sdl.web@gmail.com>
9257
9258 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
9259 Add define-compilation-mode.
9260
9261 2014-04-04 João Távora <joaotavora@gmail.com>
9262
9263 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
9264 parse from comment beginning.
9265 (electric-pair--balance-info): Fix typo in comment.
9266 (electric-pair--in-unterminated-string-p): Delete.
9267 (electric-pair--unbalanced-strings-p): New function.
9268 (electric-pair-string-bound-function): New var.
9269 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
9270 according to `electric-pair--in-unterminated-string-p'.
9271
9272 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9273
9274 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
9275 Move declaration before first use.
9276 (reftex-move-to-next-arg): Silence compiler warning.
9277
9278 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
9279
9280 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
9281 Use `window-total-width' instead of `window-width'.
9282
9283 2014-04-03 Daniel Colascione <dancol@dancol.org>
9284
9285 * subr.el (set-transient-map): Remove rms's workaround entirely;
9286 use new `suspicious-object' subr to mark our lambda for closer
9287 scrutiny during gc.
9288
9289 2014-04-02 Richard Stallman <rms@gnu.org>
9290
9291 * subr.el (set-transient-map): Comment out previous change.
9292
9293 2014-04-02 Glenn Morris <rgm@gnu.org>
9294
9295 * menu-bar.el (menu-bar-file-menu):
9296 * vc/ediff.el (ediff-current-file):
9297 Update for revert-buffer-function no longer being nil by default.
9298
9299 * simple.el (command-execute): Respect nil disabled-command-function.
9300
9301 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
9302
9303 * simple.el (command-execute): Do not execute the command when it
9304 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
9305
9306 2014-04-02 Juri Linkov <juri@jurta.org>
9307
9308 * dired-aux.el (dired-compress-file): Don't use string-match-p
9309 because its match data is used afterwards.
9310
9311 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
9312
9313 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
9314 0 like nil.
9315
9316 2014-04-02 João Távora <joaotavora@gmail.com>
9317
9318 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
9319 Inhibit quote pairing if point-max is inside an unterminated string.
9320 (electric-pair--looking-at-unterminated-string-p):
9321 Delete.
9322 (electric-pair--in-unterminated-string-p): New function.
9323
9324 2014-04-01 Daniel Colascione <dancol@dancol.org>
9325
9326 * minibuffer.el (minibuffer-complete): Prevent assertion failure
9327 when trying to complete the prompt.
9328
9329 2014-03-31 Leo Liu <sdl.web@gmail.com>
9330
9331 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9332 Refactor out eldoc-documentation-function-default.
9333 (eldoc-documentation-function-default): New function.
9334 (eldoc-documentation-function): Change value.
9335
9336 2014-03-31 Glenn Morris <rgm@gnu.org>
9337
9338 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
9339
9340 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
9341 (vhdl-compose-components-package, vhdl-compose-configuration):
9342 Abbreviate default-directory (missing from some previous upstream sync).
9343
9344 2014-03-31 Reto Zimmermann <reto@gnu.org>
9345
9346 Sync with upstream vhdl mode v3.35.2.
9347 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
9348 (top-level): No longer require assoc.
9349 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
9350 New functions. Use throughout to replace aget etc.
9351 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
9352 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
9353 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
9354 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
9355 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
9356 except `vhdl-compiler'.
9357 (vhdl-error-regexp-add-emacs): Remove all other compilers,
9358 when appropriate.
9359
9360 2014-03-31 Glenn Morris <rgm@gnu.org>
9361
9362 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
9363 Revert 2014-03-26 merge goof; go back to using defalias.
9364
9365 2014-03-30 Daniel Colascione <dancol@dancol.org>
9366
9367 * comint.el (comint-send-input):
9368 Deactivate completion-in-region-mode before we send comint input.
9369 (Bug#17139).
9370
9371 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
9372 on keyboard-quit.
9373
9374 2014-03-29 Glenn Morris <rgm@gnu.org>
9375
9376 * textmodes/reftex.el: Manage most autoloads automatically.
9377 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
9378 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
9379 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
9380 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
9381 * textmodes/reftex-toc.el: Set generated-autoload-file,
9382 and add autoload cookies for reftex.el.
9383 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
9384
9385 2014-03-28 Glenn Morris <rgm@gnu.org>
9386
9387 * cus-start.el (report-emacs-bug-address): Set custom properties.
9388 * mail/emacsbug.el (report-emacs-bug-address):
9389 Variable is now defined in emacs.c.
9390
9391 * mail/emacsbug.el (report-emacs-bug):
9392 Include system-configuration-features.
9393
9394 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
9395
9396 * simple.el (cycle-spacing): Never delete spaces on first run by
9397 default, but do so in a new 'fast mode and if there are already
9398 N spaces (the previous behavior).
9399 Compare N with its value in previous invocation so that changing
9400 prefix argument restarts `cycle-spacing' sequence.
9401 The idea is that with this change, binding M-SPC to
9402 `cycle-spacing' should not introduce any changes in behavior of
9403 the binding so long as users do not type M-SPC twice in a raw with
9404 the same prefix argument or lack thereof.
9405
9406 2014-03-28 Glenn Morris <rgm@gnu.org>
9407
9408 * faces.el (term-file-aliases): New variable.
9409 (tty-run-terminal-initialization): Respect term-file-aliases.
9410 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
9411 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
9412 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
9413
9414 2014-03-27 Glenn Morris <rgm@gnu.org>
9415
9416 * startup.el (inhibit-startup-hooks): Doc tweak.
9417 (normal-top-level): Simplify running of hooks.
9418 For window-setup-hook, respect inhibit-startup-hooks.
9419 (command-line-1): Don't set window-setup-hook to nil.
9420
9421 Allow selective autoloading from obsolete/ directory.
9422 * Makefile.in (obsolete-autoloads): New rule.
9423 (autoloads): Run obsolete-autoloads.
9424 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
9425 * simple.el (iswitchb-mode): Remove hand-written autoloads.
9426
9427 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
9428
9429 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9430 Highlight special globals with font-lock-builtin-face. (Bug#17057)
9431
9432 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
9433 Don't propertize `?' or `!' as symbol constituent when after
9434 colon. (Bug#17097)
9435
9436 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
9437
9438 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
9439 which is no longer needed and causes trouble in GTK builds (bug#17046).
9440
9441 * emacs-lisp/package-x.el (package--archive-contents-from-url):
9442 Use url-insert-file-contents; package-handle-response no longer exists.
9443
9444 2014-03-26 Daniel Colascione <dancol@dancol.org>
9445
9446 * simple.el (process-menu-mode-map): New variable.
9447 (process-menu-delete-process): New command.
9448
9449 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
9450
9451 * emacs-lisp/package.el: Fix bug#16733 (again).
9452 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
9453 (url-http-target-url): Remove unused declarations.
9454 (package-handle-response): Remove.
9455 (package--with-work-buffer): Use url-insert-file-contents and simplify.
9456 (package--download-one-archive): Use current-buffer instead of
9457 dynamic binding of `buffer'.
9458 (describe-package-1): Do not decode readme-string.
9459
9460 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
9461
9462 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
9463
9464 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
9465 from 2014-03-07, it decreases performance unnecessarily. Let-bind
9466 `remote-file-name-inhibit-cache' to nil in the second pass.
9467 (tramp-find-executable): Do not call "which" on SunOS.
9468 (tramp-send-command-and-check): Fix docstring.
9469 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
9470 check whether source directory has set the sticky bit.
9471
9472 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
9473
9474 * simple.el (primitive-undo): Only process marker adjustments
9475 validated against their corresponding (TEXT . POS). Issue warning
9476 for lone marker adjustments in undo history. (Bug#16818)
9477 (undo-make-selective-list): Add marker adjustments to selective
9478 undo list based on whether their corresponding (TEXT . POS) is in
9479 the region. Remove variable adjusted-markers, which was unused
9480 and only non nil during undo-make-selective-list.
9481 (undo-elt-in-region): Return nil when passed a marker adjustment
9482 and explain in function doc.
9483
9484 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
9485
9486 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
9487
9488 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
9489
9490 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
9491 Match special global variables without curlies, too.
9492 (ruby-font-lock-keywords): Simplify the matcher for special global
9493 variables. Don't require a non-word character after the variable.
9494 (Bug#17057)
9495
9496 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9497
9498 * simple.el (redisplay-highlight-region-function): Increase priority of
9499 overlay to make sure boundaries are visible (bug#15899).
9500
9501 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
9502
9503 * frameset.el (frameset--initial-params): Fix typo in parameter name.
9504 (frameset-restore): Compare display strings with equal.
9505
9506 * frame.el (make-frame): Don't quote display name in error message,
9507 it is already a string.
9508
9509 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9510
9511 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
9512 the password.
9513
9514 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
9515
9516 * emacs-lisp/package.el (package--add-to-archive-contents):
9517 Include already installed and built-in packages in
9518 `package-archive-contents'.
9519 (package-install): Don't include already installed packages in the
9520 options during interactive invocation. (Bug#16762)
9521 (package-show-package-list): If the buffer is already displayed in
9522 another window, switch to that window.
9523
9524 2014-03-26 Reto Zimmermann <reto@gnu.org>
9525
9526 Sync with upstream vhdl mode v3.35.1.
9527 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
9528 (vhdl-compiler-alist): Doc fix.
9529 (vhdl-goto-line): Remove.
9530 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
9531 (vhdl-mode) <paragraph-start>: Fix value.
9532 (vhdl-fix-statement-region): Not `for' in wait-statement.
9533 (vhdl-beautify-region): Also (un)tabify.
9534 (vhdl-get-visible-signals):
9535 Scan declarative part of generate statements.
9536 (vhdl-template-record): Fix indentation for record type declaration.
9537 (vhdl-expand-abbrev, vhdl-expand-paren):
9538 Revert to using fset again rather than defalias.
9539 (vhdl-scan-directory-contents): Tweak.
9540 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
9541 (vhdl-compose-components-package):
9542 Replace vhdl-goto-line with forward-line.
9543 (top-level): Tweak speedbar frame selection.
9544 (vhdl-generate-makefile-1): Support for compilers with no
9545 unit-to-file name mapping (create directory with dummy files).
9546
9547 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
9548
9549 Sync with upstream verilog-mode revision 702457d.
9550 * progmodes/verilog-mode.el (verilog-mode-version): Update.
9551 (create-lockfiles): Declare.
9552 (verilog-read-decls): Fix module header imports, bug709.
9553 Reported by Victor Lau.
9554 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
9555 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
9556 interface-only modules, bug721. Reported by Dean Hoyt.
9557
9558 2014-03-26 Glenn Morris <rgm@gnu.org>
9559
9560 * obsolete/gulp.el: Move here from emacs-lisp/.
9561
9562 * files.el (lock-buffer, unlock-buffer, file-locked-p):
9563 Remove fallback aliases, since they are always defined now.
9564
9565 2014-03-24 Daniel Colascione <dancol@dancol.org>
9566
9567 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
9568 instead of cl-loop search function.
9569
9570 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
9571
9572 * calendar/parse-time.el (parse-time-iso8601-regexp)
9573 (parse-iso8601-time-string): Copy from `url-dav' so that we can use
9574 it more generally.
9575
9576 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
9577
9578 * net/dns.el (network-interface-list): Define for XEmacs.
9579
9580 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
9581
9582 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
9583 the network interfaces changed.
9584 (dns-query): Use it to flush the data.
9585
9586 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
9587
9588 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
9589
9590 2014-03-23 Daniel Colascione <dancol@dancol.org>
9591
9592 Change subword-mode to use `find-word-boundary-function-table' and
9593 replace `capitalized-words-mode'. Also, convert to lexical binding.
9594 * progmodes/cap-words.el: Delete now-obsolete file.
9595 * progmodes/subword.el: Reimplement using
9596 `find-word-boundary-function-table'.
9597 (subword-mode-map): Hollow out.
9598 (capitalized-words-mode): Define as obsolete alias for
9599 `subword-mode'.
9600 (subword-mode, superword-mode): Tweak documentation to reflect new
9601 implementation; call `subword-setup-buffer'.
9602 (subword-forward, subword-capitalize): Add underscore to indicate
9603 unused variable.
9604 (subword-find-word-boundary-function-table): New constant.
9605 (subword-empty-char-table): New constant.
9606 (subword-setup-buffer): New function.
9607 (subword-find-word-boundary): New function.
9608
9609 2014-03-23 Daniel Colascione <dancol@dancol.org>
9610
9611 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
9612 list to look for keyword arguments instead of `memq', fixing
9613 (Bug#3647) --- unfortunately, only for freshly-compiled code.
9614 Please make bootstrap.
9615
9616 2014-03-22 Glenn Morris <rgm@gnu.org>
9617
9618 * dired.el (dired-read-regexp): Make obsolete.
9619 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
9620 (dired-flag-files-regexp):
9621 * dired-aux.el (dired-mark-read-regexp):
9622 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
9623
9624 * startup.el (fancy-startup-text):
9625 * help.el (describe-gnu-project): Visit online info about GNU project.
9626
9627 * help-fns.el (help-fns--interactive-only): New function.
9628 (help-fns-describe-function-functions): Add the above function.
9629 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
9630 (next-line, previous-line): Remove hand-written interactive-only
9631 information from doc strings, it is auto-generated now.
9632 * bookmark.el (bookmark-write):
9633 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
9634 (epa-mail-import-keys): Mark interactive-only,
9635 and remove hand-written interactive-only information from doc strings.
9636 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
9637 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
9638 * files.el (not-modified):
9639 * simple.el (mark-whole-buffer): Mark interactive-only.
9640
9641 * emacs-lisp/byte-run.el (defun-declarations-alist):
9642 Add interactive-only. Doc tweak.
9643 (macro-declarations-alist): Doc tweak.
9644 * subr.el (declare): Doc tweak (add xref to manual).
9645 * comint.el (comint-run):
9646 * files.el (insert-file-literally, insert-file):
9647 * replace.el (replace-string, replace-regexp):
9648 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
9649 (delete-forward-char, goto-line, insert-buffer, next-line)
9650 (previous-line): Set interactive-only via declare.
9651
9652 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
9653
9654 * emacs-lisp/package.el (package-desc): Use the contents of the
9655 quoted form, not its cdr. (Bug#16873)
9656
9657 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
9658
9659 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
9660 benefit of doc.c; change parameter profile to match the X function.
9661
9662 2014-03-22 Leo Liu <sdl.web@gmail.com>
9663
9664 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
9665 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
9666
9667 2014-03-21 Richard Stallman <rms@gnu.org>
9668
9669 * battery.el (battery-linux-sysfs): Search for each field
9670 from the beginning of the buffer.
9671
9672 * subr.el (set-transient-map): Clear out function and value
9673 of the temporary symbol when we're done with it.
9674
9675 * mail/rmailsum.el (rmail-summary-delete-forward):
9676 Optimize case of reaching end and handling count.
9677 (rmail-summary-mark-deleted): Optimize when N is current msg.
9678 Don't create new summary line.
9679 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
9680 (rmail-summary-undelete-many): Rewrite for speed.
9681 (rmail-summary-msg-number): New function.
9682
9683 * mail/rmail.el (rmail-delete-message): Update summary.
9684 (rmail-undelete-previous-message): Handle repeat count arg.
9685 (rmail-delete-backward, rmail-delete-forward): Likewise.
9686
9687 2014-03-21 Daniel Colascione <dancol@dancol.org>
9688
9689 * mail/emacsbug.el (report-emacs-bug): Include memory usage
9690 information in bug reports.
9691
9692 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
9693
9694 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
9695 and `tramp-copy-env'.
9696
9697 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
9698 (tramp-maybe-open-connection): Handle `tramp-login-env'.
9699
9700 2014-03-21 Glenn Morris <rgm@gnu.org>
9701
9702 * electric.el (electric-indent-post-self-insert-function): Add doc.
9703
9704 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
9705
9706 * emacs-lisp/package.el (package-compute-transaction):
9707 Use `version-list-<=' to compare the requirement version against
9708 the version of package already to be installed. Update the error
9709 message. (Bug#16826)
9710
9711 * progmodes/ruby-mode.el (ruby-smie-rules):
9712 Add indentation rule for ` @ '. (Bug#17050)
9713
9714 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
9715
9716 * align.el (align-regexp): Remove superfluous backslash.
9717
9718 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
9719 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
9720 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
9721 Fix docstring typos.
9722 (ffap-next): Use C-u in docstring.
9723 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
9724 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
9725 Remove superfluous backslashes.
9726 (ffap-string-at-point): Reflow docstring.
9727
9728 * server.el (server-host): Reflow docstring.
9729 (server-unload-function): Fix docstring typo.
9730 (server-eval-at): Remove superfluous backslash.
9731
9732 * skeleton.el (skeleton-insert): Remove superfluous backslash.
9733 (skeleton-insert): Doc fix.
9734 (skeleton-insert): Reflow docstring.
9735
9736 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
9737 (tty-color-approximate, tty-color-by-index, tty-color-values)
9738 (tty-color-desc): Remove superfluous backslashes.
9739
9740 2014-03-21 Glenn Morris <rgm@gnu.org>
9741
9742 * cus-start.el (history-length): Bump :version.
9743
9744 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
9745 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
9746 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
9747 Don't set `make-backup-files'.
9748
9749 * info.el (info--prettify-description): New function,
9750 to give info-finder descriptions consistent case, punctuation.
9751 (Info-finder-find-node): Use it. Sort packages.
9752 Refer to "description" rather than "commentary".
9753
9754 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
9755
9756 * frameset.el (frameset--print-register): New function.
9757 (frameset-to-register): Use it.
9758
9759 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
9760
9761 * progmodes/hideif.el (hif-string-to-number): New function.
9762 (hif-tokenize): Use it to understand non-decimal floats.
9763
9764 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
9765
9766 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
9767
9768 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9769
9770 * electric.el (electric-newline-and-maybe-indent): New command.
9771 Bind it globally to C-j.
9772 (electric-indent-mode): Don't mess with the global map any more.
9773 Don't drop the post-self-insert-hook is some buffer is still using it
9774 (bug#16770).
9775
9776 * bindings.el (global-map): Remove C-j binding.
9777
9778 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
9779 the docstring of functions advised before dumping (bug#16993).
9780
9781 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
9782
9783 * ps-print.el (ps-generate-postscript-with-faces):
9784 Explicitly deactivate the mark (bug#16866).
9785 * simple.el (deactivate-mark): Update region highlight.
9786
9787 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
9788
9789 * emacs-lisp/package.el (describe-package-1):
9790 Decode commentary (bug#16733).
9791
9792 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
9793
9794 * custom.el (defcustom): Doc fix: recommend avoiding destructive
9795 modification of the value argument of :set (bug#16755).
9796
9797 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9798
9799 * simple.el (newline-and-indent): Do autofill (bug#17031).
9800
9801 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
9802
9803 * newcomment.el (comment-normalize-vars): Only add escaping check
9804 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
9805 (comment-beginning): Use `narrow-to-region' instead of moving back
9806 one character.
9807 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
9808 (comment-start-skip): Update the docstring.
9809
9810 2014-03-18 Richard Stallman <rms@gnu.org>
9811
9812 * dired.el (dired-display-file): Force use of other window.
9813
9814 2014-03-18 Daniel Colascione <dancol@dancol.org>
9815
9816 * startup.el (tty-handle-args): Remove debug message from 2007.
9817
9818 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9819
9820 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
9821 (advice--make-interactive-form): Use it to avoid (auto)loading function.
9822 (advice--make-1, advice-add, advice-remove):
9823 Remove braindead :advice-pending hack.
9824
9825 2014-03-17 Glenn Morris <rgm@gnu.org>
9826
9827 * calendar/calendar.el (calendar-generate-month): Apply weekend
9828 face to the right days; fixes 2013-08-06 change. (Bug#17028)
9829
9830 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
9831
9832 * net/tramp.el (tramp-action-out-of-band): Read pending output.
9833 (tramp-call-process): Trace also DESTINATION.
9834
9835 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9836 Quote file names when they are local. Remove superfluous trace.
9837
9838 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
9839
9840 * newcomment.el (comment-beginning): If `comment-start-skip'
9841 doesn't match, move back one char and try again. (Bug#16971)
9842
9843 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9844 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
9845 Set `comment-start-skip' to a simpler value that doesn't try to
9846 check if the semicolon is escaped (this is handled by
9847 `syntax-ppss' now). (Bug#16971)
9848
9849 * progmodes/scheme.el (scheme-mode-variables): Same.
9850
9851 2014-03-16 Martin Rudalics <rudalics@gmx.at>
9852
9853 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
9854 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
9855 current (Bug#16816, Bug#17007).
9856 (with-current-buffer-window): New macro doing the same as
9857 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
9858 * help.el (help-print-return-message): Warn in doc-string to not
9859 use this in `with-help-window'.
9860 (describe-bindings-internal): Call `describe-buffer-bindings'
9861 from within help buffer. See Juanma's scenario in (Bug#16816).
9862 (with-help-window): Update doc-string.
9863 * dired.el (dired-mark-pop-up):
9864 * files.el (save-buffers-kill-emacs):
9865 * register.el (register-preview): Use `with-current-buffer-window'
9866 instead of `with-temp-buffer-window'.
9867
9868 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
9869
9870 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
9871 Implement inserting into current buffer, documented in their docstrings.
9872 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
9873 (rst-section-tree-point, rst-forward-section, rst-indent)
9874 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
9875 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
9876 (rst-font-lock-handle-adornment-pre-match-form)
9877 (rst-repeat-last-character): Reflow docstrings.
9878 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
9879 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
9880 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
9881 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
9882 Fix docstring typos.
9883 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
9884 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
9885 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
9886
9887 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
9888
9889 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
9890 for compatibility with other ports.
9891 (ns-initialize-window-system): Use it. It is set in term/common-win.el
9892 from the -xrm command line argument, but in the Nextstep port its value
9893 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
9894
9895 * progmodes/python.el (defconst, python-syntax-count-quotes)
9896 (python-indent-region, python-indent-shift-right)
9897 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
9898 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
9899 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
9900 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
9901 (inferior-python-mode, python-shell-make-comint, run-python-internal)
9902 (python-shell-buffer-substring, python-shell-send-buffer)
9903 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
9904 (python-completion-complete-at-point, python-fill-docstring-style)
9905 (python-eldoc-function, python-imenu-format-item-label)
9906 (python-imenu-format-parent-item-label)
9907 (python-imenu-format-parent-item-jump-label)
9908 (python-imenu--build-tree, python-imenu-create-index)
9909 (python-imenu-create-flat-index): Fix docstring typos.
9910 (python-indent-context, python-shell-prompt-regexp, run-python):
9911 Remove superfluous backslashes.
9912 (python-indent-line, python-nav-beginning-of-defun)
9913 (python-shell-get-buffer, python-shell-get-process)
9914 (python-info-current-defun, python-info-current-line-comment-p)
9915 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
9916 (python-indent-post-self-insert-function, python-shell-send-file)
9917 (python-shell-completion-get-completions)
9918 (python-shell-completion-complete-or-indent)
9919 (python-eldoc--get-doc-at-point): Reflow docstrings.
9920
9921 2014-03-14 Glenn Morris <rgm@gnu.org>
9922
9923 * emacs-lisp/package.el (package-menu-mode-map):
9924 Replace use of obsolete function alias. Tweak menu item text.
9925
9926 * info.el (Info-finder-find-node):
9927 Ignore the `emacs' metapackage. (Bug#10813)
9928
9929 * finder.el (finder-list-matches): Include unversioned packages
9930 in the result of a keyword search.
9931
9932 * finder.el (finder--builtins-descriptions): New constant.
9933 (finder-compile-keywords): Use finder--builtins-descriptions.
9934
9935 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
9936
9937 * simple.el (blink-matching-paren): Describe the new value,
9938 `jump', enabling the old behavior.
9939 (blink-matching-open): Use that value. (Bug#17008)
9940
9941 2014-03-14 Glenn Morris <rgm@gnu.org>
9942
9943 * finder.el (finder-no-scan-regexp): Add leim-list.
9944 (finder-compile-keywords):
9945 Don't skip files with same basename. (Bug#14010)
9946 * Makefile.in (setwins_finder): New, excluding leim.
9947 (finder-data): Use setwins_finder.
9948
9949 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
9950 (help-function-arglist, help-make-usage): Move from here...
9951 * help.el (help-split-fundoc, help-add-fundoc-usage)
9952 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
9953 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
9954
9955 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
9956
9957 * net/socks.el (socks, socks-override-functions)
9958 (socks-find-services-entry):
9959 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
9960 (hif-find-ifdef-block):
9961 * progmodes/modula2.el (m2-indent): Fix docstring typos.
9962
9963 * net/tls.el (tls-program): Reflow docstring.
9964
9965 * progmodes/pascal.el (pascal-mode-abbrev-table)
9966 (pascal-imenu-generic-expression, pascal-auto-endcomments)
9967 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
9968 (pascal-outline-mode): Fix docstring typos.
9969 (pascal-mode): Let define-derived-mode document mode hook.
9970 (pascal-uncomment-area): Reflow.
9971 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
9972
9973 * progmodes/opascal.el (opascal-compound-block-indent)
9974 (opascal-case-label-indent): Fix docstring typos.
9975 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
9976
9977 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
9978
9979 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9980 Fontify multiple adjacent negation chars. (Bug#17004)
9981
9982 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
9983
9984 * emacs-lisp/package.el (package--prepare-dependencies):
9985 Accept requirements without explicit version (bug#14941).
9986
9987 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
9988
9989 * register.el (register-separator, copy-to-register): Doc fixes.
9990 (register-preview-default): Remove unnecessary call to concat.
9991
9992 * frameset.el (frameset-restore): When checking for a visible frame,
9993 use the action map instead of calling visible-frame-list.
9994
9995 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
9996
9997 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
9998
9999 2014-03-12 Martin Rudalics <rudalics@gmx.at>
10000
10001 * window.el (fit-frame-to-buffer): Get maximum width from
10002 display's width instead of height.
10003
10004 2014-03-12 Glenn Morris <rgm@gnu.org>
10005
10006 * desktop.el (desktop-restore-frames)
10007 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
10008 (desktop-restore-reuses-frames): Doc tweaks.
10009
10010 * electric.el (electric-indent-mode): Doc fix.
10011
10012 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
10013
10014 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
10015 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
10016 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
10017 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
10018 (cvs-dired-use-hook): Fix docstring typos.
10019 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
10020 Doc fixes.
10021
10022 * vc/pcvs-defs.el (cvs-auto-remove-handled)
10023 (cvs-auto-remove-directories, cvs-default-ignore-marks)
10024 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
10025 (cvs-execute-single-dir): Fix docstring typos.
10026
10027 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
10028 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
10029
10030 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
10031
10032 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
10033 Fix docstring typos.
10034
10035 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
10036
10037 * frameset.el (frameset--jump-to-register): Add autoload; it could be
10038 called from jump-to-register after unloading the frameset package.
10039
10040 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
10041
10042 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
10043 (bug#16975). Deactivate the mark before setting it to nil.
10044 (activate-mark): Do nothing if region is already active.
10045
10046 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
10047
10048 * frameset.el (frameset--target-display): Remove definition; declare.
10049 (frameset-save, frameset-restore): Let-bind frameset--target-display.
10050
10051 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
10052
10053 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
10054 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
10055 when the advice is pending.
10056 (advice-remove): Remove this marker when not needed any more.
10057
10058 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
10059
10060 * frameset.el: Separate options for reusing frames and cleaning up.
10061 (frameset--reuse-list): Remove definition; declare.
10062 (frameset--action-map): Declare.
10063 (frameset--find-frame-if): Doc fix.
10064 (frameset--restore-frame): Cache frame action.
10065 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
10066 how to clean up the frame list after restoring. Remove cleaning
10067 options from REUSE-FRAMES. Change all keyword values to symbols.
10068 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
10069
10070 * desktop.el (desktop-restore-forces-onscreen)
10071 (desktop-restore-reuses-frames): Use non-keyword values.
10072 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
10073
10074 2014-03-10 Glenn Morris <rgm@gnu.org>
10075
10076 * files.el (find-file): Doc fix: update info node name.
10077
10078 * emacs-lisp/advice.el (ad-add-advice, defadvice):
10079 Doc fix: remove references to deleted info nodes.
10080
10081 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
10082
10083 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
10084 Do not add nil to the environment, when there's no remote `locale'.
10085 (tramp-find-inline-encoding): Check, that the remote host has
10086 installed perl, before sending scripts.
10087
10088 2014-03-10 Leo Liu <sdl.web@gmail.com>
10089
10090 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
10091 Clear eldoc-last-message. (Bug#16920)
10092
10093 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10094
10095 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
10096 (bug#14430).
10097
10098 2014-03-09 Juri Linkov <juri@jurta.org>
10099
10100 * ansi-color.el (ansi-color-names-vector): Copy default colors
10101 from `xterm-standard-colors' that look well on the default white
10102 background (and also on the black background) to avoid illegible
10103 color combinations like yellow-on-white and white-on-white.
10104 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
10105
10106 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
10107
10108 * frameset.el (frameset-restore): When no frame is visible, do not
10109 generate a list of frames, just make visible the selected one.
10110
10111 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
10112
10113 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
10114 it only contains the repository root. (Bug#16897)
10115
10116 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
10117
10118 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
10119 only when `remote-file-name-inhibit-cache' is nil.
10120 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
10121
10122 2014-03-06 Martin Rudalics <rudalics@gmx.at>
10123
10124 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
10125 Fix doc-strings.
10126 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
10127 fit-frame-to-buffer variable. Fix doc-string.
10128 (fit-window-to-buffer): Set ONLY argument in call of
10129 fit-frame-to-buffer. Fix doc-string.
10130
10131 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
10132
10133 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
10134 (tramp-action-password): Clear password cache if needed.
10135 (tramp-read-passwd): Do not clear password cache.
10136
10137 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
10138 cache unless it is the first password request.
10139
10140 2014-03-06 Glenn Morris <rgm@gnu.org>
10141
10142 * simple.el (newline): Doc tweak.
10143
10144 * emacs-lisp/shadow.el (load-path-shadows-find):
10145 Ignore dir-locals. (Bug#12357)
10146
10147 2014-03-05 Glenn Morris <rgm@gnu.org>
10148
10149 * files.el (interpreter-mode-alist):
10150 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
10151
10152 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
10153
10154 * frameset.el (frameset--initial-params): Filter out null entries.
10155
10156 2014-03-05 Martin Rudalics <rudalics@gmx.at>
10157
10158 * window.el (window-min-height, window-min-width):
10159 Rewrite doc-strings.
10160 (window-body-size): Add PIXELWISE argument to make it consistent
10161 with its callees.
10162
10163 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
10164
10165 * finder.el (finder-mode-map, finder-mode-syntax-table):
10166 Revert part of 2014-02-28 change.
10167
10168 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
10169
10170 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
10171 (eww-setup-buffer): Clear next/prev/etc more reliably.
10172 (eww-textarea-map): [tab] doesn't work on tty.
10173 Reported by Mario Lang.
10174
10175 * net/shr.el (shr-map): Ditto.
10176
10177 2014-03-04 Glenn Morris <rgm@gnu.org>
10178
10179 * minibuffer.el (completion-hilit-commonality):
10180 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
10181
10182 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
10183
10184 * hilit-chg.el (hilit-chg-unload-function): New function.
10185 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
10186 (hilit-chg-map-changes): Prefer cardinal number to digit.
10187 (hilit-chg-display-changes): Reflow docstring.
10188 (highlight-changes-rotate-faces): Remove superfluous backslash.
10189
10190 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
10191
10192 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
10193 `tramp-send-command-and-check'.
10194
10195 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
10196
10197 * hexl.el (hexl-address-region, hexl-ascii-region)
10198 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
10199 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
10200 (hexl-forward-word, hexl-previous-line, hexl-next-line):
10201 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
10202 (hexl-mode): Doc fix.
10203 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
10204 (hexl-mode-ruler): Fix typos in docstrings.
10205
10206 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
10207 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
10208 Remove superfluous backslashes.
10209 (strokes-last-stroke, strokes-global-map, strokes-mode):
10210 Reflow docstrings.
10211 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
10212 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
10213 (strokes-distance-squared, strokes-global-set-stroke)
10214 (strokes-global-set-stroke-string): Doc fixes.
10215 (strokes-help): Fix typos; reflow docstring.
10216
10217 2014-03-04 Martin Rudalics <rudalics@gmx.at>
10218
10219 * window.el (window-in-direction): Fix doc-string.
10220
10221 2014-03-04 Glenn Morris <rgm@gnu.org>
10222
10223 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
10224 Explicit error if no grammar.
10225 (smie-config-save): Doc fix. Fix quote typo.
10226
10227 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
10228
10229 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
10230 electric-indent-mode-hook if we obey electric-indent-mode.
10231 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
10232 decide whether we obey electric-indent-mode.
10233 (c-change-set-fl-decl-start, c-extend-after-change-region):
10234 Silence warnings.
10235 (c-electric-indent-mode-hook): Assume we do want to obey
10236 electric-indent-mode.
10237
10238 * electric.el (electric-indent-mode-has-been-called): Remove.
10239 (electric-indent-mode): Fix accordingly.
10240
10241 * files.el (hack-local-variables): Mention file name in warning.
10242
10243 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
10244
10245 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
10246
10247 * bindings.el: Add comment describing why C-d binds to `delete-char'.
10248 * simple.el (delete-forward-char): Mark as interactive-only.
10249
10250 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
10251
10252 * icomplete.el (icomplete-completions):
10253 Follow-up to 2014-03-01 change.
10254
10255 * icomplete.el: Miscellaneous doc fixes.
10256 Use Icomplete everywhere instead of icomplete for consistency.
10257 (icomplete-max-delay-chars): Fix typo.
10258 (icomplete-mode): Use \[].
10259 (icomplete-tidy, icomplete-exhibit): Reflow.
10260 (icomplete-minibuffer-setup-hook, icomplete-completions):
10261 Remove superfluous backlashes.
10262
10263 * ido.el: Miscellaneous doc fixes.
10264 Use Ido everywhere instead of ido or `ido' for consistency.
10265 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
10266 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
10267 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
10268 (ido-separator): Extract obsolescence info from docstring and declare
10269 with make-obsolete-variable.
10270 (ido-minibuffer-setup-hook): Simplify example.
10271 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
10272 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
10273 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
10274 (ido-everywhere): Reflow docstring.
10275 (ido-toggle-vc): Doc fix.
10276 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
10277 of long list of keybindings.
10278
10279 2014-03-03 Glenn Morris <rgm@gnu.org>
10280
10281 * frame.el (display-pixel-height, display-pixel-width)
10282 (display-mm-dimensions-alist, display-mm-height)
10283 (display-mm-width): Doc tweaks.
10284
10285 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
10286
10287 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
10288 case of undo in region.
10289
10290 2014-03-02 Martin Rudalics <rudalics@gmx.at>
10291
10292 * window.el (fit-window-to-buffer): Fix argument in window-size
10293 call when window is horizontally combined.
10294
10295 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
10296
10297 * icomplete.el (icomplete-completions): Use string-width.
10298 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10299
10300 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
10301
10302 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10303 Highlight regexp options. (Bug#16914)
10304
10305 2014-03-01 Martin Rudalics <rudalics@gmx.at>
10306
10307 * window.el (window--max-delta-1): Round down when calculating
10308 how many lines/columns we can get from a window.
10309
10310 2014-03-01 Glenn Morris <rgm@gnu.org>
10311
10312 * isearch.el (search-invisible): Doc fix.
10313
10314 * minibuffer.el (completion-hilit-commonality):
10315 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
10316 * comint.el (comint-dynamic-list-completions): Doc fix.
10317 * comint.el (comint-dynamic-list-completions):
10318 * filecache.el (file-cache-minibuffer-complete):
10319 * tempo.el (tempo-display-completions):
10320 * eshell/em-hist.el (eshell-list-history):
10321 Replace use of obsolete argument of display-completion-list.
10322
10323 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
10324
10325 * icomplete.el (icomplete-completions):
10326 Revert back to using "..." when ?… cannot be displayed.
10327
10328 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
10329
10330 * finder.el (finder-unload-function): New function.
10331
10332 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
10333
10334 * dframe.el (dframe-detach):
10335 * find-dired.el (find-dired, find-name-dired):
10336 * finder.el (finder-mode-map, finder-mode-syntax-table)
10337 (finder-headmark, finder-select, finder-mouse-select):
10338 Fix docstring typos.
10339
10340 2014-02-28 Martin Rudalics <rudalics@gmx.at>
10341
10342 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
10343 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
10344 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10345 Fix doc-string based on a suggestion by Nicolas Richard
10346 <theonewiththeevillook@yahoo.fr>.
10347 * help.el (with-help-window): Fix doc-string.
10348
10349 2014-02-28 Ivan Kanis <ivan@kanis.fr>
10350
10351 * net/shr.el (shr-image-animate): New option.
10352 (shr-put-image): Respect shr-image-animate.
10353
10354 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
10355
10356 * net/tramp-adb.el (tramp-adb-parse-device-names):
10357 Use `accept-process-output'.
10358 (tramp-adb-handle-file-truename): Cache the localname only.
10359 (tramp-adb-handle-make-directory)
10360 (tramp-adb-handle-delete-directory): Flush file properties correctly.
10361 (tramp-adb-handle-set-file-modes): Do not raise an error when file
10362 modes cannot be changed.
10363
10364 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
10365 file properties of symlinks.
10366
10367 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
10368
10369 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
10370 required/optional fields to match development biblatex. (Bug#16781)
10371
10372 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
10373
10374 * saveplace.el (toggle-save-place):
10375 Fix argument handling. (Bug#16673)
10376
10377 2014-02-28 Glenn Morris <rgm@gnu.org>
10378
10379 * minibuffer.el (completions-first-difference)
10380 (completions-common-part, completion-hilit-commonality): Doc fixes.
10381
10382 2014-02-28 Karl Berry <karl@gnu.org>
10383
10384 * info.el (Info-mode-map): Add H for describe-mode,
10385 to synchronize with standalone Info.
10386
10387 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
10388
10389 * progmodes/sql.el (sql-interactive-mode):
10390 Avoid setting global comint-input-ring-separator. (Bug#16814)
10391
10392 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
10393
10394 * net/dbus.el (dbus--init-bus): Declare function.
10395 (dbus-path-local, dbus-interface-local): New defconst.
10396 (dbus-init-bus): Use them.
10397 (dbus-return-values-table): Extend doc.
10398 (dbus-handle-bus-disconnect): Extend error message.
10399
10400 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
10401
10402 * subr.el (y-or-n-p): Fix double space issue in message.
10403
10404 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
10405
10406 * net/tramp.el (tramp-call-process): Improve trace message.
10407 (tramp-handle-insert-file-contents): Trace error case.
10408
10409 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
10410 <insert-directory>: Use `tramp-handle-insert-directory'.
10411 (tramp-adb-handle-insert-directory): Remove function.
10412 (tramp-adb-send-command-and-check): New defun, replacing
10413 `tramp-adb-command-exit-status'. Change all callees.
10414 (tramp-adb-handle-file-attributes)
10415 (tramp-adb-handle-directory-files-and-attributes): Use it.
10416 (tramp-adb-ls-output-name-less-p):
10417 Use `directory-listing-before-filename-regexp'.
10418 (tramp-adb-handle-delete-directory): Flush also file properties of
10419 the truename of directory.
10420 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
10421 (tramp-adb-handle-file-local-copy): Make the local copy readable.
10422 (tramp-adb-handle-write-region): Implement APPEND.
10423 (tramp-adb-handle-rename-file): Make it more robust. Flush file
10424 properties correctly.
10425 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
10426 variables. Check for connected devices only when needed.
10427
10428 2014-02-27 Glenn Morris <rgm@gnu.org>
10429
10430 * minibuffer.el (completion-table-dynamic)
10431 (completion-table-with-cache): Doc fixes.
10432
10433 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
10434 (completing-read-multiple): Doc fixes.
10435
10436 2014-02-27 Daniel Colascione <dancol@dancol.org>
10437
10438 * minibuffer.el (completion--nth-completion): Fix indentation.
10439
10440 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
10441 explicit tramp path is empty.
10442
10443 2014-02-27 Glenn Morris <rgm@gnu.org>
10444
10445 * emacs-lisp/crm.el (completing-read-multiple):
10446 Empower help-enable-auto-load.
10447
10448 2014-02-26 Glenn Morris <rgm@gnu.org>
10449
10450 * startup.el (command-line): Don't init the tty in daemon mode.
10451
10452 Avoid calling tty-setup-hook twice, eg if a term file
10453 explicitly calls tty-run-terminal-initialization. (Bug#16859)
10454 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
10455 (tty-create-frame-with-faces): Use it.
10456 * startup.el (command-line): Pass run-hook argument
10457 to tty-run-terminal-initialization.
10458
10459 * dired.el (dired-restore-desktop-buffer): Demote errors;
10460 eg in case a glob match fails. (Bug#16884)
10461
10462 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
10463
10464 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
10465 error from `read-from-string'. (Bug#16850)
10466
10467 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
10468 result of `completing-read' in the interactive form. (Bug#16854)
10469
10470 2014-02-25 Glenn Morris <rgm@gnu.org>
10471
10472 * image.el (image-animate, image-animate-timeout):
10473 Stop animating images in dead buffers. (Bug#16878)
10474
10475 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
10476
10477 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
10478 Doc fixes.
10479 * startup.el (term-setup-hook): Doc fix. Make obsolete.
10480 * term/sun.el (sun-raw-prefix-hooks):
10481 Use tty-setup-hook instead of term-setup-hook.
10482 (terminal-init-sun): Construct message from bytecomp plist.
10483 * term/wyse50.el (enable-arrow-keys): Doc fix.
10484
10485 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
10486
10487 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
10488 Fix docstring typos.
10489
10490 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
10491
10492 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
10493
10494 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
10495
10496 * minibuffer.el (completion--try-word-completion):
10497 Fix error when completing M-x commands (bug#16808).
10498
10499 2014-02-24 Leo Liu <sdl.web@gmail.com>
10500
10501 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
10502
10503 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
10504
10505 * apropos.el (apropos-print): Avoid formatting error when
10506 apropos-do-all and apropos-compact-layout are both t.
10507
10508 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
10509
10510 * apropos.el (apropos-property, apropos-all-words-regexp)
10511 (apropos-true-hit, apropos-variable, apropos-print):
10512 Fix docstring typos, and remove obsolete comment.
10513
10514 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
10515
10516 * net/tramp-sh.el (tramp-sh-handle-file-truename):
10517 Preserve trailing "/". (Bug#16851)
10518
10519 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
10520
10521 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
10522 after `=>' (bug#16811).
10523 (ruby-smie-rules): Handle the inconsistent second element of the
10524 list returned by `smie-indent--parent'.
10525 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
10526 method call.
10527
10528 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
10529
10530 * elec-pair.el (electric-pair-text-syntax-table)
10531 (electric-pair-syntax-info, electric-pair--syntax-ppss)
10532 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
10533 (electric-pair--looking-at-unterminated-string-p): Doc fix.
10534 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
10535
10536 2014-02-22 Glenn Morris <rgm@gnu.org>
10537
10538 * imenu.el (imenu--generic-function): Doc fix.
10539
10540 * register.el (frame-configuration-to-register): Make obsolete.
10541
10542 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
10543
10544 * desktop.el (desktop-save-buffer-p): Do not fail when
10545 desktop-files-not-to-save is nil. Return t for true result
10546 as the doc says.
10547
10548 2014-02-22 Daniel Colascione <dancol@dancol.org>
10549
10550 * net/secrets.el (secrets-create-item, secrets-search-items):
10551 Check that attribute values are strings, avoiding the construction
10552 of invalid dbus messages.
10553
10554 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
10555
10556 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
10557 defun-declarations-alist.
10558
10559 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
10560
10561 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
10562 (bug#16829).
10563
10564 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
10565
10566 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
10567 (whitespace-newline, whitespace-trailing, whitespace-line)
10568 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
10569 (whitespace-space-after-tab): Fix typo in docstrings.
10570
10571 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
10572
10573 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
10574
10575 * electric.el (electric-indent-functions-without-reindent):
10576 Add `yaml-indent-line'.
10577
10578 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
10579
10580 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
10581 It has done nothing for years; should be removed after the release.
10582
10583 * simple.el (choose-completion): Fix docstring typo.
10584 (read-quoted-char-radix): Remove unneeded * in docstring.
10585 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
10586 Don't escape parentheses unnecessarily in docstrings.
10587
10588 2014-02-21 Martin Rudalics <rudalics@gmx.at>
10589
10590 Fix handling of window-min-height/-width (Bug#16738).
10591 * window.el (window--dump-window, window--dump-frame):
10592 New functions.
10593 (window--min-size-1): Account for window dividers.
10594 When window-resize-pixelwise is nil, delay rounding till after the
10595 sum of the window components has been calculated.
10596 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
10597 nil make sure at least one text line and two text columns remain
10598 fully visible.
10599 (window-resize): Signal an error when window-resize-apply fails.
10600 (window--resize-child-windows): Fix calculation of by how many
10601 pixels a window can still be shrunk via window-new-normal.
10602 (adjust-window-trailing-edge): Call window--resizable with
10603 correct TRAIL argument.
10604
10605 (with-temp-buffer-window): Don't evaluate BODY within
10606 with-current-buffer (Bug#16816).
10607
10608 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
10609
10610 * net/tramp.el (tramp-check-cached-permissions):
10611 Call `file-attributes' with `suffix' being a symbol but a string.
10612
10613 2014-02-21 Daniel Colascione <dancol@dancol.org>
10614
10615 * net/dbus.el (dbus-init-bus-1): Declare new subr.
10616 (dbus-init-bus): New function: call into dbus-init-bus-1
10617 and installs a handler for the disconnect signal.
10618 (dbus-call-method): Rewrite to look for result in cons.
10619 (dbus-call-method-handler): Store result in cons.
10620 (dbus-check-event): Recognize events with nil sender as valid.
10621 (dbus-handle-bus-disconnect): New function. React to bus
10622 disconnection signal by synthesizing dbus error for each
10623 pending synchronous or asynchronous call.
10624 (dbus-notice-synchronous-call-errors): New function.
10625 (dbus-handle-event): Raise errors directly only when `dbus-debug'
10626 is true, not all the time.
10627
10628 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
10629
10630 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
10631 Remove obsolescence declarations, these variables do not exist anymore.
10632
10633 * savehist.el (savehist-save-minibuffer-history)
10634 (savehist-additional-variables, savehist-file, savehist-mode-hook)
10635 (savehist-save-hook, savehist-coding-system, savehist-loaded)
10636 (savehist-load, savehist-install, savehist-autosave): Fix typos;
10637 mostly, refer to "Savehist mode" when talking about the mode,
10638 and not the function.
10639
10640 * saveplace.el (save-place): Remove redundant info in docstring.
10641 (save-place-forget-unreadable-files, toggle-save-place)
10642 (save-place-forget-unreadable-files, save-place-dired-hook):
10643 Fix typos and remove unneeded backslashes.
10644
10645 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
10646
10647 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
10648 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
10649
10650 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
10651 <insert-directory>: Use `tramp-handle-insert-directory'.
10652 (tramp-gvfs-handle-insert-directory): Remove function.
10653
10654 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
10655 Call `tramp-handle-insert-directory'.
10656
10657 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
10658
10659 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
10660 before the start of buffer/region (bug#16799).
10661
10662 2014-02-20 Glenn Morris <rgm@gnu.org>
10663
10664 * isearch.el (search-invisible): Doc fix.
10665
10666 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
10667
10668 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
10669 (bug#16657).
10670
10671 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
10672
10673 * frameset.el (frameset-restore): Delay removing an old frame's
10674 duplicate id until the new frame has been correctly created.
10675
10676 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
10677
10678 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
10679 (tramp-check-cached-permissions): Call `file-attributes' if the
10680 cache is empty.
10681
10682 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
10683 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
10684
10685 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
10686 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
10687 (tramp-gvfs-maybe-open-connection): Set always connection
10688 properties, even if target is mounted already.
10689
10690 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
10691 Set tramp-autoload cookie.
10692 (tramp-get-remote-touch): New defun.
10693 (tramp-sh-handle-set-file-times): Use it.
10694 (tramp-sh-handle-directory-files-and-attributes):
10695 Use `tramp-handle-directory-files-and-attributes' if neither stat
10696 nor perl are available on the remote host.
10697
10698 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
10699 "/". Write long listing only when "l" belongs to the switches.
10700
10701 * net/trampver.el: Update release number.
10702
10703 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
10704
10705 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
10706
10707 2014-02-19 Martin Rudalics <rudalics@gmx.at>
10708
10709 * window.el (window-state-put): Allow WINDOW to refer to an
10710 internal window (Bug#16793).
10711
10712 2014-02-19 Glenn Morris <rgm@gnu.org>
10713
10714 * textmodes/remember.el: Move provide statement to end.
10715 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
10716 (remember-notes): Doc fixes.
10717
10718 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10719
10720 * delsel.el (delete-char): Restore incorrectly erased property
10721 (bug#16795).
10722
10723 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
10724
10725 * frameset.el (frameset--restore-frame): When a frame is being reused
10726 and its root window is not alive, delete all the frame's windows before
10727 restoring the window state. This works around the issue in bug#16793.
10728
10729 2014-02-18 Glenn Morris <rgm@gnu.org>
10730
10731 * textmodes/remember.el (remember-data-directory)
10732 (remember-directory-file-name-format, remember-store-in-files)
10733 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
10734 (remember-notes-save-and-bury-buffer)
10735 (remember-notes--kill-buffer-query): Doc fixes.
10736
10737 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
10738
10739 2014-02-17 Alan Mackenzie <acm@muc.de>
10740
10741 Connect electric-indent-mode up with CC Mode. Bug #15478.
10742 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
10743 to electric-indent-{,local-}-mode.
10744 (c-basic-common-init): Set electric-indent-inhibit.
10745 Initialise c-electric-flag from electric-indent-mode.
10746 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
10747 New hook functions which propagate electric-indent-mode to CC mode.
10748
10749 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
10750 hit, toggle electric-indent-local-mode.
10751
10752 * electric.el (electric-indent-mode-has-been-called):
10753 New variable.
10754
10755 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
10756
10757 * frameset.el (frameset-cfg-id): New function.
10758 (frameset--reuse-frame, frameset-restore): Use it.
10759 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
10760
10761 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
10762
10763 * ido.el (ido-file-internal): Remove unused var `d'.
10764 Use \` for to match BoS. Fit within 80n columns.
10765
10766 2014-02-17 Daniel Colascione <dancol@dancol.org>
10767
10768 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
10769 dbus-call-method check for completion using a busy-wait loop with
10770 gradual backoff.
10771
10772 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
10773
10774 Sync with Tramp 2.2.9.
10775
10776 * net/trampver.el: Update release number.
10777
10778 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
10779
10780 * ido.el (ido-file-internal): Don't add the name of an existing
10781 directory twice. (Bug#16747)
10782
10783 2014-02-16 Glenn Morris <rgm@gnu.org>
10784
10785 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
10786 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
10787
10788 2014-02-15 Michael R. Mauger <michael@mauger.com>
10789
10790 * progmodes/sql.el: Version 3.4
10791 (sql-oracle-options): New default value ("-L").
10792 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
10793 (sql-placeholders-filter): Correct placeholder pattern.
10794 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
10795 (sql-login-delay): New variable.
10796 (sql-product-interactive): Use it.
10797
10798 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
10799
10800 * frameset.el (frameset--jump-to-register): Check that buffer is live
10801 (bug#16749).
10802
10803 2014-02-15 Glenn Morris <rgm@gnu.org>
10804
10805 * info.el (info-initialize): Revert 2014-01-10 change.
10806
10807 2014-02-14 Glenn Morris <rgm@gnu.org>
10808
10809 * replace.el (map-query-replace-regexp)
10810 (read-regexp-defaults-function, read-regexp): Doc fixes.
10811
10812 * dired.el (dired-read-regexp):
10813 * faces.el (list-faces-display):
10814 * misearch.el (multi-isearch-read-matching-buffers)
10815 (multi-isearch-read-matching-files):
10816 * play/cookie1.el (cookie-apropos):
10817 * progmodes/grep.el (grep-read-regexp): Doc fixes.
10818
10819 * textmodes/remember.el (remember): Use frameset-to-register
10820 rather than frame-configuration-to-register.
10821
10822 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
10823
10824 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
10825 incorrect keybinding.
10826
10827 2014-02-13 Daniel Colascione <dancol@dancol.org>
10828
10829 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
10830 when adding overlays so that line numbers from compiler match line
10831 numbers we use.
10832
10833 2014-02-13 Glenn Morris <rgm@gnu.org>
10834
10835 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
10836
10837 * jit-lock.el (jit-lock-mode): Doc fix.
10838
10839 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
10840
10841 * apropos.el (apropos-read-pattern): When the user passes an empty
10842 string, give a more helpful error message than "Wrong type
10843 argument: stringp, nil".
10844
10845 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
10846
10847 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
10848
10849 2014-02-13 Glenn Morris <rgm@gnu.org>
10850
10851 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
10852
10853 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
10854
10855 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
10856 shift-select commands.
10857
10858 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
10859
10860 * progmodes/js.el (js-indent-line): Don't widen.
10861 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
10862
10863 2014-02-12 Glenn Morris <rgm@gnu.org>
10864
10865 * icomplete.el (icomplete): Add info-link to defgroup.
10866 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
10867 (icomplete-minibuffer-map, icomplete-mode)
10868 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
10869
10870 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
10871 (package-menu-filter): Rename from package-menu-filter-interactive.
10872 Doc fix.
10873
10874 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
10875
10876 * frameset.el (frameset--jump-to-register): Select the required
10877 window and buffer before restoring position (bug#16696).
10878
10879 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
10880
10881 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
10882
10883 2014-02-10 Glenn Morris <rgm@gnu.org>
10884
10885 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
10886
10887 2014-02-10 Eli Zaretskii <eliz@gnu.org>
10888
10889 * w32-common-fns.el (x-get-selection): Doc fix.
10890 * select.el (x-get-selection): Doc fix. (Bug#15109)
10891
10892 * face-remap.el (face-remap-add-relative)
10893 (face-remap-remove-relative, face-remap-reset-base)
10894 (face-remap-set-base): Call force-mode-line-update to redisplay
10895 the current buffer due to potential change in faces. (Bug#16709)
10896
10897 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
10898
10899 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
10900 script more robustly.
10901
10902 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
10903
10904 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
10905
10906 * simple.el (choose-completion): Doc fix (bug#14160).
10907
10908 * subr.el (event-start): Say what a nil EVENT value means.
10909
10910 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
10911 (bug#14197).
10912
10913 * progmodes/grep.el (find-program): Doc fix (bug#14289).
10914
10915 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
10916
10917 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
10918
10919 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
10920 predicate function (bug#15455).
10921
10922 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
10923
10924 * ielm.el (inferior-emacs-lisp-mode): Instead of
10925 `comment-use-global-state', set `comment-use-syntax'.
10926
10927 2014-02-10 Glenn Morris <rgm@gnu.org>
10928
10929 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
10930
10931 2014-02-09 Alan Mackenzie <acm@muc.de>
10932
10933 Fix c-invalidate-state-cache on narrowed buffers.
10934 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
10935 Widen when setting and clearing the CPP delimiter properties.
10936
10937 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
10938
10939 * help.el (describe-bindings): Doc fix (bug#9888).
10940
10941 * files.el (save-buffer): Use ARG as the parameter name for
10942 consistency (bug#10346).
10943 (save-buffer): Clarify the 0 argument (bug#10346).
10944
10945 * cus-edit.el (customize-apropos): Fix error string.
10946 (custom-buffer-create): Doc fix (bug#11122).
10947 (custom-sort-items): Doc fix (bug#11121).
10948
10949 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
10950
10951 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
10952 (icomplete-simple-completing-p): Mention the previous variable.
10953
10954 * font-lock.el (font-lock-value-in-major-mode): Clarify the
10955 meaning of the parameter (bug#12282).
10956
10957 * files.el (find-file-noselect): Clarify prompt when changing
10958 readedness (bug#13261).
10959 (locate-file): Suffixes aren't returned, so don't say that they
10960 are (bug#12674).
10961 (backup-inhibited): Doc clarification (bug#12525).
10962
10963 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
10964 before we actually start to delete things (bug#16331).
10965
10966 * subr.el (event-start): Doc fix (bug#14228).
10967 (event-end): Ditto.
10968
10969 2014-02-09 Glenn Morris <rgm@gnu.org>
10970
10971 * emacs-lisp/warnings.el (lwarn):
10972 Empower help-enable-auto-load. (Bug#15940)
10973
10974 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
10975
10976 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
10977 (Bug#16690)
10978
10979 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
10980
10981 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
10982 Insert output at end of buffer. (Bug#16120)
10983
10984 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
10985
10986 * simple.el (choose-completion-string-functions): Document new
10987 calling convention (bug#14153).
10988 (execute-extended-command): Clarify doc string (bug#13373).
10989
10990 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
10991
10992 * find-dired.el (find-name-dired): Doc fix (bug#14290).
10993 (find-grep-dired): Doc fix (bug#14288).
10994
10995 2014-02-08 Juri Linkov <juri@jurta.org>
10996
10997 * isearch.el (isearch-quote-char): Check character validity
10998 like in `quoted-insert' (bug#16677).
10999
11000 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
11001
11002 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
11003
11004 * isearch.el (isearch-hide-immediately): Doc clarification
11005 (bug#14723).
11006
11007 * simple.el (line-move): Document utility function used many
11008 places in the Emacs sources (bug#14843).
11009
11010 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
11011 (dired-prev-marked-file): Doc fix (bug#14855).
11012 (dired-up-directory): Doc fix (bug#14848).
11013
11014 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
11015
11016 * files.el (file-relative-name): Doc fix (bug#15159).
11017
11018 * fringe.el (fringe-styles): Doc fix (bug#15239).
11019
11020 * isearch.el (isearch-filter-predicate): Documentation typo fix
11021 (bug#15474).
11022
11023 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
11024
11025 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
11026
11027 * replace.el (replace-match-maybe-edit): Doc clarification
11028 (bug#15632).
11029
11030 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
11031
11032 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
11033
11034 2014-02-08 Glenn Morris <rgm@gnu.org>
11035
11036 * help-fns.el (describe-variable):
11037 Check {file,dir}-local-variables-alist, and buffer-file-name,
11038 in the correct buffer.
11039
11040 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
11041
11042 * help-fns.el (describe-variable): Fix the case where
11043 a value is directory-local with no dir-locals file. (Bug#16635)
11044
11045 2014-02-08 Glenn Morris <rgm@gnu.org>
11046
11047 * abbrev.el (edit-abbrevs-mode):
11048 Derive from fundamental-mode. (Bug#16682)
11049
11050 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
11051
11052 * simple.el (quoted-insert): Check character validity (bug#16677).
11053
11054 2014-02-07 Juri Linkov <juri@jurta.org>
11055
11056 * desktop.el (desktop-read): Claim the lock when the owner is not
11057 the current process. (Bug#16157)
11058
11059 2014-02-07 Juri Linkov <juri@jurta.org>
11060
11061 * desktop.el (desktop-buffers-not-to-save): Change default from nil
11062 to "\\` ". (Bug#16651)
11063
11064 2014-02-07 Juri Linkov <juri@jurta.org>
11065
11066 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
11067 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
11068 (desktop-auto-save-cancel-timer): New function with some code from
11069 `desktop-auto-save-set-timer'.
11070 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
11071 Instead of setting `desktop-save-mode' to nil, call
11072 `desktop-save-mode' with arg 0. (Bug#16630)
11073
11074 2014-02-07 Glenn Morris <rgm@gnu.org>
11075
11076 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
11077 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
11078 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
11079
11080 * obsolete/iswitchb.el: Move to obsolete/.
11081 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
11082 since obsolete/ is not scanned for autoloads.
11083 * emacs-lisp/authors.el (authors-valid-file-names):
11084 Add iswitchb.el.
11085
11086 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
11087 Disable now non-functional find-file-hook.
11088
11089 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
11090
11091 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
11092 instead of ";" in order to avoid additional prompts. Let heredoc
11093 scripts read from tty. (Bug#16582)
11094 (tramp-send-command): No special handling of heredocs, it isn't
11095 necessary anymore.
11096
11097 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
11098
11099 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
11100 with a space (bug#16664). Limit the symbols considered to the ones
11101 that are bound or fbound (bug#16646).
11102
11103 2014-02-06 Glenn Morris <rgm@gnu.org>
11104
11105 * epa.el (epa-mail-aliases): Doc fix.
11106
11107 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
11108
11109 * emacs-lisp/lisp.el (lisp-completion-at-point):
11110 Use `completion-table-merge' instead of `completion-table-in-turn'
11111 (bug#16604).
11112
11113 * minibuffer.el (completion-table-merge): New function.
11114
11115 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
11116
11117 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
11118 (tramp-sh-handle-set-file-acl)
11119 (tramp-sh-handle-start-file-process)
11120 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
11121 (tramp-find-executable, tramp-send-command): Use it.
11122
11123 2014-02-05 Glenn Morris <rgm@gnu.org>
11124
11125 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
11126
11127 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
11128
11129 * progmodes/python.el (python-shell-send-string)
11130 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
11131
11132 2014-02-04 Anders Lindgren <andlind@gmail.com>
11133
11134 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
11135 the names (bug#16620).
11136
11137 2014-02-03 Martin Rudalics <rudalics@gmx.at>
11138
11139 * faces.el (window-divider): New default value. Rewrite doc-string.
11140 (window-divider-first-pixel, window-divider-last-pixel): New faces.
11141
11142 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
11143
11144 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
11145 `protected' and `public' can also be called without arguments.
11146
11147 2014-02-03 Glenn Morris <rgm@gnu.org>
11148
11149 * register.el (window-configuration-to-register)
11150 (frame-configuration-to-register): Unadvertise unused argument.
11151 * frameset.el (frameset-to-register): Remove unused argument.
11152
11153 * frameset.el (frameset-to-register):
11154 * kmacro.el (kmacro-to-register):
11155 * register.el (increment-register):
11156 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
11157 (calc-append-to-register, calc-prepend-to-register):
11158 * play/gametree.el (gametree-layout-to-register)
11159 (gametree-apply-register-layout):
11160 * textmodes/picture.el (picture-clear-rectangle-to-register)
11161 (picture-yank-rectangle-from-register):
11162 * vc/emerge.el (emerge-combine-versions-register):
11163 Use register-read-with-preview to read registers.
11164
11165 2014-02-03 João Távora <joaotavora@gmail.com>
11166
11167 * elec-pair.el (electric-pair-backward-delete-char): Don't error
11168 when at beginning of (possibly narrowed) buffer.
11169
11170 2014-02-02 Daniel Colascione <dancol@dancol.org>
11171
11172 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
11173 Also try to display local help from just before point.
11174
11175 2014-02-02 Alan Mackenzie <acm@muc.de>
11176
11177 c-parse-state. Don't "append-lower-brace-pair" in certain
11178 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
11179 recognised as a comment.
11180
11181 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
11182 as well as normal comment starter.
11183 (c-parse-state-get-strategy): Extra return possibility
11184 'back-and-forward.
11185 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
11186 return value list to indicate replacement of a brace-pair cons
11187 with its car.
11188 (c-parse-state-1): With 'back-and-forward, only call
11189 c-append-lower-brace-pair-to state-cache when cons-separated.
11190
11191 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
11192
11193 * term/ns-win.el (ns-suspend-error): New function.
11194 (ns-initialize-window-system): Add ns-suspend-error to
11195 suspend-hook (Bug#16612).
11196
11197 2014-02-02 Daniel Colascione <dancol@dancol.org>
11198
11199 * progmodes/cc-defs.el (c-find-assignment-for-mode):
11200 Make loading cc-mode silent.
11201
11202 2014-02-02 Daniel Colascione <dancol@dancol.org>
11203
11204 * comint.el (comint-prompt-read-only): Change doc to suggest
11205 remap keybinding.
11206
11207 2014-02-02 Glenn Morris <rgm@gnu.org>
11208
11209 * register.el (register-read-with-preview, point-to-register)
11210 (window-configuration-to-register, frame-configuration-to-register)
11211 (jump-to-register, number-to-register, view-register, insert-register)
11212 (copy-to-register, append-to-register, prepend-to-register)
11213 (copy-rectangle-to-register): Doc fixes.
11214
11215 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
11216
11217 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
11218 * emacs-lisp/find-func.el (find-function-C-source): Idem.
11219 * emacs-lisp/nadvice.el (advice--cd*r): New function.
11220 * help-fns.el (describe-function-1): Use it.
11221
11222 2014-02-02 Glenn Morris <rgm@gnu.org>
11223
11224 * register.el (register-preview-default): New function,
11225 split from register-preview.
11226 (register-preview-function): Rename from register-preview-functions,
11227 make it not a hook.
11228 (register-preview): Use register-preview-function.
11229 (register-read-with-preview): Error on non-character event. (Bug#16595)
11230
11231 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
11232
11233 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
11234 `:' before binary operators (bug#16609). Don't check for `:'
11235 before `[' and `(', or their syntax status. A percent literal
11236 can't end with either.
11237 (ruby-font-lock-keywords): For built-ins that require arguments,
11238 check that they're followed by something that looks like argument
11239 (bug#16610).
11240
11241 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
11242
11243 * subr.el (butlast): Document what an omitted N means (bug#13437).
11244 (nbutlast): Ditto.
11245
11246 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
11247
11248 * net/shr.el (shr-generic): Make into a defsubst to make the stack
11249 depth shallower (bug#16587).
11250 (shr-tag-svg): Respect `shr-inhibit-images'.
11251 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
11252
11253 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
11254
11255 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
11256 (ruby-smie-grammar): Make "." right-associative. Make its priority
11257 lower than the ternary and all binary operators.
11258 (ruby-smie-rules): Indent "(" relative to the first non-"."
11259 parent, or the first "." parent at indentation.
11260 Use `ruby-align-chained-calls' for indentation of "." tokens.
11261 (Bug#16593)
11262
11263 2014-01-31 Juri Linkov <juri@jurta.org>
11264
11265 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
11266 from `make-hash-table'.
11267
11268 * textmodes/ispell.el (ispell-init-process): Change message format
11269 to be consistent with other messages.
11270
11271 2014-01-31 Glenn Morris <rgm@gnu.org>
11272
11273 * delsel.el (delete-selection-mode): Doc fix.
11274
11275 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
11276 (trace-function-background): Doc fixes.
11277
11278 * ido.el (ido-use-virtual-buffers): Doc fix.
11279 Reset :version, since the default value has not changed.
11280
11281 * register.el (register-preview-delay, register-read-with-preview):
11282 Doc fixes.
11283
11284 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
11285 do not mess with mail-buffer position (fixes 2009-11-03 change).
11286 * progmodes/cc-mode.el (c-submit-bug-report):
11287 Check auto-fill-mode is bound. (Bug#16592)
11288
11289 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
11290
11291 * startup.el (fancy-splash-image-file): New function,
11292 split from fancy-splash-head.
11293 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
11294 so that we are both using the same image. (Bug#16574)
11295
11296 2014-01-30 Glenn Morris <rgm@gnu.org>
11297
11298 * simple.el (eval-expression): Doc fix.
11299
11300 * hexl.el (hexl-mode-hook):
11301 * ielm.el (ielm-mode-hook):
11302 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
11303 (lisp-interaction-mode-hook):
11304 * progmodes/cfengine.el (cfengine3-documentation-function):
11305 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
11306
11307 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
11308
11309 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
11310 is a symbol (bug#16584).
11311
11312 2014-01-30 Glenn Morris <rgm@gnu.org>
11313
11314 * help.el (help-for-help-internal): Add "P" to text.
11315
11316 2014-01-29 Glenn Morris <rgm@gnu.org>
11317
11318 * simple.el (just-one-space, cycle-spacing): Doc fixes.
11319
11320 2014-01-28 Martin Rudalics <rudalics@gmx.at>
11321
11322 * window.el (fit-frame-to-buffer): Fix calculations for margins and
11323 height constraints.
11324
11325 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
11326
11327 * progmodes/hideif.el: Extend to full CPP expression syntax.
11328 (hif-token-alist): Add missing tokens.
11329 (hif-token-regexp): Add support for float/octal/hex immediates.
11330 (hif-string-literal-regexp): New const.
11331 (hif-tokenize): Recognize strings and float/octal/hex immediates.
11332 (hif-exprlist): New function.
11333 (hif-parse-if-exp): Use it.
11334 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
11335 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
11336 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
11337 (hif-logxor, hif-comma): New functions.
11338
11339 2014-01-28 Glenn Morris <rgm@gnu.org>
11340
11341 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
11342
11343 * indent.el (tab-stop-list): Doc fix. Add :version.
11344
11345 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
11346 (cvs-append-to-ignore): Add compatibility alias.
11347
11348 2014-01-27 Glenn Morris <rgm@gnu.org>
11349
11350 * dired.el (dired-hide-details-mode): Don't autoload it,
11351 since it cannot be used outside Dired buffers anyway.
11352
11353 * emulation/cua-base.el (cua-mode): Doc fix.
11354
11355 * dired.el (dired-hide-details-hide-symlink-targets)
11356 (dired-hide-details-hide-information-lines)
11357 (dired-hide-details-mode): Doc fixes.
11358
11359 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
11360 * strokes.el (strokes-file): Doc fix. Bump :version.
11361 (strokes-help): Doc fix.
11362 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
11363 * emulation/viper.el (viper): Doc fix for custom group.
11364 (top-level): Remove oh-so-no-longer-relevant text about vip.
11365 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
11366
11367 * ido.el (ido-save-directory-list-file):
11368 * saveplace.el (save-place-file):
11369 * calendar/timeclock.el (timeclock-file):
11370 * net/quickurl.el (quickurl-url-file):
11371 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
11372 * progmodes/idlwave.el (idlwave-config-directory):
11373 * textmodes/remember.el (remember-data-file):
11374 Bump :version.
11375
11376 2014-01-26 Glenn Morris <rgm@gnu.org>
11377
11378 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
11379 Doc fix. Make obsolete.
11380 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
11381
11382 * sort.el (delete-duplicate-lines): Doc fix.
11383
11384 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11385
11386 * progmodes/ada-mode.el (ada):
11387 * woman.el (woman): Link to info manual and Commentary section.
11388
11389 * progmodes/flymake.el (flymake):
11390 * nxml/nxml-mode.el (nxml):
11391 * net/eww.el (eww):
11392 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
11393 * htmlfontify.el (htmlfontify):
11394 * ses.el (ses):
11395 * epa.el (epa):
11396 * ido.el (ido): Link to info manual.
11397
11398 2014-01-25 Leo Liu <sdl.web@gmail.com>
11399
11400 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
11401
11402 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
11403
11404 * net/shr.el (shr-tag-img): Prefer the title over the alt text
11405 (bug#16537).
11406
11407 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
11408
11409 * net/eww.el (eww-download-callback):
11410 Fix reference to eww-download-directory.
11411
11412 * emacs-lisp/bytecomp.el (byte-compile-file):
11413 Remove unused local variable `file-name'.
11414
11415 2014-01-24 Glenn Morris <rgm@gnu.org>
11416
11417 * woman.el (woman-default-faces, woman-monochrome-faces):
11418 Fix obsolescence specification.
11419
11420 * subr.el (with-demoted-errors): Doc fix.
11421
11422 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
11423
11424 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
11425 (cl--macroexp-fboundp): New function.
11426 (cl--make-type-test): Use it.
11427
11428 2014-01-23 Glenn Morris <rgm@gnu.org>
11429
11430 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
11431 * simple.el (eval-expression): Doc fixes.
11432
11433 2014-01-22 Glenn Morris <rgm@gnu.org>
11434
11435 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
11436
11437 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
11438
11439 * emacs-lisp/package.el: Write files silently.
11440 (package-autoload-ensure-default-file, package--write-file-no-coding)
11441 (package-generate-description-file, package--download-one-archive)
11442 (package-install-from-archive): Tell `write-region' to stay quiet.
11443 (package-menu-mode, package-menu--print-info): Omit the Archive column
11444 if there's only one archive.
11445 (package-all-keywords, package--has-keyword-p): Remove dead code.
11446
11447 2014-01-22 Glenn Morris <rgm@gnu.org>
11448
11449 * version.el (emacs-bzr-version-bzr): Fix typo.
11450
11451 * version.el (emacs-repository-get-version):
11452 Check either .bzr or .git, but not both.
11453 Make the git case actually use the DIR argument, and return nil
11454 rather than the empty string.
11455 Avoid error if .git exists but the git executable is not found.
11456
11457 2014-01-22 Martin Rudalics <rudalics@gmx.at>
11458
11459 Fixes in window size functions around Bug#16430 and Bug#16470.
11460 * window.el (window-total-size, window-size): New argument ROUND.
11461 (window--min-delta-1, window-min-delta, window--max-delta-1):
11462 Be more conservative when calculating the numbers of lines or
11463 columns a window can shrink (Bug#16430).
11464 (fit-window-to-buffer): Simplify code.
11465 * term.el (term-window-width): Call window-body-width again.
11466
11467 2014-01-22 Glenn Morris <rgm@gnu.org>
11468
11469 * image.el (image-format-suffixes): Doc fix.
11470
11471 * international/quail.el (quail-define-package): Doc fix.
11472
11473 * emacs-lisp/authors.el (authors-valid-file-names)
11474 (authors-renamed-files-alist): Additions.
11475
11476 * vc/vc-git.el (vc-git-print-log): Remove --follow;
11477 reverts 2014-01-09 change. (Bug#16422)
11478
11479 * calc/calc-embed.el (thing-at-point-looking-at):
11480 * emacs-lisp/map-ynp.el (x-popup-dialog):
11481 * obsolete/lmenu.el (x-popup-dialog):
11482 * emacs-lisp/package.el (url-recreate-url):
11483 * mail/mailclient.el (clipboard-kill-ring-save):
11484 * subr.el (x-popup-dialog): Update declaration.
11485 * mail/rmail.el (rmail-mime-message-p):
11486 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
11487
11488 2014-01-21 Daniel Colascione <dancol@dancol.org>
11489
11490 * progmodes/sh-script.el (sh--inside-noncommand-expression):
11491 Correctly detect when we're inside an arithmetic expansion form
11492 containing nested parenthesis.
11493 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
11494 to detect cases where we shouldn't expand "<<" to a heredoc
11495 skeleton.
11496
11497 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
11498
11499 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
11500 (eldoc--message-command-p): New function.
11501 (eldoc-display-message-p): Use it.
11502 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
11503 message is not automatically erased for us.
11504 (eldoc-print-current-symbol-info): Erase previous message, if any.
11505
11506 2014-01-21 Tassilo Horn <tsdh@gnu.org>
11507
11508 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
11509 specify it's an interactive function.
11510
11511 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
11512 Fix regex used for scanning for citation keys which failed for
11513 citations with optional arguments.
11514
11515 2014-01-21 Leo Liu <sdl.web@gmail.com>
11516
11517 * simple.el (read--expression): Don't enable eldoc-mode.
11518
11519 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
11520
11521 * simple.el (move-beginning-of-line): Make sure we don't move forward
11522 (bug#16497).
11523
11524 2014-01-20 Juri Linkov <juri@jurta.org>
11525
11526 * saveplace.el (toggle-save-place, save-place-to-alist)
11527 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
11528 'dired-mode) before checking for dired-directory. (Bug#16477)
11529
11530 2014-01-20 Juri Linkov <juri@jurta.org>
11531
11532 * indent.el (indent-line-to): Use backward-to-indentation
11533 instead of back-to-indentation. (Bug#16461)
11534
11535 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
11536
11537 Revert some of the CANNOT_DUMP fix (Bug#16494).
11538 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
11539 but fixing this can wait until after the next release.
11540 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
11541
11542 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
11543
11544 * eshell/esh-mode.el (eshell-password-prompt-regexp):
11545 Use `password-word-equivalents'.
11546 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
11547 to t. (Bug#5664, Bug#13124)
11548
11549 2014-01-19 Alan Mackenzie <acm@muc.de>
11550
11551 Bind open-paren-in-column-0-is-defun-start to nil at some entry
11552 points.
11553 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
11554 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
11555 * progmodes/cc-mode.el (c-before-change, c-after-change)
11556 (c-font-lock-fontify-region): Bind it here.
11557
11558 2014-01-19 Martin Rudalics <rudalics@gmx.at>
11559
11560 * term.el (term-window-width): Call window-text-width instead of
11561 window-width (Bug#16470).
11562
11563 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
11564
11565 * simple.el (password-word-equivalents): Remove duplicates.
11566 Sort, to make this easier next time.
11567 Downcase. Omit ": " after "jelszó".
11568
11569 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
11570
11571 * term/common-win.el (saved-region-selection): Defvar it.
11572 (x-select-text): Set saved-region-selection (Bug#16382).
11573
11574 2014-01-18 Glenn Morris <rgm@gnu.org>
11575
11576 * emacs-lisp/authors.el (authors-aliases)
11577 (authors-renamed-files-alist): Add some entries.
11578
11579 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
11580
11581 * net/tramp.el (tramp-password-prompt-regexp):
11582 Use `password-word-equivalents' if available.
11583 (tramp-action-password, tramp-process-one-action)
11584 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
11585
11586 2014-01-17 Chong Yidong <cyd@gnu.org>
11587
11588 * simple.el (password-word-equivalents): New defcustom.
11589 * comint.el (comint-password-prompt-regexp): Use it. Bump version
11590 to 24.4.
11591 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
11592 to t. (Bug#13124)
11593
11594 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
11595
11596 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
11597 (ruby-align-to-stmt-keywords): Change the default value.
11598 Use `ruby-alignable-keywords' to generate the possible customization
11599 choices.
11600 (ruby-smie-rules): Instead of using a hardcoded list of alignable
11601 keywords, check against the value of `ruby-alignable-keywords'
11602 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
11603
11604 2014-01-17 Glenn Morris <rgm@gnu.org>
11605
11606 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
11607
11608 Make M-x authors return zero *Authors Errors* from current logs.
11609 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
11610 (authors-ignored-files): Add some entries, remove others.
11611 (authors-ambiguous-files, authors-valid-file-names):
11612 Add some entries.
11613 (authors-renamed-files-alist): Add, remove, and adjust entries.
11614 (authors-renamed-files-regexps): Add some entries.
11615 Remove some very broad ones. Make some entries `lax'.
11616 (authors-lax-changelogs): New constant.
11617 (authors-disambiguate-file-name): Treat top-level specially.
11618 (authors-lax-changelog-p): New function.
11619 (authors-canonical-file-name): Check file as written against
11620 authors-valid-file-names. Do not special-case etc/.
11621 Handle `lax' logs and authors-renamed-files-regexps elements.
11622
11623 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
11624
11625 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
11626 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
11627 callers.
11628
11629 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11630
11631 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
11632 Assume we're already in the proper buffer.
11633 Inspired by Anders Lindgren <andlind@gmail.com>.
11634 (follow-post-command-hook): Call it from the right buffer.
11635 (follow-comint-scroll-to-bottom): Adjust call.
11636 (follow-all-followers): Use get-buffer-window-list.
11637
11638 2014-01-15 Daniel Colascione <dancol@dancol.org>
11639
11640 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
11641 `buffer-file-name' in interactive-form so that we don't leave
11642 pathless file names in `file-name-history'.
11643
11644 2014-01-15 Juri Linkov <juri@jurta.org>
11645
11646 * indent.el (indent-rigidly): Set deactivate-mark to nil
11647 in transient indentation mode. (Bug#16438)
11648
11649 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
11650
11651 * emacs-lisp/package.el (package-desc-keywords): New function
11652 (Bug#16222).
11653 (describe-package-1, package-all-keywords)
11654 (package--has-keyword-p): Use it.
11655
11656 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
11657
11658 * simple.el (define-alternatives): When creating the
11659 COMMAND-alternatives variable, assign COMMAND as its definition
11660 name so that `describe-variable' can relocate it.
11661
11662 2014-01-14 Matthew Leach <matthew@mattleach.net>
11663
11664 * font-lock.el (font-lock-keywords): Fix typo in docstring
11665 (bug#16307).
11666
11667 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11668
11669 * textmodes/ispell.el (ispell-region): Reset `in-comment' for new
11670 line instead of wrongly reset `add-coment' (bug#13577).
11671
11672 2014-01-14 Daiki Ueno <ueno@gnu.org>
11673
11674 * epa-file.el (epa-file-write-region): Encode the region according
11675 to `buffer-file-format'. Problem reported at:
11676 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
11677
11678 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
11679
11680 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
11681 so it applies in the right buffer (bug#16410).
11682
11683 2014-01-13 Daniel Colascione <dancol@dancol.org>
11684
11685 * textmodes/rst.el (rst-define-key): Provide deprecated
11686 keybindings through named functions instead of anonymous ones so
11687 that "??" doesn't appear in describe-mode output.
11688
11689 2014-01-13 Bastien Guerry <bzg@gnu.org>
11690
11691 * simple.el (define-alternatives): Call the selected command
11692 interactively. When setting `COMMAND--implementation' for the
11693 first time, tell the user how to chose another implementation.
11694 Enhance the docstring.
11695
11696 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
11697
11698 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
11699 (log-edit--match-first-line): New function.
11700 (log-edit-font-lock-keywords): Use it.
11701 (log-edit-mode): Make jit-lock-defer-multiline work.
11702
11703 2014-01-13 Bastien Guerry <bzg@gnu.org>
11704
11705 * rect.el (rectangle-mark-mode): When the region is not active,
11706 display a message saying that the mark as been set and that
11707 rectangle mode is in use.
11708 (rectangle--highlight-for-redisplay): Only put an overlay with a
11709 visible vertical bar when (display-graphic-p) is non-nil.
11710 This partially fixes Bug#16403.
11711
11712 2014-01-13 Juri Linkov <juri@jurta.org>
11713
11714 * info.el (Info-find-file): Go to DIR before displaying the error
11715 about a nonexistent file if no previous Info file is visited.
11716 Use `user-error' instead of `error' for "Info file %s does not exist".
11717 (Info-find-node-2): In case of a nonexistent node in unwind forms
11718 go to the Top node if there is no previous node to revert to.
11719 (Bug#16405)
11720
11721 2014-01-13 Martin Rudalics <rudalics@gmx.at>
11722
11723 fit-frame/window-to-buffer code fixes including one for Bug#14096.
11724 * window.el (fit-frame-to-buffer): Fix doc-string.
11725 Respect window-min-height/-width. Fit pixelwise when
11726 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
11727 when avoiding that frame goes partially off-screen.
11728 (fit-window-to-buffer): Respect window-min-height/-width
11729 (Bug#14096).
11730
11731 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
11732
11733 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
11734 after an empty line.
11735
11736 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
11737
11738 * net/shr.el (shr-render-region): Autoload.
11739
11740 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
11741
11742 * net/eww.el (eww-download-directory): Rename from
11743 `eww-download-path' (Bug#16419).
11744
11745 2014-01-12 Leo Liu <sdl.web@gmail.com>
11746
11747 * dired-x.el (dired-mode-map): Fix last change.
11748
11749 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
11750
11751 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
11752
11753 Spelling fixes.
11754 * emacs-lisp/generic.el (generic--normalize-comments):
11755 Rename from generic--normalise-comments. All uses changed.
11756 * play/bubbles.el (bubbles--neighborhood-score)
11757 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
11758 (bubbles--neighborhood-available)
11759 (bubbles--update-neighborhood-score):
11760 Rename from names with 'neighbourhood'. All uses changed.
11761
11762 2014-01-12 Leo Liu <sdl.web@gmail.com>
11763
11764 Re-implement the feature of showing eldoc info after editing.
11765 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
11766 (eldoc-edit-message-commands): New function.
11767 (eldoc-print-after-edit): New variable.
11768 (eldoc-pre-command-refresh-echo-area): Emit message only by
11769 eldoc-message-commands.
11770 (eldoc-mode): Restrict eldoc-message-commands to editing commands
11771 if eldoc-print-after-edit is set. (Bug#16346)
11772 * simple.el (read--expression): Enable eldoc-mode.
11773 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
11774
11775 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
11776 Eric S. Raymond <esr@thyrsus.com>
11777
11778 * version.el (emacs-repository-get-version): Enhance so the
11779 function works correctly in either a Bazaar or Git repo.
11780
11781 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
11782
11783 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
11784 Goes with removal of the joke manpages from /etc.
11785
11786 2014-01-10 Kenichi Handa <handa@gnu.org>
11787
11788 * mail/rmail.el (rmail-get-coding-system):
11789 Check rmail-get-coding-function before "funcall"ing it.
11790
11791 2014-01-10 Glenn Morris <rgm@gnu.org>
11792
11793 * emacs-lisp/authors.el (authors-fixed-entries):
11794 Update for files that no longer exist.
11795
11796 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
11797
11798 * version.el (emacs-bzr-get-version): Restore compatibilty with
11799 24.3 (Tested).
11800
11801 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
11802
11803 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
11804 and Podfile.
11805
11806 2014-01-10 Eli Zaretskii <eliz@gnu.org>
11807
11808 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
11809
11810 2014-01-10 Chong Yidong <cyd@gnu.org>
11811
11812 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
11813
11814 2014-01-10 Anders Lindgren <andlind@gmail.com>
11815
11816 * follow.el (follow-cache-command-list): Include right-char and
11817 left-char.
11818
11819 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
11820
11821 Spelling fixes.
11822 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
11823 * woman.el (woman-mark-horizontal-position):
11824 Rename from woman-mark-horizonal-position. Use changed.
11825
11826 2014-01-10 Glenn Morris <rgm@gnu.org>
11827
11828 * info.el (info-initialize): If running uninstalled, ensure our
11829 own info files are always found first, even if INFOPATH is set.
11830
11831 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
11832
11833 2014-01-09 David Engster <deng@randomsample.de>
11834
11835 * emacs-lisp/eieio-custom.el:
11836 * emacs-lisp/eieio-opt.el: Set generated autoload file to
11837 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
11838 * emacs-lisp/eieio.el: Regenerate autoloads.
11839
11840 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
11841
11842 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
11843 following renames. (Bug#8756)
11844
11845 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
11846
11847 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
11848 (bug#16382).
11849 (activate-mark): Add `no-tmm' argument.
11850 (set-mark, push-mark-command): Use it instead of running
11851 activate-mark-hook by hand.
11852
11853 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
11854
11855 In preparation for the move to git, sanitize out some
11856 Bazaar-specific names.
11857
11858 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
11859
11860 * version.el (emacs-bzr-version): Name changed to
11861 emacs-repository-version. Obsolete-variable alias made.
11862 * loadup.el: Follow through on this name change.
11863 * mail/emacsbug.el (report-emacs-bug): Factor out any
11864 assumption about the version control system in use.
11865
11866 2014-01-08 David Engster <deng@randomsample.de>
11867
11868 * help-fns.el (help-fns-describe-function-functions):
11869 New variable to call functions for augmenting help buffers.
11870 (describe-function-1): Remove explicit calls to
11871 `help-fns--compiler-macro', `help-fns--parent-mode' and
11872 `help-fns--obsolete'. Put them in above new variable instead, and
11873 call them through `run-hook-with-args'.
11874 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
11875 `eieio-describe-class'. Not meant for interactive use anymore,
11876 but to augment existing help buffers. Remove optional second
11877 argument. Create proper button for file location.
11878 Rewrite function to use `insert' instead of `princ' and `prin1' where
11879 possible.
11880 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
11881 (eieio-method-def, eieio-class-def): Move further up.
11882 (describe-method, describe-generic, eieio-describe-method):
11883 Remove aliases.
11884 (eieio-help-constructor, eieio-help-generic): Rename from
11885 `eieio-describe-constructor' and `eieio-describe-generic', resp.
11886 Rewrite to use `insert' in the current buffer and use proper help
11887 buttons.
11888 (eieio-help-find-method-definition)
11889 (eieio-help-find-class-definition): Also accept symbols as
11890 arguments.
11891 (eieio-help-mode-augmentation-maybee): Remove.
11892 (eieio-describe-class-sb): Use `describe-function'.
11893 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
11894 Add `eieio-help-generic' and `eieio-help-constructor'.
11895
11896 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
11897
11898 Spelling fixes.
11899 * language/china-util.el (hz-ascii-designation):
11900 Rename from hz-ascii-designnation.
11901 (hz-ascii-designation): Rename from hz-ascii-designnation.
11902 All uses changed.
11903
11904 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
11905
11906 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
11907 package-alist.
11908
11909 2014-01-08 Bastien Guerry <bzg@gnu.org>
11910
11911 * emacs-lisp/package.el (package-delete):
11912 Correctly delete the package from package-alist.
11913
11914 2014-01-08 Daiki Ueno <ueno@gnu.org>
11915
11916 * emacs-lisp/package.el (url-recreate-url): Declare.
11917 (url-http-target-url): Declare.
11918 (package-handle-response): Include requested URL in the error message.
11919 (package--check-signature): Don't re-signal errors from
11920 package--with-work-buffer. Suggested by Stefan Monnier.
11921
11922 2014-01-07 Bastien Guerry <bzg@gnu.org>
11923
11924 * minibuffer.el (completion--try-word-completion): When both a
11925 hyphen and a space are possible candidates for the character
11926 following a word, display both candidates. (Bug#15980)
11927
11928 2014-01-07 Martin Rudalics <rudalics@gmx.at>
11929
11930 * window.el (balance-windows-2): While rounding don't give a
11931 window more than the remainder. Bug#16351, bug#16383.
11932
11933 2014-01-07 Glenn Morris <rgm@gnu.org>
11934
11935 * menu-bar.el (menu-bar-help-extra-packages): Remove.
11936 (menu-bar-help-menu): Use view-external-packages instead.
11937
11938 2014-01-07 Bastien Guerry <bzg@gnu.org>
11939
11940 * emacs-lisp/package.el (package-delete): Also delete the package
11941 name from `package-alist', not its description only.
11942
11943 2014-01-07 Glenn Morris <rgm@gnu.org>
11944
11945 * help.el (view-external-packages):
11946 * menu-bar.el (menu-bar-help-extra-packages):
11947 Visit efaq.info rather than etc/MORE.STUFF.
11948
11949 2014-01-07 Juri Linkov <juri@jurta.org>
11950
11951 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
11952 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
11953
11954 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
11955 that shadows RET. (Bug#16342)
11956
11957 2014-01-07 Chong Yidong <cyd@gnu.org>
11958
11959 * isearch.el (isearch-yank-char, isearch-yank-word)
11960 (isearch-yank-line): Doc fix.
11961
11962 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
11963
11964 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
11965 * emacs-lisp/elint.el (elint-find-builtins):
11966 * emacs-lisp/eldoc.el (eldoc-symbol-function):
11967 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
11968 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
11969 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
11970 * apropos.el (apropos-safe-documentation):
11971 * subr.el (symbol-file): Remove redundant fboundp.
11972 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
11973
11974 2014-01-06 Bastien Guerry <bzg@gnu.org>
11975
11976 * hl-line.el (global-hl-line-overlay): Make a local variable.
11977 (global-hl-line-overlays): New variable to store all overlays.
11978 (global-hl-line-mode): Don't delete overlays from the current
11979 buffer when `global-hl-line-sticky-flag' is non-nil.
11980 (global-hl-line-highlight): Add new overlays to
11981 `global-hl-line-overlays'.
11982 (global-hl-line-unhighlight-all): New function to delete all
11983 overlays when turning off `global-hl-line-mode'.
11984 This fixes Bug#16183.
11985
11986 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
11987
11988 * subr.el (set-transient-map): Fix nested case and docstring.
11989
11990 2014-01-06 Tassilo Horn <tsdh@gnu.org>
11991
11992 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
11993 `Texinfo' entry.
11994
11995 2014-01-06 Daniel Colascione <dancol@dancol.org>
11996
11997 Fix defun navigation in vc log view.
11998
11999 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
12000 like `beginning-of-defun'.
12001 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
12002 log-view-end-of-defun to log-view-end-of-defun-1. Replace
12003 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
12004 (log-view-extract-comment): Call `log-view-current-entry' directly
12005 instead of relying on broken `log-view-beginning-of-defun' behavior.
12006
12007 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
12008
12009 Spelling fixes.
12010 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
12011 * emacs-lisp/debug.el (cancel-debug-on-entry):
12012 * epg.el (epg-error-to-string):
12013 * files.el (recover-file):
12014 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
12015 * mail/emacsbug.el (report-emacs-bug-hook):
12016 * mail/sendmail.el (mail-recover):
12017 * ses.el (ses-yank-resize):
12018 * term/ns-win.el (ns-print-buffer):
12019 Spelling fixes in diagnostics, mostly for "canceled" with one L.
12020 * epg.el (epg-key-capability-alist): Rename from misspelled version.
12021 All uses changed.
12022 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
12023
12024 2014-01-06 Leo Liu <sdl.web@gmail.com>
12025
12026 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
12027 to avoid shadowing global key. (Bug#16354)
12028
12029 2014-01-06 Daniel Colascione <dancol@dancol.org>
12030
12031 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
12032 rst-mode.
12033
12034 2014-01-05 Martin Rudalics <rudalics@gmx.at>
12035
12036 * window.el (balance-windows): Add mising t to fix Bug#16351.
12037
12038 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
12039
12040 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
12041 (bug#16285).
12042 (shr-insert): If we have a word that's longer than `shr-width',
12043 break after it anyway. Otherwise we'll do no breaking once we get
12044 such a long word.
12045
12046 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
12047
12048 * net/eww.el (eww): Support single/double quote for search.
12049 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
12050 (eww-history-quit): Delete and use quit-window.
12051 (eww-history-kill): Delete, because it doesn't work well and
12052 not necessary.
12053 (eww-history-mode-map): Delete some keys and add easy-menu.
12054
12055 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
12056
12057 Fix misspelling of 'chinese' in rx (Bug#16237).
12058 * emacs-lisp/rx.el (rx-categories): Correct spelling of
12059 chinese-two-byte.
12060
12061 Change subword regexps back to vars (Bug#16296).
12062 * progmodes/subword.el (subword-forward-regexp)
12063 (subword-backward-regexp): Change these back to variables.
12064
12065 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
12066
12067 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
12068 syntax-begin-function (bug#16247).
12069
12070 2014-01-03 Chong Yidong <cyd@gnu.org>
12071
12072 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
12073 (advice--docstring): Delete variable.
12074 (advice--make-1): Leave the docstring empty.
12075 (advice-add): Use function-documentation for advised docstring.
12076
12077 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
12078 Ignore function-documentation property when getting documentation.
12079 (ad-activate-advised-definition): Use function-documentation
12080 generate the docstring.
12081 (ad-make-advised-definition): Don't call
12082 ad-make-advised-definition-docstring.
12083 (ad-make-advised-definition-docstring, ad-advised-definition-p):
12084 Delete functions.
12085
12086 * progmodes/sql.el (sql-help): Use function-documentation instead
12087 of dynamic-docstring-function property. No need to autoload now.
12088 (sql--help-docstring): New variable.
12089 (sql--make-help-docstring): Use it.
12090
12091 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
12092
12093 * ielm.el (ielm-tab): Retarget.
12094 (ielm-map): Use ielm-tab for tab.
12095 (ielm-complete-filename): Use comint-filename-completion.
12096 (ielm-complete-symbol): Remove.
12097 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
12098 remove ielm-tab from completion-at-point-functions (bug#16224).
12099
12100 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
12101 Beware signals raised by predicates (bug#16201).
12102
12103 2014-01-02 Richard Stallman <rms@gnu.org>
12104
12105 * dired-aux.el (dired-do-print): Handle printer-name.
12106
12107 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
12108 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
12109 (rmail-epa-decrypt): Turn off mime processing.
12110
12111 * mail/rmail.el (rmail-make-in-reply-to-field):
12112 Add parens in message-id.
12113
12114 * mail/rmail.el (rmail-get-coding-function): Variable.
12115 (rmail-get-coding-system): Use it.
12116
12117 2013-12-31 Eli Zaretskii <eliz@gnu.org>
12118
12119 * international/mule-conf.el: Unify the charset indian-is13194.
12120 (indian-is13194): Specify unify-map.
12121
12122 2013-12-31 Leo Liu <sdl.web@gmail.com>
12123
12124 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
12125
12126 2013-12-30 Daniel Colascione <dancol@dancol.org>
12127
12128 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
12129 of printing a useless when we resume from sleep.
12130
12131 * progmodes/sh-script.el
12132 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
12133 in indentation code. (Bug#16233)
12134
12135 2013-12-28 João Távora <joaotavora@gmail.com>
12136
12137 * elec-pair.el (electric-pair-post-self-insert-function):
12138 Don't open extra newlines at beginning of buffer. (Bug#16272)
12139
12140 2013-12-28 Eli Zaretskii <eliz@gnu.org>
12141
12142 * frame.el (window-system-for-display): Don't allow to create a
12143 GUI frame from a -nw session on MS-Windows. (Bug#14739)
12144
12145 2013-12-28 Glenn Morris <rgm@gnu.org>
12146
12147 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
12148 Update callers.
12149
12150 * apropos.el (apropos-match-face):
12151 * calculator.el (calculator-displayer):
12152 * dabbrev.el (dabbrev-search-these-buffers-only):
12153 * face-remap.el (buffer-face-mode-face):
12154 * simple.el (yank-handled-properties):
12155 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
12156 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
12157 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
12158 (hashcash-double-spend-database):
12159 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
12160 (ruby-deep-indent-paren-style):
12161 * textmodes/flyspell.el (flyspell-auto-correct-binding):
12162 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
12163 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
12164 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
12165 Specify custom types.
12166
12167 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
12168 * bookmark.el (bookmark-bmenu-use-header-line):
12169 * doc-view.el (doc-view-scale-internally):
12170 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
12171 * register.el (register-preview-delay):
12172 * net/shr.el (shr-bullet):
12173 * progmodes/cfengine.el (cfengine-cf-promises)
12174 (cfengine-parameters-indent):
12175 * progmodes/octave.el (inferior-octave-error-regexp-alist):
12176 * textmodes/reftex-vars.el (reftex-label-regexps):
12177 * vc/log-edit.el (log-edit-setup-add-author): Add version.
12178
12179 * net/tls.el (tls-certtool-program): Fix default value.
12180
12181 * desktop.el (desktop-restore-in-current-display):
12182 * newcomment.el (comment-empty-lines):
12183 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
12184 (idlwave-pad-keyword):
12185 * progmodes/tcl.el (tcl-tab-always-indent):
12186 * textmodes/reftex-vars.el (reftex-index-default-tag):
12187 * elec-pair.el (electric-pair-skip-whitespace):
12188 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
12189
12190 * emacs-lisp/authors.el (authors-ignored-files)
12191 (authors-valid-file-names, authors-renamed-files-alist): Additions.
12192
12193 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
12194
12195 * shell.el (shell-dynamic-complete-command): Doc fix.
12196 (shell--command-completion-data): Shell completion now matches
12197 executable filenames from the current buffer's directory, on
12198 systems in which this behavior is the default (windows-nt, ms-dos).
12199
12200 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
12201
12202 * net/shr.el (shr-insert): Don't infloop if the width is zero.
12203
12204 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
12205
12206 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
12207 (bug#16251).
12208
12209 * electric.el: Move all electric-pair-* to elec-pair.el.
12210 * elec-pair.el: New file, split from electric.el.
12211
12212 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
12213
12214 * net/shr.el (shr-find-fill-point): Don't try to fill if the
12215 indentation level is larger than the width, because that will
12216 infloop.
12217 (shr-insert): Fill repeatedly long texts, so that Japanese is
12218 formatted correctly (bug#16263).
12219 (shr-find-fill-point): Off by one error in comparison with the
12220 indentation.
12221
12222 2013-12-26 João Távora <joaotavora@gmail.com>
12223
12224 * electric.el (electric-pair-mode): More flexible engine for skip-
12225 and inhibit predicates, new options for pairing-related functionality.
12226 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
12227 if that keeps or improves their balance in buffers.
12228 (electric-pair-delete-adjacent-pairs): Delete the pair when
12229 backspacing over adjacent matched delimiters.
12230 (electric-pair-open-extra-newline): Open extra newline when
12231 inserting newlines between adjacent matched delimiters.
12232 (electric--sort-post-self-insertion-hook):
12233 Sort post-self-insert-hook according to priority values when
12234 minor-modes are activated.
12235 * simple.el (newline-and-indent): Call newline with interactive
12236 set to t.
12237 (blink-paren-post-self-insert-function): Set priority to 100.
12238 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12239 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
12240 comments. Locally set electric-pair-skip-whitespace to 'chomp and
12241 electric-pair-open-newline-between-pairs to nil.
12242
12243 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
12244
12245 * progmodes/python.el: Use lexical-binding.
12246 (python-nav-beginning-of-defun): Stop searching ASAP.
12247
12248 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
12249
12250 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
12251 Fix interactive spec. Doc fix. (Bug#15754)
12252
12253 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
12254
12255 * emacs-lisp/byte-run.el (eval-when-compile):
12256 * progmodes/cc-defs.el (cc-eval-when-compile):
12257 Fix edebug spec (bug#16184).
12258
12259 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
12260
12261 * net/shr.el (shr-visit-file): Remove debugging function.
12262 (shr-insert): Don't infloop if we can't find a good place to break
12263 the line (bug#16256).
12264
12265 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
12266
12267 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
12268 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
12269 python-nav-lisp-forward-sexp-safe.
12270 (python-nav--forward-sexp): New argument SAFE allows switching
12271 forward sexp movement behavior for parens.
12272 (python-nav-forward-sexp): Throw errors on unterminated parens
12273 (Bug#16191).
12274 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
12275 (python-nav-backward-sexp-safe): New functions.
12276 (python-shell-buffer-substring):
12277 Use `python-nav-forward-sexp-safe'.
12278
12279 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
12280
12281 * net/shr.el (shr-find-fill-point): Don't break lines before a
12282 quotation mark.
12283 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
12284 (shr-find-fill-point): Remove the special checks for the quotation
12285 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
12286
12287 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
12288
12289 * net/eww.el (eww-form-textarea): Use a different face for
12290 textareas than text input since they have different keymaps
12291 (bug#16142).
12292
12293 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
12294
12295 * progmodes/python.el (python-nav-beginning-of-statement):
12296 Speed up (Bug#15295).
12297
12298 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
12299
12300 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
12301 the window configuration.
12302
12303 2013-12-24 Eli Zaretskii <eliz@gnu.org>
12304
12305 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
12306 we run on MS-Windows or MS-DOS.
12307
12308 2013-12-24 Martin Rudalics <rudalics@gmx.at>
12309
12310 * window.el (balance-windows-area): Call window-size instead of
12311 window-height and window-width. Bug#16241.
12312
12313 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
12314
12315 * net/eww.el (eww-bookmark-quit): Remove.
12316 (eww-bookmark-browse): Restore the window configuration when you
12317 choose a bookmark (bug#16144).
12318
12319 2013-12-24 Daniel Colascione <dancol@dancol.org>
12320
12321 * icomplete.el: Remove redundant :group arguments to `defcustom'
12322 throughout.
12323 (icomplete-show-matches-on-no-input): New customizable variable.
12324 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
12325 we have something to show.
12326 (icomplete-exhibit): Compute completions even if we have no user input.
12327
12328 2013-12-23 Daniel Colascione <dancol@dancol.org>
12329
12330 * icomplete.el: Move `provide' to end of file.
12331
12332 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
12333
12334 * net/gnutls.el (gnutls-verify-error): Add version tag.
12335
12336 2013-12-23 Chong Yidong <cyd@gnu.org>
12337
12338 * subr.el (set-transient-map): Rename from
12339 set-temporary-overlay-map. Doc fix.
12340
12341 * face-remap.el (text-scale-adjust):
12342 * indent.el (indent-rigidly):
12343 * kmacro.el (kmacro-call-macro):
12344 * minibuffer.el (minibuffer-force-complete):
12345 * repeat.el (repeat):
12346 * simple.el (universal-argument--mode):
12347 * calendar/todo-mode.el (todo-insert-item--next-param):
12348 * progmodes/f90.el (f90-abbrev-start): Callers changed.
12349
12350 * indent.el (indent-rigidly): Use substitute-command-keys.
12351
12352 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
12353
12354 * net/eww.el (eww-tag-select): Add text-property to jump to next
12355 select field.
12356 (eww): Add non-supported ftp error.
12357
12358 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
12359
12360 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
12361 comments. Handle electric indent after typing `?' and `!'.
12362
12363 2013-12-22 Chong Yidong <cyd@gnu.org>
12364
12365 * faces.el (face-spec-recalc): If the theme specs are not
12366 applicable to a frame, fall back on the defface spec.
12367 This prevents themes from obliterating faces on low-color terminals.
12368
12369 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
12370
12371 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
12372 after `{'. We need it after block openers, and it doesn't seem
12373 to hurt after hash openers.
12374
12375 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
12376
12377 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
12378 extracted from `ruby-smie-rules'.
12379 (ruby--electric-indent-chars): New variable.
12380 (ruby--electric-indent-p): New function.
12381 (ruby-mode): Use `electric-indent-functions' instead of
12382 `electric-indent-chars'.
12383
12384 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
12385
12386 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
12387 docstring.
12388 (ruby-smie-rules): Indent plus one level after `=>'.
12389
12390 2013-12-21 Richard Stallman <rms@gnu.org>
12391
12392 * simple.el (newline): Doc fix.
12393
12394 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
12395
12396 * net/eww.el (eww-list-histories, eww-list-histories)
12397 (eww-history-browse, eww-history-quit, eww-history-kill)
12398 (eww-history-mode-map, eww-history-mode): New command and
12399 functions to list browser histories.
12400 (eww-form-text): Support text form with disabled
12401 and readonly attributes.
12402 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
12403
12404 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12405
12406 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
12407 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
12408 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
12409 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
12410 Use `user-error'.
12411 (eww-bookmark-mode-map): Add menu.
12412 (eww-render, eww-mode): Use `setq-local'.
12413 (eww-tool-bar-map): New variable.
12414 (eww-mode): Set `tool-bar-map'.
12415 (eww-view-source): Check for `html-mode' with `fboundp'.
12416
12417 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12418
12419 * net/shr.el (shr--extract-best-source): Don't bug out on audio
12420 elements with text inside. Also remove debugging.
12421
12422 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
12423
12424 * cus-start.el (all): Add ns-use-srgb-colorspace.
12425
12426 2013-12-21 Chong Yidong <cyd@gnu.org>
12427
12428 * custom.el (custom-theme-recalc-face): Do nothing if the face is
12429 undefined. Thus, theme settings for undefined faces do not take
12430 effect until the faces are defined with defface, the same as with
12431 theme variables.
12432
12433 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
12434 (face-spec-reset-face): Don't assign extra properties in temacs.
12435 (face-spec-recalc): Apply X resources too.
12436
12437 2013-12-21 Chong Yidong <cyd@gnu.org>
12438
12439 * faces.el (face-spec-set):
12440 * cus-face.el (custom-theme-set-faces, custom-set-faces):
12441 * custom.el (defface): Doc fixes (Bug#16203).
12442
12443 * indent.el (indent-rigidly-map): Add docstring, and move commands
12444 into named functions.
12445 (indent-rigidly-left, indent-rigidly-right)
12446 (indent-rigidly-left-to-tab-stop)
12447 (indent-rigidly-right-to-tab-stop): New functions. Decide on
12448 indentation direction based on bidi direction, and accumulate
12449 sequential commands in a single undo boundary.
12450 (indent-rigidly--pop-undo): New utility function.
12451
12452 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
12453
12454 * faces.el (read-face-name): Require crm.el when using crm-separator.
12455
12456 2013-12-20 Daniel Colascione <dancol@dancol.org>
12457
12458 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
12459 so that we don't reflow comments into the shebang line.
12460
12461 2013-12-20 Juri Linkov <juri@jurta.org>
12462
12463 * saveplace.el (save-place-to-alist): Add `dired-filename' as
12464 a position when `dired-directory' is non-nil. Check integer
12465 positions with `integerp'.
12466 (toggle-save-place, save-places-to-alist): Add check for
12467 `dired-directory'.
12468 (save-place-find-file-hook): Check integer positions with
12469 `integerp'.
12470 (save-place-dired-hook): Use `dired-goto-file' when
12471 `dired-filename' is found in the assoc list. Check integer
12472 positions with `integerp'.
12473 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
12474
12475 * dired.el (dired-initial-position-hook): Rename back from
12476 `dired-initial-point-hook'.
12477 (dired-initial-position): Rename `dired-initial-point-hook' to
12478 `dired-initial-position-hook'.
12479 (dired-file-name-at-point): Doc fix. (Bug#15329)
12480
12481 2013-12-20 Juri Linkov <juri@jurta.org>
12482
12483 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
12484 (read-regexp-suggestions): New function.
12485 (read-regexp): Use `read-regexp-defaults-function' to get default values.
12486 Use `read-regexp-suggestions'. Add non-empty default to history
12487 for empty input.
12488 (occur-read-regexp-defaults-function): Remove function.
12489 (occur-read-primary-args): Use `regexp-history-last' instead of
12490 `occur-read-regexp-defaults-function'.
12491
12492 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
12493 (hi-lock-line-face-buffer, hi-lock-face-buffer)
12494 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
12495 `hi-lock-read-regexp-defaults-function'. Doc fix.
12496 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
12497 with `find-tag-default-as-symbol-regexp'. Doc fix.
12498 (hi-lock-read-regexp-defaults): Remove function.
12499 (hi-lock-regexp-okay): Add check for null.
12500
12501 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
12502 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
12503
12504 * subr.el (find-tag-default-as-symbol-regexp): New function.
12505 (find-tag-default-as-regexp): Move symbol regexp formatting to
12506 `find-tag-default-as-symbol-regexp'.
12507
12508 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
12509
12510 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
12511 (Bug#14179)
12512
12513 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
12514
12515 * calendar/todo-mode.el: New implementation of item insertion
12516 commands and key bindings.
12517 (todo-key-prompt): New face.
12518 (todo-insert-item): New command.
12519 (todo-insert-item--parameters): New defconst, replacing defvar
12520 todo-insertion-commands-args-genlist.
12521 (todo-insert-item--param-key-alist): New defconst, replacing
12522 defvar todo-insertion-commands-arg-key-list.
12523 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
12524 (todo-insert-item--argsleft, todo-insert-item--apply-args)
12525 (todo-insert-item--next-param): New functions.
12526 (todo-insert-item--args, todo-insert-item--argleft)
12527 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
12528 New variables.
12529 (todo-key-bindings-t): Change binding of "i" from
12530 todo-insertion-map to todo-insert-item.
12531 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
12532 (todo-insertion-command-name, todo-insertion-commands-names)
12533 (todo-define-insertion-command, todo-insertion-commands)
12534 (todo-insertion-key-bindings, todo-insertion-map): Remove.
12535
12536 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
12537
12538 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
12539 (todo-toggle-item-highlighting): Use eval-and-compile instead of
12540 eval-when-compile.
12541 (todo-move-category): Allow choosing a non-existing todo file to
12542 move the category to, and create that file.
12543 (todo-default-priority): New user option.
12544 (todo-set-item-priority): Use it.
12545 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
12546 (desktop-restore-file-buffer): Declare.
12547 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
12548 (todo-modes-set-2): Locally set desktop-save-buffer to
12549 todo-desktop-save-buffer.
12550 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
12551 (auto-mode-alist): Add autoload cookie.
12552
12553 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
12554
12555 * emacs-lisp/subr-x.el: Renamed from helpers.el.
12556 helpers.el was a poor choice of name.
12557 (string-remove-prefix): New function.
12558 (string-remove-suffix): New function.
12559
12560 2013-12-20 Martin Rudalics <rudalics@gmx.at>
12561
12562 Fix assignment for new window total sizes.
12563 * window.el (window--pixel-to-size): Remove function.
12564 (window--pixel-to-total-1, window--pixel-to-total):
12565 Fix calculation of new total sizes.
12566
12567 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
12568
12569 * comint.el (comint-output-filter): Fix rear-nonsticky property
12570 placement (Bug#16010).
12571
12572 2013-12-20 Chong Yidong <cyd@gnu.org>
12573
12574 * faces.el (read-color): Minor fix for completion function.
12575
12576 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
12577
12578 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
12579 New option. (Bug#16182)
12580 (ruby-smie--indent-to-stmt-p): Use it.
12581 (ruby-smie-rules): Revert the logic in the handling of `when'.
12582 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
12583 (ruby-deep-arglist, ruby-deep-indent-paren)
12584 (ruby-deep-indent-paren-style): Update docstrings to note that the
12585 vars don't have any effect with SMIE.
12586
12587 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
12588
12589 * calc/calc.el (calc-enter, calc-pop): Use the variable
12590 `calc-context-sensitive-enter'.
12591
12592 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12593
12594 * net/shr.el (shr-insert): Protect against infloops in degenerate
12595 tables.
12596
12597 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12598
12599 * progmodes/octave.el (octave): Add link to manual and octave
12600 homepage.
12601 (octave-mode-menu): Link to octave-mode manual.
12602
12603 2013-12-20 Leo Liu <sdl.web@gmail.com>
12604
12605 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
12606 insertion using skeleton-end-newline. (Bug#16138)
12607
12608 2013-12-20 Juri Linkov <juri@jurta.org>
12609
12610 * replace.el (occur-engine): Use `add-face-text-property'
12611 to add the face property to matches and titles. (Bug#14645)
12612
12613 * hi-lock.el (hi-green): Use lighter color "light green" closer to
12614 the palette of other hi-lock colors.
12615 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
12616
12617 2013-12-19 Juri Linkov <juri@jurta.org>
12618
12619 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
12620 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
12621 (minibuffer-history-symbol): Move variable declaration closer to
12622 its usage.
12623
12624 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
12625 (Bug#14785)
12626
12627 2013-12-19 Juri Linkov <juri@jurta.org>
12628
12629 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
12630 New function.
12631 (log-edit-hook): Add it to :options. (Bug#16170)
12632
12633 2013-12-19 Juri Linkov <juri@jurta.org>
12634
12635 * simple.el (eval-expression-print-format): Don't check for
12636 command names and the last command. Always display additional
12637 formats of the integer result in the echo area, and insert them
12638 to the current buffer only with a zero prefix arg.
12639 Display character when char-displayable-p is non-nil.
12640 (eval-expression): With a zero prefix arg, set `print-length' and
12641 `print-level' to nil, and insert the integer values from
12642 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
12643
12644 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
12645 `eval-last-sexp-arg-internal'. Doc fix.
12646 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
12647 `eval-last-sexp-print-value'. Doc fix.
12648 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
12649 Set `print-length' and `print-level' to nil when arg is zero.
12650 (eval-last-sexp): Doc fix.
12651 (eval-defun-2): Print the integer values from
12652 `eval-expression-print-format' at the end.
12653
12654 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
12655 values from `eval-expression-print-format' at the end.
12656
12657 * ielm.el (ielm-eval-input): Print the integer
12658 values from `eval-expression-print-format' at the end.
12659
12660 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
12661
12662 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
12663 2013-12-11T19:01:44Z!tzz@lifelogs.com.
12664
12665 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
12666
12667 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
12668 (hl-line-highlight, global-hl-line-highlight): Use it.
12669 (hl-line-overlay): Use defvar-local.
12670
12671 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
12672
12673 * term/ns-win.el: Require dnd.
12674 (global-map): Remove drag items.
12675 (ns-insert-text, ns-set-foreground-at-mouse)
12676 (ns-set-background-at-mouse):
12677 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
12678 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
12679 New functions.
12680
12681 2013-12-19 Glenn Morris <rgm@gnu.org>
12682
12683 * emacs-lisp/ert.el (ert-select-tests):
12684 Fix string/symbol mixup. (Bug#16121)
12685
12686 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
12687
12688 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
12689 keywords to their parent.
12690
12691 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
12692
12693 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
12694 first arg to be a string (fixed dead code), or an operator symbol.
12695 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
12696 operator symbols.
12697 (ruby-smie-rules): Remove parent token check in the `.' clause, it
12698 did nothing. Don't respond to `(:after ".")', it will be called
12699 with :before anyway. Remove the ` @ ' rule, it didn't seem to
12700 change anything. Only return indentation for binary operators
12701 when they are hanging. De-dent opening paren when its parent is
12702 `.', otherwise it looks bad when the dot is not at bol or eol
12703 (bug#16182).
12704
12705 2013-12-19 Juri Linkov <juri@jurta.org>
12706
12707 * replace.el (query-replace-read-args): Split a non-negative arg
12708 and a negative arg into separate elements.
12709 (query-replace, query-replace-regexp, replace-string)
12710 (replace-regexp): Add arg `backward'. Doc fix.
12711 (replace-match-maybe-edit): When new arg `backward' is non-nil,
12712 move point to the beginning of the match.
12713 (replace-search, replace-highlight): Use new arg `backward'
12714 to set the value of `isearch-forward'.
12715 (perform-replace): Add arg `backward' and use it to perform
12716 replacement backward. (Bug#14979)
12717
12718 * isearch.el (isearch-query-replace): Use a negative prefix arg
12719 to call `perform-replace' with a non-nil arg `backward'.
12720
12721 2013-12-18 Juri Linkov <juri@jurta.org>
12722
12723 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
12724 to the default list. Move `log-edit-show-files' to the end.
12725 Add more available functions to options.
12726 (log-edit): Move default specific settings to
12727 `log-edit-insert-message-template'. Don't move point.
12728 (log-edit-insert-message-template): New function.
12729 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
12730 (Bug#16170)
12731
12732 2013-12-18 Juri Linkov <juri@jurta.org>
12733
12734 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
12735 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
12736
12737 2013-12-18 Leo Liu <sdl.web@gmail.com>
12738
12739 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
12740 (Bug#16186)
12741
12742 2013-12-18 Eli Zaretskii <eliz@gnu.org>
12743
12744 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
12745 formats for displaying file sizes when the -s switch is given.
12746 Instead, compute a separate format for displaying the size in
12747 blocks, which is displayed in addition to the "regular" size.
12748 When -h is given in addition to -s, produce size in blocks in
12749 human-readable form as well. (Bug#16179)
12750
12751 2013-12-18 Tassilo Horn <tsdh@gnu.org>
12752
12753 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
12754 Reference tables with ~\ref{...} instead of only \ref{...}.
12755
12756 2013-12-18 Chong Yidong <cyd@gnu.org>
12757
12758 * cus-edit.el (custom-magic-alist): Fix "themed" description
12759 (Bug#14348).
12760
12761 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
12762 is non-nil, do not create a new entry in the symbol's theme-value
12763 or theme-face property; update theme-settings only (Bug#14664).
12764 (custom-available-themes): Doc fix.
12765
12766 * cus-theme.el (custom-new-theme-mode-map): Add bindings
12767 (Bug#15674).
12768
12769 * replace.el (occur-engine): Avoid infloop (Bug#7593).
12770
12771 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12772
12773 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
12774 (Bug#13914).
12775
12776 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
12777
12778 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
12779
12780 2013-12-18 Glenn Morris <rgm@gnu.org>
12781
12782 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
12783 * cus-start.el (load-prefer-newer): New option.
12784
12785 2013-12-18 Le Wang <l26wang@gmail.com>
12786
12787 * comint.el (comint-previous-matching-input-from-input):
12788 Retain point (Bug#13404).
12789
12790 2013-12-18 Chong Yidong <cyd@gnu.org>
12791
12792 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
12793
12794 2013-12-18 Glenn Morris <rgm@gnu.org>
12795
12796 * mail/emacsbug.el (report-emacs-bug):
12797 Only mention enable-multibyte-characters if non-standard.
12798
12799 2013-12-17 Juri Linkov <juri@jurta.org>
12800
12801 * arc-mode.el (archive-extract-by-file): Check if directory exists
12802 before deletion to not show irrelevant errors if it doesn't exist.
12803
12804 2013-12-17 Juri Linkov <juri@jurta.org>
12805
12806 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
12807 (Bug#14751)
12808
12809 * net/eww.el (browse-web): Add alias to `eww'.
12810 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
12811 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
12812
12813 * net/browse-url.el (browse-url-browser-function): Move `eww'
12814 closer to similar functions.
12815
12816 * startup.el (fancy-startup-screen, fancy-about-screen):
12817 Set browse-url-browser-function to eww-browse-url locally.
12818 (Bug#14751)
12819
12820 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
12821
12822 * window.el (window--pixel-to-total): Remove unused `mini' var.
12823 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
12824 (split-window): Remove unused `new' var.
12825 (window--display-buffer): Remove unused `frame' and `delta' vars.
12826 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
12827 and display-width'.
12828
12829 2013-12-17 Martin Rudalics <rudalics@gmx.at>
12830
12831 * dired.el (dired-mark-pop-up):
12832 * register.el (register-preview): Don't bind
12833 split-height-threshold here since it's now done in
12834 display-buffer-below-selected.
12835
12836 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
12837
12838 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
12839 xterm-rgb-convert-to-16bit.
12840 (rxvt-register-default-colors): Standardize with
12841 xterm-register-default-colors (Bug#14078).
12842
12843 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
12844
12845 * simple.el (kill-region): Pass mark first, then point, so that
12846 kill-append works right (Bug#12819).
12847 (copy-region-as-kill, kill-ring-save): Likewise.
12848
12849 2013-12-17 Leo Liu <sdl.web@gmail.com>
12850
12851 * net/rcirc.el (rcirc-add-face):
12852 * eshell/em-prompt.el (eshell-emit-prompt):
12853 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
12854 (Bug#16167)
12855
12856 2013-12-17 Chong Yidong <cyd@gnu.org>
12857
12858 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
12859 Suggested by Xue Fuqiao.
12860
12861 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
12862
12863 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
12864
12865 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
12866
12867 * net/shr.el (shr-insert-document): Remove unused var
12868 `shr-preliminary-table-render'.
12869 (shr-rescale-image): Remove unused arg `force'.
12870 (shr-put-image): Update calls accordingly.
12871 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
12872
12873 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
12874
12875 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
12876 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
12877 :close-all, to see which indentation method to use (Bug#16116).
12878 (smie-rules-function): Document the method :close-all.
12879
12880 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12881
12882 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
12883
12884 * net/eww.el (eww-display-html): If we can't find the anchor we're
12885 looking for, then go to point-min.
12886
12887 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
12888
12889 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
12890 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
12891 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
12892 Expand dir too, in case it's relative.
12893
12894 2013-12-16 Juri Linkov <juri@jurta.org>
12895
12896 * desktop.el (desktop-auto-save-timeout): Change default to
12897 `auto-save-timeout'. Doc fix.
12898 (desktop-save): Skip the timestamp in desktop-saved-frameset
12899 when checking for auto-save changes.
12900 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
12901 `desktop-auto-save' is called repeatedly by the idle timer.
12902 (desktop-auto-save-set-timer): Replace `run-with-timer' with
12903 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
12904 (Bug#15331)
12905
12906 2013-12-16 Juri Linkov <juri@jurta.org>
12907
12908 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
12909 (Bug#16035)
12910 (isearch-pre-command-hook): Check `this-command' for symbolp.
12911
12912 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
12913
12914 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
12915
12916 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
12917
12918 * progmodes/cfengine.el (cfengine3--current-word): Remove.
12919 (cfengine3--current-function): Bring in the current-function
12920 functionality from `cfengine3--current-word'.
12921 (cfengine3-completion-function): Bring in the
12922 bounds-of-current-word functionality from
12923 `cfengine3--current-word'.
12924
12925 2013-12-16 Martin Rudalics <rudalics@gmx.at>
12926
12927 * window.el (display-buffer-below-selected):
12928 Bind split-height-threshold to 0 as suggested by Juri Linkov.
12929
12930 2013-12-16 Leo Liu <sdl.web@gmail.com>
12931
12932 * progmodes/compile.el (compile-goto-error): Do not push-mark.
12933 Remove NOMSG arg and all uses changed.
12934
12935 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
12936
12937 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
12938 (cua--deactivate-rectangle): Don't deactivate the mark.
12939 (cua-set-rectangle-mark): Don't set mark-active since
12940 cua--activate-rectangle already does it for us.
12941 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
12942 non-rectangular region.
12943
12944 * emulation/cua-base.el (cua-repeat-replace-region):
12945 Use with-current-buffer.
12946
12947 * net/gnutls.el: Use cl-lib.
12948 (gnutls-negotiate): `mapcan' -> cl-mapcan.
12949
12950 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
12951
12952 * emacs-lisp/package.el (package-built-in-p): Support both
12953 built-in and the package.el converted package descriptions.
12954 (package-show-package-list): Allow keywords.
12955 (package-keyword-button-action): Use it instead of
12956 `finder-list-matches'.
12957 (package-menu-filter-interactive): Interactive filtering (by
12958 keyword) function.
12959 (package-menu--generate): Support keywords and change keymappings
12960 and headers when they are given.
12961 (package--has-keyword-p): Helper function.
12962 (package-menu--refresh): Use it.
12963 (package--mapc): Helper function.
12964 (package-all-keywords): Use it.
12965 (package-menu-mode-map): Set up menu items and keybindings to
12966 provide a filtering UI.
12967
12968 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
12969
12970 * net/gnutls.el (gnutls-verify-error): New defcustom to control
12971 the behavior when a certificate fails validation. Defaults to
12972 old behavior: never abort, just warn.
12973 (gnutls-negotiate): Use it.
12974
12975 2013-12-14 Martin Rudalics <rudalics@gmx.at>
12976
12977 * window.el (display-buffer-below-selected): Never split window
12978 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
12979
12980 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
12981
12982 * emacs-lisp/package.el (package--prepare-dependencies): New function.
12983 (package-buffer-info): Use it (bug#15108).
12984
12985 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
12986
12987 * icomplete.el (icomplete-completions): Make sure the prefix is already
12988 displayed elsewhere before hiding it (bug#16219).
12989
12990 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
12991
12992 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
12993 open-paren tokens when preceded by a open-paren, too.
12994 (ruby-smie-rules): Handle virtual indentation after open-paren
12995 tokens specially. If there is code between it and eol, return the
12996 column where is starts (Bug#16118).
12997
12998 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
12999
13000 * progmodes/cfengine.el: Fix `add-hook' doc.
13001 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
13002 (cfengine3--current-word): Fix parameters.
13003 (cfengine3-make-syntax-cache): Simplify further.
13004 (cfengine3-completion-function, cfengine3--current-function):
13005 Use `assq' for symbols.
13006 (cfengine3--current-function): Fix `cfengine3--current-word' call.
13007
13008 2013-12-13 Glenn Morris <rgm@gnu.org>
13009
13010 * loadup.el (load-path): Warn if site-load or site-init changes it.
13011 No more need to reset it when bootstrapping.
13012
13013 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
13014
13015 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
13016 locations for cf-promises.
13017 (cfengine-mode-syntax-functions-regex): New caching variable.
13018 (cfengine3-fallback-syntax): Fallback syntax for cases where
13019 cf-promises doesn't run.
13020 (cfengine3--current-word): Reimplement using
13021 `cfengine-mode-syntax-functions-regex'.
13022 (cfengine3-completion-function, cfengine3--current-function):
13023 Use `cfengine3-make-syntax-cache' directly.
13024 (cfengine3-clear-syntax-cache): New function.
13025 (cfengine3-make-syntax-cache): Simplify and create
13026 `cfengine-mode-syntax-functions-regex' on demand.
13027 (cfengine3-format-function-docstring): Don't call
13028 `cfengine3-make-syntax-cache' explicitly.
13029
13030 2013-12-13 Martin Rudalics <rudalics@gmx.at>
13031
13032 Fix windmove-find-other-window broken after pixelwise resizing
13033 (Bug#16017).
13034 * windmove.el (windmove-other-window-loc): Revert change from
13035 2013-12-04.
13036 (windmove-find-other-window): Call window-in-direction.
13037 * window.el (window-in-direction): New arguments SIGN, WRAP and
13038 MINI to emulate original windmove-find-other-window behavior.
13039
13040 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
13041
13042 * simple.el (blink-matching--overlay): New variable.
13043 (blink-matching-open): Instead of moving point, highlight the
13044 matching paren with an overlay
13045 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
13046
13047 * faces.el (paren-showing-faces, show-paren-match)
13048 (show-paren-mismatch): Move from paren.el.
13049
13050 2013-12-13 Leo Liu <sdl.web@gmail.com>
13051
13052 * indent.el (indent-region): Disable progress reporter in
13053 minibuffer. (Bug#16108)
13054
13055 * bindings.el (visual-order-cursor-movement): Fix version.
13056
13057 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
13058
13059 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
13060 Also match after beginning of line.
13061 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
13062 files. Thanks to Russell Sim. (Bug#15378)
13063
13064 2013-12-13 Juri Linkov <juri@jurta.org>
13065
13066 * simple.el <Keypad support>: Remove key bindings duplicated
13067 with bindings.el. (Bug#14397)
13068
13069 2013-12-13 Juri Linkov <juri@jurta.org>
13070
13071 * comint.el (comint-mode-map): Replace `delete-char' with
13072 `delete-forward-char'. (Bug#16109)
13073
13074 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
13075
13076 * progmodes/python.el (python-indent-calculate-indentation):
13077 Fix de-denters cornercase. (Bug#15731)
13078
13079 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
13080
13081 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
13082 (advice--make): Pay attention to `depth'.
13083 (advice--make-1): Don't autoload commands eagerly.
13084 * emacs-lisp/elp.el (elp-instrument-function):
13085 * emacs-lisp/trace.el (trace-function-internal):
13086 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
13087
13088 * iswitchb.el (iswitchb-mode): Don't belittle ido.
13089
13090 2013-12-12 Eli Zaretskii <eliz@gnu.org>
13091
13092 * term/w32-win.el (w32-handle-dropped-file):
13093 * startup.el (normal-top-level):
13094 * net/browse-url.el (browse-url-file-url):
13095 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
13096 decode file names using 'utf-8' rather than
13097 file-name-coding-system.
13098
13099 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
13100
13101 * progmodes/python.el (python-indent-context)
13102 (python-indent-calculate-indentation): Fix auto-identation
13103 behavior for comment blocks. (Bug#15916)
13104
13105 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
13106
13107 * progmodes/python.el (python-indent-calculate-indentation):
13108 When determining indentation, don't treat "return", "pass", etc., as
13109 operators when they are just string constituents. (Bug#15812)
13110
13111 2013-12-12 Juri Linkov <juri@jurta.org>
13112
13113 * uniquify.el (uniquify-buffer-name-style): Change default to
13114 `post-forward-angle-brackets'.
13115
13116 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
13117 `uniquify'. Change default to `post-forward-angle-brackets'.
13118
13119 2013-12-11 Glenn Morris <rgm@gnu.org>
13120
13121 * emacs-lisp/package.el (finder-list-matches):
13122 Autoload rather than falsely declaring.
13123
13124 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
13125
13126 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
13127 (eww-mode-map): Use them.
13128
13129 2013-12-11 Martin Rudalics <rudalics@gmx.at>
13130
13131 * window.el (display-buffer-in-side-window): Fix doc-string
13132 (Bug#16115).
13133
13134 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
13135
13136 * vc/vc-git.el: Silence byte-compiler warnings.
13137 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
13138 (log-edit-set-header): Declare.
13139
13140 2013-12-11 Eli Zaretskii <eliz@gnu.org>
13141
13142 * Makefile.in (custom-deps, finder-data): Run output file names
13143 through unmsys--file-name. (Bug#16099)
13144
13145 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
13146
13147 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
13148 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
13149
13150 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
13151 instead of deleting the selection "by hand" (bug#16098).
13152 Rely on insert-for-yank to yank rectangles.
13153 (cua-highlight-region-shift-only): Mark obsolete.
13154 (cua-mode): Don't enable/disable transient-mark-mode,
13155 shift-select-mode (cua-mode works both with and without them), and
13156 pc-selection-mode (obsolete).
13157 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
13158 (cua--deactivate-rectangle): Deactivate it.
13159
13160 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
13161 (delete-selection-helper): Make sure yank starts at the top of the
13162 deleted region.
13163 (minibuffer-keyboard-quit): Use region-active-p.
13164
13165 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
13166
13167 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
13168 to `delete' (bug#16109).
13169
13170 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13171
13172 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
13173 info manual and show keybindings and set `:group' keyword.
13174
13175 2013-12-11 Juri Linkov <juri@jurta.org>
13176
13177 * delsel.el (delete-active-region): Let-bind `this-command'
13178 to prevent `kill-region' from changing its original value.
13179 (delete-selection-helper): Handle `overwrite-mode' for the type
13180 `kill' exactly the same way as for the type `t'.
13181 (insert-char, quoted-insert, reindent-then-newline-and-indent):
13182 Support more commands. (Bug#13312)
13183
13184 2013-12-11 Juri Linkov <juri@jurta.org>
13185
13186 * bindings.el: Map kp keys to non-kp keys systematically
13187 with basic modifiers control, meta and shift. (Bug#14397)
13188
13189 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
13190
13191 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
13192 "Close browser" menu items. Fix wrong function of "List
13193 bookmarks".
13194
13195 2013-12-11 Juri Linkov <juri@jurta.org>
13196
13197 * misearch.el (multi-isearch-buffers): Set the value of
13198 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
13199 arg of isearch-forward to t.
13200 (multi-isearch-buffers-regexp): Set the value of
13201 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
13202 arg of isearch-forward-regexp to t.
13203 (multi-isearch-files): Set the value of
13204 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
13205 arg of isearch-forward to t.
13206 (multi-isearch-files-regexp): Set the value of
13207 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
13208 arg of isearch-forward-regexp to t. (Bug#16035)
13209
13210 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
13211 arg of isearch-forward to t.
13212 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
13213 arg of isearch-forward-regexp to t.
13214 (dired-isearch-filter-filenames): Remove unnecessary check for
13215 `dired-isearch-filenames'.
13216
13217 * comint.el (comint-history-isearch-backward):
13218 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
13219 (comint-history-isearch-backward-regexp):
13220 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
13221
13222 2013-12-10 Eli Zaretskii <eliz@gnu.org>
13223
13224 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
13225 unmsys--file-name. (Bug#16099)
13226
13227 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
13228
13229 * emacs-lisp/package.el (package-keyword-button-action):
13230 Remove finder.el require dependency.
13231
13232 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
13233
13234 * emacs-lisp/package.el: Require finder.el.
13235 (describe-package-1): Add keyword buttons.
13236 (package-make-button): New convenience function.
13237 (package-keyword-button-action): Keyword button action using
13238 `finder-list-matches'.
13239
13240 2013-12-09 Eli Zaretskii <eliz@gnu.org>
13241
13242 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
13243 last commit.
13244
13245 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
13246
13247 * autorevert.el (auto-revert-notify-add-watch): Do not handle
13248 symlinked files.
13249
13250 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
13251
13252 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
13253 after the end of a percent literal.
13254
13255 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
13256
13257 * progmodes/ruby-mode.el (ruby-forward-string): Document.
13258 Handle caret-delimited strings (Bug#16079).
13259
13260 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
13261
13262 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
13263 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
13264 `ruby-parse-partial' (Bug#16078).
13265
13266 2013-12-09 Leo Liu <sdl.web@gmail.com>
13267
13268 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
13269
13270 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
13271
13272 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
13273 (js-switch-indent-offset): New option.
13274 (js--proper-indentation): Use it. And handle the case when
13275 "default" is actually a key in an object literal.
13276 (js--same-line): New function.
13277 (js--multi-line-declaration-indentation): Use it.
13278 (js--indent-in-array-comp, js--array-comp-indentation):
13279 New functions.
13280 (js--proper-indentation): Use them, to handle array comprehension
13281 continuations.
13282
13283 2013-12-08 Leo Liu <sdl.web@gmail.com>
13284
13285 * progmodes/flymake.el (flymake-highlight-line): Re-write.
13286 (flymake-make-overlay): Remove arg MOUSE-FACE.
13287 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
13288
13289 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
13290
13291 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
13292 New function.
13293 (redisplay-highlight-region-function): Use it.
13294
13295 * emulation/cua-base.el (cua--explicit-region-start)
13296 (cua--last-region-shifted): Remove.
13297 (cua--deactivate): Use deactivate-mark.
13298 (cua--pre-command-handler-1): Don't handle shift-selection.
13299 (cua--post-command-handler-1): Don't change transient-mark-mode.
13300 (cua--select-keymaps): Use region-active-p rather than
13301 cua--explicit-region-start or cua--last-region-shifted.
13302 (cua-mode): Enable shift-select-mode.
13303
13304 2013-12-08 Leo Liu <sdl.web@gmail.com>
13305
13306 * progmodes/flymake.el (flymake-popup-current-error-menu):
13307 Rename from flymake-display-err-menu-for-current-line. Reimplement.
13308 (flymake-posn-at-point-as-event, flymake-popup-menu)
13309 (flymake-make-emacs-menu): Remove. (Bug#16077)
13310
13311 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
13312
13313 * rect.el (rectangle-mark-mode): Activate mark even if
13314 transient-mark-mode is off (bug#16066).
13315 (rectangle--highlight-for-redisplay): Fix boundary condition when point
13316 is > mark and at bolp.
13317
13318 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
13319 (region-extract-function): Use it.
13320 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
13321 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
13322 Delete functions.
13323 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
13324 kill-ring-save, kill-region, delete-char, delete-forward-char.
13325 Ignore self-insert-iso.
13326
13327 * emulation/cua-gmrk.el (cua--init-global-mark):
13328 Ignore `self-insert-iso'.
13329
13330 * emulation/cua-base.el (cua--prefix-copy-handler)
13331 (cua--prefix-cut-handler): Rely on region-extract-function rather than
13332 checking cua--rectangle.
13333 (cua-delete-region): Use region-extract-function.
13334 (cua-replace-region): Delete function.
13335 (cua-copy-region, cua-cut-region): Obey region-extract-function.
13336 (cua--pre-command-handler-1): Don't do the delete-selection thing.
13337 (cua--self-insert-char-p): Ignore `self-insert-iso'.
13338 (cua--init-keymaps): Don't remap delete-selection commands.
13339 (cua-mode): Use delete-selection-mode instead of rolling our own
13340 (bug#16085).
13341
13342 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
13343 Obey region-extract-function.
13344
13345 Make registers and delete-selection-mode work on rectangles.
13346 * register.el (describe-register-1): Don't modify the register's value.
13347 (copy-to-register): Obey region-extract-function.
13348 * delsel.el (delete-active-region): Obey region-extract-function.
13349
13350 2013-12-08 Leo Liu <sdl.web@gmail.com>
13351
13352 * progmodes/flymake.el (flymake, flymake-error-bitmap)
13353 (flymake-warning-bitmap, flymake-fringe-indicator-position)
13354 (flymake-compilation-prevents-syntax-check)
13355 (flymake-start-syntax-check-on-newline)
13356 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
13357 (flymake-start-syntax-check-on-find-file, flymake-log-level)
13358 (flymake-xml-program, flymake-master-file-dirs)
13359 (flymake-master-file-count-limit)
13360 (flymake-allowed-file-name-masks): Relocate.
13361 (flymake-makehash, flymake-float-time)
13362 (flymake-replace-regexp-in-string, flymake-split-string)
13363 (flymake-get-temp-dir): Remove.
13364 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
13365 (flymake-current-row, flymake-selected-frame)
13366 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
13367 related functions. (Bug#16077)
13368
13369 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
13370
13371 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
13372
13373 2013-12-07 Tassilo Horn <tsdh@gnu.org>
13374
13375 * help-fns.el (describe-function-1): Use new advice-* functions
13376 rather than old ad-* functions. Fix function type description and
13377 source links for advised functions and subrs.
13378
13379 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
13380
13381 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
13382
13383 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
13384
13385 * progmodes/compile.el (compilation-start):
13386 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
13387
13388 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
13389 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
13390
13391 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
13392
13393 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
13394 Touch up the last change.
13395
13396 2013-12-06 Leo Liu <sdl.web@gmail.com>
13397
13398 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
13399 (inferior-octave-startup): Always use "octave> " for prompt.
13400 (octave-goto-function-definition)
13401 (octave-sync-function-file-names)
13402 (octave-find-definition-default-filename): Remove redundant backquotes.
13403
13404 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
13405
13406 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
13407 syntax for `?'.
13408 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
13409 where appropriate already.
13410 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
13411 end of method names (Bug#15874).
13412
13413 2013-12-06 Juri Linkov <juri@jurta.org>
13414
13415 * isearch.el (isearch--saved-overriding-local-map):
13416 New internal variable.
13417 (isearch-mode): Set it to the initial value of
13418 `overriding-terminal-local-map'.
13419 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
13420 with `isearch--saved-overriding-local-map'. (Bug#16035)
13421
13422 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
13423
13424 * progmodes/octave.el (inferior-octave-completion-table):
13425 Turn back into function, use `completion-table-with-cache'
13426 (Bug#11906). Update all references.
13427
13428 * minibuffer.el (completion-table-with-cache): New function.
13429
13430 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
13431
13432 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
13433
13434 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
13435
13436 * net/eww.el (eww-current-source): New variable to store page
13437 source.
13438 (eww-display-html, eww-mode, eww-save-history)
13439 (eww-restore-history): Use it.
13440 (eww-view-source): New command to view page source.
13441 Opportunistically uses `html-mode' to highlight the buffer.
13442 (eww-mode-map): Install it.
13443
13444 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
13445
13446 * net/dbus.el (dbus-unregister-service)
13447 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
13448 Fix docstring.
13449 (dbus-unregister-service): Skip :serial entries in
13450 `dbus-registered-objects-table'.
13451 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
13452
13453 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
13454
13455 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
13456 around keywords with extra `split-string' argument.
13457
13458 2013-12-04 Martin Rudalics <rudalics@gmx.at>
13459
13460 * windmove.el (windmove-other-window-loc): Handle navigation
13461 between windows (excluding the minibuffer window - Bug#16017).
13462
13463 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
13464
13465 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
13466 in D-Bus type syntax.
13467 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
13468 preserve unibyte strings. (Bug#16048)
13469
13470 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13471
13472 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
13473 Call force-mode-line-update is the proper buffer (bug#16042).
13474
13475 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
13476
13477 * vc/log-edit.el (log-edit-add-new-comment): Rename to
13478 `log-edit-remember-comment', make argument optional. Adjust all
13479 callers.
13480 (log-edit-mode): Add `log-edit-remember-comment' to
13481 `kill-buffer-hook' locally.
13482 (log-edit-kill-buffer): Don't remember comment explicitly since
13483 the buffer is killed anyway.
13484
13485 2013-12-04 Juri Linkov <juri@jurta.org>
13486
13487 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
13488 add-hook and remove-hook for multi-buffer search. (Bug#16035)
13489
13490 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
13491
13492 * notifications.el (notifications-close-notification): Call the
13493 D-Bus method with ID being a `:uint32'. (Bug#16030)
13494
13495 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
13496
13497 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
13498
13499 2013-12-03 Juri Linkov <juri@jurta.org>
13500
13501 * progmodes/compile.el (compilation-start): Rename window alist
13502 entry `no-display-ok' to `allow-no-window'.
13503
13504 * simple.el (shell-command): Add window alist entry
13505 `allow-no-window' to `display-buffer'.
13506 (async-shell-command): Doc fix.
13507
13508 * window.el (display-buffer-no-window): New action function.
13509 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
13510
13511 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
13512
13513 * vc/log-edit.el (log-edit-set-header): Extract from
13514 `log-edit-toggle-header'.
13515 (log-edit-extract-headers): Separate the summary, when extracted
13516 from header, from the rest of the message with an empty line.
13517
13518 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
13519 line, if present, to the Summary header.
13520
13521 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13522
13523 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
13524 in current-buffer (bug#16029).
13525
13526 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
13527
13528 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
13529 (debugger-mode-map): Bind it.
13530 (debugger--backtrace-base): New function.
13531 (debugger-eval-expression): Use it.
13532 (debugger-frame-number): Skip local vars when present.
13533 (debugger--locals-visible-p, debugger--insert-locals)
13534 (debugger--show-locals, debugger--hide-locals): New functions.
13535
13536 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
13537
13538 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
13539 "LC_ALL".
13540 (tramp-get-remote-locale): New defun.
13541 (tramp-open-connection-setup-interactive-shell): Use it.
13542
13543 2013-12-02 Leo Liu <sdl.web@gmail.com>
13544
13545 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
13546
13547 * progmodes/sh-script.el (sh-shell-process):
13548 * progmodes/octave.el (inferior-octave-process-live-p):
13549 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
13550 (gdb-inferior-io-sentinel):
13551 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
13552
13553 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
13554
13555 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
13556 `save-selected-window' to `log-edit-hide-buf'. This makes
13557 `log-edit-show-files' idempotent.
13558 (log-edit-show-files): Mark the new window as dedicated.
13559
13560 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
13561
13562 * vc/log-edit.el (log-edit-mode-map): Add binding for
13563 `log-edit-kill-biffer'.
13564 (log-edit-hide-buf): Add a FIXME comment.
13565 (log-edit-add-new-comment): New function, extracted from
13566 `log-edit-done'.
13567 (log-edit-done, log-edit-add-to-changelog): Use it.
13568 (log-edit-kill-buffer): New command.
13569
13570 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13571
13572 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
13573 instead of killing the buffer.
13574
13575 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13576
13577 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
13578
13579 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13580
13581 * net/eww.el (eww-form-checkbox-selected-symbol)
13582 (eww-form-checkbox-symbol): New customizable variable.
13583 (eww-form-checkbox, eww-toggle-checkbox):
13584 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
13585
13586 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
13587 (shr--get-media-pref, shr--extract-best-source): New function.
13588 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
13589 no :src tag was specified.
13590
13591 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
13592 (eww-render): Handle `eww-use-external-browser-for-content-type'.
13593 Use \\` to match beginning of string instead of ^.
13594 (eww-browse-with-external-browser): Provide optional URL parameter.
13595 (eww-render): Set `eww-current-title' back to "".
13596
13597 * net/shr.el (shr-tag-video): Display content for video if no
13598 poster is available.
13599 (shr-tag-audio): Add support for <audio> tag.
13600
13601 * net/eww.el (eww-text-input-types): New const.
13602 (eww-process-text-input): Treat input types in
13603 `eww-text-input-types' as text.
13604
13605 * net/shr.el (shr-tag-table): Fix comment typo.
13606
13607 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13608
13609 * net/eww.el (eww-follow-link): New command to avoid reloading
13610 pages when we follow #target links (bug#15243).
13611 (eww-quit): Special mode buffers shouldn't query before exiting.
13612
13613 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
13614
13615 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
13616 forms.
13617
13618 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13619
13620 * net/eww.el (eww-restore-history): Update the window title after
13621 moving in the history.
13622 (eww-current-dom): New variable used to save the current DOM.
13623
13624 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
13625
13626 * vc/log-edit.el (log-edit-mode-map): Add binding for
13627 `log-edit-beginning-of-line'.
13628 (log-edit-setup-add-author): New user option.
13629 (log-edit-beginning-of-line): New command.
13630 (log-edit): Move major mode call above the contents setup so that
13631 the local variable values are already applied.
13632 (log-edit): Only insert "Author: " when
13633 `log-edit-setup-add-author' is non-nil.
13634 (log-edit): When SETUP is non-nil, position point after ": "
13635 instead of point-min.
13636
13637 2013-12-01 Glenn Morris <rgm@gnu.org>
13638
13639 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
13640
13641 2013-11-30 Eli Zaretskii <eliz@gnu.org>
13642
13643 * startup.el (fancy-splash-frame): On MS-Windows, trigger
13644 redisplay to make sure the initial frame gets a chance to become
13645 visible. (Bug#16014)
13646
13647 2013-11-30 Martin Rudalics <rudalics@gmx.at>
13648
13649 Support resizing frames and windows pixelwise.
13650 * cus-start.el (frame-resize-pixelwise)
13651 (window-resize-pixelwise): New entries.
13652 * emacs-lisp/debug.el (debug): Use window-total-height instead
13653 of window-total-size.
13654 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
13655 * help.el (describe-bindings-internal): Use help-buffer as
13656 argument for with-help-window.
13657 (temp-buffer-max-width): New option.
13658 (resize-temp-buffer-window, help-window-setup)
13659 (with-help-window): Rewrite.
13660 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
13661 dragging dividers.
13662 * window.el (frame-char-size, window-min-pixel-height)
13663 (window-safe-min-pixel-height, window-safe-min-pixel-width)
13664 (window-min-pixel-width, window-safe-min-pixel-size)
13665 (window-combination-p, window-safe-min-size)
13666 (window-resizable-p, window--size-to-pixel)
13667 (window--pixel-to-size, window--resize-apply-p): New functions.
13668 (window-safe-min-height): Fix doc-string.
13669 (window-size, window-min-size, window--min-size-1)
13670 (window-sizable, window-sizable-p, window--min-delta-1)
13671 (window-min-delta, window--max-delta-1, window-max-delta)
13672 (window--resizable, window--resizable-p, window-resizable)
13673 (window-full-height-p, window-full-width-p, window-at-side-p)
13674 (window--in-direction-2, window-in-direction)
13675 (window--resize-reset-1, window--resize-mini-window)
13676 (window-resize, window-resize-no-error)
13677 (window--resize-child-windows-normal)
13678 (window--resize-child-windows, window--resize-siblings)
13679 (window--resize-this-window, window--resize-root-window)
13680 (window--resize-root-window-vertically)
13681 (adjust-window-trailing-edge, enlarge-window, shrink-window)
13682 (maximize-window, minimize-window, delete-window)
13683 (quit-restore-window, window-split-min-size, split-window)
13684 (balance-windows-2, balance-windows)
13685 (balance-windows-area-adjust, balance-windows-area)
13686 (window--state-get-1, window-state-get, window--state-put-1)
13687 (window--state-put-2, window-state-put)
13688 (display-buffer-record-window, window--display-buffer):
13689 Make functions handle pixelwise sizing of windows.
13690 (display-buffer--action-function-custom-type)
13691 (display-buffer-fallback-action):
13692 Add display-buffer-in-previous-window.
13693 (display-buffer-use-some-window): Resize window to height it had
13694 before.
13695 (fit-window-to-buffer-horizontally): New option.
13696 (fit-frame-to-buffer): Describe new values.
13697 (fit-frame-to-buffer-bottom-margin): Replace with
13698 fit-frame-to-buffer-margins.
13699 (window--sanitize-margin): New function.
13700 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
13701 using window-text-pixel-size.
13702
13703 2013-11-30 Glenn Morris <rgm@gnu.org>
13704
13705 * emacs-lisp/bytecomp.el (byte-compile-form):
13706 Make the `interactive-only' warning like the `obsolete' one.
13707 * comint.el (comint-run):
13708 * files.el (insert-file-literally, insert-file):
13709 * replace.el (replace-string, replace-regexp):
13710 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
13711 (goto-line, insert-buffer, next-line, previous-line):
13712 Tweak `interactive-only' spec.
13713
13714 Stop keeping (most) generated cedet grammar files in the repository.
13715 * Makefile.in (semantic): New.
13716 (compile-main): Depend on semantic.
13717
13718 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
13719
13720 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
13721 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
13722
13723 * uniquify.el (uniquify-buffer-name-style): Change default.
13724
13725 * loadup.el: Preload "uniquify".
13726
13727 * time.el (display-time-update): Update all mode lines (bug#15999).
13728
13729 * electric.el (electric-indent-mode): Enable by default.
13730 * loadup.el: Preload "electric".
13731
13732 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
13733
13734 * emacs-lisp/helpers.el (string-empty-p): New function.
13735 (string-blank-p): New function.
13736
13737 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
13738
13739 * imenu.el (imenu--index-alist): Add missing dot to the docstring
13740 (Bug#14029).
13741
13742 2013-11-29 Andreas Politz <politza@fh-trier.de>
13743 * imenu.el (imenu--subalist-p): Don't error on non-conses and
13744 allow non-lambda lists as functions.
13745 (imenu--in-alist): Don't recurse into non-subalists.
13746 (imenu): Don't pass function itself as an argument (Bug#14029).
13747
13748 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
13749
13750 * progmodes/python.el (python-mode-map): Remove binding for ":".
13751 (python-indent-electric-colon): Remove command.
13752 (python-indent-post-self-insert-function): Integrate the previous code
13753 of python-indent-electric-colon. Make it conditional on
13754 electric-indent-mode.
13755 (python-mode): Add ?: to electric-indent-chars.
13756 Move python-indent-post-self-insert-function to the end of
13757 post-self-insert-hook.
13758
13759 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
13760
13761 * doc-view.el (doc-view-goto-page): Update mode-line.
13762
13763 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
13764
13765 2013-11-27 Glenn Morris <rgm@gnu.org>
13766
13767 * international/charprop.el, international/uni-bidi.el:
13768 * international/uni-category.el, international/uni-combining.el:
13769 * international/uni-comment.el, international/uni-decimal.el:
13770 * international/uni-decomposition.el, international/uni-digit.el:
13771 * international/uni-lowercase.el, international/uni-mirrored.el:
13772 * international/uni-name.el, international/uni-numeric.el:
13773 * international/uni-old-name.el, international/uni-titlecase.el:
13774 * international/uni-uppercase.el:
13775 Remove generated files from VCS repository.
13776
13777 2013-11-27 Eli Zaretskii <eliz@gnu.org>
13778
13779 * filenotify.el (file-notify-add-watch): Don't special-case
13780 w32notify when computing the directory to watch.
13781
13782 2013-11-27 Glenn Morris <rgm@gnu.org>
13783
13784 Make bootstrap without generated uni-*.el files possible again.
13785 * loadup.el: Update command-line-args checking for unidata-gen.
13786 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
13787 * composite.el, international/characters.el:
13788 Handle unicode tables being undefined.
13789
13790 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
13791 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
13792 (compile-main): Depend on leim rule.
13793 (leim): New rule.
13794 * loadup.el: Move leim-list.el to leim/ subdirectory.
13795 * startup.el (normal-top-level): No more leim directory.
13796 * international/ja-dic-cnv.el (skkdic-convert):
13797 Disable version-control and autoloads in output files.
13798 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
13799 Disable version-control and autoloads in output files.
13800 * leim/quail: Move here from ../leim.
13801 * leim/quail/hangul.el (hangul-input-method-activate):
13802 Add autoload cookie.
13803 (generated-autoload-load-name): Set file-local value.
13804 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
13805 (generated-autoload-load-name): Set file-local value.
13806
13807 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
13808
13809 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
13810 (eww-add-bookmark): Ask confirmation when add to bookmarks.
13811 (eww-quit): Ask confirmation before quitting eww.
13812
13813 2013-11-26 Eli Zaretskii <eliz@gnu.org>
13814
13815 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
13816 reading output from Diff on MS-Windows and MS-DOS.
13817
13818 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
13819
13820 * emacs-lisp/helpers.el (string-reverse): New function.
13821
13822 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
13823
13824 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
13825 names on MS Windows, like "/[::1]:".
13826
13827 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
13828 SWITCHES.
13829
13830 2013-11-26 Glenn Morris <rgm@gnu.org>
13831
13832 * progmodes/python.el (python-indent-guess-indent-offset):
13833 Avoid corner-case error. (Bug#15975)
13834
13835 Preload leim-list.el. (Bug#4789)
13836 * loadup.el: Load leim-list.el when found.
13837 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
13838
13839 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
13840
13841 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
13842
13843 * emacs-lisp/helpers.el (string-join): New function.
13844
13845 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
13846
13847 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13848 Mark as obsolete and replace it with a symbol property.
13849 (byte-compile-form): Use new 'interactive-only property.
13850 * comint.el, files.el, replace.el, simple.el:
13851 Apply new 'interactive-only properly.
13852
13853 2013-11-25 Martin Rudalics <rudalics@gmx.at>
13854
13855 * window.el (display-buffer-at-bottom): Make sure that
13856 split-window-sensibly creates the new window on bottom
13857 (Bug#15961).
13858
13859 2013-11-23 David Kastrup <dak@gnu.org>
13860
13861 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
13862 on the conflict markers when available.
13863 (smerge--get-marker): New function.
13864 (smerge-end-re, smerge-base-re): Add subgroup.
13865
13866 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13867
13868 * frame.el (handle-focus-in, handle-focus-out): Add missing
13869 interactive spec.
13870
13871 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
13872
13873 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
13874 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
13875
13876 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13877
13878 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
13879 (gomoku--last-pos): New var.
13880 (gomoku--intangible-chars): New const.
13881 (gomoku--intangible): New function.
13882 (gomoku-mode): Use it. Derive from special-mode.
13883 (gomoku-move-up): Adjust line count.
13884 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
13885 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
13886 Simplify accordingly.
13887
13888 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
13889 Remove blink-cursor code.
13890 (blink-cursor-timer-function, blink-cursor-suspend):
13891 Don't special-case GUIs.
13892 (blink-cursor-mode): Use focus-in/out-hook.
13893
13894 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
13895
13896 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
13897 work when annotation is invisible (Bug#13886).
13898
13899 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
13900
13901 * json.el (json-alist-p): Only return non-nil if the alist has
13902 simple keys (Bug#13518).
13903
13904 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
13905
13906 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
13907 when control-statement is the first statement in a buffer (Bug#15956).
13908
13909 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
13910
13911 * imenu.el (imenu-generic-skip-comments-and-strings):
13912 New option (Bug#15560).
13913 (imenu--generic-function): Use it.
13914
13915 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
13916
13917 * minibuffer.el (completion--in-region-1): Scroll the correct window.
13918 (Bug#13898)
13919
13920 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
13921
13922 * emacs-lisp/helpers.el: Add some string helpers.
13923 (string-trim-left): Removes leading whitespace.
13924 (string-trim-right): Removes trailing whitespace.
13925 (string-trim): Removes leading and trailing whitespace.
13926
13927 * subr.el (string-suffix-p): New function.
13928
13929 2013-11-23 Glenn Morris <rgm@gnu.org>
13930
13931 * progmodes/python.el (python-shell-send-file):
13932 Add option to delete file when done. (Bug#15647)
13933 (python-shell-send-string, python-shell-send-region): Use it.
13934
13935 2013-11-23 Ivan Shmakov <ivan@siamics.net>
13936
13937 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
13938 to set buffer-read-only to t, never to nil. (Bug#15938)
13939
13940 * textmodes/tex-mode.el (latex-noindent-environments):
13941 Add safe-local-variable property. (Bug#15936)
13942
13943 2013-11-23 Glenn Morris <rgm@gnu.org>
13944
13945 * textmodes/enriched.el (enriched-mode): Doc fix.
13946 * emacs-lisp/authors.el (authors-renamed-files-alist):
13947 Add enriched.doc -> enriched.txt.
13948
13949 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
13950
13951 2013-11-22 Leo Liu <sdl.web@gmail.com>
13952
13953 * progmodes/octave.el (inferior-octave-startup): Spit out error
13954 message.
13955
13956 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
13957
13958 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
13959 Improve docstring.
13960 Add :version.
13961 (ruby-encoding-magic-comment-style): Add :version.
13962
13963 2013-11-22 Leo Liu <sdl.web@gmail.com>
13964
13965 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
13966 (Bug#15076)
13967 (octave-help-mode): Adapt to change to help-mode-finish to use
13968 derived-mode-p on 2013-09-17.
13969 (inferior-octave-prompt): Also match octave-gui.
13970 (octave-kill-process): Don't ask twice. (Bug#10564)
13971
13972 2013-11-22 Leo Liu <sdl.web@gmail.com>
13973
13974 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
13975 (inferior-octave-startup, inferior-octave-check-process)
13976 (inferior-octave-track-window-width-change)
13977 (octave-completion-at-point, octave-eldoc-function): Use it.
13978 (octave-kill-process): Provide confirmation. (Bug#10564)
13979
13980 2013-11-21 Leo Liu <sdl.web@gmail.com>
13981
13982 * progmodes/octave.el (octave-mode, inferior-octave-mode):
13983 Fix obsolete variable comment-use-global-state.
13984
13985 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13986
13987 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
13988 Add `octave-source-file'.
13989 (octave-source-file): New function. (Bug#15935)
13990
13991 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
13992
13993 * net/eww.el (eww-local-regex): New variable.
13994 (eww): Use it to detect localhost and similar.
13995
13996 2013-11-21 Leo Liu <sdl.web@gmail.com>
13997
13998 Add completion for command `ag'.
13999 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
14000 (pcomplete/ag): New function.
14001 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
14002
14003 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14004
14005 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
14006 (bug#14646).
14007 (make-obsolete): Remove interactive spec.
14008
14009 2013-11-21 Glenn Morris <rgm@gnu.org>
14010
14011 * startup.el (command-line-1): Use path-separator with -L.
14012
14013 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
14014
14015 * emacs-lisp/package.el (describe-package-1): Add package archive
14016 to shown fields.
14017
14018 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
14019
14020 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
14021 Change default to "# encoding: %s" to differentiate it from the
14022 default Ruby encoding comment template.
14023
14024 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
14025
14026 * ses.el (ses-mode): Doc fix. (Bug#14748)
14027
14028 2013-11-20 Leo Liu <sdl.web@gmail.com>
14029
14030 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
14031
14032 2013-11-19 Dan Nicolaescu <dann@gnu.org>
14033
14034 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
14035 when rebase or bisect are in progress.
14036
14037 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
14038
14039 * filenotify.el (file-notify-add-watch): Doc fix.
14040
14041 2013-11-19 Leo Liu <sdl.web@gmail.com>
14042
14043 * obsolete/rcompile.el: Mark obsolete.
14044
14045 * progmodes/compile.el (compilation-start)
14046 (compilation-goto-locus, compilation-find-file):
14047 Pass no-display-ok and handle nil value from display-buffer.
14048 (Bug#13594)
14049
14050 * window.el (display-buffer-alist, display-buffer): Document the
14051 new parameter no-display-ok. Return either a window or nil
14052 but never a non-window value.
14053
14054 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14055
14056 * electric.el (electric-indent-mode-map): Remove.
14057 (electric-indent-mode): Change the global-map instead (bug#15915).
14058
14059 * textmodes/text-mode.el (paragraph-indent-minor-mode):
14060 Use add-function.
14061
14062 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
14063
14064 * emacs-lisp/nadvice.el (remove-function): Align with
14065 add-function's behavior.
14066
14067 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
14068 (gdb--string-regexp): New constant.
14069 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
14070 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
14071 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
14072 submatch 1.
14073 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
14074 Adjust use accordingly.
14075 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
14076
14077 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
14078
14079 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
14080 interpolation curlies (Bug#15914).
14081
14082 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
14083
14084 * calc/calc.el (calc-context-sensitive-enter): New variable.
14085 (calc-enter): Use `calc-context-sensitive-enter'.
14086
14087 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
14088
14089 * progmodes/cfengine.el: Version bump.
14090 (cfengine-cf-promises): New defcustom to locate cf-promises.
14091 (cfengine3-vartypes): Add new "data" type.
14092 (cfengine3--current-word): New function to get current name-like
14093 word or its bounds.
14094 (cfengine3--current-function): New function to look up a CFEngine
14095 function's definition.
14096 (cfengine3-format-function-docstring): New function.
14097 (cfengine3-make-syntax-cache): New function.
14098 (cfengine3-documentation-function): New function: ElDoc glue.
14099 (cfengine3-completion-function): New function: completion glue.
14100 (cfengine3-mode): Set `compile-command',
14101 `eldoc-documentation-function', and add to
14102 `completion-at-point-functions'.
14103
14104 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
14105
14106 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
14107 `tramp-current-connection'.
14108
14109 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
14110
14111 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
14112 nil/self/true/false with "end of symbol".
14113
14114 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
14115
14116 * subr.el (version-regexp-alist): Fix a typo.
14117
14118 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
14119
14120 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
14121 "en_US.utf8" and "LC_CTYPE" to "".
14122 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
14123 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
14124
14125 2013-11-15 Leo Liu <sdl.web@gmail.com>
14126
14127 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
14128
14129 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
14130
14131 * progmodes/gud.el (ctl-x-map):
14132 Remove C-x SPC binding. (Bug#12342)
14133 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
14134
14135 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
14136
14137 * subr.el (version-regexp-alist):
14138 Recognize hg, svn and darcs versions as snapshot versions.
14139
14140 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
14141 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
14142 (ruby--encoding-comment-required-p): Extract from
14143 `ruby-mode-set-encoding'.
14144 (ruby-mode-set-encoding): Add the ability to always insert an
14145 utf-8 encoding comment. Fix and simplify coding comment update
14146 logic.
14147
14148 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
14149
14150 * net/tramp-gvfs.el (top): Run init code only when
14151 `tramp-gvfs-enabled' is not nil.
14152 (tramp-gvfs-enabled): Check also :system bus.
14153
14154 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
14155
14156 Sync with upstream verilog-mode revision 78e66ba.
14157 * progmodes/verilog-mode.el (verilog-end-of-defun)
14158 (verilog-type-completion, verilog-get-list): Remove unused funcs.
14159 (verilog-get-end-of-defun): Remove unused argument.
14160 (verilog-comment-depth): Remove unused local `e'.
14161 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
14162 Don't pass arg to verilog-get-end-of-defun.
14163
14164 2013-11-14 Glenn Morris <rgm@gnu.org>
14165
14166 * obsolete/assoc.el (aget): Prefix dynamic variable.
14167
14168 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
14169
14170 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
14171
14172 * widget.el, hfy-cmap.el: Remove bogus package version number.
14173
14174 2013-11-13 Glenn Morris <rgm@gnu.org>
14175
14176 * replace.el (replace-eval-replacement):
14177 Try to give more helpful error message. (Bug#15836)
14178
14179 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
14180 (archive-7z-update): Avoid custom type mismatches.
14181
14182 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
14183
14184 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
14185
14186 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
14187 address can be empty.
14188
14189 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
14190 Accept nil SWITCHES.
14191 (tramp-gvfs-handle-write-region): Implement APPEND.
14192
14193 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
14194
14195 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
14196 binary "|" operator and closing block args delimiter.
14197 Remove FIXME comment referring to Ruby 1.8-only syntax.
14198 (ruby-smie--implicit-semi-p): Not after "|" operator.
14199 (ruby-smie--closing-pipe-p): New function.
14200 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
14201 (ruby-smie-rules): Indent after "|".
14202
14203 2013-11-12 Glenn Morris <rgm@gnu.org>
14204
14205 * ps-print.el (ps-face-attribute-list):
14206 Handle anonymous faces. (Bug#15827)
14207
14208 2013-11-12 Martin Rudalics <rudalics@gmx.at>
14209
14210 * window.el (display-buffer-other-frame): Fix doc-string.
14211 (Bug#15868)
14212
14213 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
14214
14215 * subr.el (force-mode-line-update): Delete, move to buffer.c.
14216
14217 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
14218
14219 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
14220 (tramp-sh-handle-file-local-copy): Don't write a message when
14221 saving temporary files.
14222
14223 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
14224 both directories are remote.
14225 (tramp-smb-handle-directory-files): Do not return double entries.
14226 Do not expand full file names.
14227 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
14228 (tramp-smb-handle-write-region): Implement APPEND.
14229 (tramp-smb-get-stat-capability): Fix a stupid bug.
14230
14231 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
14232
14233 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
14234
14235 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
14236
14237 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
14238 throwing error over malformed let/let* (bug#15814).
14239
14240 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
14241
14242 * iswitchb.el (iswitchb-mode): Mark obsolete.
14243
14244 2013-11-11 Glenn Morris <rgm@gnu.org>
14245
14246 * international/uni-bidi.el, international/uni-category.el:
14247 * international/uni-name.el, international/uni-numeric.el:
14248 Regenerate for Unicode 6.3.0.
14249
14250 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
14251
14252 * net/tramp.el (tramp-methods):
14253 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
14254 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
14255
14256 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
14257
14258 * progmodes/sh-script.el (sh-font-lock-keywords-var):
14259 Force highlighting text after Summary keyword in doc face for rpm.
14260
14261 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
14262
14263 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
14264 available and the word has no wildcards, append one to the grep pattern.
14265 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
14266 (ispell-complete-word): Call `ispell-lookup-words' with the value
14267 independent of `ispell-look-p'.
14268
14269 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
14270
14271 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
14272 Not after "||".
14273 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
14274 their parent.
14275
14276 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
14277
14278 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
14279 (ruby-font-lock-keywords): Use backquote.
14280
14281 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
14282
14283 * progmodes/ruby-mode.el (ruby-smie--forward-token)
14284 (ruby-smie--backward-token): Only consider full-string matches.
14285
14286 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
14287
14288 * faces.el (describe-face): Add distant-foreground.
14289
14290 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
14291
14292 * progmodes/ruby-mode.el: Improve encoding comment handling.
14293 (ruby-encoding-magic-comment-style): New option.
14294 (ruby-custom-encoding-magic-comment-template): New option.
14295 (ruby--insert-coding-comment, ruby--detect-encoding):
14296 New functions extracted from `ruby-mode-set-encoding'.
14297 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
14298 to control the style of the auto-inserted encoding comment.
14299
14300 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
14301
14302 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
14303 Use `smie-backward-sexp' with token argument.
14304
14305 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
14306
14307 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
14308 Remove instrumentation code.
14309
14310 2013-11-08 Glenn Morris <rgm@gnu.org>
14311
14312 * progmodes/autoconf.el (autoconf-mode):
14313 Tweak comment-start-skip. (Bug#15822)
14314
14315 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
14316
14317 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
14318 at bobp (bug#15826).
14319 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
14320
14321 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
14322
14323 * man.el (Man-start-calling): New macro, extracted from
14324 Man-getpage-in-background.
14325 (Man-getpage-in-background): Use it.
14326 (Man-update-manpage): New command.
14327 (Man-mode-map): Bind it.
14328
14329 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
14330
14331 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
14332 of "and", "or", "&&" and "||".
14333 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
14334 argument. Prohibit opening curly brace because it could only be a
14335 block opener in that position.
14336 (ruby-smie--forward-token, ruby-smie--backward-token):
14337 Separate "|" from "&" or "*" going after it. That can happen in block
14338 arguments.
14339 (ruby-smie--indent-to-stmt): New function, seeks the end of
14340 previous statement or beginning of buffer.
14341 (ruby-smie-rules): Use it.
14342 (ruby-smie-rules): Check if there's a ":" before a curly block
14343 opener candidate; if there is, it's a hash.
14344
14345 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
14346
14347 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
14348 (cl--block-wrapper): Fix last accidental change.
14349
14350 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
14351
14352 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
14353 Instrument, in order to hunt failure on hydra.
14354
14355 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
14356
14357 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
14358 malformed bindings form (bug#15814).
14359
14360 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
14361
14362 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
14363 "." compared to " @ ". This incidentally fixes some indentation
14364 examples with "do".
14365 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
14366 (ruby-smie-grammar): New tokens: "and" and "or".
14367 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
14368 Exclude "and" and "or". Remove "do" in order to work around token
14369 priorities.
14370 (ruby-smie-rules): Add all infix tokens. Handle the case of
14371 beginning-of-buffer.
14372
14373 2013-11-06 Glenn Morris <rgm@gnu.org>
14374
14375 * Makefile.in (setwins_almost, setwins_for_subdirs):
14376 Avoid accidental matches.
14377
14378 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
14379
14380 * menu-bar.el (popup-menu): Use key-binding.
14381
14382 2013-11-06 Eli Zaretskii <eliz@gnu.org>
14383
14384 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
14385 menus, support also the menus produced by minor modes.
14386 (Bug#15817)
14387
14388 2013-11-06 Leo Liu <sdl.web@gmail.com>
14389
14390 * thingatpt.el (thing-at-point-looking-at): Add optional arg
14391 DISTANCE to bound the search. All uses changed. (Bug#15808)
14392
14393 2013-11-06 Glenn Morris <rgm@gnu.org>
14394
14395 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
14396 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
14397 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
14398
14399 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
14400
14401 * electric.el (electric-indent-just-newline): New command.
14402 (electric-indent-mode-map): New keymap.
14403 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
14404 Re-add :group which weren't redundant.
14405
14406 * electric.el (electric-indent-local-mode): New minor mode.
14407 (electric-indent-functions-without-reindent): New var.
14408 (electric-indent-post-self-insert-function): Use it.
14409 * emacs-lisp/gv.el (buffer-local-value): Add setter.
14410
14411 2013-11-05 Eli Zaretskii <eliz@gnu.org>
14412
14413 * international/quail.el (quail-help): Be more explicit about the
14414 meaning of the labels shown on the keys. (Bug#15800)
14415
14416 * startup.el (normal-top-level): Load the subdirs.el files before
14417 setting the locale environment. (Bug#15805)
14418
14419 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
14420
14421 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
14422 via arguments so as to get the right ones (bug#15418).
14423
14424 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
14425
14426 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
14427
14428 Fix problems found while writing a test suite.
14429
14430 * net/tramp-compat.el (tramp-compat-load): New defun.
14431 * net/tramp.el (tramp-handle-load): Use it.
14432
14433 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
14434 "(numberp ok-if-already-exists)" correctly.
14435
14436 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
14437
14438 * international/characters.el (glyphless-char-display-control):
14439 Add usage note.
14440
14441 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
14442
14443 * progmodes/python.el (python-mode):
14444 * progmodes/scheme.el (scheme-mode):
14445 * progmodes/prolog.el (prolog-mode):
14446 * progmodes/ruby-mode.el (ruby-mode):
14447 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
14448 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
14449
14450 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14451
14452 * rect.el (rectangle--highlight-for-redisplay):
14453 * emacs-lisp/smie.el (smie--next-indent-change):
14454 Use buffer-chars-modified-tick.
14455
14456 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
14457
14458 * electric.el (electric-indent-post-self-insert-function):
14459 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
14460
14461 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
14462
14463 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
14464
14465 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
14466
14467 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
14468 (bug#15786).
14469
14470 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14471
14472 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
14473
14474 * progmodes/python.el: Fix up last change.
14475 (python-shell--save-temp-file): New function.
14476 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
14477 `string' comes from the current buffer.
14478 (python-shell-send-string-no-output): Remove `msg' arg.
14479 (python--use-fake-loc): New var.
14480 (python-shell-buffer-substring): Obey it. Try to compensate for the
14481 extra coding line added by python-shell--save-temp-file.
14482 (python-shell-send-region): Use python-shell--save-temp-file and
14483 python-shell-send-file directly. Add `nomain' argument.
14484 (python-shell-send-buffer): Use python-shell-send-region.
14485 (python-electric-pair-string-delimiter): New function.
14486 (python-mode): Use it.
14487
14488 2013-11-04 Eli Zaretskii <eliz@gnu.org>
14489
14490 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
14491 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
14492 environment and decoding all of the default-directory's to here
14493 from command-line.
14494 (command-line): Decode also argv[0].
14495
14496 * loadup.el: Error out if default-directory is a multibyte string
14497 when we are dumping.
14498
14499 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
14500
14501 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
14502
14503 * emacs-lisp/package.el (package-menu-mode)
14504 (package-menu--print-info, package-menu--archive-predicate):
14505 Add Archive column to package list.
14506
14507 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
14508
14509 Fix problems found while writing a test suite.
14510
14511 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
14512 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
14513 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
14514 to nil when running original file name handler. Otherwise,
14515 there are problems with constructs like "$$FOO".
14516
14517 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
14518 for `localname'.
14519
14520 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
14521
14522 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
14523
14524 * subr.el (version<, version<=, version=):
14525 Update docstrings with information for snapshot versions.
14526
14527 * helpers.el: New library for misc helper functions.
14528 (hash-table-keys): New function returning a list of hash keys.
14529 (hash-table-values): New function returning a list of hash values.
14530
14531 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
14532
14533 * progmodes/ruby-mode.el (ruby-smie--forward-token)
14534 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
14535
14536 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
14537
14538 * textmodes/fill.el (fill-single-char-nobreak-p): New function
14539 checking whether point is after a 1-letter word.
14540
14541 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
14542
14543 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
14544 Don't infloop when expanding region over `multiline' syntax-type that
14545 begins a line (bug#15778).
14546
14547 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14548
14549 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
14550 Make it into a proper minor mode.
14551 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
14552 (rectangle-mark-mode-map): New keymap.
14553 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
14554
14555 2013-11-04 Glenn Morris <rgm@gnu.org>
14556
14557 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
14558
14559 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
14560
14561 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
14562 (ruby-smie-rules): Use smie-rule-parent instead.
14563
14564 * emacs-lisp/smie.el (smie-rule-parent): Always call
14565 smie-indent-virtual rather than only for hanging tokens.
14566 (smie--next-indent-change): New helper command.
14567
14568 2013-11-03 Glenn Morris <rgm@gnu.org>
14569
14570 * Makefile.in (abs_srcdir): Remove.
14571 (emacs): Unset EMACSLOADPATH.
14572
14573 2013-11-02 Glenn Morris <rgm@gnu.org>
14574
14575 * Makefile.in (EMACS): Use a relative filename.
14576 (abs_top_builddir): Remove.
14577 (custom-deps, finder-data, autoloads): Use --chdir.
14578
14579 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
14580
14581 Use relative filenames in TAGS files.
14582 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
14583 (lisptagsfiles4, TAGS): Use relative file names.
14584 (TAGS-LISP): Remove.
14585 (maintainer-clean): No more TAGS-LISP file.
14586
14587 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
14588 (lisptagsfiles4): Use absolute filenames again.
14589 (TAGS, TAGS-LISP): Not everything needs to run in one line.
14590 Remove all *loaddefs files, not just the first. Remove esh-groups.
14591 (maintainer-clean): Delete TAGS, TAGS-LISP.
14592
14593 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
14594
14595 * emacs-lisp/package.el (package-version-join):
14596 Recognize snapshot versions.
14597
14598 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
14599
14600 * subr.el (version-regexp-alist): Add support for snapshot versions.
14601
14602 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
14603
14604 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
14605 New function, replacement for `smie-rule-parent' for when we want to
14606 skip over our direct parent if it's an assignment token..
14607 (ruby-smie-rules): Use it.
14608
14609 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
14610
14611 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
14612 unconditionally. Remove now unnecessary forward declarations.
14613 Remove XEmacs-specific setup.
14614 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
14615 (ruby-font-lock-syntactic-keywords)
14616 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
14617 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
14618 (ruby-here-doc-end-syntax): Remove.
14619 (ruby-mode): Don't check whether `syntax-propertize-rules' is
14620 defined as function.
14621
14622 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
14623
14624 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
14625
14626 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
14627
14628 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
14629 table and abbrev table, `define-derived-mode' does that for us
14630 anyway.
14631
14632 2013-11-01 Glenn Morris <rgm@gnu.org>
14633
14634 * Makefile.in: Remove manual mh-e dependencies (writing .elc
14635 files is atomic for some time, so no parallel compilation issues).
14636
14637 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
14638
14639 * faces.el (face-x-resources): Add :distant-foreground.
14640 (region): Use :distant-foreground for gtk and ns.
14641
14642 2013-11-01 Tassilo Horn <tsdh@gnu.org>
14643
14644 Allow multiple bibliographies when BibLaTeX is used rather than
14645 BibTeX.
14646 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
14647 (reftex-locate-bibliography-files): Us it.
14648
14649 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
14650
14651 * image.el (image-type-header-regexps): Fix the 'pbm' part to
14652 allow comments in pbm files.
14653
14654 * term/w32-win.el (dynamic-library-alist): Support newer versions
14655 of libjpeg starting with v7: look only for the DLL from the
14656 version against which Emacs was built.
14657 Support versions of libpng beyond 1.4.x.
14658 Support libtiff v4.x.
14659
14660 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
14661
14662 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
14663 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
14664 Add property :safe.
14665 (ruby-deep-arglist): Add property :type.
14666
14667 2013-10-31 Glenn Morris <rgm@gnu.org>
14668
14669 * Makefile.in (custom-deps, finder-data): No need to setq the target
14670 variables, we are in the right directory and the defaults work fine.
14671
14672 2013-10-30 Glenn Morris <rgm@gnu.org>
14673
14674 * Makefile.in (autoloads): Do not use abs_lisp.
14675
14676 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
14677 `newline' does not respect `standard-output', so use `princ'.
14678
14679 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
14680
14681 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
14682 * buff-menu.el (Buffer-menu--unmark): New function.
14683 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
14684
14685 2013-10-30 Glenn Morris <rgm@gnu.org>
14686
14687 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
14688
14689 * emacs-lisp/package.el (lm-homepage): Declare.
14690
14691 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
14692 Fix doc typos.
14693
14694 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
14695
14696 * Makefile.in (finder-data, autoloads, update-subdirs)
14697 (compile-main, compile-clean, compile-always, bootstrap-clean):
14698 Check return value of cd.
14699 (compile-calc): Remove.
14700
14701 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
14702
14703 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
14704
14705 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
14706 (byte-compile-and-folded): New function.
14707 (=, <, >, <=, >=): Use it.
14708
14709 * dos-w32.el (minibuffer-history-case-insensitive-variables)
14710 (path-separator, null-device, buffer-file-coding-system)
14711 (lpr-headers-switches): Check system-type before modifying them.
14712 (find-buffer-file-type-coding-system): Mark obsolete.
14713 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
14714 find-file-not-found-set-buffer-file-coding-system.
14715 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
14716 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
14717 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
14718 (w32-direct-print-region-helper, w32-direct-print-region-function)
14719 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
14720 * startup.el (normal-top-level-add-subdirs-to-load-path):
14721 * ps-print.el (ps-print-region-function):
14722 * lpr.el (print-region-function): Use new name.
14723
14724 * subr.el (custom-declare-variable-early): Remove function.
14725 (custom-declare-variable-list): Remove var.
14726 (error, user-error): Remove `while' loop.
14727 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
14728 (user-emacs-directory-warning, locate-user-emacs-file):
14729 Move to files.el.
14730 * simple.el (read-quoted-char-radix, read-quoted-char):
14731 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
14732 Move from subr.el.
14733 * custom.el (custom-declare-variable-list): Don't process
14734 custom-declare-variable-list.
14735
14736 * progmodes/python.el (python-shell-get-buffer): New function.
14737 (python-shell-get-process): Use it.
14738 (python-shell-send-string): Always use utf-8 and add a cookie to tell
14739 Python which encoding was used. Don't split-string since we only care
14740 about the first line. Return the temp-file, if applicable.
14741 (python-shell-send-region): Tell compile.el how to turn locations in
14742 the temp-file into locations in the source buffer.
14743
14744 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
14745
14746 * subr.el (undefined): Add missing behavior from the C code for
14747 unbound keys.
14748
14749 * rect.el: Use lexical-binding. Add new rectangular region support.
14750 (rectangle-mark): New command.
14751 (rectangle--region): New var.
14752 (deactivate-mark-hook): Reset rectangle--region.
14753 (rectangle--extract-region, rectangle--insert-for-yank)
14754 (rectangle--highlight-for-redisplay)
14755 (rectangle--unhighlight-for-redisplay): New functions.
14756 (region-extract-function, redisplay-unhighlight-region-function)
14757 (redisplay-highlight-region-function): Use them to handle
14758 rectangular region.
14759 * simple.el (region-extract-function): New var.
14760 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
14761 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
14762 (kill-region): Replace obsolete `yank-handler' arg with `region'.
14763 (copy-region-as-kill, kill-ring-save): Add `region' argument.
14764 (redisplay-unhighlight-region-function)
14765 (redisplay-highlight-region-function): New vars.
14766 (redisplay--update-region-highlight): New function.
14767 (pre-redisplay-function): Use it.
14768 (exchange-point-and-mark): Don't deactivate the mark before
14769 reactivate-it anyway.
14770 * comint.el (comint-kill-region): Remove yank-handler argument.
14771 * delsel.el (delete-backward-char, backward-delete-char-untabify)
14772 (delete-char): Remove property, since it's now part of their
14773 default behavior.
14774 (self-insert-iso): Remove property since this command doesn't exist.
14775
14776 * emacs-lisp/package.el (package--download-one-archive)
14777 (describe-package-1): Don't query the user about final newline.
14778
14779 2013-10-29 Daniel Colascione <dancol@dancol.org>
14780
14781 * net/tramp.el (tramp-methods): Document new functionality.
14782 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
14783 tramp-hostname-checker if method provides one instead of scanning
14784 argument list for "%h" to decide hostname acceptability.
14785
14786 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
14787
14788 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14789 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14790 Handle COPY-CONTENTS. (Bug#15737)
14791
14792 2013-10-28 Daiki Ueno <ueno@gnu.org>
14793
14794 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
14795 Document that this option has no effect with GnuPG 2.0 (bug#15552).
14796
14797 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
14798
14799 * image.el (defimage, image-load-path): Doc fixes.
14800
14801 2013-10-27 Alan Mackenzie <acm@muc.de>
14802
14803 Indent statements in macros following "##" correctly.
14804 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
14805 Modify the "#" arm of a cond form to handle "#" and "##" operators.
14806
14807 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
14808
14809 * linum.el (linum-update-window): Fix boundary test (bug#13446).
14810
14811 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
14812
14813 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
14814 after `=' is probably a new expression.
14815
14816 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14817
14818 * man.el (man-imenu-title): New option.
14819 (Man-mode-map): Add menu. (Bug#15722)
14820 (Man-mode): Add imenu to menu.
14821
14822 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
14823
14824 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
14825 specific in what the first arg can be: a non-keyword word,
14826 string/regexp/percent literal opener, opening paren, or unary
14827 operator followed directly by word.
14828
14829 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14830
14831 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
14832 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
14833 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
14834 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
14835 Remove vars, they do not apply any more.
14836 (prolog-mode-abbrev-table): Remove redundant declaration.
14837 (prolog-upper-case-string, prolog-lower-case-string): Remove.
14838 (prolog-use-smie): Remove.
14839 (prolog-smie-rules): Add indentation rule for the if-then-else layout
14840 supported by prolog-electric-if-then-else-flag.
14841 (prolog-mode-variables, prolog-menu): Use setq-local.
14842 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
14843 Remove binding to `Backspace' since this key doesn't exist anyway.
14844 Remove bindings for electric self-inserting keys.
14845 (prog-mode): Assume it's defined.
14846 (prolog-post-self-insert): New function.
14847 (prolog-mode): Use it.
14848 (prolog-indent-line, prolog-indent-level)
14849 (prolog-find-indent-of-matching-paren)
14850 (prolog-indentation-level-of-line, prolog-goto-comment-column)
14851 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
14852 (prolog-goto-next-paren, prolog-in-string-or-comment)
14853 (prolog-tokenize, prolog-inside-mline-comment)
14854 (prolog-find-start-of-mline-comment): Remove functions.
14855 (prolog-find-unmatched-paren, prolog-clause-end)
14856 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
14857 (prolog-electric--if-then-else): Rename from
14858 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
14859 (prolog-tokenize-searchkey): Remove const.
14860 (prolog-clause-info): Use forward-sexp.
14861 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
14862 (prolog-electric-if-then-else): Remove commands.
14863 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
14864 for use in post-self-insert-hook.
14865 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
14866 for use in post-self-insert-hook.
14867 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
14868 for use in post-self-insert-hook.
14869 (prolog-electric--underscore): Rename from prolog-electric--underscore;
14870 adapt it for use in post-self-insert-hook.
14871
14872 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
14873
14874 * emacs-lisp/ert.el (ert-run-tests-interactively):
14875 Use `completing-read'. (Bug#9756)
14876
14877 2013-10-25 Eli Zaretskii <eliz@gnu.org>
14878
14879 * simple.el (line-move): Call line-move-1 instead of
14880 line-move-visual when the current window hscroll is zero, but
14881 temporary-goal-column indicates we will need to hscroll as result
14882 of the movement. (Bug#15712)
14883
14884 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
14885
14886 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
14887 capitalization. Use :visible instead of :active.
14888 Fix `ruby-indent-exp' reference. Add menu items for the generic
14889 commands that are used with SMIE.
14890 (ruby-do-end-to-brace): Insert space after `{'.
14891
14892 2013-10-25 John Anthony <john@jo.hnanthony.com>
14893
14894 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
14895
14896 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
14897
14898 2013-10-25 Glenn Morris <rgm@gnu.org>
14899
14900 * vc/vc.el (vc-print-log): Don't use a working revision unless
14901 one was explicitly specified. (Bug#15322)
14902
14903 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14904
14905 * subr.el (add-to-list): Preserve return value in compiler-macro
14906 (bug#15692).
14907
14908 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14909
14910 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
14911 result. Ask user to retry using '-all' flag. (Bug#15701)
14912
14913 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
14914
14915 * emacs-lisp/smie.el: New smie-config system.
14916 (smie-config): New defcustom.
14917 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
14918 (smie-config-guess, smie-config-save): New commands.
14919 (smie-config--mode-local, smie-config--buffer-local)
14920 (smie-config--trace, smie-config--modefuns): New vars.
14921 (smie-config--advice, smie-config--mode-hook)
14922 (smie-config--setter, smie-config-local, smie-config--get-trace)
14923 (smie-config--guess-value, smie-config--guess): New functions.
14924 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
14925 text properties. Treat "string fence" syntax like string syntax.
14926
14927 * progmodes/sh-script.el (sh-use-smie): Change default.
14928 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
14929 (sh-var-value): Simplify by CSE.
14930 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
14931 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
14932 is used.
14933 (sh-guess-basic-offset): Use cl-incf.
14934 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
14935
14936 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
14937
14938 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
14939 (bug#15699).
14940
14941 2013-10-24 Glenn Morris <rgm@gnu.org>
14942
14943 * Makefile.in (abs_top_srcdir): Remove.
14944 (update-subdirs): Use relative path to update-subdirs.
14945
14946 2013-10-24 Eli Zaretskii <eliz@gnu.org>
14947
14948 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
14949 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
14950 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
14951 Call unmsys--file-name before expand-file-name, not after it.
14952
14953 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
14954
14955 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
14956 (ert-test-skipped): New error.
14957 (ert-skip, ert-stats-skipped): New defuns.
14958 (ert--skip-unless): New macro.
14959 (ert-test-skipped): New struct.
14960 (ert--run-test-debugger, ert-test-result-type-p)
14961 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
14962 (ert--stats-set-test-and-result, ert-char-for-test-result)
14963 (ert-string-for-test-result, ert-run-tests-batch)
14964 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
14965 Handle skipped tests. (Bug#9803)
14966
14967 2013-10-24 Glenn Morris <rgm@gnu.org>
14968
14969 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
14970
14971 * Makefile.in (abs_top_srcdir): New, set by configure.
14972 (update-subdirs): Correct build-aux location.
14973
14974 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
14975
14976 * vc/vc.el (vc-print-root-log): Always set `default-directory'
14977 value, whether we could auto-deduce `backend', or not.
14978
14979 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
14980 with parameters" example. Simplify the "is it block or is it
14981 hash" check, but also make it more thorough.
14982
14983 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
14984
14985 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
14986
14987 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
14988
14989 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
14990 { if it is hanging.
14991
14992 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
14993 :before ";".
14994
14995 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
14996
14997 * progmodes/compile.el (compilation-directory-matcher)
14998 (compilation-page-delimiter):
14999 Support GNU Make-4.0 directory quoting. (Bug#15678)
15000
15001 2013-10-23 Leo Liu <sdl.web@gmail.com>
15002
15003 * ido.el (ido-tidy): Handle read-only text.
15004
15005 2013-10-23 Glenn Morris <rgm@gnu.org>
15006
15007 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
15008 (emacs, compile, compile-always):
15009 Quote entities that might contain whitespace.
15010 (custom-deps, finder-data, autoloads): Use abs_lisp.
15011 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15012 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15013 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
15014
15015 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
15016
15017 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
15018 Use `following-char'.
15019
15020 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15021
15022 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
15023 * progmodes/ruby-mode.el (ruby-smie-rules):
15024 Remove corresponding workaround. Fix indentation rule of ";" so it
15025 also applies when ";" is the parent.
15026
15027 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
15028
15029 * frame.el (display-screens, display-pixel-height)
15030 (display-pixel-width, display-mm-width, display-backing-store)
15031 (display-save-under, display-planes, display-color-cells)
15032 (display-visual-class, display-monitor-attributes-list):
15033 Mention the optional ‘display’ argument in doc strings.
15034
15035 2013-10-22 Michael Gauland <mikelygee@amuri.net>
15036
15037 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
15038 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
15039
15040 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
15041
15042 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
15043 TODO. Add "." after " @ ".
15044 (ruby-smie--at-dot-call): New function. Checks if point at method
15045 call with explicit target.
15046 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
15047 to the method name tokens when it precedes them.
15048 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
15049 (ruby-smie-rules): Add rule for indentation before and after "."
15050 token.
15051
15052 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15053
15054 * textmodes/remember.el (remember-diary-extract-entries):
15055 Avoid add-to-list.
15056
15057 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
15058 an instruction.
15059
15060 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
15061
15062 * progmodes/ruby-mode.el (ruby-smie-grammar):
15063 Add (almost) all infix operators.
15064 (ruby-smie--implicit-semi-p): Add new operator chars.
15065
15066 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
15067 `smie-down-list'.
15068 (ruby-smie--args-separator-p): Check that there's no newline
15069 between method call and its arguments.
15070
15071 2013-10-20 Alan Mackenzie <acm@muc.de>
15072
15073 Allow comma separated lists after Java "implements".
15074
15075 * progmodes/cc-engine.el (c-backward-over-enum-header):
15076 Parse commas.
15077 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
15078 from a "disallowed" list in enum fontification.
15079
15080 2013-10-20 Johan Bockgård <bojohan@gnu.org>
15081
15082 * startup.el (default-frame-background-mode): Remove unused defvar.
15083
15084 * progmodes/verilog-mode.el (verilog-mode): Don't set
15085 comment-indent-function globally.
15086
15087 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
15088
15089 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
15090 Move Info menu item creation to ns-win.el.
15091
15092 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
15093 in menu bar.
15094
15095 * menu-bar.el: Move GNUstep specific menus...
15096
15097 * term/ns-win.el (ns-initialize-window-system): ... to here.
15098
15099 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15100
15101 * simple.el (newline): Only run post-self-insert-hook when
15102 called interactively.
15103
15104 2013-10-19 Johan Bockgård <bojohan@gnu.org>
15105
15106 * icomplete.el (icomplete-with-completion-tables): Add :version.
15107
15108 2013-10-19 Alan Mackenzie <acm@muc.de>
15109
15110 Fix fontification bugs with constructors and const.
15111
15112 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
15113 CASE 2) Remove the check for the absence of a suffix construct
15114 after a function declaration with only types (no identifiers) in
15115 the parentheses. Also, accept a function declaration with just a
15116 type inside the parentheses, if this type can be positively
15117 recognised as such, or if a prefix keyword like "explicit" nails
15118 down the construct as a declaration.
15119
15120 2013-10-19 Eli Zaretskii <eliz@gnu.org>
15121
15122 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
15123 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
15124 the problem whereby selecting a menu item that leads to a
15125 minibuffer prompt moves the cursor out of the minibuffer window,
15126 making it hard to type at the prompt. Suggested by Stefan Monnier
15127 <monnier@iro.umontreal.ca>.
15128
15129 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
15130
15131 * menu-bar.el: Don't make Services menu.
15132
15133 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15134
15135 * ffap.el: Handle "/usr/include/c++/<version>" directories.
15136 (ffap-alist): Use ffap-c++-mode for c++-mode.
15137 (ffap-c++-path): New variable.
15138 (ffap-c++-mode): New function.
15139
15140 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
15141
15142 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
15143
15144 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
15145
15146 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
15147 introduced on 2013-09-08, which results in an infinite loop
15148 requesting a password.
15149
15150 2013-10-18 Glenn Morris <rgm@gnu.org>
15151
15152 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
15153
15154 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
15155
15156 Sync with upstream verilog-mode revision 1a6ecec7.
15157 * progmodes/verilog-mode.el (verilog-mode-version): Update.
15158 (verilog-mode-release-date): Remove.
15159 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
15160 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
15161 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
15162 (verilog-auto-tieoff-ignore-regexp)
15163 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
15164 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
15165 (verilog-signals-with, verilog-dir-cache-preserving)
15166 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
15167 Doc fixes.
15168 (verilog-case-fold): New option, to control case folding in
15169 regexp searches, bug597.
15170 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
15171 (verilog-string-match-fold, verilog-in-paren-count)
15172 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
15173 (verilog-at-close-struct-p): New functions.
15174 (verilog-beg-block-re-ordered, verilog-extended-case-re)
15175 (verilog-forward-sexp, verilog-set-auto-endcomments)
15176 (verilog-leap-to-case-head): Handle "unique0" case.
15177 (verilog-in-constraint-re): New constant.
15178 (verilog-keywords, verilog-type-font-keywords):
15179 Add some SystemVerilog 1800-2012 keywords.
15180 (verilog-label-be): Remove unimplemented argument, bug669.
15181 (verilog-batch-execute-func): When batch expanding clear
15182 create-lockfiles to prevent spurious user locks when a file ends
15183 up not changing.
15184 (verilog-calculate-indent, verilog-calc-1)
15185 (verilog-at-close-constraint-p, verilog-at-constraint-p)
15186 (verilog-do-indent): Fix indentation of nested constraints
15187 and structures.
15188 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
15189 (verilog-auto-inst-param): Use verilog-string-match-fold.
15190 (verilog-read-inst-module-matcher):
15191 Fix AUTOINST on gate primitives with #1.
15192 (verilog-read-decls): Fix double-declaring user-defined typed signals.
15193 Reads all user-defined typed variables.
15194 (verilog-read-defines): Fix reading definitions inside comments, bug647.
15195 (verilog-signals-matching-regexp)
15196 (verilog-signals-not-matching-regexp, verilog-auto):
15197 Respect verilog-case-fold.
15198 (verilog-diff-report): Fix line count.
15199 (verilog-auto-assign-modport): Remove unused local `modi'.
15200 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
15201 better handle multidimensional arrays.
15202 Fix packed array ports misadding bit index in AUTOINST, bug637.
15203 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
15204 to not double-declare existing outputs and inputs, respectively.
15205 (verilog-template-map): Bind U to verilog-sk-uvm-component.
15206 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
15207 (verilog-sk-uvm-component): New skeleton.
15208 (verilog-submit-bug-report): Add verilog-case-fold,
15209 remove verilog-mode-release-date.
15210
15211 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
15212
15213 * subr.el (sit-for): Call (input-pending-p t) so as to behave
15214 as before.
15215
15216 2013-10-18 Reuben Thomas <rrt@sc3d.org>
15217
15218 * textmodes/remember.el (remember): Set buffer-offer-save in
15219 remember buffers (bug#13566).
15220
15221 2013-10-18 Daniel Colascione <dancol@dancol.org>
15222
15223 When evaluating forms in ielm, direct standard output to ielm
15224 buffer. Add new ielm-return-for-effect command. Remove trailing
15225 whitespace throughout.
15226
15227 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
15228 (ielm-return-for-effect): New command.
15229 (ielm-send-input): Accept optional `for-effect' parameter.
15230 (ielm-eval-input): Accept optional `for-effect' parameter.
15231 Bind `standard-output' to stream we create using
15232 `ielm-standard-output-impl'. Suppress printing result when
15233 `for-effect'.
15234 (ielm-standard-output-impl): New function.
15235 (inferior-emacs-lisp-mode): Explain new features in documentation.
15236
15237 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
15238
15239 Code cleanup.
15240
15241 * net/tramp.el (tramp-debug-message): Do not check for connection
15242 buffer.
15243 (tramp-message): Use "vector" connection property.
15244
15245 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
15246 (tramp-equal-remote, tramp-eshell-directory-change)
15247 * net/tramp-adb.el (tramp-adb-handle-copy-file)
15248 (tramp-adb-handle-rename-file)
15249 * net/tramp-cmds.el (tramp-list-remote-buffers)
15250 (tramp-cleanup-connection, tramp-cleanup-this-connection)
15251 * net/tramp-compat.el (tramp-compat-process-running-p)
15252 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
15253 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
15254 (tramp-gvfs-handle-rename-file)
15255 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
15256 (tramp-set-file-uid-gid)
15257 * net/tramp-smb.el (tramp-smb-handle-copy-file)
15258 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
15259 of `file-remote-p'.
15260
15261 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
15262 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
15263 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
15264 (tramp-gw-open-network-stream): Suppress unrelated traces.
15265
15266 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
15267 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
15268 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
15269 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
15270 connection property.
15271
15272 * net/tramp-cache.el (top): Suppress traces when reading
15273 persistency file.
15274
15275 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
15276 Refactor common code. Improve debug message.
15277 (tramp-maybe-open-connection)
15278 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
15279 connection buffer too early.
15280
15281 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
15282 from `tramp-smb-actions-with-acl'.
15283 (tramp-smb-actions-set-acl): New defconst.
15284 (tramp-smb-handle-copy-directory)
15285 (tramp-smb-action-get-acl): New defun, renamed from
15286 `tramp-smb-action-with-acl'.
15287 (tramp-smb-action-set-acl): New defun.
15288 (tramp-smb-handle-set-file-acl): Rewrite.
15289
15290 2013-10-17 Glenn Morris <rgm@gnu.org>
15291
15292 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
15293
15294 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15295
15296 * skeleton.el (skeleton-newline): Remove.
15297 (skeleton-internal-1): Use (insert "\n") instead.
15298
15299 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
15300 let-bindings.
15301
15302 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
15303 forward-sexp-function while we redo its job (bug#15613).
15304
15305 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
15306
15307 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
15308 represented by lists.
15309
15310 2013-10-16 Glenn Morris <rgm@gnu.org>
15311
15312 * tmm.el (tmm--history): New dynamic variable.
15313 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
15314
15315 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
15316
15317 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
15318 (tramp-smb-errors): Add error messages.
15319 (tramp-smb-actions-with-acl): New defconst.
15320 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
15321 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
15322 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
15323 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
15324 (tramp-smb-get-stat-capability): Fix tests.
15325
15326 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
15327
15328 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
15329 (bug#15580).
15330
15331 2013-10-16 Glenn Morris <rgm@gnu.org>
15332
15333 * ansi-color.el (ansi-color-drop-regexp):
15334 Add 1J, 1K, 2K. (Bug#15617)
15335
15336 * files.el (hack-local-variables--warned-lexical): New.
15337 (hack-local-variables):
15338 Warn about misplaced lexical-binding. (Bug#15616)
15339
15340 * net/eww.el (eww-render): Always set eww-current-url,
15341 and update header line. (Bug#15622)
15342 (eww-display-html): ... Rather than just doing it here.
15343
15344 2013-10-15 Eli Zaretskii <eliz@gnu.org>
15345
15346 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
15347 menu navigations commands.
15348
15349 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
15350
15351 * progmodes/subword.el (subword-capitalize): Be careful when
15352 the search for [[:alpha:]] fails (bug#15580).
15353
15354 2013-10-14 Eli Zaretskii <eliz@gnu.org>
15355
15356 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
15357 to commands that scroll the menu.
15358
15359 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
15360
15361 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
15362 Handle methods ending with `?' and `!'.
15363
15364 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
15365
15366 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
15367 `japanese-cp932' to `cp932' to fix the problem where saving a
15368 source file written in Shift_JIS twice would end up having
15369 `coding: japanese-cp932' which Ruby could not recognize.
15370 (ruby-mode-set-encoding): Add support for encodings mapped to nil
15371 in `ruby-encoding-map'.
15372 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
15373 doesn't need to be explicitly declared in magic comment.
15374 (ruby-encoding-map): Add type declaration for better customize UI.
15375
15376 2013-10-13 Glenn Morris <rgm@gnu.org>
15377
15378 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
15379 Occur buffers are read-only. http://bugs.debian.org/720775
15380
15381 * emacs-lisp/authors.el (authors-fixed-entries):
15382 Comment out old alpha stuff.
15383
15384 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
15385
15386 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
15387 to `after-save-hook' instead of `before-save-hook'.
15388 (ruby-mode-set-encoding): Use the value of coding system used to
15389 write the file. Call `basic-save-buffer-1' after modifying the
15390 buffer.
15391
15392 2013-10-13 Alan Mackenzie <acm@muc.de>
15393
15394 Fix indentation/fontification of Java enum with
15395 "implements"/generic.
15396
15397 * progmodes/cc-engine.el (c-backward-over-enum-header):
15398 Extracted from the three other places and enhanced to handle generics.
15399 (c-inside-bracelist-p): Uses new function above.
15400 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
15401 function above.
15402 (c-font-lock-enum-tail): Uses new function above.
15403
15404 2013-10-13 Kenichi Handa <handa@gnu.org>
15405
15406 * international/mule-cmds.el (select-safe-coding-system): Remove a
15407 superfluous condition in chekcing whether a coding system is safe
15408 or not.
15409
15410 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
15411
15412 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
15413
15414 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
15415
15416 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
15417
15418 2013-10-13 Glenn Morris <rgm@gnu.org>
15419
15420 * menu-bar.el (menu-bar-update-buffers):
15421 Unify Buffers menu prompt string. (Bug#15576)
15422
15423 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
15424
15425 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
15426 Add some entries.
15427 (authors-fixed-entries): Use accented form of name.
15428
15429 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15430
15431 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
15432 method calls (bug#15594).
15433 (ruby-smie--args-separator-p): New function.
15434 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
15435 recognize paren-free method calls.
15436
15437 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
15438 internals of universal-argument.
15439
15440 2013-10-11 Eli Zaretskii <eliz@gnu.org>
15441
15442 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
15443 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
15444 dropped menu on second mouse click on the menu bar.
15445
15446 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15447
15448 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
15449 (explicit-shell-file-name): Declare.
15450 (sh--vars-before-point, sh--cmd-completion-table): New functions.
15451 (sh-completion-at-point-function): New function.
15452 (sh-mode): Use it.
15453 (sh-smie--keyword-p): Remove unused argument.
15454 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
15455 vars.
15456 (sh-set-shell): Always setup SMIE, even if we use the
15457 old indentation code.
15458
15459 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
15460
15461 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
15462 cases of ? and =.
15463 (ruby-smie-rules): Simplify the "do" rule. The cases when the
15464 predicate would return nil are almost non-existent.
15465 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
15466
15467 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
15468 cache also after commands that modify the buffer but don't move
15469 point.
15470
15471 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
15472
15473 * env.el (substitute-env-in-file-name): New function.
15474 (substitute-env-vars): Extend the meaning of the optional arg.
15475
15476 2013-10-10 Eli Zaretskii <eliz@gnu.org>
15477
15478 * term/w32-win.el (dynamic-library-alist): Define separate lists
15479 of GIF DLLs for versions before and after 5.0.0 of giflib.
15480 (Bug#15531)
15481
15482 2013-10-10 João Távora <joaotavora@gmail.com>
15483
15484 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
15485 not locked, use last revision and current source as
15486 defaults. (Bug#15569)
15487
15488 2013-10-10 Masatake YAMATO <yamato@redhat.com>
15489
15490 * menu-bar.el (menu-bar-open): Don't use popup-menu if
15491 menu-bar is hidden.
15492
15493 2013-10-10 Martin Rudalics <rudalics@gmx.at>
15494
15495 * window.el (pop-to-buffer-same-window): Fix doc-string.
15496 (Bug#15492)
15497
15498 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
15499
15500 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
15501
15502 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
15503
15504 * calendar/icalendar.el (icalendar-import-file):
15505 Fix interactive spec. (Bug#15482)
15506
15507 2013-10-10 Glenn Morris <rgm@gnu.org>
15508
15509 * desktop.el (desktop-save): Default to saving in .emacs.d,
15510 since PWD is no longer in desktop-path by default. (Bug#15319)
15511
15512 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
15513 now that text mode has a menu with the same entry.
15514 (menu-bar-text-mode-auto-fill): Remove now unused func.
15515 * textmodes/text-mode.el (text-mode-map):
15516 Use auto-fill help text from menu-bar.el.
15517
15518 2013-10-10 John Anthony <john@jo.hnanthony.com>
15519
15520 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
15521
15522 2013-10-09 Juri Linkov <juri@jurta.org>
15523
15524 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
15525 instead of this-command-keys. Add universal-argument-more and
15526 universal-argument-minus to the list of prefix commands. (Bug#15568)
15527
15528 2013-10-09 Glenn Morris <rgm@gnu.org>
15529
15530 * vc/vc-svn.el (vc-svn-create-repo):
15531 Expand paths in file://... url. (Bug#15446)
15532
15533 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
15534 Add some entries.
15535 (authors): Remove unused local variables.
15536
15537 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
15538
15539 * profiler.el: Create a more coherent calltree from partial backtraces.
15540 (profiler-format): Hide the tail with `invisible' so that C-s can still
15541 find the hidden elements.
15542 (profiler-calltree-depth): Don't recurse so enthusiastically.
15543 (profiler-function-equal): New hash-table-test.
15544 (profiler-calltree-build-unified): New function.
15545 (profiler-calltree-build): Use it.
15546 (profiler-report-make-name-part): Indent the calltree less.
15547 (profiler-report-mode): Add visibility specs for profiler-format.
15548 (profiler-report-expand-entry, profiler-report-toggle-entry):
15549 Expand the whole subtree when provided with a prefix arg.
15550
15551 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
15552
15553 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
15554 iuwu-mod token.
15555 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
15556 hanging iuwu-mod token.
15557 (ruby-smie--forward-token): Do not include a dot after a token in
15558 that token.
15559 (ruby-smie--backward-token): Likewise.
15560
15561 2013-10-08 Juri Linkov <juri@jurta.org>
15562
15563 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
15564 to isearch-other-control-char.
15565 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
15566 and isearch-post-command-hook to post-command-hook.
15567 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
15568 and isearch-post-command-hook from post-command-hook.
15569 (isearch-unread-key-sequence)
15570 (isearch-reread-key-sequence-naturally)
15571 (isearch-lookup-scroll-key, isearch-other-control-char)
15572 (isearch-other-meta-char): Remove functions.
15573 (isearch-pre-command-hook, isearch-post-command-hook):
15574 New functions based on isearch-other-meta-char rewritten
15575 relying on the new behavior of overriding-terminal-local-map
15576 that does not replace the local keymaps any more. (Bug#15200)
15577
15578 2013-10-08 Eli Zaretskii <eliz@gnu.org>
15579
15580 Support menus on text-mode terminals.
15581 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
15582 functionality.
15583
15584 * tooltip.el (tooltip-mode): Don't error out on TTYs.
15585
15586 * menu-bar.el (popup-menu, popup-menu-normalize-position):
15587 Move here from mouse.el.
15588 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
15589 and arrow keys.
15590 (tty-menu-navigation-map): New map for TTY menu navigation.
15591
15592 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
15593
15594 * frame.el (display-mouse-p): Report text-mode mouse as available
15595 on w32.
15596 (display-popup-menus-p): Report availability if mouse is
15597 available; don't condition on window-system.
15598
15599 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
15600 (tty-menu-selected-face): New faces.
15601
15602 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
15603
15604 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
15605 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
15606 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
15607 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
15608 New constants.
15609 (lisp-mode-variables): New `elisp' argument.
15610 (emacs-lisp-mode): Use it.
15611 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
15612 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
15613
15614 * indent.el: Use lexical-binding.
15615 (indent-region): Add progress reporter.
15616 (tab-stop-list): Make it implicitly extend to infinity by repeating the
15617 last step.
15618 (indent--next-tab-stop): New function to implement this behavior.
15619 (tab-to-tab-stop, move-to-tab-stop): Use it.
15620
15621 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
15622
15623 * indent.el (indent-rigidly--current-indentation): New function.
15624 (indent-rigidly-map): New var.
15625 (indent-rigidly): Use it to provide interactive mode (bug#8196).
15626
15627 2013-10-08 Bastien Guerry <bzg@gnu.org>
15628
15629 * register.el (insert-register): Fix 2013-10-07 change.
15630
15631 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
15632
15633 * progmodes/perl-mode.el: Use lexical-binding.
15634 Remove redundant :group args.
15635 (perl-nochange): Change default to be closer to other major modes's
15636 standard behavior.
15637 (perl-indent-line): Don't consider text on current line as a
15638 valid beginning of function from which to indent.
15639
15640 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
15641 with more than one argument (bug#15538).
15642
15643 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
15644
15645 * vc/pcvs.el: Use lexical-binding.
15646 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
15647 environment of `eval'.
15648 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
15649 than a list of expressions. Adjust callers.
15650 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
15651
15652 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
15653
15654 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
15655 case of the dot in a chained method call being on the following line.
15656
15657 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15658
15659 * electric.el (electric-indent-inhibit): New var.
15660 (electric-indent-post-self-insert-function): Use it.
15661 * progmodes/python.el (python-mode): Set it.
15662
15663 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
15664 open braces.
15665
15666 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
15667
15668 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
15669 (css-mode): Use electric-indent-chars.
15670
15671 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
15672 (font-lock-beg, font-lock-end): Move before first use.
15673 (nxml-mode): Use syntax-propertize-function.
15674 (nxml-after-change, nxml-after-change1): Adjust accordingly.
15675 (nxml-extend-after-change-region): Remove.
15676 * nxml/xmltok.el: Use lexical-binding.
15677 (xmltok-save): Use `declare'.
15678 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
15679 * nxml/nxml-util.el: Use lexical-binding.
15680 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
15681 Use `declare'.
15682 * nxml/nxml-ns.el: Use lexical-binding.
15683 (nxml-ns-save): Use `declare'.
15684 (nxml-ns-prefixes-for): Avoid add-to-list.
15685 * nxml/rng-match.el: Use lexical-binding.
15686 (rng--ipattern): Use cl-defstruct.
15687 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
15688 (rng-cons-group-after, rng-subst-group-after)
15689 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
15690 Use closures instead of `(lambda...).
15691
15692 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
15693
15694 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
15695 of BEG and END.
15696
15697 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
15698 Use `tramp-handle-insert-file-contents'.
15699 (tramp-gvfs-handle-insert-file-contents): Remove function.
15700
15701 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
15702 Use `save-restriction' in order to keep markers.
15703
15704 * net/trampver.el: Update release number.
15705
15706 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15707
15708 * progmodes/compile.el (compilation-parse-errors):
15709 Use compilation--put-prop.
15710 (compilation--ensure-parse): Check compilation-multiline.
15711
15712 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
15713
15714 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
15715 lexical-binding.
15716
15717 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
15718
15719 * progmodes/ruby-mode.el: Fix recently added tests.
15720 (ruby-smie-grammar): Add - and +.
15721 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
15722 (ruby-smie--backward-id): New functions.
15723 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
15724 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
15725 any more.
15726
15727 2013-10-07 Leo Liu <sdl.web@gmail.com>
15728
15729 * register.el (register-preview-delay)
15730 (register-preview-functions): New variables.
15731 (register-read-with-preview, register-preview)
15732 (register-describe-oneline): New functions.
15733 (point-to-register, window-configuration-to-register)
15734 (frame-configuration-to-register, jump-to-register)
15735 (number-to-register, view-register, insert-register)
15736 (copy-to-register, append-to-register, prepend-to-register)
15737 (copy-rectangle-to-register): Use register-read-with-preview to
15738 read register. (Bug#15525)
15739
15740 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
15741
15742 * net/network-stream.el (network-stream-open-starttls): Don't add
15743 --insecure if it's already present, because that gnutls-cli
15744 rejects getting that parameter twice.
15745
15746 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
15747
15748 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
15749 keyword, too.
15750
15751 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
15752
15753 * newcomment.el (comment-use-global-state): Change default value
15754 to t, mark obsolete (Bug#15251).
15755 (comment-beginning): In addition to `comment-to-syntax', check the
15756 value of `comment-use-global-state'.
15757
15758 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
15759
15760 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
15761 (ruby-comment-column): Follow the global default, by default.
15762 (ruby-smie-grammar): Add assignment syntax.
15763 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
15764 open-paren, a comma, or a \.
15765 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
15766 and line continuations.
15767 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
15768 followed by implicit semi-colons. Add rule for string concatenation
15769 and for indentation at BOB.
15770 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
15771
15772 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
15773 calling next-sexp, since next-token may have skipped chars which
15774 next-sexp doesn't know should be skipped!
15775
15776 2013-10-05 Leo Liu <sdl.web@gmail.com>
15777
15778 * progmodes/octave.el (octave-send-region):
15779 Call compilation-forget-errors.
15780
15781 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
15782
15783 * vc/vc-svn.el (vc-svn-find-admin-dir):
15784 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
15785 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
15786 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
15787 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
15788
15789 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
15790
15791 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
15792
15793 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
15794
15795 * subr.el (read-passwd): Hide chars even when called within a context
15796 where after-change-functions is disabled (bug#15501).
15797 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
15798 until we removed ourself from overriding-terminal-local-map.
15799
15800 2013-10-04 Leo Liu <sdl.web@gmail.com>
15801
15802 * progmodes/octave.el (inferior-octave-mode):
15803 Call compilation-forget-errors.
15804
15805 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
15806
15807 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
15808
15809 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
15810
15811 * net/secrets.el (secrets-create-collection): Add optional
15812 argument ALIAS. Use proper Label keyword. Append ALIAS as
15813 dbus-call-method argument. (Bug#15516)
15814
15815 2013-10-04 Leo Liu <sdl.web@gmail.com>
15816
15817 * progmodes/octave.el (inferior-octave-error-regexp-alist)
15818 (inferior-octave-compilation-font-lock-keywords): New variables.
15819 (compilation-error-regexp-alist)
15820 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
15821 (inferior-octave-mode): Use compilation-shell-minor-mode.
15822
15823 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
15824
15825 * minibuffer.el (completion--replace): Be careful that `end' might be
15826 a marker.
15827
15828 2013-10-03 Daiki Ueno <ueno@gnu.org>
15829
15830 Add support for package signature checking.
15831 * emacs-lisp/package.el (url-http-file-exists-p)
15832 (epg-make-context, epg-context-set-home-directory)
15833 (epg-verify-string, epg-context-result-for)
15834 (epg-signature-status, epg-signature-to-string)
15835 (epg-check-configuration, epg-configuration)
15836 (epg-import-keys-from-file): Declare.
15837 (package-check-signature): New user option.
15838 (package-unsigned-archives): New user option.
15839 (package-desc): Add `signed' field.
15840 (package-load-descriptor): Set `signed' field if .signed file exists.
15841 (package--archive-file-exists-p): New function.
15842 (package--check-signature): New function.
15843 (package-install-from-archive): Check package signature.
15844 (package--download-one-archive): Check archive signature.
15845 (package-delete): Remove .signed file.
15846 (package-import-keyring): New command.
15847 (package-refresh-contents): Import default keyring.
15848 (package-desc-status): Add "unsigned" status.
15849 (describe-package-1, package-menu--print-info)
15850 (package-menu-mark-delete, package-menu--find-upgrades)
15851 (package-menu--status-predicate): Support "unsigned" status.
15852
15853 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15854
15855 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
15856 the new compilation scheme using the new byte-codes.
15857
15858 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
15859 (byte-pophandler): New byte codes.
15860 (byte-goto-ops): Adjust accordingly.
15861 (byte-compile--use-old-handlers): New var.
15862 (byte-compile-catch): Use new byte codes depending on
15863 byte-compile--use-old-handlers.
15864 (byte-compile-condition-case--old): Rename from
15865 byte-compile-condition-case.
15866 (byte-compile-condition-case--new): New function.
15867 (byte-compile-condition-case): New function that dispatches depending
15868 on byte-compile--use-old-handlers.
15869 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
15870 when we can.
15871
15872 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
15873 Optimize under `condition-case' and `catch' if
15874 byte-compile--use-old-handlers is nil.
15875 (disassemble-offset): Handle new bytecodes.
15876
15877 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15878
15879 * subr.el (error): Use `declare'.
15880 (decode-char, encode-char): Use advertised-calling-convention instead
15881 of the docstring to discourage use of the `restriction' arg.
15882
15883 2013-10-03 Daiki Ueno <ueno@gnu.org>
15884
15885 * epg.el (epg-verify-file): Add a comment saying that it does not
15886 notify verification error as a return value nor a signal.
15887 (epg-verify-string): Ditto.
15888
15889 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
15890
15891 * progmodes/compile.el (compilation-start): Try globbing the arg to
15892 `cd' (bug#15417).
15893
15894 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
15895
15896 Sync with Tramp 2.2.8.
15897
15898 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
15899 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
15900 * net/trampver.el: Update release number.
15901
15902 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
15903
15904 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
15905 and default-process-coding-system for darwin only.
15906
15907 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
15908
15909 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
15910
15911 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
15912
15913 * vc/vc-git.el (vc-git-grep): Disable pager.
15914
15915 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
15916
15917 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
15918 Use :url instead of :homepage, as per
15919 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
15920
15921 * newcomment.el (comment-beginning): When `comment-use-syntax' is
15922 non-nil, use `syntax-ppss' (Bug#15251).
15923
15924 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15925
15926 * progmodes/octave.el (inferior-octave-startup-file):
15927 Prefer ~/.emacs.d/init_octave.m.
15928
15929 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
15930
15931 * emacs-lisp/package.el (package-desc-from-define):
15932 Accept additional arguments as plist, convert them to an alist and store
15933 them in the `extras' slot.
15934 (package-generate-description-file): Convert extras alist back to
15935 plist and append to the `define-package' form arguments.
15936 (package--alist-to-plist): New function.
15937 (package--ac-desc): Add `extras' slot.
15938 (package--add-to-archive-contents): Check if the archive-contents
15939 vector is long enough, and if it is, pass its `extras' slot value
15940 to `package-desc-create'.
15941 (package-buffer-info): Call `lm-homepage', pass the returned value
15942 to `package-desc-from-define'.
15943 (describe-package-1): Render the homepage button (Bug#13291).
15944
15945 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15946 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
15947
15948 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
15949
15950 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
15951 and default-process-coding-system to utf-8-unix (Bug#15402).
15952
15953 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
15954
15955 * subr.el (looking-back): Do not recommend using looking-back.
15956
15957 2013-09-28 Alan Mackenzie <acm@muc.de>
15958
15959 Fix indentation/fontification of Java enum with "implements".
15960
15961 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
15962 regexp which matches "implements", etc., in Java.
15963 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
15964 specifier clauses coming after "enum".
15965 * progmodes/cc-fonts.el (c-font-lock-declarations)
15966 (c-font-lock-enum-tail): Check for extra specifier clauses coming
15967 after "enum".
15968
15969 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
15970
15971 * faces.el (region): Change ns_selection_color to
15972 ns_selection_fg_color, add ns_selection_bg_color.
15973
15974 2013-09-28 Leo Liu <sdl.web@gmail.com>
15975
15976 * progmodes/octave.el (inferior-octave-completion-table)
15977 (inferior-octave-completion-at-point): Minor tweaks.
15978
15979 * textmodes/ispell.el (ispell-lookup-words): Rename from
15980 lookup-words. (Bug#15460)
15981 (lookup-words): Obsolete.
15982 (ispell-complete-word, ispell-command-loop): All uses changed.
15983
15984 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15985
15986 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
15987 (octave-mode-menu): Add octave-send-buffer.
15988 (octave-send-buffer): New function.
15989
15990 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15991
15992 * progmodes/octave.el (octave-mode-map): Add key binding for
15993 octave-lookfor.
15994 (octave-mode-menu): Add octave-lookfor.
15995 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
15996 octave-lookfor.
15997 (octave-lookfor): New function.
15998
15999 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
16000
16001 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
16002 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
16003 its convention.
16004 (cl--loop-set-iterator-function): New function.
16005 (cl-loop): Adjust accordingly, so as not to use cl-subst.
16006 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
16007 Bind `it' with `let' instead of substituting it with `cl-subst'.
16008 (cl--unused-var-p): New function.
16009 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
16010 Eliminate some unused variable warnings (bug#15326).
16011
16012 2013-09-27 Tassilo Horn <tsdh@gnu.org>
16013
16014 * doc-view.el (doc-view-scale-reset): Rename from
16015 `doc-view-reset-zoom-level'.
16016 (doc-view-scale-adjust): New command.
16017 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
16018 `doc-view-scale-adjust'.
16019
16020 2013-09-26 Tassilo Horn <tsdh@gnu.org>
16021
16022 * doc-view.el (doc-view-reset-zoom-level): New command.
16023 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
16024 zoom commands (bug#15466).
16025
16026 2013-09-26 Kenichi Handa <handa@gnu.org>
16027
16028 * international/quail.el (quail-help): Make it not a command.
16029
16030 2013-09-26 Leo Liu <sdl.web@gmail.com>
16031
16032 * minibuffer.el (completion-all-sorted-completions): Make args
16033 optional as they are.
16034
16035 2013-09-25 Daniel Colascione <dancol@dancol.org>
16036
16037 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
16038 specs are and that they're not evaluated.
16039
16040 2013-09-24 Sam Steingold <sds@gnu.org>
16041
16042 * midnight.el (clean-buffer-list-kill-regexps)
16043 (clean-buffer-list-kill-buffer-names): Update for the new Man
16044 buffer naming which includes the object name.
16045
16046 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16047
16048 * eshell/esh-cmd.el (eshell--sep-terms): New var.
16049 (eshell-parse-command, eshell-parse-pipeline): Use it since
16050 eshell-separate-commands requires a dynamic scoped var.
16051 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
16052
16053 2013-09-23 Leo Liu <sdl.web@gmail.com>
16054
16055 * autoinsert.el (auto-insert-alist): Make the value of
16056 lexical-binding match its file setting.
16057
16058 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
16059
16060 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
16061
16062 * autoarg.el (autoarg-kp-digit-argument):
16063 * electric.el (Electric-command-loop):
16064 * kmacro.el (kmacro-step-edit-insert):
16065 Do not set universal-argument-num-events.
16066
16067 2013-09-22 Leo Liu <sdl.web@gmail.com>
16068
16069 * files.el (interpreter-mode-alist): Add octave.
16070
16071 2013-09-21 Alan Mackenzie <acm@muc.de>
16072
16073 C++: fontify identifier in declaration following "public:" correctly.
16074 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
16075 to match "public", etc.
16076 (c-decl-prefix-re): Add ":" into the C++ value.
16077 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
16078 bit. Add a check for a ":" preceded by "public", etc.
16079
16080 2013-09-21 Eli Zaretskii <eliz@gnu.org>
16081
16082 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
16083 recognized by GDB 7.5 and later.
16084
16085 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
16086
16087 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
16088
16089 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
16090
16091 * subr.el (internal--call-interactively): New const.
16092 (called-interactively-p): Use it (bug#3984).
16093
16094 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
16095
16096 * vc/pcvs.el (cvs-mode-ignore):
16097 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
16098 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
16099
16100 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16101
16102 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
16103 (eshell-ls-orig-insert-directory): Remove.
16104 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
16105 (eshell-ls-use-in-dired): Use advice-add/remove.
16106 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
16107 Add `orig-fun' arg for use in :around advice.
16108 Make it check (redundantly) eshell-ls-use-in-dired.
16109
16110 2013-09-19 Glenn Morris <rgm@gnu.org>
16111
16112 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
16113
16114 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
16115
16116 * emacs-lisp/eieio.el (class-parent): Undo previous change.
16117
16118 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
16119
16120 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
16121 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
16122 (tramp-get-remote-python): New defuns.
16123 (tramp-get-remote-uid-with-perl)
16124 (tramp-get-remote-gid-with-perl): New defuns. Perl code
16125 contributed by yary <not.com@gmail.com> (tiny change).
16126 (tramp-get-remote-uid-with-python)
16127 (tramp-get-remote-gid-with-python): New defuns. Python code
16128 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
16129 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
16130
16131 2013-09-19 Glenn Morris <rgm@gnu.org>
16132
16133 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
16134
16135 * eshell/em-unix.el (eshell-remove-entries):
16136 Rename argument to avoid name-clash with global `top-level'.
16137
16138 * eshell/esh-proc.el (eshell-kill-process-function):
16139 Remove eshell-reset-after-proc from eshell-kill-hook if present.
16140 (eshell-reset-after-proc): Remove unused arg `proc'.
16141
16142 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
16143 (directory-files-and-attributes): Mark unused arg.
16144
16145 * eshell/em-unix.el (eshell-remove-entries):
16146 Remove unused arg `path'. Update callers.
16147
16148 * eshell/em-hist.el (eshell-hist-parse-arguments):
16149 Remove unused arg `silent'. Update callers.
16150
16151 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
16152 Fix (f)boundp mix-up.
16153
16154 * eshell/em-smart.el (eshell-smart-scroll-window)
16155 (eshell-disable-after-change):
16156 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
16157
16158 2013-09-18 Alan Mackenzie <acm@muc.de>
16159
16160 Fix fontification of type when followed by "const".
16161 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
16162 "known" types from fontification.
16163
16164 2013-09-18 Glenn Morris <rgm@gnu.org>
16165
16166 * emacs-lisp/chart.el (x-display-color-cells): Declare.
16167 (chart-face-list): Drop Emacsen without display-color-p.
16168
16169 * net/eww.el (libxml-parse-html-region): Declare.
16170 (eww-display-html): Explicit error if no libxml2 support.
16171
16172 * doc-view.el (doc-view-mode): Silence --without-x compilation.
16173
16174 * image.el (image-type-from-buffer, image-multi-frame-p):
16175 Remove --without-x warning/error.
16176
16177 * mouse.el (mouse-yank-primary):
16178 * term.el (term-mouse-paste):
16179 Reorder to silence --without-x compilation.
16180
16181 * mpc.el (doc-view-mode): Silence --without-x compilation.
16182
16183 * mail/rmailmm.el (rmail-mime-set-bulk-data):
16184 Silence --without-x compilation.
16185
16186 * progmodes/gud.el (gud-find-file, gud-mode):
16187 Silence --without-x compilation.
16188 (tooltip-mode): Declare.
16189
16190 * wdired.el (dired-backup-overwrite): Remove declaration.
16191 (wdired-mode-map): Add doc string.
16192
16193 * custom.el (x-get-resource): Declare.
16194
16195 * eshell/em-glob.el (ange-cache):
16196 * eshell/em-unix.el (ange-cache): Declare.
16197
16198 * faces.el (x-display-list, x-open-connection, x-get-resource):
16199 Declare.
16200
16201 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
16202 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
16203 Declare.
16204
16205 * frame.el (x-display-grayscale-p, x-display-name): Declare.
16206
16207 * net/gnutls.el (gnutls-log-level): Declare.
16208
16209 * net/shr.el (image-size, image-animate): Declare.
16210
16211 * simple.el (font-info): Declare.
16212
16213 * subr.el (x-popup-dialog): Declare.
16214
16215 * term/common-win.el (x-select-enable-primary)
16216 (x-last-selected-text-primary, x-last-selected-text-clipboard):
16217 Declare.
16218
16219 * term/ns-win.el (x-handle-args): Declare.
16220
16221 * term/x-win.el (x-select-enable-clipboard): Declare.
16222
16223 * term/w32-win.el (create-default-fontset): Declare.
16224
16225 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
16226 Declare.
16227
16228 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
16229 (fit-frame-to-buffer): Explicit error if --without-x.
16230 (mouse-autoselect-window-select): Silence compiler.
16231
16232 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
16233
16234 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
16235 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
16236 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
16237 * eshell/esh-util.el (eshell-sublist):
16238 Remove unused local variables.
16239
16240 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
16241
16242 * textmodes/two-column.el: Make 2C-split work for --without-x.
16243 (scroll-bar-columns): Autoload.
16244 (top-level): Require fringe when compiling.
16245
16246 2013-09-18 Leo Liu <sdl.web@gmail.com>
16247
16248 * subr.el (add-hook): Robustify to handle closure as well.
16249
16250 2013-09-17 Glenn Morris <rgm@gnu.org>
16251
16252 * simple.el (messages-buffer-mode-map): Unbind "g".
16253
16254 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16255
16256 * help-mode.el (help-mode-finish): Use derived-mode-p.
16257 Remove obsolete highlighting.
16258
16259 * play/life.el (life-mode): Use define-derived-mode. Derive from
16260 special-mode.
16261 (life): Let-bind inhibit-read-only.
16262 (life-setup): Avoid `setq'. Use `life-mode'.
16263
16264 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
16265 which should not be needed any more.
16266 (package-menu-refresh, package-menu-describe-package): Use user-error.
16267
16268 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
16269 (eshell-post-rewrite-command-hook): Make obsolete.
16270 (eshell-parse-command): Simplify.
16271 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
16272 (eshell--cmd): Declare.
16273 (eshell-parse-pipeline): Remove unused var `final-p'.
16274 Pass a dynvar to eshell-post-rewrite-command-hook.
16275 Implement the new eshell-post-rewrite-command-function.
16276 (eshell-invoke-directly): Remove unused arg `input'.
16277 * eshell/esh-io.el (eshell-io-initialize):
16278 Use eshell-post-rewrite-command-function (bug#15399).
16279 (eshell--apply-redirections): Rename from eshell-apply-redirections;
16280 adjust to new calling convention.
16281 (eshell-create-handles): Rename args to avoid clashing with dynvar
16282 `standard-output'.
16283
16284 2013-09-17 Glenn Morris <rgm@gnu.org>
16285
16286 * simple.el (messages-buffer-mode): New major mode.
16287 (messages-buffer): New function.
16288 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
16289 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
16290 (ert-run-test): Use `messages-buffer' function.
16291 (ert--force-message-log-buffer-truncation): Ignore read-only.
16292 * help.el (view-echo-area-messages): Use `messages-buffer' function.
16293 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
16294
16295 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16296
16297 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
16298
16299 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
16300
16301 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
16302
16303 * icomplete.el (icomplete-in-buffer): New var.
16304 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
16305 vars and replace them with functions.
16306 (icomplete-minibuffer-setup): Adjust accordingly.
16307 (icomplete--completion-table, icomplete--completion-predicate)
16308 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
16309 New functions.
16310 (icomplete-forward-completions, icomplete-backward-completions)
16311 (icomplete-simple-completing-p, icomplete-exhibit)
16312 (icomplete-completions): Use them.
16313 (icomplete--in-region-buffer): New var.
16314 (icomplete--in-region-setup): New function.
16315 (icomplete-mode): Use it.
16316
16317 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
16318 (bug#15379).
16319 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
16320 return args and options.
16321 (eshell-eval-using-options): Use the new return value of
16322 eshell--do-opts to set the options's vars in their scope.
16323 (eshell--set-option): Rename from eshell-set-option.
16324 Add arg `opt-vals'.
16325 (eshell--process-option): Rename from eshell-process-option.
16326 Add arg `opt-vals'.
16327 (eshell--process-args): Use an `opt-vals' alist to store the options's
16328 values during their processing and return them additionally to the
16329 remaining args.
16330
16331 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
16332
16333 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
16334 continuation character an operator, as far as indentation is
16335 concerned (Bug#15369).
16336
16337 2013-09-15 Martin Rudalics <rudalics@gmx.at>
16338
16339 * window.el (window--state-put-2): Don't process buffer state
16340 when buffer doesn't exist any more (Bug#15382).
16341
16342 2013-09-15 Glenn Morris <rgm@gnu.org>
16343
16344 * eshell/em-unix.el (eshell/rm):
16345 Make -f ignore missing files. (Bug#15373)
16346
16347 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
16348 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
16349 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
16350
16351 2013-09-14 Glenn Morris <rgm@gnu.org>
16352
16353 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
16354
16355 2013-09-13 Glenn Morris <rgm@gnu.org>
16356
16357 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
16358 (dired-guess-default): Make `file' available in the env. (Bug#15363)
16359
16360 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
16361
16362 * frame.el (x-focus-frame): Mark as declared in frame.c.
16363
16364 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
16365
16366 * ls-lisp.el: Use advice-add.
16367 (original-insert-directory): Remove.
16368 (ls-lisp--insert-directory): Rename from insert-directory; add
16369 `orig-fun' argument.
16370 (insert-directory): Advise.
16371
16372 2013-09-13 Eli Zaretskii <eliz@gnu.org>
16373
16374 * term.el (term-emulate-terminal): Decode the command string
16375 before passing it to term-command-hook. (Bug#15337)
16376
16377 2013-09-13 Glenn Morris <rgm@gnu.org>
16378
16379 * eshell/esh-util.el (ange-cache): Move declaration earlier.
16380
16381 * eshell/esh-ext.el (eshell-search-path): Declare.
16382
16383 * eshell/em-prompt.el (eshell/pwd): Autoload it.
16384 Otherwise an error occurs if eshell-dirs module not loaded.
16385
16386 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
16387
16388 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
16389
16390 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
16391 `tramp-check-proper-host'. Check for a valid method name.
16392
16393 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
16394 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
16395 * net/tramp-sh.el (tramp-maybe-open-connection):
16396 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
16397
16398 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
16399 also for hash values.
16400
16401 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16402
16403 * term/ns-win.el (parameters): Don't declare as dynamic.
16404 (before-make-frame-hook): Don't add ineffective function.
16405
16406 * eshell/*.el: Use lexical-binding (bug#15231).
16407
16408 2013-09-12 Kenichi Handa <handa@gnu.org>
16409
16410 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
16411
16412 2013-09-12 Glenn Morris <rgm@gnu.org>
16413
16414 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
16415 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
16416
16417 * subr.el (do-after-load-evaluation): Also give compiler warnings
16418 when obsolete files are used (except by obsolete files).
16419
16420 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
16421 in the status output, assume `filename' is the first. (Bug#15322)
16422
16423 * vc/vc.el (vc-deduce-fileset): Doc fix.
16424
16425 * calc/calc-help.el (Info-goto-node):
16426 * progmodes/cperl-mode.el (Info-find-node):
16427 * vc/ediff.el (Info-goto-node): Update declarations.
16428
16429 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
16430
16431 * vc/vc-bzr.el (vc-compilation-mode): Declare.
16432 (vc-bzr-pull): Require vc-dispatcher.
16433 * vc/vc-git.el (vc-compilation-mode): Declare.
16434 (vc-git-pull): Require vc-dispatcher.
16435
16436 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
16437
16438 * progmodes/octave.el (help-button-action): Declare.
16439
16440 * shell.el (shell-directory-tracker): Output error as a message
16441 rather than just returning it as a string.
16442 (shell-process-pushd): Remove useless use of message.
16443
16444 * dframe.el (dframe-timer-fn):
16445 * files.el (dir-locals-read-from-file):
16446 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
16447 (mpc-format):
16448 * reveal.el (reveal-post-command):
16449 * saveplace.el (load-save-place-alist-from-file):
16450 * shell.el (shell-resync-dirs):
16451 * w32-common-fns.el (x-get-selection-value):
16452 * emacs-lisp/copyright.el (copyright-find-copyright):
16453 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
16454 * emulation/tpu-edt.el (tpu-copy-keyfile):
16455 * play/bubbles.el (bubbles--mark-neighbourhood):
16456 * progmodes/executable.el
16457 (executable-make-buffer-file-executable-if-script-p):
16458 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
16459
16460 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16461
16462 Cleanup Eshell to rely less on dynamic scoping.
16463 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
16464 last-value, and ext-command here. Bind `args' closer to `body'.
16465 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
16466 (eshell--args): Declare new dynamic var.
16467 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
16468 last-value, and ext-command. Pass `args' to `body'.
16469 (eshell-process-args): Bind eshell--args.
16470 (eshell-set-option): Use eshell--args.
16471 * eshell/eshell.el (eshell): Use derived-mode-p.
16472 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
16473 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
16474 (eshell-glob-function): Declare.
16475 * eshell/esh-util.el: Require cl-lib.
16476 (eshell-read-hosts-file): Avoid add-to-list.
16477 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
16478 `err'.
16479 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
16480 Declare.
16481 (eshell/diff): Remove unused var `err'.
16482 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
16483 `killflag'.
16484 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
16485 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
16486 first use.
16487 * eshell/em-glob.el (eshell-glob-matches, message-shown):
16488 Move declaration before first use.
16489 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
16490 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
16491 rely on cl-return.
16492
16493 2013-09-12 Glenn Morris <rgm@gnu.org>
16494
16495 * term/ns-win.el (global-map): Remove binding for ispell-next,
16496 deleted 1999-05-29. (Bug#15357)
16497
16498 2013-09-11 Glenn Morris <rgm@gnu.org>
16499
16500 * echistory.el (electric-command-history): Remove call to deleted func.
16501
16502 * play/landmark.el (landmark-mode): Fix typos.
16503
16504 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
16505 Check cvs-sort-ignore-file is bound.
16506
16507 * savehist.el: No need for cl when compiling on Emacs.
16508
16509 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
16510
16511 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
16512 (bug#15338).
16513 (eshell-self-insert-command, eshell-send-invisible):
16514 Remove unused argument.
16515 (eshell-handle-control-codes): Remove unused var `orig'.
16516 Avoid delete-backward-char.
16517
16518 * files.el (set-auto-mode): Simplify a bit further.
16519
16520 2013-09-11 Glenn Morris <rgm@gnu.org>
16521
16522 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
16523 (set-auto-mode): Don't regexp-quote elements.
16524 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
16525 * progmodes/cc-mode.el (interpreter-mode-alist):
16526 * progmodes/ruby-mode.el (interpreter-mode-alist):
16527 Revert previous change.
16528
16529 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
16530
16531 * play/snake.el (snake-mode):
16532 * play/mpuz.el (mpuz-mode):
16533 * play/landmark.el (lm-mode):
16534 * play/blackbox.el (blackbox-mode):
16535 * play/5x5.el (5x5-mode):
16536 * obsolete/options.el (Edit-options-mode):
16537 * net/quickurl.el (quickurl-list-mode):
16538 * net/newst-treeview.el (newsticker-treeview-mode):
16539 * mail/rmailsum.el (rmail-summary-mode):
16540 * mail/mspools.el (mspools-mode):
16541 * locate.el (locate-mode):
16542 * ibuffer.el (ibuffer-mode):
16543 * emulation/ws-mode.el (wordstar-mode):
16544 * emacs-lisp/debug.el (debugger-mode):
16545 * array.el (array-mode):
16546 * net/eudc.el (eudc-mode): Use define-derived-mode.
16547 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
16548 Move initialization into declaration.
16549 (mairix-searches-mode): Use define-derived-mode.
16550 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
16551 (eudc-edit-hotlist): Use dolist.
16552 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
16553 (Man-mode): Use define-derived-mode.
16554 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
16555 (Info-edit-mode): Use define-derived-mode.
16556 (Info-cease-edit): Use Info-mode.
16557 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
16558 into declaration.
16559 (eshell-mode): Use define-derived-mode.
16560 * chistory.el (command-history-mode-map): Rename from
16561 command-history-map.
16562 (command-history-mode): Use define-derived-mode.
16563 (Command-history-setup): Remove function.
16564 * calc/calc.el (calc-trail-mode-map): New var.
16565 (calc-trail-mode): Use define-derived-mode.
16566 (calc-trail-buffer): Set calc-main-buffer manually.
16567 * bookmark.el (bookmark-insert-annotation): New function.
16568 (bookmark-edit-annotation): Use it.
16569 (bookmark-edit-annotation-mode): Make it a proper major mode.
16570 (bookmark-send-edited-annotation): Use derived-mode-p.
16571 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
16572 closer to its ideal place. Use \' to match EOS.
16573
16574 * profiler.el (profiler-calltree-find): Use function-equal.
16575
16576 2013-09-10 Glenn Morris <rgm@gnu.org>
16577
16578 * files.el (interpreter-mode-alist): Convert to regexps.
16579 (set-auto-mode): Adapt for this. (Bug#15306)
16580 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
16581 Comment out unused variable.
16582 * progmodes/cc-mode.el (interpreter-mode-alist):
16583 * progmodes/python.el (interpreter-mode-alist):
16584 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
16585 * progmodes/sh-script.el (sh-set-shell):
16586 No longer use interpreter-mode-alist to get list of shells.
16587
16588 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
16589
16590 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
16591
16592 * simple.el: Use set-temporary-overlay-map for universal-argument.
16593 (universal-argument-map): Don't use default-bindings (bug#15317).
16594 Bind switch-frame explicitly. Replace universal-argument-minus with
16595 a conditional binding.
16596 (universal-argument-num-events, saved-overriding-map): Remove.
16597 (restore-overriding-map): Remove.
16598 (universal-argument--mode): Rename from save&set-overriding-map,
16599 and rewrite.
16600 (universal-argument, universal-argument-more, negative-argument)
16601 (digit-argument): Adjust accordingly.
16602 (universal-argument-minus): Remove.
16603 (universal-argument-other-key): Remove.
16604
16605 * subr.el (with-demoted-errors): Add `format' argument.
16606
16607 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
16608
16609 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
16610 `tramp-cleanup-connection'.
16611
16612 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
16613 parameters KEEP-DEBUG and KEEP-PASSWORD.
16614
16615 * net/tramp.el (tramp-file-name-handler):
16616 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
16617 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
16618 (tramp-maybe-open-connection):
16619 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
16620 Use `tramp-cleanup-connection'.
16621
16622 * net/tramp-sh.el (tramp-maybe-open-connection):
16623 Catch 'uname-changed inside the progress reporter.
16624
16625 2013-09-10 Glenn Morris <rgm@gnu.org>
16626
16627 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
16628
16629 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
16630 returns "alternate access method" in mode (eg "-rw-r--r--.").
16631
16632 2013-09-08 Glenn Morris <rgm@gnu.org>
16633
16634 * saveplace.el (load-save-place-alist-from-file):
16635 Demote errors. (Bug#15305)
16636
16637 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
16638
16639 Improve compatibility with older Emacsen, and XEmacs.
16640
16641 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
16642 only if it is bound. It isn't for XEmacs.
16643 (with-tramp-progress-reporter): Do not let-bind `result'.
16644 This yields to scoping errors in XEmacs.
16645 (tramp-handle-make-auto-save-file-name): New function, moved from
16646 tramp-sh.el.
16647
16648 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
16649 for `make-auto-save-file-name'.
16650 (tramp-adb--gnu-switches-to-ash):
16651 Use `tramp-compat-replace-regexp-in-string'.
16652
16653 * net/tramp-cache.el (tramp-cache-print): Call
16654 `substring-no-properties' only if it is bound. It isn't for XEmacs.
16655
16656 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
16657 bound. It isn't for XEmacs.
16658
16659 * net/tramp-compat.el (tramp-compat-copy-file):
16660 Catch `wrong-number-of-arguments' error.
16661 (tramp-compat-replace-regexp-in-string): New defun.
16662
16663 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
16664 for `make-auto-save-file-name'.
16665 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
16666 `copy-file'.
16667 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
16668 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
16669 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
16670
16671 * net/tramp-gw.el (tramp-gw-open-network-stream):
16672 Use `tramp-compat-replace-regexp-in-string'.
16673
16674 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
16675 Call `tramp-handle-make-auto-save-file-name'.
16676 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
16677 (tramp-sh-file-gvfs-monitor-dir-process-filter)
16678 (tramp-sh-file-inotifywait-process-filter):
16679 Use `tramp-compat-replace-regexp-in-string'.
16680 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
16681
16682 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
16683 for `make-auto-save-file-name'.
16684 (tramp-smb-handle-copy-directory):
16685 Call `tramp-compat-replace-regexp-in-string'.
16686 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
16687 (tramp-smb-handle-copy-file): Improve error message.
16688 (tramp-smb-handle-rename-file): Rename directly only in case
16689 `newname' does not exist yet. This is a restriction of smbclient.
16690 (tramp-smb-maybe-open-connection): Rerun the function only when
16691 `auth-sources' is non-nil.
16692
16693 2013-09-08 Kenichi Handa <handa@gnu.org>
16694
16695 * international/characters.el: Set category "^" (Combining) for
16696 more characters.
16697
16698 2013-09-07 Alan Mackenzie <acm@muc.de>
16699
16700 Correctly fontify Java class constructors.
16701 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
16702 in Java Mode.
16703 (c-recognize-typeless-decls): Set the Java value to t.
16704 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
16705 While handling a "(", add a check for, effectively, Java, and handle a
16706 "typeless" declaration there.
16707
16708 2013-09-07 Roland Winkler <winkler@gnu.org>
16709
16710 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
16711 field subtitle for entry type book.
16712
16713 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16714
16715 * minibuffer.el: Make minibuffer-complete call completion-in-region
16716 rather than other way around.
16717 (completion--some, completion-pcm--find-all-completions):
16718 Don't delay signals when debugging.
16719 (minibuffer-completion-contents): Beware fields within the
16720 minibuffer contents.
16721 (completion-all-sorted-completions): Use defvar-local.
16722 (completion--do-completion, completion--cache-all-sorted-completions)
16723 (completion-all-sorted-completions, minibuffer-force-complete):
16724 Add args `beg' and `end'.
16725 (completion--in-region-1): New fun, extracted from minibuffer-complete.
16726 (minibuffer-complete): Use completion-in-region.
16727 (completion-complete-and-exit): New fun, extracted from
16728 minibuffer-complete-and-exit.
16729 (minibuffer-complete-and-exit): Use it.
16730 (completion--complete-and-exit): Rename from
16731 minibuffer--complete-and-exit.
16732 (completion-in-region--single-word): New function, extracted from
16733 minibuffer-complete-word.
16734 (minibuffer-complete-word): Use it.
16735 (display-completion-list): Make `common-substring' argument obsolete.
16736 (completion--in-region): Call completion--in-region-1 instead of
16737 minibuffer-complete.
16738 (completion-help-at-point): Pass boundaries to
16739 minibuffer-completion-help as args rather than via an overlay.
16740 (completion-pcm--string->pattern): Use `any-delim'.
16741 (completion-pcm--optimize-pattern): New function.
16742 (completion-pcm--pattern->regex): Handle `any-delim'.
16743 * icomplete.el (icomplete-forward-completions)
16744 (icomplete-backward-completions, icomplete-completions):
16745 Adjust calls to completion-all-sorted-completions and
16746 completion--cache-all-sorted-completions.
16747 (icomplete-with-completion-tables): Default to t.
16748 * emacs-lisp/crm.el (crm--current-element): Rename from
16749 crm--select-current-element. Don't put an overlay but return the
16750 boundaries instead.
16751 (crm--completion-command): Take two new args to bind to the boundaries.
16752 (crm-completion-help): Adjust accordingly.
16753 (crm-complete): Use completion-in-region.
16754 (crm-complete-word): Use completion-in-region--single-word.
16755 (crm-complete-and-exit): Use completion-complete-and-exit.
16756
16757 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16758
16759 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
16760 than dynamically.
16761
16762 2013-09-06 Juri Linkov <juri@jurta.org>
16763
16764 * info.el (Info-display-images-node): When image file doesn't exist
16765 display text version of the image if it's provided in the Info file.
16766 Otherwise, display the location of missing image from SRC attribute.
16767 Add help-echo text property from ALT attribute. (Bug#15279)
16768
16769 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16770
16771 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
16772 (edit-abbrevs-mode): Use define-derived-mode.
16773
16774 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
16775 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
16776 that it's defined.
16777 (epa-key-list-mode, epa-key-mode, epa-info-mode):
16778 Use define-derived-mode.
16779
16780 * epg.el (epg-start-encrypt): Minor CSE simplification.
16781
16782 2013-09-06 William Xu <william.xwl@gmail.com>
16783
16784 * arc-mode.el: Add support for 7za (bug#15264).
16785 (archive-7z-program): New var.
16786 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
16787 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
16788 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
16789
16790 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
16791
16792 Remove URL syntax.
16793
16794 * net/tramp.el (tramp-syntax, tramp-prefix-format)
16795 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
16796 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
16797 (tramp-postfix-host-format, tramp-file-name-regexp)
16798 (tramp-completion-file-name-regexp)
16799 (tramp-completion-dissect-file-name)
16800 (tramp-handle-substitute-in-file-name): Remove 'url case.
16801 (tramp-file-name-regexp-url)
16802 (tramp-completion-file-name-regexp-url): Remove constants.
16803
16804 2013-09-06 Glenn Morris <rgm@gnu.org>
16805
16806 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
16807
16808 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
16809
16810 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
16811 keywords" below "here-doc beginnings" (Bug#15270).
16812
16813 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
16814
16815 * subr.el (pop): Use `car-safe'.
16816 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
16817 to detect unused `pop' return value.
16818
16819 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
16820 var `block-regexp'.
16821 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
16822 (python-fill-string): Remove unused var `marker'.
16823 (python-skeleton-add-menu-items): Remove unused var `items'.
16824
16825 * international/mule-cmds.el: Require CL.
16826 (find-coding-systems-for-charsets): Avoid add-to-list.
16827 (sanitize-coding-system-list): New function, extracted from
16828 select-safe-coding-system-interactively.
16829 (select-safe-coding-system-interactively): Use it.
16830 (read-input-method-name): Accept symbols for `default'.
16831
16832 * emacs-lisp/advice.el (defadvice): Add indent rule.
16833
16834 2013-09-05 Daniel Hackney <dan@haxney.org>
16835
16836 * dired-x.el:
16837 * net/ange-ftp.el:
16838 * net/browse-url.el:
16839 * net/dbus.el:
16840 * net/eudc.el:
16841 * net/eudcb-ldap.el:
16842 * net/eww.el:
16843 * net/imap.el:
16844 * printing.el:
16845 * vc/ediff-diff.el:
16846 * vc/ediff-init.el:
16847 * vc/ediff-merg.el:
16848 * vc/ediff-mult.el:
16849 * vc/ediff-util.el:
16850 * vc/ediff-wind.el:
16851 * vc/ediff.el:
16852 * vc/emerge.el:
16853 * vc/pcvs.el:
16854 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
16855 byte compiler. Remove some unused let-bound variables.
16856
16857 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
16858
16859 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
16860 a "ref-cell", since it gets better optimized (bug#14883).
16861
16862 2013-09-05 Glenn Morris <rgm@gnu.org>
16863
16864 * progmodes/cc-awk.el (c-forward-sws): Declare.
16865
16866 2013-09-04 Glenn Morris <rgm@gnu.org>
16867
16868 * generic-x.el [rul-generic-mode]: Require cc-mode.
16869 (c++-mode-syntax-table): Declare.
16870 (rul-generic-mode-syntax-table): Init in the defvar.
16871
16872 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
16873
16874 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
16875 (vc-do-command, vc-set-async-update):
16876 * vc/vc-mtn.el (vc-mtn-dir-status):
16877 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
16878 (vc-hg-pull, vc-hg-merge-branch):
16879 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
16880 (vc-git-merge-branch):
16881 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
16882 (vc-cvs-dir-status-files):
16883 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
16884 (vc-bzr-dir-status-files):
16885 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
16886 * vc/vc-annotate.el: Use lexical-binding.
16887 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
16888 (vc-sentinel-movepoint): Declare.
16889 (vc-annotate): Don't use `goto-line'.
16890 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
16891 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
16892 (vc-sentinel-movepoint): Declare.
16893 * vc/vc-svn.el: Use lexical-binding.
16894 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
16895 * vc/vc-sccs.el:
16896 * vc/vc-rcs.el: Use lexical-binding.
16897
16898 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
16899 `deleted'. Don't drop errors silently.
16900
16901 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
16902
16903 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
16904
16905 * vc/vc.el (vc-ignore): Rewrite.
16906 (vc-default-ignore): New function.
16907 (vc-default-ignore-completion-table): Use find-ignore-file.
16908
16909 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
16910 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
16911 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
16912 Remove. Most code moved to vc.el.
16913
16914 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
16915
16916 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
16917 * net/tramp-smb.el (tramp-smb-get-file-entries):
16918 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
16919 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
16920
16921 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
16922 Update call to it.
16923 (eww-change-select): Remove unused var `properties'.
16924 (eww-make-unique-file-name): Remove unused var `base'.
16925
16926 * finder.el (finder-compile-keywords): Don't mess with windows.
16927
16928 * calculator.el (calculator-funcall): Fix typo in last change.
16929
16930 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
16931
16932 * emacs-lisp/package.el (package-activate-1): Don't let a missing
16933 <pkg>-autoloads.el file stop us.
16934
16935 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
16936 warnings, and factor out common code.
16937
16938 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
16939
16940 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
16941 two-character operators and whether the character preceding them
16942 changes their meaning (Bug#15208).
16943
16944 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
16945
16946 Format code sent to Python shell for robustness.
16947 * progmodes/python.el (python-shell-buffer-substring):
16948 New function.
16949 (python-shell-send-region, python-shell-send-buffer): Use it.
16950
16951 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
16952
16953 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
16954 * net/tramp.el (tramp-user-error): ... here.
16955 (tramp-find-method, tramp-check-proper-host)
16956 (tramp-dissect-file-name, tramp-debug-message)
16957 (tramp-handle-shell-command):
16958 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16959 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
16960
16961 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
16962
16963 2013-09-02 Martin Rudalics <rudalics@gmx.at>
16964
16965 * avoid.el (mouse-avoidance-point-position)
16966 (mouse-avoidance-too-close-p): Handle case where posn-at-point
16967 returns nil.
16968
16969 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
16970
16971 * progmodes/python.el (python-shell-completion-get-completions):
16972 Drop use of deleted `comint-last-prompt-overlay'.
16973 (python-nav-if-name-main): New command.
16974
16975 2013-09-01 Glenn Morris <rgm@gnu.org>
16976
16977 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
16978 Avoid leading space in $wins. Otherwise the sed command used by
16979 eg compile-main ends up containing "/*.el". (Bug#15170)
16980
16981 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
16982
16983 2013-08-30 Glenn Morris <rgm@gnu.org>
16984
16985 * emacs-lisp/bytecomp.el (byte-recompile-directory):
16986 Fix is-this-a-directory logic. (Bug#15220)
16987
16988 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
16989
16990 * textmodes/css-mode.el: Use SMIE.
16991 (css-smie-grammar): New var.
16992 (css-smie--forward-token, css-smie--backward-token)
16993 (css-smie-rules): New functions.
16994 (css-mode): Use them.
16995 (css-navigation-syntax-table): Remove var.
16996 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
16997 (css-indent-calculate, css-indent-line): Remove functions.
16998
16999 Misc changes to reduce use of `(lambda...); and other cleanups.
17000 * cus-edit.el: Use lexical-binding.
17001 (customize-push-and-save, customize-apropos)
17002 (custom-buffer-create-internal): Use closures.
17003 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
17004 * progmodes/ada-xref.el: Use setq.
17005 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
17006 * dframe.el: Use lexical-binding.
17007 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
17008 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
17009 * descr-text.el: Use lexical-binding.
17010 (describe-text-widget, describe-text-sexp, describe-property-list):
17011 Use closures.
17012 * comint.el (comint-history-isearch-push-state): Use a closure.
17013 * calculator.el: Use lexical-binding.
17014 (calculator-number-to-string): Make it work with lexical-binding.
17015 (calculator-funcall): Same and use cl-letf.
17016
17017 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
17018 (lisp--company-doc-string, lisp--company-location): New functions.
17019 (lisp-completion-at-point): Use them to improve Company support.
17020
17021 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
17022 params of lambda expressions.
17023 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
17024 (ruby-smie--opening-pipe-p): New function.
17025 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
17026 symbols and matched |...| for formal params.
17027 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
17028 from being treated as hanging. Handle "rescue".
17029
17030 2013-08-29 Glenn Morris <rgm@gnu.org>
17031
17032 * progmodes/cc-engine.el (c-pull-open-brace):
17033 Move definition before use.
17034
17035 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
17036
17037 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
17038 are immutable. Don't use `unsafe' any more.
17039 (cl--defsubst-expand): Don't substitute at the same time as keeping
17040 a residual unused let-binding. Don't use `unsafe' any more.
17041
17042 2013-08-29 Glenn Morris <rgm@gnu.org>
17043
17044 * calendar/cal-china.el (calendar-chinese-year-cache):
17045 Recenter on 2015.
17046
17047 * nxml/nxml-util.el (nxml-debug-clear-inside):
17048 Use cl-loop rather than loop.
17049
17050 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
17051
17052 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
17053
17054 2013-08-28 Glenn Morris <rgm@gnu.org>
17055
17056 * progmodes/antlr-mode.el: No need to require cc-mode twice.
17057
17058 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
17059
17060 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
17061
17062 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
17063
17064 * simple.el (repeat-complex-command--called-interactively-skip):
17065 New function.
17066 (repeat-complex-command): Use it (bug#14136).
17067
17068 * progmodes/cc-mode.el: Minor cleanup of var declarations.
17069 (c-define-abbrev-table): Add `doc' argument.
17070 (c-mode-abbrev-table, c++-mode-abbrev-table)
17071 (objc-mode-abbrev-table, java-mode-abbrev-table)
17072 (idl-mode-abbrev-table, pike-mode-abbrev-table)
17073 (awk-mode-abbrev-table): Use it.
17074 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
17075 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
17076 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
17077 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
17078 Move initialization into the declaration; and remove any
17079 autoload cookie.
17080
17081 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
17082 and dynamic let binding.
17083
17084 * vc/smerge-mode.el: Remove redundant :group args.
17085
17086 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
17087 to load-path.
17088
17089 2013-08-28 Juri Linkov <juri@jurta.org>
17090
17091 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
17092 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
17093 (isearch-other-meta-char): Handle an undefined shifted printing
17094 character by downshifting it. (Bug#15200)
17095
17096 2013-08-28 Juri Linkov <juri@jurta.org>
17097
17098 * isearch.el (isearch-search): Change regexp error message for
17099 non-regexp searches. (Bug#15166)
17100
17101 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
17102
17103 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
17104 for portability to hosts where /bin/sh has problems.
17105
17106 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
17107
17108 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
17109
17110 2013-08-27 Juri Linkov <juri@jurta.org>
17111
17112 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
17113 in the keyboard macro. (Bug#15126)
17114
17115 2013-08-27 Juri Linkov <juri@jurta.org>
17116
17117 * isearch.el (isearch-quote-char): Comment out converting unibyte
17118 to multibyte, thus syncing with its `quoted-insert' counterpart.
17119 (Bug#15166)
17120
17121 2013-08-27 Martin Rudalics <rudalics@gmx.at>
17122
17123 * window.el (display-buffer-use-some-window): Add missing
17124 argument in call of get-largest-window (Bug#15185).
17125 Reported by Stephen Leake.
17126
17127 2013-08-27 Glenn Morris <rgm@gnu.org>
17128
17129 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
17130
17131 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
17132
17133 * progmodes/python.el (python-font-lock-keywords): Don't return nil
17134 from a matcher-function unless there's no more matches (bug#15161).
17135
17136 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
17137
17138 * minibuffer.el: Revert change from 2013-08-20.
17139
17140 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
17141 with text property `tramp-default', if appropriate.
17142 (tramp-check-proper-host): New defun.
17143 (tramp-dissect-file-name): Do not check hostname. Revert change
17144 of 2013-03-18.
17145 (tramp-backtrace): Make VEC-OR-PROC optional.
17146
17147 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
17148 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
17149 * net/tramp-sh.el (tramp-maybe-open-connection):
17150 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
17151 Apply `tramp-check-proper-host'.
17152
17153 2013-08-26 Tassilo Horn <tsdh@gnu.org>
17154
17155 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
17156 lambda expression in order to have `describe-variable' display it.
17157
17158 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
17159
17160 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
17161 BUF can be optional. (Bug#15186)
17162
17163 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
17164
17165 * progmodes/flymake.el (flymake-get-real-file-name-function):
17166 Fix broken customization. (Bug#15184)
17167
17168 2013-08-25 Alan Mackenzie <acm@muc.de>
17169
17170 Improve indentation of bracelists defined by macros (without "=").
17171
17172 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
17173 expansion begins with "{", regard it as bracelist when it doesn't
17174 contain a ";".
17175
17176 Parse C++ inher-intro when there's a template split over 2 lines.
17177
17178 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
17179 rigorously the search for "class" etc. followed by ":".
17180
17181 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
17182 random languages a regexp which never matches rather than nil.
17183
17184 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
17185
17186 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
17187 (c-awk-regexp-one-line-possibly-open-char-list-re)
17188 (c-awk-one-line-possibly-open-regexp-re)
17189 (c-awk-one-line-non-syn-ws*-re): Remove.
17190 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
17191 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
17192 (c-awk-space*-unclosed-regexp-/-re): New constants.
17193 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
17194 aren't regexp delimiters.
17195
17196 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
17197 handling for a rare situation in AWK Mode involving unterminated
17198 strings/regexps.
17199
17200 2013-08-23 Glenn Morris <rgm@gnu.org>
17201
17202 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
17203
17204 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
17205
17206 * files.el (create-file-buffer): If the result would begin with
17207 spaces, prepend a "|" instead of removing them. (Bug#15162)
17208
17209 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17210
17211 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
17212 text-properties (bug#15155).
17213
17214 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
17215 exist any more.
17216 (calc-keypad-redraw): Remove unused var `pad'.
17217 (calc-keypad-press): Remove unused var `menu'.
17218
17219 2013-08-23 Martin Rudalics <rudalics@gmx.at>
17220
17221 * window.el (display-buffer-pop-up-frame):
17222 Call pop-up-frame-function with BUFFER current so `make-frame' will
17223 use it as the new frame's buffer (Bug#15133).
17224
17225 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
17226
17227 * calendar/timeclock.el: Minor cleanups.
17228 (timeclock-ask-before-exiting, timeclock-use-display-time):
17229 Use `symbol'.
17230 (timeclock-modeline-display): Define as alias before the
17231 actual definition.
17232 (timeclock-mode-line-display): Use define-minor-mode.
17233 (timeclock-day-list-template): Make it a function, add an argument.
17234 (timeclock-day-list-required, timeclock-day-list-length)
17235 (timeclock-day-list-debt, timeclock-day-list-span)
17236 (timeclock-day-list-break): Adjust calls accordingly.
17237
17238 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
17239
17240 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
17241 Use read--expression so that completion works again.
17242
17243 2013-08-21 Sam Steingold <sds@gnu.org>
17244
17245 Add rudimentary inferior shell interaction
17246 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
17247 (sh-set-shell): Reset it.
17248 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
17249 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
17250
17251 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
17252
17253 * align.el: Use lexical-binding.
17254 (align-region): Simplify accordingly.
17255
17256 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
17257
17258 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
17259
17260 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
17261 `non-essential' up.
17262
17263 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
17264
17265 * net/tramp.el:
17266 * net/tramp-adb.el:
17267 * net/tramp-cmds.el:
17268 * net/tramp-ftp.el:
17269 * net/tramp-gvfs.el:
17270 * net/tramp-gw.el:
17271 * net/tramp-sh.el: Don't wrap external variable declarations by
17272 `eval-when-compile'.
17273
17274 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17275
17276 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
17277 now that Emacs supports ImageMagick animations.
17278
17279 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
17280
17281 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
17282 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
17283
17284 2013-08-16 Martin Rudalics <rudalics@gmx.at>
17285
17286 * window.el (mouse-autoselect-window-select): Do autoselect when
17287 mouse pointer is on margin.
17288
17289 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
17290
17291 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
17292
17293 2013-08-16 Glenn Morris <rgm@gnu.org>
17294
17295 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
17296 Handle "Remote Directory" response of some clients. (Bug#15058)
17297
17298 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
17299 Tweak warning. (Bug#14926)
17300
17301 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
17302 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
17303
17304 * image-mode.el (image-mode-map): Add menu items to reverse,
17305 increase, decrease, reset animation speed.
17306 (image--set-speed, image-increase-speed, image-decrease-speed)
17307 (image-reverse-speed, image-reset-speed): New functions.
17308 (image-mode-map): Add bindings for speed commands.
17309
17310 * image.el (image-animate-get-speed, image-animate-set-speed):
17311 New functions.
17312 (image-animate-timeout): Respect image :speed property.
17313
17314 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
17315
17316 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
17317 previous line (bug#15101).
17318 (debugger-eval-expression, debugger-record-expression):
17319 Use read--expression (bug#15102).
17320
17321 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
17322
17323 Remove byte compiler warnings, visible when compiling with
17324 `byte-compile-force-lexical-warnings' set to t.
17325
17326 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
17327 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
17328 (tramp-handle-unhandled-file-name-directory)
17329 (tramp-handle-file-notify-add-watch, tramp-action-login)
17330 (tramp-action-succeed, tramp-action-permission-denied)
17331 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
17332 arguments with "_".
17333
17334 * net/tramp-adb.el (tramp-adb-parse-device-names)
17335 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
17336 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
17337 (tramp-adb-handle-file-truename): Remove unused arguments.
17338
17339 * net/tramp-cache.el (tramp-flush-directory-property)
17340 (tramp-flush-connection-property, tramp-list-connections)
17341 (tramp-parse-connection-properties): Prefix unused arguments with "_".
17342
17343 * net/tramp-compat.el (tramp-compat-make-temp-file):
17344 Rename FILENAME to F.
17345
17346 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
17347 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
17348 (tramp-zeroconf-parse-workstation-device-names)
17349 (tramp-zeroconf-parse-webdav-device-names)
17350 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
17351
17352 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
17353 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
17354
17355 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
17356 arguments.
17357 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
17358 (tramp-sh-handle-insert-file-contents-literally)
17359 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
17360 with "_".
17361 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
17362 Remove unused variables.
17363
17364 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
17365 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
17366 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
17367
17368 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
17369 Make them a defconst.
17370 (tramp-uuencode-region): Remove unused variable.
17371
17372 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
17373
17374 * frameset.el (frameset--prop-setter): New function.
17375 (frameset-prop): Add gv-setter declaration.
17376 (frameset-filter-minibuffer): Deal with the case that the minibuffer
17377 parameter was already set in FILTERED. Doc fix.
17378 (frameset--record-minibuffer-relationships): Allow saving a
17379 minibufferless frame without its corresponding minibuffer frame.
17380 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
17381 frame, if the frame id matches.
17382 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
17383 frames before orphaned ones.
17384 (frameset-restore): Warn about orphaned windows, instead of error out.
17385
17386 2013-08-14 Martin Rudalics <rudalics@gmx.at>
17387
17388 * window.el (window-make-atom): Don't overwrite parameter
17389 already present.
17390 (display-buffer-in-atom-window): Handle special case where we
17391 split an already atomic window.
17392 (window--major-non-side-window, display-buffer-in-side-window)
17393 (window--side-check): Ignore minibuffer window when walking
17394 window tree.
17395 (window-deletable-p): Return 'frame only if no other frame uses
17396 our minibuffer window.
17397 (record-window-buffer): Run buffer-list-update-hook.
17398 (split-window): Make sure window--check-frame won't destroy an
17399 existing atomic window in case the new window gets nested
17400 inside.
17401 (display-buffer-at-bottom): Ignore minibuffer window when
17402 walking window tree. Don't split a side window.
17403 (pop-to-buffer): Don't set-buffer here, the select-window call
17404 should do that.
17405 (mouse-autoselect-window-select): Autoselect only if we are in the
17406 text portion of the window.
17407
17408 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17409
17410 * net/shr.el (shr-parse-image-data): New function to grab both the
17411 data itself and the Content-Type.
17412 (shr-put-image): Use it.
17413
17414 * net/eww.el (eww-display-image): Ditto.
17415
17416 * image.el (image-content-type-suffixes): New variable.
17417
17418 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
17419
17420 * progmodes/python.el (python-imenu--build-tree)
17421 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
17422
17423 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
17424
17425 * simple.el (backward-word): Mention the optional argument.
17426
17427 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
17428
17429 * frameset.el (frameset--make): Rename constructor from make-frameset.
17430 (frameset-p, frameset-valid-p): Don't autoload.
17431 (frameset-valid-p): Use normal accessors.
17432
17433 2013-08-13 Glenn Morris <rgm@gnu.org>
17434
17435 * progmodes/compile.el (compile-command): Tweak example in doc.
17436 * obsolete/scribe.el (scribe-mode):
17437 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
17438
17439 * mail/feedmail.el (feedmail-confirm-outgoing)
17440 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
17441
17442 * cus-start.el (truncate-partial-width-windows): Fix type.
17443
17444 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
17445
17446 * net/shr.el (shr-table-horizontal-line): Fix custom type.
17447
17448 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
17449
17450 * emacs-lisp/timer.el (timer--time-setter): New function.
17451 (timer--time): Use it as gv-setter.
17452
17453 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
17454 setter is not a symbol.
17455
17456 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
17457
17458 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
17459 if sending fails. This makes debugging easier.
17460
17461 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
17462
17463 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
17464 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
17465 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
17466
17467 2013-08-12 Eli Zaretskii <eliz@gnu.org>
17468
17469 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
17470
17471 2013-08-12 Glenn Morris <rgm@gnu.org>
17472
17473 * format.el (format-annotate-function):
17474 Handle read-only text properties in the source. (Bug#14887)
17475
17476 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17477
17478 * net/eww.el (eww-display-html): Ignore coding system errors.
17479 One web site uses "utf-8lias" as the coding system.
17480
17481 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
17482
17483 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
17484
17485 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
17486
17487 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
17488 (tutorial--detailed-help): Remove unused local variables.
17489 (tutorial--save-tutorial-to): Use ignore-errors.
17490 (help-with-tutorial): Use looking-at-p.
17491
17492 * view.el (view-buffer-other-window, view-buffer-other-frame):
17493 Mark unused arguments.
17494
17495 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
17496 (woman-select-symbol-fonts, woman, woman-find-file)
17497 (woman-insert-file-contents, woman-non-underline-faces):
17498 Use string-match-p.
17499 (woman1-unquote): Move declaration.
17500
17501 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
17502 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
17503 argument. Remove unused local variable.
17504 (xml-parse-elem-type): Use string-match-p.
17505 (xml-substitute-numeric-entities): Use ignore-errors.
17506
17507 * calculator.el (calculator): Mark unused argument.
17508 (calculator-paste, calculator-quit, calculator-integer-p):
17509 Use ignore-errors.
17510 (calculator-string-to-number, calculator-decimal, calculator-exp)
17511 (calculator-op-or-exp): Use string-match-p.
17512
17513 * dired.el (dired-buffer-more-recently-used-p): Declare.
17514 (dired-insert-set-properties, dired-insert-old-subdirs):
17515 Use ignore-errors.
17516
17517 * dired-aux.el (dired-compress): Use ignore-errors.
17518 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
17519 (dired-do-async-shell-command, dired-do-shell-command)
17520 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
17521 (dired-insert-subdir-validate): Use string-match-p.
17522 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
17523 (dired-add-entry): Use string-match-p, looking-at-p.
17524 (dired-insert-subdir-newpos): Remove unused local variable.
17525
17526 * filenotify.el (file-notify-callback): Remove unused local variable.
17527
17528 * filesets.el (filesets-error): Mark unused argument.
17529 (filesets-which-command-p, filesets-filter-dir-names)
17530 (filesets-directory-files, filesets-get-external-viewer)
17531 (filesets-ingroup-get-data): Use string-match-p.
17532
17533 * find-file.el (ff-other-file-name, ff-other-file-name)
17534 (ff-find-the-other-file, ff-cc-hh-converter):
17535 Remove unused local variables.
17536 (ff-get-file-name): Use string-match-p.
17537 (ff-all-dirs-under): Use ignore-errors.
17538
17539 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
17540 (follow-select-if-visible): Remove unused local variable.
17541
17542 * forms.el (read-file-filter): Move declaration.
17543 (forms--make-format, forms--make-parser, forms-insert-record):
17544 Quote function with #'.
17545 (forms--update): Use string-match-p. Quote function with #'.
17546
17547 * help-mode.el (help-dir-local-var-def): Mark unused argument.
17548 (help-make-xrefs): Use looking-at-p.
17549 (help-xref-on-pp): Use looking-at-p, ignore-errors.
17550
17551 * ibuffer.el (ibuffer-ext-visible-p): Declare.
17552 (ibuffer-confirm-operation-on): Use string-match-p.
17553
17554 * msb.el (msb-item-handler, msb-dired-item-handler):
17555 Mark unused arguments.
17556
17557 * ses.el (ses-decode-cell-symbol)
17558 (ses-kill-override): Remove unused local variable.
17559 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
17560 (ses-load): Use ignore-errors, looking-at-p.
17561 (ses-jump-safe): Use ignore-errors.
17562 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
17563
17564 * tabify.el (untabify, tabify): Mark unused arguments.
17565
17566 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
17567 Mark unused argument.
17568 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
17569 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
17570
17571 * emacs-lisp/timer.el (timer--time): Define setter with
17572 gv-define-setter to avoid deprecation warning.
17573
17574 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
17575 (*record-cmpl-statistics-p*): Remove (was commented out).
17576 (cmpl-statistics-block): Remove (body was commented out).
17577 All callers changed.
17578 (add-completions-from-buffer, load-completions-from-file):
17579 Remove unused variables.
17580
17581 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
17582
17583 * filecache.el (file-cache-delete-file-list):
17584 Print message only when told so.
17585 (file-cache-files-matching): Use #' in mapconcat argument.
17586
17587 * ffap.el (ffap-url-at-point): Fix reference to variable
17588 thing-at-point-default-mail-uri-scheme.
17589
17590 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
17591
17592 * subr.el (define-error): New function.
17593 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
17594 error-file-not-found and define with define-error.
17595 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
17596 and define with define-error.
17597 * userlock.el (file-locked, file-supersession):
17598 * simple.el (mark-inactive):
17599 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
17600 * progmodes/ada-mode.el (ada-mode-errors):
17601 * play/life.el (life-extinct):
17602 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
17603 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
17604 * nxml/rng-util.el (rng-error):
17605 * nxml/rng-uri.el (rng-uri-error):
17606 * nxml/rng-match.el (rng-compile-error):
17607 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
17608 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
17609 * nxml/nxml-rap.el (nxml-scan-error):
17610 * nxml/nxml-outln.el (nxml-outline-error):
17611 * net/soap-client.el (soap-error):
17612 * net/gnutls.el (gnutls-error):
17613 * net/ange-ftp.el (ftp-error):
17614 * mpc.el (mpc-proc-error):
17615 * json.el (json-error, json-readtable-error, json-unknown-keyword)
17616 (json-number-format, json-string-escape, json-string-format)
17617 (json-key-format, json-object-format):
17618 * jka-compr.el (compression-error):
17619 * international/quail.el (quail-error):
17620 * international/kkc.el (kkc-error):
17621 * emacs-lisp/ert.el (ert-test-failed):
17622 * calc/calc.el (calc-error, inexact-result, math-overflow)
17623 (math-underflow):
17624 * bookmark.el (bookmark-error-no-filename):
17625 * epg.el (epg-error): Define with define-error.
17626
17627 * time.el (display-time-event-handler)
17628 (display-time-next-load-average): Don't call sit-for since it seems
17629 unnecessary (bug#15045).
17630
17631 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
17632 Use #' instead of ' to quote functions.
17633 (checkdoc-output-mode): Use setq-local.
17634 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
17635 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
17636 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
17637 (checkdoc-ispell, checkdoc-ispell-current-buffer)
17638 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
17639 (checkdoc-ispell-message-text, checkdoc-ispell-start)
17640 (checkdoc-ispell-continue, checkdoc-ispell-comments)
17641 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
17642
17643 * ido.el (ido-completion-help): Fix up compiler warning.
17644
17645 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
17646
17647 * frameset.el (frameset-p): Add autoload cookie.
17648 (frameset--jump-to-register): New function, based on code moved from
17649 register.el.
17650 (frameset-to-register): Move from register.el. Adapt to `registerv'.
17651
17652 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
17653 (frameset-restore, frameset-save, frameset-session-filter-alist):
17654 Remove declarations.
17655 (register-alist): Doc fix.
17656 (frameset-to-register): Move to frameset.el.
17657 (jump-to-register, describe-register-1): Remove frameset-specific code.
17658
17659 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
17660
17661 * allout-widgets.el (allout-widgets-pre-command-business)
17662 (allout-widgets-post-command-business)
17663 (allout-widgets-after-change-handler)
17664 (allout-decorate-item-and-context, allout-set-boundary-marker)
17665 (allout-body-modification-handler)
17666 (allout-graphics-modification-handler): Mark ignored arguments.
17667 (allout-widgets-post-command-business)
17668 (allout-widgets-exposure-change-processor)
17669 (allout-widgets-exposure-undo-processor)
17670 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
17671 (allout-parse-item-at-point, allout-decorate-item-guides)
17672 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
17673 * allout.el (epa-passphrase-callback-function): Declare.
17674 (allout-overlay-insert-in-front-handler)
17675 (allout-overlay-interior-modification-handler)
17676 (allout-isearch-end-handler, allout-chart-siblings)
17677 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
17678 (allout-yank-processing, allout-process-exposed)
17679 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
17680 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
17681 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
17682 (lisp-indent-defform): Mark ignored arguments.
17683 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
17684 (calculate-lisp-indent): Remove unused variables.
17685 * international/characters.el (indian-2-column, arabic-2-column)
17686 (tibetan): Mark ignored arguments.
17687 (use-cjk-char-width-table): Mark ignored arguments.
17688 Remove unused variables.
17689 * international/fontset.el (build-default-fontset-data)
17690 (x-compose-font-name, create-fontset-from-fontset-spec):
17691 Mark ignored arguments.
17692 (fontset-plain-name): Remove unused variables.
17693 * international/mule.el (charset-id, charset-bytes, generic-char-p)
17694 (keyboard-coding-system): Mark ignored arguments.
17695 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
17696 * help.el (resize-temp-buffer-window):
17697 * window.el (display-buffer-in-major-side-window)
17698 (display-buffer-in-side-window, display-buffer-in-previous-window):
17699 Remove unused variables.
17700 * isearch.el (isearch-forward-symbol):
17701 * version.el (emacs-bzr-version-bzr):
17702 * international/mule-cmds.el (current-language-environment):
17703 * term/common-win.el (x-handle-iconic, x-handle-geometry)
17704 (x-handle-display):
17705 * term/pc-win.el (x-list-fonts, x-display-planes)
17706 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
17707 (x-server-version, x-display-screens, x-display-mm-height)
17708 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
17709 (x-selection-owner-p, x-own-selection-internal)
17710 (x-disown-selection-internal, x-get-selection-internal)
17711 (msdos-initialize-window-system):
17712 * term/tty-colors.el (tty-color-alist, tty-color-clear):
17713 * term/x-win.el (x-handle-no-bitmap-icon):
17714 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
17715 (vc-default-find-file-hook, vc-default-extra-menu):
17716 Mark ignored arguments.
17717
17718 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
17719
17720 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
17721 break-condition in the context of the debugged code (bug#12685).
17722
17723 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
17724
17725 * comint.el:
17726 Do not use an overlay to highlight the last prompt. (Bug#14744)
17727 (comint-mode): Make comint-last-prompt buffer local.
17728 (comint-last-prompt): New variable.
17729 (comint-last-prompt-overlay): Remove. Superseded by
17730 comint-last-prompt.
17731 (comint-snapshot-last-prompt, comint-output-filter):
17732 Use comint-last-prompt.
17733
17734 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
17735
17736 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
17737 (frameset-save): Check validity of the resulting frameset.
17738
17739 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
17740
17741 * ido.el (ido-record-command): Add doc string.
17742
17743 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
17744
17745 * frameset.el (frameset): Do not disable creation of the default
17746 frameset-p predicate. Doc fix.
17747 (frameset-valid-p): New function, copied from the old predicate-p.
17748 Add additional checks.
17749 (frameset-restore): Check with frameset-valid-p.
17750 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
17751 (frameset-name, frameset-description, frameset-properties)
17752 (frameset-states): Add docstring.
17753 (frameset-session-filter-alist, frameset-persistent-filter-alist)
17754 (frameset-filter-alist): Doc fixes.
17755
17756 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
17757
17758 * frameset.el (frameset-p, frameset-prop): Doc fixes.
17759
17760 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
17761
17762 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
17763 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
17764 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
17765 (byte-compile-normal-call): Remove obsolescence check.
17766
17767 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
17768
17769 * frameset.el (frameset-restore): Doc fix.
17770
17771 * register.el (frameset-frame-id, frameset-frame-with-id)
17772 (frameset-p, frameset-restore, frameset-save): Declare.
17773 (register-alist): Document framesets.
17774 (frameset-session-filter-alist): Declare.
17775 (frameset-to-register): New function.
17776 (jump-to-register): Implement jumping to framesets. Doc fix.
17777 (describe-register-1): Describe framesets.
17778
17779 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
17780
17781 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
17782
17783 * desktop.el (desktop-save-frameset): Use new frameset-save args.
17784 Use lexical-binding.
17785
17786 * frameset.el (frameset): Use type vector, not list (incompatible
17787 change). Do not declare a new constructor, use the default one.
17788 Upgrade suggested properties `app', `name' and `desc' to slots `app',
17789 `name' and `description', respectively, and add read-only slot
17790 `timestamp'. Doc fixes.
17791 (frameset-copy, frameset-persistent-filter-alist)
17792 (frameset-filter-alist, frameset-switch-to-gui-p)
17793 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
17794 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
17795 (frameset-filter-iconified, frameset-keep-original-display-p):
17796 Doc fixes.
17797 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
17798 Rename from frameset-filter-(save|restore)-param. All callers changed.
17799 Doc fix.
17800 (frameset-p): Adapt to change to vector and be more thorough.
17801 Change arg name to OBJECT. Doc fix.
17802 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
17803 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
17804 All callers changed.
17805 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
17806 All callers changed.
17807 (frameset--record-minibuffer-relationships): Rename from
17808 frameset--process-minibuffer-frames. All callers changed.
17809 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
17810 Use new default constructor (again). Doc fix.
17811 (frameset--find-frame-if): Rename from `frameset--find-frame'.
17812 All callers changed.
17813 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
17814 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
17815 Doc fix.
17816 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
17817 PARAMETERS and WINDOW-STATE, respectively.
17818 (frameset-restore): Add new keyword argument PREDICATE.
17819 Reset frameset--target-display to nil. Doc fix.
17820
17821 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
17822
17823 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
17824 (bat-mode): Use it.
17825 (bat-mode-syntax-table): Mark \n as end-of-comment.
17826 (bat-font-lock-keywords): Remove comment rule.
17827
17828 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
17829 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
17830
17831 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
17832 (byte-compile-callargs-warn): Use `push'.
17833 (byte-compile-arglist-warn): Ignore higher-order "calls".
17834 (byte-compile-file-form-autoload): Use `pcase'.
17835 (byte-compile-function-form): If quoting a symbol, check that it exists.
17836
17837 2013-08-07 Eli Zaretskii <eliz@gnu.org>
17838
17839 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
17840 and add a few popular commands found in batch files.
17841 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
17842 (dos-mode): Doc fixes.
17843
17844 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
17845
17846 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
17847 (dos-mode): Use setq-local. Add space after "rem".
17848 (dos-mode-syntax-table): Don't use "w" for symbol chars.
17849 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
17850
17851 2013-08-07 Arni Magnusson <arnima@hafro.is>
17852
17853 * progmodes/dos.el: New file.
17854 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
17855 dos-mode.
17856
17857 2013-08-06 Glenn Morris <rgm@gnu.org>
17858
17859 * calendar/calendar.el: Add new faces, and day-header-array.
17860 (calendar-weekday-header, calendar-weekend-header)
17861 (calendar-month-header): New faces.
17862 (calendar-day-header-construct): New function.
17863 (calendar-day-header-width): Also :set calendar-day-header-array.
17864 (calendar-american-month-header, calendar-european-month-header)
17865 (calendar-iso-month-header): Use calendar- faces.
17866 (calendar-generate-month):
17867 Use calendar-day-header-array for day headers; apply faces to them.
17868 (calendar-mode): Check calendar-font-lock-keywords non-nil.
17869 (calendar-abbrev-construct): Add optional maxlen argument.
17870 (calendar-day-name-array): Doc fix.
17871 (calendar-day-name-array, calendar-abbrev-length)
17872 (calendar-day-abbrev-array):
17873 Also :set calendar-day-header-array, and maybe redraw.
17874 (calendar-day-header-array): New option. (Bug#15007)
17875 (calendar-font-lock-keywords): Set to nil and make obsolete.
17876 (calendar-day-name): Add option to use header array.
17877
17878 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
17879
17880 * net/shr.el (shr-render-td): Remove debugging.
17881 (shr-render-td): Make width computation consistent by defaulting
17882 all zero-width columns to 10 characters. This may not be optimal,
17883 but it's at least consistent.
17884 (shr-make-table-1): Redo last change to fix the real problem in
17885 colspan handling.
17886
17887 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
17888
17889 * files.el (cache-long-line-scans):
17890 Make obsolete alias to `cache-long-scans'.
17891
17892 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
17893
17894 * frameset.el (frameset, frameset-filter-alist)
17895 (frameset-filter-params, frameset-save, frameset--reuse-frame)
17896 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
17897 (frameset-compute-pos): Rename from frameset--compute-pos,
17898 and add docstring.
17899 (frameset-move-onscreen): Use frameset-compute-pos.
17900 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
17901
17902 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
17903 Fix typos in docstrings.
17904
17905 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
17906
17907 * frame.el (get-other-frame): Tiny cleanup.
17908
17909 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
17910
17911 * vc/vc.el (vc-default-ignore-completion-table):
17912 Silence byte-compiler warning.
17913
17914 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
17915 slot, which can indeed be nil.
17916 (frameset-live-filter-alist, frameset-persistent-filter-alist):
17917 Move entry for `left' from persistent to live filter alist.
17918 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
17919 Doc fixes.
17920 (frameset-filter-params): When restoring a frame, copy items added to
17921 `filtered', to avoid unwittingly modifying the original parameters.
17922 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
17923 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
17924
17925 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
17926 to use looking-at-p instead of looking-at. (Bug#15028)
17927
17928 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
17929
17930 Revert introduction of isearch-filter-predicates (bug#14714).
17931 Rely on add-function instead.
17932 * isearch.el (isearch-filter-predicates): Rename it back to
17933 isearch-filter-predicate.
17934 (isearch-message-prefix): Use advice-function-mapc and advice
17935 properties to get the isearch-message-prefix.
17936 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
17937 instead of run-hook-with-args-until-failure.
17938 (isearch-filter-visible): Not obsolete any more.
17939 * loadup.el: Preload nadvice.
17940 * replace.el (perform-replace): Revert to funcall
17941 instead of run-hook-with-args-until-failure.
17942 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
17943 * dired-aux.el (dired-isearch-filenames-mode): Rename from
17944 dired-isearch-filenames-toggle; make it into a proper minor mode.
17945 Use add/remove-function.
17946 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
17947 Call the minor-mode rather than add/remove-hook.
17948 (dired-isearch-filter-filenames):
17949 Remove isearch-message-prefix property.
17950 * info.el (Info--search-loop): New function, extracted from Info-search.
17951 Funcall isearch-filter-predicate instead of
17952 run-hook-with-args-until-failure isearch-filter-predicates.
17953 (Info-search): Use it.
17954 (Info-mode): Use isearch-filter-predicate instead of
17955 isearch-filter-predicates.
17956
17957 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
17958
17959 Do not call to `selected-window' where it is assumed by default.
17960 Affected functions are `window-minibuffer-p', `window-dedicated-p',
17961 `window-hscroll', `window-width', `window-height', `window-buffer',
17962 `window-frame', `window-start', `window-point', `next-window'
17963 and `window-display-table'.
17964 * abbrev.el (abbrev--default-expand):
17965 * bs.el (bs--show-with-configuration):
17966 * buff-menu.el (Buffer-menu-mouse-select):
17967 * calc/calc.el (calc):
17968 * calendar/calendar.el (calendar-generate-window):
17969 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
17970 (diary-make-entry):
17971 * comint.el (send-invisible, comint-dynamic-complete-filename)
17972 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
17973 * completion.el (complete):
17974 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
17975 * disp-table.el (describe-current-display-table):
17976 * doc-view.el (doc-view-insert-image):
17977 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
17978 * ehelp.el (with-electric-help):
17979 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
17980 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
17981 * emacs-lisp/helper.el (Helper-help-scroller):
17982 * emulation/cua-base.el (cua--post-command-handler-1):
17983 * eshell/esh-mode.el (eshell-output-filter):
17984 * ffap.el (ffap-gnus-wrapper):
17985 * help-macro.el (make-help-screen):
17986 * hilit-chg.el (highlight-compare-buffers):
17987 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
17988 * hl-line.el (global-hl-line-highlight):
17989 * icomplete.el (icomplete-simple-completing-p):
17990 * isearch.el (isearch-done):
17991 * jit-lock.el (jit-lock-stealth-fontify):
17992 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
17993 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
17994 * mpc.el (mpc-tagbrowser, mpc):
17995 * net/rcirc.el (rcirc-any-buffer):
17996 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
17997 * play/landmark.el (landmark-max-width, landmark-max-height):
17998 * play/zone.el (zone):
17999 * progmodes/compile.el (compilation-goto-locus):
18000 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
18001 * progmodes/etags.el (find-tag-other-window):
18002 * progmodes/fortran.el (fortran-column-ruler):
18003 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
18004 * progmodes/verilog-mode.el (verilog-point-text):
18005 * reposition.el (reposition-window):
18006 * rot13.el (toggle-rot13-mode):
18007 * server.el (server-switch-buffer):
18008 * shell.el (shell-dynamic-complete-command)
18009 (shell-dynamic-complete-environment-variable):
18010 * simple.el (insert-buffer, set-selective-display)
18011 (delete-completion-window):
18012 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
18013 (speedbar-recenter):
18014 * startup.el (fancy-splash-head):
18015 * textmodes/ispell.el (ispell-command-loop):
18016 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
18017 * tutorial.el (help-with-tutorial):
18018 * vc/add-log.el (add-change-log-entry):
18019 * vc/compare-w.el (compare-windows):
18020 * vc/ediff-help.el (ediff-indent-help-message):
18021 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
18022 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
18023 (ediff-setup-control-frame):
18024 * vc/emerge.el (emerge-position-region):
18025 * vc/pcvs-util.el (cvs-bury-buffer):
18026 * window.el (walk-windows, mouse-autoselect-window-select):
18027 * winner.el (winner-set-conf, winner-undo): Related users changed.
18028
18029 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
18030
18031 * frameset.el (frameset--set-id): Doc fix.
18032 (frameset-frame-id, frameset-frame-id-equal-p)
18033 (frameset-locate-frame-id): New functions.
18034 (frameset--process-minibuffer-frames, frameset--reuse-frame)
18035 (frameset-restore): Use them.
18036
18037 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
18038
18039 Do not call to `selected-frame' where it is assumed by default.
18040 Affected functions are `raise-frame', `redraw-frame',
18041 `frame-first-window', `frame-terminal' and `delete-frame'.
18042 * calendar/appt.el (appt-disp-window):
18043 * epg.el (epg-wait-for-completion):
18044 * follow.el (follow-delete-other-windows-and-split)
18045 (follow-avoid-tail-recenter):
18046 * international/mule.el (set-terminal-coding-system):
18047 * mail/rmail.el (rmail-mail-return):
18048 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
18049 * progmodes/f90.el (f90-add-imenu-menu):
18050 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
18051 * server.el (server-switch-buffer):
18052 * simple.el (delete-completion-window):
18053 * talk.el (talk):
18054 * term/xterm.el (terminal-init-xterm-modify-other-keys)
18055 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
18056 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
18057 * vc/ediff.el (ediff-documentation): Related users changed.
18058 * frame.el (selected-terminal): Remove the leftover.
18059
18060 2013-08-05 Glenn Morris <rgm@gnu.org>
18061
18062 * calendar/calendar.el (calendar-generate-month):
18063 Fix for calendar-column-width != 1 + calendar-day-digit-width.
18064 (calendar-generate-month, calendar-font-lock-keywords):
18065 Fix for calendar-day-header-width > length of any day name.
18066
18067 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
18068
18069 * desktop.el (desktop-clear): Use new name of sort predicate.
18070
18071 * frameset.el (frameset): Add docstring. Move :version property to its
18072 own `version' slot.
18073 (frameset-copy): Rename from copy-frameset.
18074 (frameset-p): Check more thoroughly.
18075 (frameset-prop): Do not check for :version, which is no longer a prop.
18076 (frameset-live-filter-alist, frameset-persistent-filter-alist):
18077 Use new :never value instead of t.
18078 (frameset-filter-alist): Expand and clarify docstring.
18079 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
18080 (frameset-filter-minibuffer, frameset-filter-save-param)
18081 (frameset-filter-restore-param, frameset-filter-iconified):
18082 Add pointer to docstring of frameset-filter-alist.
18083 (frameset-filter-params): Rename filter values to be more meaningful:
18084 :never instead of t, and reverse the meanings of :save and :restore.
18085 (frameset--process-minibuffer-frames): Clarify error message.
18086 (frameset-save): Avoid unnecessary and confusing call to framep.
18087 Use new BOA constructor for framesets.
18088 (frameset--reuse-list): Doc fix.
18089 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
18090 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
18091 (frameset-minibufferless-first-p): Doc fix.
18092 Rename from frameset-sort-frames-for-deletion.
18093 (frameset-restore): Doc fixes. Use new function names.
18094 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
18095
18096 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
18097
18098 * desktop.el (desktop-restore-forces-onscreen)
18099 (desktop-restore-reuses-frames): Document :keyword constant values.
18100 (desktop-filter-parameters-alist): Remove, now identical to
18101 frameset-filter-alist.
18102 (desktop--filter-tty*): Remove, moved to frameset.el.
18103 (desktop-save-frameset, desktop-restore-frameset):
18104 Do not pass :filters argument.
18105
18106 * frameset.el (frameset-live-filter-alist)
18107 (frameset-persistent-filter-alist): New variables.
18108 (frameset-filter-alist): Use them. Add autoload cookie.
18109 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
18110 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
18111 `frameset--id' (it's supposed to be internal to frameset.el).
18112 (frameset--process-minibuffer-frames): Ditto. Doc fix.
18113 (frameset--initial-params): New function.
18114 (frameset--get-frame): Use it. Doc fix.
18115 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
18116 Accept :all, not 'all.
18117 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
18118 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
18119 with fbound symbols. Fix frame id matching, and remove matching ids if
18120 the frame being restored is deleted. Obey :delete.
18121
18122 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
18123
18124 * subr.el (macrop): New function.
18125 (text-clone--maintaining): New var.
18126 (text-clone--maintain): Rename from text-clone-maintain. Use it
18127 instead of inhibit-modification-hooks.
18128
18129 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
18130 a proxy, so as handle autoloads and redefinitions of the target.
18131 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
18132
18133 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
18134 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
18135 (pcase--mutually-exclusive-p): New function.
18136 (pcase--split-consp): Use it.
18137 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
18138 mutually exclusive with the current predicate.
18139
18140 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
18141 (edebug-macrop): Remove. Use `macrop' instead.
18142 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
18143 (ad-macro-p):
18144 * eshell/esh-cmd.el (eshell-macrop):
18145 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
18146
18147 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
18148
18149 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
18150 (advice-mapc): New function, using it.
18151 (advice-function-member-p): New function.
18152 (advice--normalize): Store the cdr in advice--saved-rewrite since
18153 that's the part that will be changed.
18154 (advice--symbol-function): New function.
18155 (advice-remove): Handle removal before the function is defined.
18156 Adjust to new advice--saved-rewrite.
18157 (advice-member-p): Use advice-function-member-p and
18158 advice--symbol-function.
18159
18160 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
18161
18162 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
18163 (frameset-filter-minibuffer): Doc fix.
18164 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
18165 (frameset--set-id, frameset--process-minibuffer-frames)
18166 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
18167 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
18168
18169 * desktop.el (desktop-clear): Only delete frames when called
18170 interactively and desktop-restore-frames is non-nil. Doc fix.
18171 (desktop-read): Set desktop-saved-frameset to nil.
18172
18173 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
18174
18175 * vc/vc.el (vc-ignore): Rewrite.
18176 (vc-default-ignore-completion-table, vc--read-lines)
18177 (vc--add-line, vc--remove-regexp): New functions.
18178
18179 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
18180 (vc-svn-ignore-completion-table): New function.
18181
18182 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
18183 (vc-hg-ignore-completion-table)
18184 (vc-hg-find-ignore-file): New functions.
18185
18186 * vc/vc-git.el (vc-git-ignore): Rewrite.
18187 (vc-git-ignore-completion-table)
18188 (vc-git-find-ignore-file): New functions.
18189
18190 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
18191
18192 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
18193 (vc-bzr-ignore-completion-table)
18194 (vc-bzr-find-ignore-file): New functions.
18195
18196 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
18197
18198 * frameset.el (frameset-prop): New function and setter.
18199 (frameset-save): Do not modify frame list passed by the caller.
18200
18201 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18202
18203 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
18204
18205 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
18206
18207 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
18208 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
18209
18210 * custom.el (custom-initialize-default, custom-initialize-set)
18211 (custom-initialize-reset, custom-initialize-changed): Affect the
18212 toplevel-default-value (bug#6275, bug#14586).
18213 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
18214 for bug#6275.
18215
18216 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
18217
18218 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
18219 Add cl-def* expressions.
18220
18221 * frameset.el (frameset-filter-params): Fix order of arguments.
18222
18223 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
18224
18225 Move code related to saving frames to frameset.el.
18226 * desktop.el: Require frameset.
18227 (desktop-restore-frames): Doc fix.
18228 (desktop-restore-reuses-frames): Rename from
18229 desktop-restoring-reuses-frames.
18230 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
18231 (desktop-clear): Clear frames too.
18232 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
18233 (desktop--filter-tty*, desktop-save, desktop-read):
18234 Use frameset functions.
18235 (desktop-before-saving-frames-functions, desktop--filter-*-color)
18236 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
18237 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
18238 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
18239 (desktop--process-minibuffer-frames, desktop-save-frames)
18240 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
18241 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
18242 (desktop--sort-states, desktop-restoring-frames-p)
18243 (desktop-restore-frames): Remove. Most code moved to frameset.el.
18244 (desktop-restoring-frameset-p, desktop-restore-frameset)
18245 (desktop--check-dont-save, desktop-save-frameset): New functions.
18246 (desktop--app-id): New constant.
18247 (desktop-first-buffer, desktop-buffer-ok-count)
18248 (desktop-buffer-fail-count): Move before first use.
18249 * frameset.el: New file.
18250
18251 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
18252
18253 * files.el: Use lexical-binding.
18254 (dir-locals-read-from-file): Remove unused `err' variable.
18255 (hack-dir-local-variables--warned-coding): New var.
18256 (hack-dir-local-variables): Use it to avoid repeated warnings.
18257 (make-backup-file-name--default-function): New function.
18258 (make-backup-file-name-function): Use it as default.
18259 (buffer-stale--default-function): New function.
18260 (buffer-stale-function): Use it as default.
18261 (revert-buffer-insert-file-contents--default-function): New function.
18262 (revert-buffer-insert-file-contents-function): Use it as default.
18263 (insert-directory): Avoid add-to-list.
18264
18265 * autorevert.el (auto-revert-handler): Simplify.
18266 Use buffer-stale--default-function.
18267
18268 2013-08-01 Tassilo Horn <tsdh@gnu.org>
18269
18270 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
18271
18272 * whitespace.el (whitespace-ensure-local-variables): New function.
18273 (whitespace-cleanup-region): Call it.
18274 (whitespace-turn-on): Call it.
18275
18276 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
18277
18278 Complete file name handlers.
18279
18280 * net/tramp.el (tramp-handle-set-visited-file-modtime)
18281 (tramp-handle-verify-visited-file-modtime)
18282 (tramp-handle-file-notify-rm-watch): New functions.
18283 (tramp-call-process): Do not bind `default-directory'.
18284
18285 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
18286 Order alphabetically.
18287 <access-file, add-name-to-file, dired-call-process>:
18288 <dired-compress-file, file-acl, file-notify-rm-watch>:
18289 <file-ownership-preserved-p, file-selinux-context>:
18290 <make-directory-internal, make-symbolic-link, set-file-acl>:
18291 <set-file-selinux-context, set-visited-file-modtime>:
18292 <verify-visited-file-modtime>: Add handler.
18293 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
18294
18295 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
18296 <file-notify-add-watch, file-notify-rm-watch>:
18297 <set-file-times, set-visited-file-modtime>:
18298 <verify-visited-file-modtime>: Add handler.
18299 (with-tramp-gvfs-error-message)
18300 (tramp-gvfs-handle-set-visited-file-modtime)
18301 (tramp-gvfs-fuse-file-name): Remove.
18302 (tramp-gvfs-handle-file-notify-add-watch)
18303 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
18304 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
18305
18306 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
18307 Order alphabetically.
18308 <file-notify-rm-watch>: Use default Tramp handler.
18309 <executable-find>: Remove private handler.
18310 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
18311 `default-directory'.
18312 (tramp-sh-handle-executable-find)
18313 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
18314 (tramp-sh-file-gvfs-monitor-dir-process-filter)
18315 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
18316 Do not use `format' in `tramp-message'.
18317
18318 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
18319 <file-notify-rm-watch, set-visited-file-modtime>:
18320 <verify-visited-file-modtime>: Add handler.
18321 (tramp-smb-call-winexe): Do not bind `default-directory'.
18322
18323 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
18324
18325 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
18326
18327 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
18328
18329 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
18330 use it.
18331 (log-view-diff-changeset): Same.
18332 (log-view-diff-common): Call backend command `previous-revision'
18333 to find out the previous revision, in both cases. Swap the
18334 variables `to' and `fr', so that `fr' usually refers to the
18335 earlier revision (Bug#14989).
18336
18337 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
18338
18339 * ibuf-ext.el (ibuffer-filter-by-filename):
18340 Make it work with dired buffers too.
18341
18342 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
18343
18344 * emacs-lisp/re-builder.el (reb-color-display-p):
18345 * files.el (save-buffers-kill-terminal):
18346 * net/browse-url.el (browse-url):
18347 * server.el (server-save-buffers-kill-terminal):
18348 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
18349 Prefer nil to selected-frame for the first arg of frame-parameter.
18350
18351 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
18352
18353 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
18354
18355 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
18356
18357 * minibuffer.el (completion--twq-all): Try and preserve each
18358 completion's case choice (bug#14907).
18359
18360 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
18361
18362 * net/network-stream.el (open-network-stream): Mention the new
18363 :nogreeting parameter.
18364 (network-stream-open-starttls): Use the :nogreeting parameter
18365 (bug#14938).
18366
18367 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
18368
18369 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
18370 more natural than popping.
18371
18372 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
18373 (shr-urlify): Highlight under mouse.
18374
18375 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
18376
18377 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
18378
18379 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
18380
18381 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
18382 buffer for output.
18383
18384 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
18385 point-min==1. Fix search string. Fix parentheses missing.
18386
18387 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
18388 assume point-min==1. Fix search string. Fix parentheses missing.
18389
18390 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
18391
18392 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
18393 buffer for output.
18394
18395 2013-07-29 Eli Zaretskii <eliz@gnu.org>
18396
18397 * frame.el (frame-notice-user-settings): Avoid inflooping when the
18398 initial frame is minibuffer-less. (Bug#14841)
18399
18400 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
18401
18402 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
18403 option.
18404
18405 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18406 (tramp-maybe-open-connection): Use it.
18407
18408 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
18409
18410 * desktop.el (desktop--make-frame): Include `minibuffer' in the
18411 minimal set of parameters passed when creating a frame, because
18412 the minibuffer status of a frame cannot be changed later.
18413
18414 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
18415
18416 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
18417 replace-regexp-in-string and inadvertent omissions in previous change.
18418 (todo-filter-items): Ensure only file names are comma-separated in
18419 name of filtered items buffer.
18420
18421 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
18422
18423 * desktop.el: Optionally force offscreen frames back onscreen.
18424 (desktop-restoring-reuses-frames): New option.
18425 (desktop--compute-pos, desktop--move-onscreen): New functions.
18426 (desktop--make-frame): Use desktop--move-onscreen.
18427
18428 2013-07-27 Alan Mackenzie <acm@muc.de>
18429
18430 Fontify a Java generic method as a function.
18431 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
18432 value to t.
18433
18434 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
18435
18436 * calendar/todo-mode.el: Add command to rename todo files.
18437 (todo-rename-file): New command.
18438 (todo-key-bindings-t): Add key binding for it. Change the
18439 bindings of todo-filter-regexp-items(-multifile) to use `x'
18440 instead of `r', since the latter is better suited to the new
18441 renaming command.
18442
18443 2013-07-27 Alan Mackenzie <acm@muc.de>
18444
18445 Make Java try-with-resources statement parse properly.
18446 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
18447 (c-block-stmt-1-2-key): New language constants/variables.
18448 * progmodes/cc-engine.el (c-beginning-of-statement-1)
18449 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
18450 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
18451 with c-block-stmt-1-2-key.
18452
18453 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
18454
18455 * desktop.el (desktop--make-frame): Apply most frame parameters after
18456 creating the frame to force (partially or totally) offscreen frames to
18457 be restored as such.
18458
18459 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
18460
18461 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
18462 (Bug#14948)
18463
18464 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
18465
18466 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
18467 `base' arg of backtrace-frame.
18468
18469 2013-07-26 Eli Zaretskii <eliz@gnu.org>
18470
18471 * simple.el (list-processes): Doc fix.
18472
18473 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
18474
18475 * desktop.el (desktop--select-frame):
18476 Try harder to reuse existing frames.
18477
18478 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
18479
18480 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
18481 (edebug-eval): Use backtrace-eval.
18482 (edebug--display, edebug--recursive-edit): Don't let-bind the
18483 edebug-outer-* vars that keep track of variables we locally let-bind.
18484 (edebug-outside-excursion): Don't restore outside values of locally
18485 let-bound vars.
18486 (edebug--display): Use user-error.
18487 (cl-lexical-debug, cl-debug-env): Remove.
18488
18489 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
18490
18491 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
18492 are restored to be sure that they are visible before deleting any
18493 remaining ones.
18494
18495 2013-07-26 Matthias Meulien <orontee@gmail.com>
18496
18497 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
18498 vc-print-root-log. (Bug#14948)
18499
18500 2013-07-26 Richard Stallman <rms@gnu.org>
18501
18502 Add aliases for encrypting mail.
18503 * epa.el (epa-mail-aliases): New option.
18504 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
18505 Bind inhibit-read-only so read-only text doesn't ruin everything.
18506 (epa-mail-default-recipients): New subroutine broken out.
18507 Handle epa-mail-aliases.
18508
18509 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
18510
18511 Add support for lexical variables to the debugger's `e' command.
18512 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
18513 vars, except for debugger-outer-match-data.
18514 (debugger-frame-number): Move check for "on a function call" from
18515 callers into it. Add `skip-base' argument.
18516 (debugger-frame, debugger-frame-clear): Simplify accordingly.
18517 (debugger-env-macro): Only reset the state stored in non-variables,
18518 i.e. current-buffer and match-data.
18519 (debugger-eval-expression): Rewrite using backtrace-eval.
18520 * subr.el (internal--called-interactively-p--get-frame): Remove.
18521 (called-interactively-p):
18522 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
18523 `base' arg of backtrace-frame instead.
18524
18525 2013-07-26 Glenn Morris <rgm@gnu.org>
18526
18527 * align.el (align-regexp): Doc fix. (Bug#14857)
18528 (align-region): Explicit error if subexpression missing/does not match.
18529
18530 * simple.el (global-visual-line-mode):
18531 Do not duplicate the mode lighter. (Bug#14858)
18532
18533 2013-07-25 Martin Rudalics <rudalics@gmx.at>
18534
18535 * window.el (display-buffer): In display-buffer bind
18536 split-window-keep-point to t, bug#14829.
18537
18538 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
18539
18540 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
18541 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
18542 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
18543 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
18544 Change accordingly.
18545 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
18546 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
18547
18548 2013-07-25 Glenn Morris <rgm@gnu.org>
18549
18550 * dired-x.el (dired-mark-extension): Convert comment to doc string.
18551
18552 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
18553
18554 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
18555 parameter to modify-frame-parameters if the value has not changed;
18556 this is a workaround for bug#14949.
18557 (desktop--make-frame): On cl-delete-if call, check parameter name,
18558 not full parameter.
18559
18560 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
18561
18562 * vc/vc.el (vc-ignore): New function.
18563
18564 * vc/vc-svn.el (vc-svn-ignore): New function.
18565
18566 * vc/vc-hg.el (vc-hg-ignore): New function.
18567
18568 * vc/vc-git.el (vc-git-ignore): New function.
18569
18570 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
18571 (vc-dir-ignore): New function.
18572
18573 * vc/vc-cvs.el (vc-cvs-ignore): New function.
18574 (cvs-append-to-ignore): Move here from pcvs.el.
18575
18576 * vc/vc-bzr.el (vc-bzr-ignore): New function.
18577
18578 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
18579
18580 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
18581
18582 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
18583 (desktop-restore-frames): Warn when deleting an existing frame failed.
18584
18585 2013-07-24 Glenn Morris <rgm@gnu.org>
18586
18587 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
18588
18589 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
18590
18591 * filenotify.el (file-notify-supported-p):
18592 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
18593 Remove functions.
18594
18595 * autorevert.el (auto-revert-use-notify)
18596 (auto-revert-notify-add-watch):
18597 * net/tramp.el (tramp-file-name-for-operation):
18598 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
18599 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
18600 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
18601 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
18602 Remove `file-notify-supported-p' entry.
18603
18604 2013-07-24 Glenn Morris <rgm@gnu.org>
18605
18606 * printing.el: Replace all uses of deleted ps-windows-system,
18607 ps-lp-system, ps-flatten-list with lpr- versions.
18608
18609 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
18610
18611 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
18612 checked with memq (bug#14935).
18613
18614 * files.el (revert-buffer-function): Use a non-nil default.
18615 (revert-buffer-preserve-modes): Declare var to
18616 provide access to the `preserve-modes' argument.
18617 (revert-buffer): Let-bind it.
18618 (revert-buffer--default): New function, extracted from revert-buffer.
18619
18620 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
18621
18622 * lpr.el: Signal print errors more prominently.
18623 (print-region-function): Don't default to nil.
18624 (lpr-print-region): New function, extracted from print-region-1.
18625 Check lpr's return value and signal an error in case of problem.
18626 (print-region-1): Use it.
18627 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
18628 versions instead.
18629 (ps-printer-name): Default to nil.
18630 (ps-printer-name-option): Default to lpr-printer-switch.
18631 (ps-print-region-function): Don't default to nil.
18632 (ps-postscript-code-directory): Simplify default.
18633 (ps-do-despool): Use lpr-print-region to properly check the outcome.
18634 (ps-string-list, ps-eval-switch, ps-flatten-list)
18635 (ps-flatten-list-1): Remove.
18636 (ps-multibyte-buffer): Avoid setq.
18637 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
18638 (print-region-function, ps-print-region-function): Don't set them here.
18639
18640 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
18641
18642 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
18643 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
18644 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
18645 (ido-decorations): Doc fix.
18646
18647 * ansi-color.el: Fix old URL.
18648
18649 2013-07-23 Michael R. Mauger <michael@mauger.com>
18650
18651 * progmodes/sql.el: Version 3.3
18652 (sql-product-alist): Improve oracle :prompt-cont-regexp.
18653 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
18654 (sql-interactive-remove-continuation-prompt): Rewrite, use
18655 functions above. Fix continuation prompt and complete output line
18656 handling.
18657 (sql-redirect-one, sql-execute): Use `read-only-mode' on
18658 redirected output buffer.
18659 (sql-mode): Restore deleted code (Bug#13591).
18660
18661 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
18662
18663 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
18664
18665 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
18666
18667 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
18668
18669 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
18670 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
18671 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
18672
18673 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
18674
18675 * desktop.el (desktop-clear): Simplify; remove useless checks
18676 against invalid buffer names.
18677 (desktop-list*): Use cl-list*.
18678 (desktop-buffer-info, desktop-create-buffer): Simplify.
18679
18680 2013-07-23 Leo Liu <sdl.web@gmail.com>
18681
18682 * bookmark.el (bookmark-make-record): Restore NAME as a default
18683 value. (Bug#14933)
18684
18685 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
18686
18687 * emacs-lisp/autoload.el (autoload--setup-output): New function,
18688 extracted from autoload--insert-text.
18689 (autoload--insert-text): Remove.
18690 (autoload--print-cookie-text): New function, extracted from
18691 autoload--insert-cookie-text.
18692 (autoload--insert-cookie-text): Remove.
18693 (autoload-generate-file-autoloads): Adjust calls accordingly.
18694
18695 * winner.el (winner-hook-installed-p): Remove.
18696 (winner-mode): Simplify accordingly.
18697
18698 * subr.el (add-to-list): Fix compiler-macro when `append' is
18699 not constant. Don't use `cl-member' for the base case.
18700
18701 * progmodes/subword.el: Fix boundary case (bug#13758).
18702 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
18703 own group.
18704 (subword-backward-regexp): Make it a constant.
18705 (subword-forward-internal): Don't treat a trailing capital as the
18706 beginning of a word.
18707
18708 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
18709
18710 * emacs-lisp/package.el (package-menu-mode): Don't modify the
18711 global value of tabulated-list-revert-hook (bug#14930).
18712
18713 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
18714
18715 * desktop.el: Require 'cl-lib.
18716 (desktop-before-saving-frames-functions): New hook.
18717 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
18718 for frames being saved. Rename from desktop--save-minibuffer-frames.
18719 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
18720 Do not save frames with non-nil `desktop-dont-save' parameter.
18721 Filter out deleted frames.
18722 (desktop--find-frame): Use cl-find-if.
18723 (desktop--select-frame): Use cl-(first|second|third) to access values
18724 of desktop-mini.
18725 (desktop--make-frame): Use cl-delete-if.
18726 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
18727 (desktop-restore-frames): Use cl-(first|second|third) to access values
18728 of desktop-mini. Look for visible frame at the end, not while
18729 restoring frames.
18730
18731 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
18732 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
18733 Use string-match-p, looking-at-p (bug#14927).
18734
18735 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
18736
18737 * desktop.el (desktop-saved-frame-states):
18738 Rename from desktop--saved-states; all users changed.
18739 (desktop-save-frames): Rename from desktop--save-frames.
18740 Do not save state to desktop file.
18741 (desktop-save): Save desktop-saved-frame-states to desktop file
18742 and reset to nil.
18743 (desktop-restoring-frames-p): New function.
18744 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
18745 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
18746 buffer-lists when restoring frames. Suggested by Martin Rudalics.
18747
18748 * desktop.el: Correctly restore iconified frames.
18749 (desktop--filter-iconified-position): New function.
18750 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
18751
18752 2013-07-20 Glenn Morris <rgm@gnu.org>
18753
18754 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
18755 Let `message' do the formatting.
18756 (def-gdb-preempt-display-buffer): Add explicit format.
18757
18758 * image-dired.el (image-dired-track-original-file):
18759 Use with-current-buffer.
18760 (image-dired-track-thumbnail): Use with-current-buffer.
18761 Avoid changing point of wrong window.
18762
18763 * image-dired.el (image-dired-track-original-file):
18764 Avoid changing point of wrong window. (Bug#14909)
18765
18766 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
18767
18768 * progmodes/gdb-mi.el (gdb-done-or-error):
18769 Guard against "%" in gdb output. (Bug#14127)
18770
18771 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
18772
18773 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
18774 (Bug#14826)
18775
18776 * international/mule.el (coding-system-iso-2022-flags): Fix last
18777 change.
18778
18779 2013-07-20 Kenichi Handa <handa@gnu.org>
18780
18781 * international/mule.el (coding-system-iso-2022-flags):
18782 Add `8-bit-level-4'. (Bug#8522)
18783
18784 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18785
18786 * net/shr.el (shr-mouse-browse-url): New command and keystroke
18787 (bug#14815).
18788
18789 * net/eww.el (eww-process-text-input): Allow inputting when the
18790 point is at the start of the line, as the properties aren't
18791 front-sticky.
18792
18793 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
18794 degenerate widths.
18795
18796 2013-07-19 Richard Stallman <rms@gnu.org>
18797
18798 * epa.el (epa-popup-info-window): Doc fix.
18799
18800 * subr.el (split-string): New arg TRIM.
18801
18802 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
18803
18804 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
18805 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
18806
18807 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
18808
18809 * filenotify.el (file-notify--library): Rename from
18810 `file-notify-support'. Do not autoload. Adapt all uses.
18811 (file-notify-supported-p): New defun.
18812
18813 * autorevert.el (auto-revert-use-notify):
18814 Use `file-notify-supported-p' instead of `file-notify-support'.
18815 Adapt docstring.
18816 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
18817
18818 * net/tramp.el (tramp-file-name-for-operation):
18819 Add `file-notify-supported-p'.
18820
18821 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
18822 New defun.
18823 (tramp-sh-file-name-handler-alist): Add it as handler for
18824 `file-notify-supported-p '.
18825
18826 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
18827 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
18828 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
18829 Add `ignore' as handler for `file-notify-*' functions.
18830
18831 2013-07-17 Eli Zaretskii <eliz@gnu.org>
18832
18833 * simple.el (line-move-partial, line-move): Don't start vscroll or
18834 scroll-up if the current line is not taller than the window.
18835 (Bug#14881)
18836
18837 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
18838
18839 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
18840 highlight question marks in the method names as strings.
18841 (ruby-block-beg-keywords): Inline.
18842 (ruby-font-lock-keyword-beg-re): Extract from
18843 `ruby-font-lock-keywords'.
18844
18845 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
18846
18847 * frame.el (blink-cursor-blinks): New defcustom.
18848 (blink-cursor-blinks-done): New defvar.
18849 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
18850 (blink-cursor-timer-function): Check if number of blinks has been
18851 done on X and NS.
18852 (blink-cursor-suspend, blink-cursor-check): New defuns.
18853
18854 2013-07-15 Glenn Morris <rgm@gnu.org>
18855
18856 * edmacro.el (edmacro-format-keys): Fix previous change.
18857
18858 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
18859
18860 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
18861 The hack didn't work outside English locales anyway.
18862
18863 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
18864
18865 * simple.el (define-alternatives): Rename from alternatives-define,
18866 per RMS' suggestion.
18867
18868 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
18869
18870 * desktop.el (desktop-restore-frames): Change default to t.
18871 (desktop-restore-in-current-display): Now offer more options.
18872 (desktop-restoring-reuses-frames): New customization option.
18873 (desktop--saved-states): Doc fix.
18874 (desktop-filter-parameters-alist): New variable, renamed and expanded
18875 from desktop--excluded-frame-parameters.
18876 (desktop--target-display): New variable.
18877 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
18878 (desktop--filter-tty*, desktop--filter-*-color)
18879 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
18880 (desktop--filter-save-desktop-parm)
18881 (desktop-restore-in-original-display-p): New functions.
18882 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
18883 (desktop--save-minibuffer-frames): New function, inspired by a similar
18884 function from Martin Rudalics.
18885 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
18886 (desktop--restore-in-this-display-p): Remove.
18887 (desktop--find-frame): Rename from desktop--find-frame-in-display
18888 and add predicate argument.
18889 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
18890 (desktop--reuse-list): New variable.
18891 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
18892 New functions.
18893 (desktop--restore-frames): Add support for "minibuffer-special" frames.
18894
18895 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
18896
18897 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
18898
18899 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
18900
18901 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
18902 Highlight conversion methods on Kernel.
18903
18904 2013-07-13 Alan Mackenzie <acm@muc.de>
18905
18906 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
18907 and comment it out. This out-commenting enables certain C++
18908 declarations to be parsed correctly.
18909
18910 2013-07-13 Eli Zaretskii <eliz@gnu.org>
18911
18912 * international/mule.el (define-coding-system): Doc fix.
18913
18914 * simple.el (default-font-height): Don't call font-info if the
18915 frame's default font didn't change since the frame was created.
18916 (Bug#14838)
18917
18918 2013-07-13 Leo Liu <sdl.web@gmail.com>
18919
18920 * ido.el (ido-read-file-name): Guard against non-symbol value.
18921
18922 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
18923
18924 * progmodes/python.el (python-imenu--build-tree): Fix corner case
18925 in nested defuns.
18926
18927 2013-07-13 Leo Liu <sdl.web@gmail.com>
18928
18929 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
18930 ido-set-matches call. (Bug#6852)
18931
18932 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
18933
18934 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
18935 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
18936 Ruby 2.0.
18937 (ruby-font-lock-keywords): Distinguish calls to functions with
18938 module-like names from module references. Highlight character
18939 literals.
18940
18941 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
18942
18943 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
18944 (gdb-send): Handle continued commands. (Bug#14847)
18945
18946 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
18947
18948 * desktop.el (desktop--v2s): Remove unused local variable.
18949 (desktop-save-buffer): Make defvar-local; adjust docstring.
18950 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
18951 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
18952
18953 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
18954
18955 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
18956
18957 2013-07-12 Eli Zaretskii <eliz@gnu.org>
18958
18959 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
18960 (Bug#14842)
18961
18962 2013-07-12 Glenn Morris <rgm@gnu.org>
18963
18964 * doc-view.el: Require cl-lib at runtime too.
18965 (doc-view-remove-if): Remove.
18966 (doc-view-search-next-match, doc-view-search-previous-match):
18967 Use cl-remove-if.
18968
18969 * edmacro.el: Require cl-lib at runtime too.
18970 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
18971 (edmacro-mismatch, edmacro-subseq): Remove.
18972
18973 * shadowfile.el: Require cl-lib.
18974 (shadow-remove-if): Remove.
18975 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
18976 Use cl-remove-if.
18977
18978 * wid-edit.el: Require cl-lib.
18979 (widget-choose): Use cl-remove-if.
18980 (widget-remove-if): Remove.
18981
18982 * progmodes/ebrowse.el: Require cl-lib at runtime too.
18983 (ebrowse-delete-if-not): Remove.
18984 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
18985 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
18986 Use cl-delete-if-not.
18987
18988 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
18989
18990 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
18991 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
18992
18993 2013-07-12 Leo Liu <sdl.web@gmail.com>
18994
18995 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
18996
18997 2013-07-11 Glenn Morris <rgm@gnu.org>
18998
18999 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
19000 (edebug-gensym-index, edebug-gensym):
19001 Remove reimplementation of cl-gensym.
19002 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
19003
19004 * thumbs.el: Require cl-lib at run-time too.
19005 (thumbs-gensym-counter, thumbs-gensym):
19006 Remove reimplementation of cl-gensym.
19007 (thumbs-temp-file): Use cl-gensym.
19008
19009 * emacs-lisp/ert.el: Require cl-lib at runtime too.
19010 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
19011 (ert--intersection, ert--set-difference, ert--set-difference-eq)
19012 (ert--union, ert--gensym-counter, ert--gensym-counter)
19013 (ert--coerce-to-vector, ert--remove*, ert--string-position)
19014 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
19015 (ert-make-test-unbound, ert--expand-should-1)
19016 (ert--expand-should, ert--should-error-handle-error)
19017 (should-error, ert--explain-equal-rec)
19018 (ert--plist-difference-explanation, ert-select-tests)
19019 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
19020 Use cl-lib functions rather than reimplementations.
19021
19022 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
19023
19024 * net/tramp.el (tramp-methods): Extend docstring.
19025 (tramp-connection-timeout): New defcustom.
19026 (tramp-error-with-buffer): Reset timestamp only when appropriate.
19027 (with-tramp-progress-reporter): Simplify.
19028 (tramp-process-actions): Improve messages.
19029
19030 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
19031 * net/tramp-sh.el (tramp-maybe-open-connection):
19032 Use `tramp-connection-timeout'.
19033 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
19034 (Bug#14808)
19035
19036 2013-07-11 Leo Liu <sdl.web@gmail.com>
19037
19038 * ido.el (ido-read-file-name): Conform to the requirements of
19039 read-file-name. (Bug#11861)
19040 (ido-read-directory-name): Conform to the requirements of
19041 read-directory-name.
19042
19043 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
19044
19045 * subr.el (delay-warning): New function.
19046
19047 2013-07-10 Eli Zaretskii <eliz@gnu.org>
19048
19049 * simple.el (default-line-height): New function.
19050 (line-move-partial, line-move): Use it instead of computing the
19051 line height inline.
19052 (line-move-partial): Always compute ROWH. If the last line is
19053 partially-visible, but its text is completely visible, allow
19054 cursor to enter such a partially-visible line.
19055
19056 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
19057
19058 Improve error messages. (Bug#14808)
19059
19060 * net/tramp.el (tramp-current-connection): New defvar, moved from
19061 tramp-sh.el.
19062 (tramp-message-show-progress-reporter-message): Remove, not
19063 needed anymore.
19064 (tramp-error-with-buffer): Show message in minibuffer.
19065 Discard input before waiting. Reset connection timestamp.
19066 (with-tramp-progress-reporter): Improve messages.
19067 (tramp-process-actions): Use progress reporter. Delete process in
19068 case of error. Improve messages.
19069
19070 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
19071 Call `tramp-error-with-buffer' with vector and buffer.
19072 (tramp-current-connection): Remove.
19073 (tramp-maybe-open-connection): The car of
19074 `tramp-current-connection' are the first 3 slots of the vector.
19075
19076 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
19077
19078 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
19079 inside continued strings.
19080
19081 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
19082
19083 Timestamp fixes for undo (Bug#14824).
19084 * files.el (clear-visited-file-modtime): Move here from fileio.c.
19085
19086 2013-07-10 Leo Liu <sdl.web@gmail.com>
19087
19088 * files.el (require-final-newline): Allow safe local value.
19089 (Bug#14834)
19090
19091 2013-07-09 Leo Liu <sdl.web@gmail.com>
19092
19093 * ido.el (ido-read-directory-name): Handle fallback.
19094 (ido-read-file-name): Update DIR to ido-current-directory.
19095 (Bug#1516)
19096 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
19097
19098 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
19099
19100 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
19101 "autoload". Remove "warn lower camel case" section, previously
19102 commented out. Highlight negation char. Do not highlight the
19103 target in singleton method definitions.
19104
19105 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19106
19107 * faces.el (tty-setup-hook): Declare the hook.
19108
19109 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
19110 and detect when a guard/pred depends on local vars (bug#14773).
19111 (pcase--u1): Adjust caller.
19112
19113 2013-07-08 Eli Zaretskii <eliz@gnu.org>
19114
19115 * simple.el (line-move-partial, line-move): Account for
19116 line-spacing.
19117 (line-move-partial): Avoid setting vscroll when the last
19118 partially-visible line in window is of default height.
19119
19120 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
19121
19122 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
19123 been used a while.
19124
19125 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
19126
19127 * subr.el (read-quoted-char): Remove unused local variable `char'.
19128
19129 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
19130
19131 * vc/ediff.el (ediff-version): Version update.
19132 (ediff-files-command, ediff3-files-command, ediff-merge-command)
19133 (ediff-merge-with-ancestor-command, ediff-directories-command)
19134 (ediff-directories3-command, ediff-merge-directories-command)
19135 (ediff-merge-directories-with-ancestor-command): New functions.
19136 All are command-line interfaces to ediff: to facilitate calling
19137 Emacs with the appropriate ediff functions invoked.
19138
19139 * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
19140 New function.
19141 (viper-save-kill-buffer): Check if buffer is modified.
19142
19143 * emulation/viper.el (viper-version): Version update.
19144 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
19145
19146 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
19147
19148 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
19149 * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
19150 (viper-intercept-ESC-key): Simplify.
19151 * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
19152 don't use kbd.
19153 * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
19154 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
19155 (viper-setup-ESC-to-escape): New functions.
19156 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
19157 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
19158
19159 2013-07-07 Eli Zaretskii <eliz@gnu.org>
19160
19161 * simple.el (default-font-height, window-screen-lines):
19162 New functions.
19163 (line-move, line-move-partial): Use them instead of
19164 frame-char-height and window-text-height. This makes scrolling
19165 text smoother when the buffer's default face uses a font that is
19166 different from the frame's default font.
19167
19168 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
19169
19170 * files.el (write-file): Do not display confirm dialog for NS,
19171 it does its own dialog, which can't be canceled (Bug#14578).
19172
19173 2013-07-06 Eli Zaretskii <eliz@gnu.org>
19174
19175 * simple.el (line-move-partial): Adjust the row returned by
19176 posn-at-point for the current window-vscroll. (Bug#14567)
19177
19178 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
19179
19180 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
19181 (tramp-sh-file-inotifywait-process-filter): Handle file names with
19182 spaces.
19183
19184 2013-07-06 Martin Rudalics <rudalics@gmx.at>
19185
19186 * window.el (window-state-put-stale-windows): New variable.
19187 (window--state-put-2): Save list of windows without matching buffer.
19188 (window-state-put): Remove "bufferless" windows if possible.
19189
19190 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
19191
19192 * simple.el (alternatives-define): Remove leftover :group keyword.
19193 Tweak docstring.
19194
19195 2013-07-06 Leo Liu <sdl.web@gmail.com>
19196
19197 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
19198 (ido-enable-virtual-buffers): New variable.
19199 (ido-buffer-internal, ido-toggle-virtual-buffers)
19200 (ido-make-buffer-list): Use it.
19201 (ido-exhibit): Support turning on and off virtual buffers
19202 automatically.
19203
19204 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
19205
19206 * simple.el (alternatives-define): New macro.
19207
19208 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
19209
19210 * subr.el (read-quoted-char): Use read-key.
19211 (sit-for): Let read-event decode tty input (bug#14782).
19212
19213 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
19214
19215 * calendar/todo-mode.el: Add handling of file deletion, both by
19216 mode command and externally. Fix various related bugs.
19217 Clarify Commentary and improve some documentation strings and code.
19218 (todo-delete-file): New command.
19219 (todo-check-file): New function.
19220 (todo-show): Handle external deletion of the file we're trying to
19221 show (bug#14688). Replace called-interactively-p by an optional
19222 prefix argument to avoid problematic interaction with catch form
19223 when byte compiled (bug#14702).
19224 (todo-quit): Handle external deletion of the archive's todo file.
19225 Make sure the buffer that was visiting the archive file is still
19226 live before trying to bury it.
19227 (todo-category-completions): Handle external deletion of any
19228 category completion files.
19229 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
19230 of todo files, in case of external deletion.
19231 (todo-add-file): Replace unnecessary setq by let-binding.
19232 (todo-find-archive): Check whether there are any archives.
19233 Replace unnecessary setq by let-binding.
19234 (todo-archive-done-item): Use find-file-noselect to get the
19235 archive buffer whether or not the archive already exists.
19236 Remove superfluous code. Use file size instead of buffer-file-name to
19237 check if the archive is new; if it is, update list of archives.
19238 (todo-default-todo-file): Allow nil to be a valid value for when
19239 there are no todo files.
19240 (todo-reevaluate-default-file-defcustom): Use corrected definition
19241 of todo-default-todo-file.
19242 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
19243 (todo-delete-category, todo-show-categories-table)
19244 (todo-category-number): Clarify comment.
19245 (todo-filter-items): Clarify documentation string.
19246 (todo-show-current-file, todo-display-as-todo-file)
19247 (todo-reset-and-enable-done-separator): Tweak documentation string.
19248 (todo-done-separator): Make separator length window-width, since
19249 bug#2749 is now fixed.
19250
19251 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
19252
19253 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
19254 Support both "gvfs-monitor-dir" and "inotifywait".
19255 (tramp-sh-file-inotifywait-process-filter): Rename from
19256 `tramp-sh-file-notify-process-filter'.
19257 (tramp-sh-file-gvfs-monitor-dir-process-filter)
19258 (tramp-get-remote-gvfs-monitor-dir): New defuns.
19259
19260 2013-07-05 Leo Liu <sdl.web@gmail.com>
19261
19262 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
19263
19264 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19265
19266 * frame.el (display-pixel-height, display-pixel-width)
19267 (display-mm-height, display-mm-width): Mention behavior on
19268 multi-monitor setups in docstrings.
19269 (w32-display-monitor-attributes-list): Declare function.
19270 (display-monitor-attributes-list): Use it.
19271
19272 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
19273
19274 * filenotify.el: New package.
19275
19276 * autorevert.el (top): Require filenotify.el.
19277 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
19278 instead.
19279 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
19280 (auto-revert-notify-handler): Use `file-notify-*' functions.
19281
19282 * subr.el (file-notify-handle-event): Move function to filenotify.el.
19283
19284 * net/tramp.el (tramp-file-name-for-operation):
19285 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
19286
19287 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
19288 for `file-notify-add-watch' and `file-notify-rm-watch'.
19289 (tramp-process-sentinel): Improve trace.
19290 (tramp-sh-handle-file-notify-add-watch)
19291 (tramp-sh-file-notify-process-filter)
19292 (tramp-sh-handle-file-notify-rm-watch)
19293 (tramp-get-remote-inotifywait): New defuns.
19294
19295 2013-07-03 Juri Linkov <juri@jurta.org>
19296
19297 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
19298 call of `occur-read-primary-args' to interactive spec.
19299
19300 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
19301 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
19302
19303 2013-07-03 Matthias Meulien <orontee@gmail.com>
19304
19305 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
19306 `Buffer-menu-multi-occur'. Add it to the menu.
19307 (Buffer-menu-mode): Document it in docstring.
19308 (Buffer-menu-multi-occur): New command. (Bug#14673)
19309
19310 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
19311
19312 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
19313 keywords and built-ins.
19314
19315 2013-07-03 Glenn Morris <rgm@gnu.org>
19316
19317 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
19318
19319 Make info-xref checks case-sensitive by default
19320 * info.el (Info-find-node, Info-find-in-tag-table)
19321 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
19322 Add option for exact case matching of nodes.
19323 * info-xref.el (info-xref): New custom group.
19324 (info-xref-case-fold): New option.
19325 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
19326
19327 2013-07-03 Leo Liu <sdl.web@gmail.com>
19328
19329 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
19330
19331 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
19332
19333 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
19334 middle of block statement initially, lower the depth. Remove
19335 FIXME comment, not longer valid. Remove middle of block statement
19336 detection, no need to do that anymore since we've been using
19337 `ruby-parse-region' here.
19338
19339 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
19340
19341 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
19342
19343 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
19344
19345 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
19346
19347 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
19348
19349 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
19350 (desktop-restore-in-current-display): New customization option.
19351 (desktop--excluded-frame-parameters): Add `font'.
19352 (desktop--save-frames): Rename from desktop--save-windows.
19353 (desktop--restore-in-this-display-p): New function.
19354 (desktop--make-full-frame): Remove unwanted width/height from
19355 full(width|height) frames.
19356 (desktop--restore-frames): Rename from desktop--restore-windows.
19357 Obey desktop-restore-current-display. Do not delete old frames or
19358 select a new frame unless we were able to restore at least one frame.
19359
19360 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
19361
19362 * files.el (find-file-noselect): Simplify conditional expression.
19363
19364 * textmodes/remember.el (remember-append-to-file):
19365 Don't mix `find-buffer-visiting' and `get-file-buffer'.
19366
19367 Add `remember-notes' function to store random notes across Emacs
19368 restarts.
19369 * textmodes/remember.el (remember-data-file): Add :set callback to
19370 affect notes buffer (if any).
19371 (remember-notes): New command.
19372 (remember-notes-buffer-name, bury-remember-notes-on-kill):
19373 New defcustoms for the `remember-notes' function.
19374 (remember-notes-save-and-bury-buffer): New command.
19375 (remember-notes-mode-map): New variable.
19376 (remember-mode): New minor mode.
19377 (remember-notes--kill-buffer-query): New function.
19378 * startup.el (initial-buffer-choice): Add notes to custom type.
19379
19380 2013-06-30 Eli Zaretskii <eliz@gnu.org>
19381
19382 * bindings.el (right-char, left-char): Don't call sit-for, this is
19383 no longer needed. Use arithmetic comparison only for numerical
19384 arguments.
19385
19386 * international/mule-cmds.el (select-safe-coding-system):
19387 Handle the case of FROM being a string correctly. (Bug#14755)
19388
19389 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
19390
19391 * net/shr.el (shr-make-table-1): Add a sanity check that allows
19392 progression on degenerate tables.
19393 (shr-rescale-image): ImageMagick animated images currently don't work.
19394
19395 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
19396
19397 Some fixes and improvements for desktop frame restoration.
19398 It is still experimental and disabled by default.
19399 * desktop.el (desktop--save-windows): Put the selected frame at
19400 the head of the list.
19401 (desktop--make-full-frame): New function.
19402 (desktop--restore-windows): Try to re-select the frame that was
19403 selected upon saving. Do not abort if some frames fail to restore,
19404 just show an error message and continue. Set up maximized frames
19405 so they have default non-maximized dimensions.
19406
19407 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
19408
19409 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
19410 Don't start heredoc inside a string or comment.
19411
19412 2013-06-29 Eli Zaretskii <eliz@gnu.org>
19413
19414 * bindings.el (visual-order-cursor-movement): New defcustom.
19415 (right-char, left-char): Provide visual-order cursor motion by
19416 calling move-point-visually. Update the doc strings.
19417
19418 2013-06-28 Kenichi Handa <handa@gnu.org>
19419
19420 * international/mule.el (define-coding-system): New coding system
19421 properties :inhibit-null-byte-detection,
19422 :inhibit-iso-escape-detection, and :prefer-utf-8.
19423 (set-buffer-file-coding-system): If :charset-list property of
19424 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
19425 appropriate for setting.
19426
19427 * international/mule-cmds.el (select-safe-coding-system):
19428 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
19429 multibyte characters, return utf-8 (or one of its siblings).
19430
19431 * international/mule-conf.el (prefer-utf-8): New coding system.
19432 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
19433 files.
19434
19435 2013-06-28 Ivan Kanis <ivan@kanis.fr>
19436
19437 * net/shr.el (shr-render-region): New function.
19438
19439 * net/eww.el: Autoload `eww-browse-url'.
19440
19441 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
19442
19443 * emacs-lisp/package-x.el (package-upload-buffer-internal):
19444 Adapt to `package-desc-version' being a list.
19445 Use `package--ac-desc-version' to retrieve version from a package
19446 archive element.
19447
19448 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
19449
19450 New experimental feature to save&restore window and frame setup.
19451 * desktop.el (desktop-save-windows): New defcustom.
19452 (desktop--saved-states): New var.
19453 (desktop--excluded-frame-parameters): New defconst.
19454 (desktop--filter-frame-parms, desktop--find-frame-in-display)
19455 (desktop--restore-windows, desktop--save-windows): New functions.
19456 (desktop-save): Call `desktop--save-windows'.
19457 (desktop-read): Call `desktop--restore-windows'.
19458
19459 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
19460
19461 * net/shr.el (add-face-text-property): Remove compat definition.
19462
19463 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
19464
19465 * info.el (Info-try-follow-nearest-node): Move search for footnote
19466 above search for node name to prevent missing a footnote (bug#14717).
19467
19468 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
19469
19470 * obsolete/otodo-mode.el: Add obsolescence info to file header.
19471
19472 2013-06-27 Leo Liu <sdl.web@gmail.com>
19473
19474 * net/eww.el (eww-read-bookmarks): Check file size.
19475
19476 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19477
19478 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
19479 advice--pending if newdef is nil or an autoload (bug#13820).
19480 (advice-mapc): New function.
19481
19482 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
19483
19484 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
19485 probably.
19486 (eww-mode-map): Add a menu bar.
19487 (eww-add-bookmark): New command.
19488 (eww-bookmark-mode): New mode and commands.
19489 (eww-add-bookmark): Remove newlines from the title.
19490 (eww-bookmark-browse): Don't bug out if it's the only window.
19491
19492 2013-06-26 Glenn Morris <rgm@gnu.org>
19493
19494 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
19495 (hfy-size): Handle ttys. (Bug#14668)
19496
19497 * info-xref.el: Update for Texinfo 5 change in *note format.
19498 (info-xref-node-re, info-xref-note-re): New constants.
19499 (info-xref-check-buffer): Use info-xref-note-re.
19500
19501 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19502
19503 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
19504
19505 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
19506 nil terminate the loop (bug#14718).
19507
19508 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
19509
19510 * net/eww.el: Rework history traversal. When going forward/back,
19511 put these actions into the history, too, so that they can be
19512 replayed.
19513 (eww-render): Move the history reset to the correct buffer.
19514
19515 2013-06-25 Juri Linkov <juri@jurta.org>
19516
19517 * files-x.el (modify-dir-local-variable): Change the header comment
19518 in the file with directory local variables. (Bug#14692)
19519
19520 * files-x.el (read-file-local-variable-value): Add `default'.
19521 (Bug#14710)
19522
19523 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
19524
19525 * net/eww.el (eww-make-unique-file-name): Create a unique file
19526 name before saving to entering `y' accidentally asynchronously.
19527
19528 2013-06-25 Ivan Kanis <ivan@kanis.fr>
19529
19530 * net/eww.el (eww-download): New command and keystroke.
19531
19532 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
19533
19534 * net/eww.el (eww-copy-page-url): Change name of command.
19535
19536 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
19537 be more consistent with Info and dired.
19538
19539 * net/eww.el (eww-mode-map): Ditto.
19540
19541 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19542
19543 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
19544 packages from archives.
19545 (package-archive-contents): Change format; include obsolete packages.
19546 (package-desc): Use `dir' to mark builtin packages.
19547 (package--from-builtin): Set the `dir' field to `builtin'.
19548 (generated-autoload-file, version-control): Declare.
19549 (package-compute-transaction): Change first arg and return value to be
19550 lists of package-descs. Adjust to new package-archive-contents format.
19551 (package--add-to-archive-contents): Adjust to new
19552 package-archive-contents format.
19553 (package-download-transaction): Arg is now a list of package-descs.
19554 (package-install): If `pkg' is a package name, pass it as
19555 a requirement, so it is subject to the usual (e.g. disabled) checks.
19556 (describe-package): Accept package-desc as well.
19557 (describe-package-1): Describe a specific package-desc. Add links to
19558 other package-descs for the same package name.
19559 (package-menu-describe-package): Pass the actual package-desc.
19560 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
19561 works correctly.
19562 (package-desc-status): New function.
19563 (package-menu--refresh): New function, extracted
19564 from package-menu--generate.
19565 (package-menu--generate): Use it.
19566 (package-delete): Update package-alist.
19567 (package-menu-execute): Don't call package-initialize.
19568
19569 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
19570 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
19571 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
19572 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
19573 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
19574 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
19575
19576 2013-06-25 Martin Rudalics <rudalics@gmx.at>
19577
19578 * window.el (window--state-get-1): Workaround for bug#14527.
19579 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
19580
19581 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
19582
19583 * net/eww.el (eww-back-url): Implement the history by stashing all
19584 the data into a list.
19585 (eww-forward-url): Allow going forward in the history, too.
19586
19587 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19588
19589 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
19590 for values and use read--expression for expressions (bug#14710).
19591 (read-file-local-variable): Avoid setq.
19592 (read-file-local-variable-mode): Use minor-mode-list.
19593
19594 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
19595
19596 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
19597 for DOI URLs.
19598
19599 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
19600
19601 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
19602 Update imenu-support when dialect changes.
19603
19604 2013-06-25 Leo Liu <sdl.web@gmail.com>
19605
19606 * ido.el (ido-read-internal): Allow forward slash on windows.
19607
19608 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
19609
19610 * net/eww.el (eww): Start of strings is \\`, not ^.
19611
19612 2013-06-24 Ivan Kanis <ivan@kanis.fr>
19613
19614 * net/shr.el (shr-browse-url): Fix interactive spec.
19615
19616 * net/eww.el (eww): Add a trailing slash to domain names.
19617
19618 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
19619
19620 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
19621
19622 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
19623
19624 * net/shr.el (shr-browse-url): Use an external browser if given a
19625 prefix.
19626
19627 * net/eww.el (eww-external-browser): Move to shr.
19628
19629 2013-06-24 Ivan Kanis <ivan@kanis.fr>
19630
19631 * net/eww.el (eww): Work more correctly for file: URLs.
19632 (eww-detect-charset): Allow quoted charsets.
19633 (eww-yank-page-url): New command and keystroke.
19634
19635 2013-06-24 Daiki Ueno <ueno@gnu.org>
19636
19637 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
19638 file name of gpg executable.
19639 (epg-context-program): New function.
19640 (epg-context-home-directory): New function.
19641 (epg-context-set-program): New function.
19642 (epg-context-set-home-directory): New function.
19643 (epg--start): Use `epg-context-program' instead of
19644 'epg-gpg-program'.
19645 (epg--list-keys-1): Likewise.
19646
19647 2013-06-24 Leo Liu <sdl.web@gmail.com>
19648
19649 * ido.el (ido-read-internal): Fix bug#14620.
19650
19651 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
19652
19653 * faces.el (face-documentation): Simplify.
19654 (read-face-attribute, tty-find-type, x-resolve-font-name):
19655 Use `string-match-p'.
19656 (list-faces-display): Use `string-match-p'. Simplify.
19657 (face-spec-recalc): Check face to avoid face alias loops.
19658 (read-color): Use `string-match-p' and non-capturing parenthesis.
19659
19660 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
19661
19662 * net/shr.el (shr-rescale-image): Use the new
19663 :max-width/:max-height functionality.
19664
19665 2013-06-23 Ivan Kanis <ivan@kanis.fr>
19666
19667 * net/eww.el (eww-search-prefix): New variable.
19668 (eww): Use it.
19669 (eww-external-browser): New variable.
19670 (eww-mode-map): New keystroke.
19671 (eww-browse-with-external-browser): New command.
19672
19673 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
19674
19675 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
19676
19677 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
19678 Don't skip aligning the next header field when padding is 0;
19679 otherwise, field width is not respected unless the title is as
19680 wide as the field.
19681
19682 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19683
19684 * emacs-lisp/package.el (package-el-version): Remove.
19685 (package-process-define-package): Fix inf-loop.
19686 (package-install): Allow symbols as arguments again.
19687
19688 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
19689
19690 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
19691 add some more keyword-like methods.
19692 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
19693
19694 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
19695
19696 * bs.el (bs-buffer-show-mark): Make defvar-local.
19697 (bs-mode): Use setq-local.
19698
19699 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
19700 (emacs-lock--try-unlocking): Make defvar-local.
19701
19702 2013-06-22 Glenn Morris <rgm@gnu.org>
19703
19704 * play/cookie1.el (cookie-apropos): Minor simplification.
19705
19706 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
19707
19708 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
19709
19710 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
19711 `regexp-opt', it breaks the build during dumping.
19712
19713 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
19714
19715 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
19716 Highlight keyword-like methods on Kernel and Module with
19717 font-lock-builtin-face.
19718 (auto-mode-alist): Consolidate different entries into one regexp
19719 and add more *file-s.
19720
19721 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
19722
19723 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
19724
19725 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
19726 (diary-entry): Use it in the action of this button type instead of
19727 diary-goto-entry.
19728
19729 * calendar/todo-mode.el: New version.
19730 (todo-add-category): Append new category to end of file and give
19731 it the highest number, instead of putting it at the beginning and
19732 giving it 0. Incorporate noninteractive functionality.
19733 (todo-forward-category): Adapt to 1-based category numbering.
19734 Allow skipping over archived categories.
19735 (todo-backward-category): Derive from todo-forward-category.
19736 (todo-backward-item, todo-forward-item): Make noninteractive and
19737 delegate interactive part to new commands. Make sensitive to done items.
19738 (todo-categories): Make value an alist of category names and
19739 vectors of item counts.
19740 (todo-category-beg): Make a defconst.
19741 (todo-category-number): Use 1 instead of 0 as initial value.
19742 (todo-category-select): Make sensitive to overlays, optional item
19743 highlighting and done items.
19744 (todo-delete-item): Make sensitive to overlays and marked and done items.
19745 (todo-edit-item): Make sensitive to overlays and editing of
19746 date/time header optional. Add format checks.
19747 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
19748 no-op if point is not on an item. Advertise using todo-edit-quit.
19749 (todo-edit-mode): Make sensitive to new format, font-locking, and
19750 multiple todo files.
19751 (todo-insert-item, todo-insert-item-here): Derive from
19752 todo-basic-insert-item and extend functionality.
19753 (todo-item-end, todo-item-start): Make sensitive to done items.
19754 (todo-item-string): Don't return text properties. Restore point.
19755 (todo-jump-to-category): Make sensitive to multiple todo files and
19756 todo archives. Use extended category completion.
19757 (todo-lower-item, todo-raise-item): Rename to *-priority and
19758 derive from todo-set-item-priority.
19759 (todo-mode): Derive from special-mode. Make sensitive to new
19760 format, font-locking and multiple todo files. Make read-only.
19761 (todo-mode-map): Don't suppress digit keys, so they can supply
19762 prefix arguments. Add many new key bindings.
19763 (todo-prefix): Insert as an overlay instead of file text.
19764 Change semantics from diary date expression to purely visual mark.
19765 (todo-print): Rename to todo-print-buffer. Make buffer display
19766 features printable. Remove option to restrict number of items
19767 printed. Add option to print to file.
19768 (todo-print-function): Rename to todo-print-buffer-function.
19769 (todo-quit): Extend to handle exiting new todo modes.
19770 (todo-remove-item): Make sensitive to overlays.
19771 (todo-save): Extend to buffers of filtered items.
19772 (todo-show): Make sensitive to done items, multiple todo files and
19773 new todo modes. Offer to convert legacy todo file before creating
19774 first new todo file.
19775 (todo-show-priorities): Rename to todo-top-priorities.
19776 Change semantics of value 0.
19777 (todo-top-priorities): Rename to todo-filter-top-priorities,
19778 derive from todo-filter-items and extend functionality.
19779 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
19780 and extend functionality to other types of filtered items.
19781 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
19782 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
19783 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
19784 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
19785 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
19786 (todo-edit-mode-hook, todo-entry-prefix-function)
19787 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
19788 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
19789 (todo-initials, todo-insert-threshold, todo-item-string-start)
19790 (todo-line-string, todo-menu, todo-mode-hook)
19791 (todo-more-important-p, todo-previous-answer, todo-previous-line)
19792 (todo-print-priorities, todo-remove-separator)
19793 (todo-save-top-priorities-too, todo-string-count-lines)
19794 (todo-string-multiline-p, todo-time-string-format)
19795 (todo-tmp-buffer-name): Remove.
19796 (todo-add-file, todo-archive-done-item, todo-choose-archive)
19797 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
19798 (todo-edit-category-diary-inclusion)
19799 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
19800 (todo-edit-file, todo-edit-item-date-day)
19801 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
19802 (todo-edit-item-date-month, todo-edit-item-date-to-today)
19803 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
19804 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
19805 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
19806 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
19807 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
19808 (todo-filter-top-priorities-multifile, todo-find-archive)
19809 (todo-find-filtered-items-file, todo-go-to-source-item)
19810 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
19811 (todo-jump-to-archive-category, todo-lower-category)
19812 (todo-mark-category, todo-marked-item-p, todo-merge-category)
19813 (todo-move-category, todo-move-item, todo-next-button)
19814 (todo-next-item, todo-padded-string, todo-powerset)
19815 (todo-previous-button, todo-previous-item)
19816 (todo-print-buffer-to-file, todo-raise-category)
19817 (todo-rename-category, todo-repair-categories-sexp, todo-search)
19818 (todo-set-category-number, todo-set-item-priority)
19819 (todo-set-top-priorities-in-category)
19820 (todo-set-top-priorities-in-file, todo-show-categories-table)
19821 (todo-sort-categories-alphabetically-or-numerically)
19822 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
19823 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
19824 (todo-toggle-item-header, todo-toggle-item-highlighting)
19825 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
19826 (todo-toggle-view-done-items, todo-toggle-view-done-only)
19827 (todo-unarchive-items, todo-unmark-category): New commands.
19828 (todo-absolute-file-name, todo-add-to-buffer-list)
19829 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
19830 (todo-basic-insert-item, todo-category-completions)
19831 (todo-category-number, todo-category-string-matcher-1)
19832 (todo-category-string-matcher-2, todo-check-filtered-items-file)
19833 (todo-check-format, todo-clear-matches)
19834 (todo-comment-string-matcher, todo-convert-legacy-date-time)
19835 (todo-current-category, todo-date-string-matcher)
19836 (todo-define-insertion-command, todo-diary-expired-matcher)
19837 (todo-diary-goto-entry, todo-diary-item-p)
19838 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
19839 (todo-display-categories, todo-display-sorted, todo-done-item-p)
19840 (todo-done-item-section-p, todo-done-separator)
19841 (todo-done-string-matcher, todo-files, todo-filter-items)
19842 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
19843 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
19844 (todo-insert-category-line, todo-insert-item-from-calendar)
19845 (todo-insert-sort-button, todo-insert-with-overlays)
19846 (todo-insertion-command-name, todo-insertion-key-bindings)
19847 (todo-label-to-key, todo-longest-category-name-length)
19848 (todo-make-categories-list, todo-mode-external-set)
19849 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
19850 (todo-modes-set-3, todo-multiple-filter-files)
19851 (todo-nondiary-marker-matcher, todo-prefix-overlays)
19852 (todo-read-category, todo-read-date, todo-read-dayname)
19853 (todo-read-file-name, todo-read-time)
19854 (todo-reevaluate-category-completions-files-defcustom)
19855 (todo-reevaluate-default-file-defcustom)
19856 (todo-reevaluate-filelist-defcustoms)
19857 (todo-reevaluate-filter-files-defcustom)
19858 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
19859 (todo-reset-done-separator, todo-reset-done-separator-string)
19860 (todo-reset-done-string, todo-reset-global-current-todo-file)
19861 (todo-reset-highlight-item, todo-reset-nondiary-marker)
19862 (todo-reset-prefix, todo-set-categories)
19863 (todo-set-date-from-calendar, todo-set-show-current-file)
19864 (todo-set-top-priorities, todo-short-file-name)
19865 (todo-show-current-file, todo-sort, todo-time-string-matcher)
19866 (todo-total-item-counts, todo-update-buffer-list)
19867 (todo-update-categories-display, todo-update-categories-sexp)
19868 (todo-update-count, todo-validate-name, todo-y-or-n-p):
19869 New functions.
19870 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
19871 New major modes.
19872 (todo-categories, todo-display, todo-edit, todo-faces)
19873 (todo-filtered): New defgroups.
19874 (todo-archived-only, todo-button, todo-category-string, todo-date)
19875 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
19876 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
19877 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
19878 (todo-add-item-if-new-category, todo-always-add-time-string)
19879 (todo-categories-align, todo-categories-archived-label)
19880 (todo-categories-category-label, todo-categories-diary-label)
19881 (todo-categories-done-label, todo-categories-number-separator)
19882 (todo-categories-todo-label, todo-categories-totals-label)
19883 (todo-category-completions-files, todo-completion-ignore-case)
19884 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
19885 (todo-done-separator-string, todo-done-string)
19886 (todo-files-function, todo-filter-done-items, todo-filter-files)
19887 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
19888 (todo-initial-category, todo-initial-file, todo-item-mark)
19889 (todo-legacy-date-time-regexp, todo-mode-line-function)
19890 (todo-nondiary-marker, todo-number-prefix)
19891 (todo-print-buffer-function, todo-show-current-file)
19892 (todo-show-done-only, todo-show-first, todo-show-with-done)
19893 (todo-skip-archived-categories, todo-top-priorities-overrides)
19894 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
19895 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
19896 New defcustoms.
19897 (todo-category-done, todo-date-pattern, todo-date-string-start)
19898 (todo-diary-items-buffer, todo-done-string-start)
19899 (todo-filtered-items-buffer, todo-item-start)
19900 (todo-month-abbrev-array, todo-month-name-array)
19901 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
19902 (todo-top-priorities-buffer): New defconsts.
19903 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
19904 (todo-categories-with-marks, todo-category-string-face)
19905 (todo-comment-face, todo-comment-string, todo-current-todo-file)
19906 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
19907 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
19908 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
19909 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
19910 (todo-font-lock-keywords, todo-global-current-todo-file)
19911 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
19912 (todo-insertion-commands-args)
19913 (todo-insertion-commands-args-genlist)
19914 (todo-insertion-commands-names, todo-insertion-map)
19915 (todo-key-bindings-t, todo-key-bindings-t+a)
19916 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
19917 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
19918 (todo-nondiary-face, todo-print-buffer, todo-time-face)
19919 (todo-visited): New variables.
19920
19921 2013-06-21 Glenn Morris <rgm@gnu.org>
19922
19923 * play/cookie1.el (cookie-apropos): Add optional display argument.
19924 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
19925 (psychoanalyze-pinhead): Use cookie-doctor.
19926
19927 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
19928
19929 * emacs-lisp/package.el (tar-get-file-descriptor)
19930 (tar--extract): Declare.
19931
19932 2013-06-21 Eduard Wiebe <usenet@pusto.de>
19933
19934 Extend flymake's warning predicate to be a function (bug#14217).
19935 * progmodes/flymake.el (flymake-warning-predicate): New.
19936 (flymake-parse-line): Use it.
19937 (flymake-warning-re): Make obsolete alias to
19938 `flymake-warning-predicate'.
19939
19940 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19941
19942 * emacs-lisp/package.el (package-alist): Include obsolete packages.
19943 (package-obsolete-list): Remove.
19944 (package-activate): Remove min-version argument. Add `force' argument.
19945 Adjust to new package-alist format.
19946 (package-mark-obsolete): Remove.
19947 (package-unpack): Force reload of the package's autoloads.
19948 (package-installed-p): Check builtins if the installed package is not
19949 recent enough.
19950 (package-initialize): Don't reset package-obsolete-list.
19951 Don't specify which package version to activate.
19952 (package-process-define-package, describe-package-1)
19953 (package-menu--generate): Adjust to new package-alist format.
19954
19955 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
19956
19957 * allout-widgets.el (allout-widgets-mode-off)
19958 (allout-widgets-mode-on, allout-widgets-pre-command-business)
19959 (allout-widgets-post-command-business)
19960 (allout-widgets-after-copy-or-kill-function)
19961 (allout-widgets-after-undo-function, allout-test-range-overlaps)
19962 (allout-decorate-item-and-context)
19963 (allout-graphics-modification-handler): Fix typos in docstrings.
19964 (allout-get-or-create-parent-widget): Use `looking-at-p'.
19965
19966 * cmuscheme.el (scheme-start-file): Doc fix.
19967 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
19968 (scheme-input-filter): Use `string-match-p'.
19969
19970 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
19971
19972 * dired-x.el: Use Dired consistently in docstrings.
19973
19974 * dired.el: Use Dired consistently in docstrings.
19975 (dired-readin, dired-mode): Use `setq-local'.
19976 (dired-switches-alist): Make defvar-local.
19977 (dired-buffers-for-dir): Use `zerop'.
19978 (dired-safe-switches-p, dired-switches-escape-p)
19979 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
19980 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
19981 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
19982 (dired-goto-next-nontrivial-file): Use `string-match-p'.
19983 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
19984 (dired-toggle-marks, dired-mark-files-containing-regexp)
19985 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
19986 (dired-flag-auto-save-files, dired-flag-backup-files):
19987 Use `looking-at-p'.
19988 (dired-mark-files-regexp, dired-build-subdir-alist):
19989 Use `string-match-p', `looking-at-p'.
19990
19991 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
19992 (direct-print-region-helper): Use `string-match-p'.
19993
19994 2013-06-21 Leo Liu <sdl.web@gmail.com>
19995
19996 * comint.el (comint-redirect-results-list-from-process):
19997 Fix infinite loop.
19998
19999 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20000
20001 * net/eww.el (eww-update-header-line-format): Quote % characters.
20002
20003 2013-06-21 Glenn Morris <rgm@gnu.org>
20004
20005 * play/cookie1.el (cookie): New custom group.
20006 (cookie-file): New option.
20007 (cookie-check-file): New function.
20008 (cookie): Make it interactive. Make start and end messages optional.
20009 Interactively, display the result. Default to cookie-file.
20010 (cookie-insert): Default to cookie-file.
20011 (cookie-snarf): Make start and end messages optional.
20012 Default to cookie-file. Use with-temp-buffer.
20013 (cookie-read): Rename from read-cookie.
20014 Make start and end messages optional. Default to cookie-file.
20015 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
20016 Do not autoload it.
20017 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
20018 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
20019
20020 2013-06-21 Leo Liu <sdl.web@gmail.com>
20021
20022 * progmodes/octave.el (octave-mode): Backward compatibility fix.
20023
20024 2013-06-21 Glenn Morris <rgm@gnu.org>
20025
20026 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
20027
20028 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20029 Daniel Hackney <dan@haxney.org>
20030
20031 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
20032 Consolidate the single-file vs tarball code.
20033 (package-desc-suffix): New function.
20034 (package-desc-full-name): Don't bother inlining it.
20035 (package-load-descriptor): Return the new package-desc.
20036 (package-mark-obsolete): Remove unused arg `package'.
20037 (package-unpack): Make it work for single files as well.
20038 Make it update package-alist.
20039 (package--make-autoloads-and-stuff): Rename from
20040 package--make-autoloads-and-compile. Don't compile any more.
20041 (package--compile): New function.
20042 (package-generate-description-file): New function, extracted from
20043 package-unpack-single.
20044 (package-unpack-single): Remove.
20045 (package--with-work-buffer): Add indentation and debugging info.
20046 (package-download-single): Remove.
20047 (package-install-from-archive): Rename from package-download-tar, make
20048 it take a pkg-desc, and make it work for single files as well.
20049 (package-download-transaction): Simplify.
20050 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
20051 external tar program.
20052 (package-install-from-buffer): Remove `pkg-desc' argument.
20053 Use package-tar-file-info for tar-mode buffers.
20054 (package-install-file): Simplify accordingly.
20055 (package-archive-base): Change to take a pkg-desc.
20056 * tar-mode.el (tar--check-descriptor): New function, extracted from
20057 tar-get-descriptor.
20058 (tar-get-descriptor): Use it.
20059 (tar-get-file-descriptor): New function.
20060 (tar--extract): New function, extracted from tar-extract.
20061 (tar--extract): Use it.
20062 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
20063 case the summary uses non-ascii. Adjust to new calling convention of
20064 package-tar-file-info.
20065
20066 2013-06-21 Leo Liu <sdl.web@gmail.com>
20067
20068 * comint.el (comint-redirect-results-list-from-process):
20069 Fix random delay. (Bug#14681)
20070
20071 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
20072
20073 * profiler.el (profiler-format-number): Use log, not log10.
20074
20075 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
20076
20077 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
20078
20079 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20080
20081 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
20082 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
20083 yet available.
20084 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
20085 (AUTOGENEL): ... here.
20086 * emacs-lisp/cl-macs.el (cl--sublis): New function.
20087 (cl--defsubst-expand): Use it.
20088
20089 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
20090
20091 * subr.el (log10): Move here from C code, and declare as obsolete.
20092 All uses of (log10 X) replaced with (log X 10).
20093
20094 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
20095
20096 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
20097 Declare with `defvar-local'.
20098 (tabulated-list-use-header-line, tabulated-list-entries)
20099 (tabulated-list-padding, tabulated-list-printer)
20100 (tabulated-list-sort-key): Declare with `defvar-local'.
20101 (tabulated-list-init-header, tabulated-list-print-fake-header):
20102 Use `setq-local'.
20103
20104 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
20105
20106 * arc-mode.el (archive-mode): Add `archive-write-file' to
20107 `write-contents-functions' also for remote files. (Bug#14652)
20108
20109 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
20110
20111 * cus-edit.el (custom-commands): Fix typos.
20112 (custom-display): Fix tooltip text.
20113 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
20114 Fix typos in docstrings.
20115 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
20116 (custom-unlispify-menu-entry, custom-magic-value-create)
20117 (custom-add-see-also, custom-group-value-create): Use ?\s.
20118 (custom-guess-type, customize-apropos, editable-field)
20119 (custom-face-value-create): Use `string-match-p'.
20120 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
20121
20122 * custom.el (custom-load-symbol): Use `string-match-p'.
20123
20124 * ansi-color.el: Convert to lexical binding.
20125 (ansi-colors): Fix URL.
20126 (ansi-color-context, ansi-color-context-region): Use defvar-local.
20127 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
20128 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
20129
20130 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20131
20132 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
20133
20134 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
20135
20136 2013-06-19 Tom Tromey <tromey@redhat.com>
20137
20138 * net/eww.el (eww-top-url): Remove.
20139 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
20140 (eww-render): Set new variables. Don't set eww-top-url.
20141 (eww-handle-link): Handle "prev", "home", and "contents".
20142 Downcase the rel text.
20143 (eww-top-url): Choose best top URL.
20144
20145 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20146
20147 * net/eww.el: Rewrite to implement form elements "by hand" instead of
20148 relying in widget.el. Using widget.el leads to too many
20149 user interface inconsistencies.
20150 (eww-self-insert): Implement entering commands in text fields.
20151 (eww-process-text-input): New function to make text input field editing
20152 work.
20153 (eww-submit): Rewrite to use the new-style form methods.
20154 (eww-select-display): Display the correct selected item.
20155 (eww-change-select): Implement changing the select value.
20156 (eww-toggle-checkbox): Implement radio/checkboxes.
20157 (eww-update-field): Fix compilation error.
20158 (eww-tag-textarea): Implement <textarea>.
20159
20160 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
20161 we don't shadow mode-specific bindings.
20162
20163 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
20164 nothing to push.
20165
20166 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
20167
20168 2013-06-19 Glenn Morris <rgm@gnu.org>
20169
20170 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
20171
20172 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
20173
20174 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
20175 not needed.
20176
20177 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
20178
20179 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20180
20181 * net/browse-url.el (browse-url-browser-function):
20182 `eww-browse-url' has the right calling signature, `eww' does not.
20183
20184 2013-06-19 Glenn Morris <rgm@gnu.org>
20185
20186 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20187 Only eval autoloaded macros.
20188 (byte-compile-autoload): Only give the macro warning for macros.
20189
20190 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
20191 (ps-underlined-faces): Declare.
20192
20193 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
20194 (speedbar-add-supported-extension): Declare.
20195
20196 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
20197 Don't include a date stamp in the header of the generated file;
20198 it leads to needless differences between output files.
20199
20200 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
20201
20202 * net/secrets.el (secrets-struct-secret-content-type):
20203 Replace check of introspection data by a test call of "CreateItem".
20204 Some servers do not offer introspection.
20205
20206 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
20207
20208 * electric.el (electric-pair-mode): Improve interaction with
20209 electric-layout-mode.
20210 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
20211 (electric-pair-syntax): Use text-mode-syntax-table in comments
20212 and strings.
20213 (electric-pair--insert): New function.
20214 (electric-pair-post-self-insert-function): Use it and
20215 electric--after-char-pos.
20216
20217 2013-06-19 Leo Liu <sdl.web@gmail.com>
20218
20219 * progmodes/octave.el (octave-help): Fix regexp.
20220
20221 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
20222
20223 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
20224 (shr-table-horizontal-line): Allow nil as a value, and change the
20225 default.
20226 (shr-insert-table-ruler): Respect the nil value.
20227
20228 2013-06-18 Tom Tromey <tromey@barimba>
20229
20230 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
20231 New defvars.
20232 (eww-open-file): New defun.
20233 (eww-render): Initialize new variables.
20234 (eww-display-html): Handle "link" and "a".
20235 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
20236 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
20237 (eww-back-url): Rename from eww-previous-url.
20238 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
20239 New defuns.
20240
20241 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
20242
20243 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
20244 Distinguish ternary operator tokens from slash symbol and slash
20245 char literal.
20246
20247 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
20248
20249 Convert symbol prettification into minor mode and global minor mode.
20250
20251 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
20252 `prog-prettify-symbols', and make a local defvar instead of defcustom.
20253 (prettify-symbols--keywords): Rename from
20254 `prog-prettify-symbols-alist' and make a local defvar.
20255 (prettify-symbols--compose-symbol): Rename from
20256 `prog--prettify-font-lock-compose-symbol'.
20257 (prettify-symbols--make-keywords): Rename from
20258 `prog-prettify-font-lock-symbols-keywords' and simplify.
20259 (prog-prettify-install): Remove.
20260 (prettify-symbols-mode): New minor mode, based on
20261 `prog-prettify-install'.
20262 (turn-on-prettify-symbols-mode): New function.
20263 (global-prettify-symbols-mode): New globalized minor mode.
20264
20265 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20266 * progmodes/cfengine.el (cfengine3-mode):
20267 * progmodes/perl-mode.el (perl-mode): Don't call
20268 `prog-prettify-install'; set `prettify-symbols-alist' instead.
20269
20270 2013-06-18 Juri Linkov <juri@jurta.org>
20271
20272 * files-x.el (modify-file-local-variable-message): New function.
20273 (modify-file-local-variable)
20274 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
20275 and call `modify-file-local-variable-message' when it's non-nil.
20276 (add-file-local-variable, delete-file-local-variable)
20277 (add-file-local-variable-prop-line)
20278 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
20279 and use it. (Bug#9820)
20280
20281 2013-06-18 Juri Linkov <juri@jurta.org>
20282
20283 * emulation/vi.el (vi-shell-op):
20284 * emulation/vip.el (vip-execute-com, ex-command):
20285 * emulation/viper-cmd.el (viper-exec-bang):
20286 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
20287 the call of `shell-command-on-region'. (Bug#14637)
20288
20289 * simple.el (shell-command-on-region): Doc fix.
20290
20291 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
20292
20293 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
20294 (bug#14633).
20295
20296 2013-06-18 Glenn Morris <rgm@gnu.org>
20297
20298 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
20299
20300 * newcomment.el (comment-search-forward, comment-search-backward):
20301 Doc fix. (Bug#14376)
20302
20303 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
20304
20305 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
20306 (buffer-face-mode-invoke): Doc fix.
20307
20308 2013-06-18 Matthias Meulien <orontee@gmail.com>
20309
20310 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
20311 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
20312
20313 2013-06-18 Glenn Morris <rgm@gnu.org>
20314
20315 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
20316 Replace obsolete function generic-make-keywords with its expansion.
20317
20318 * progmodes/python.el (ffap-alist): Declare.
20319
20320 * textmodes/reftex.el (bibtex-mode-map): Declare.
20321
20322 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
20323
20324 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
20325 (package-unpack, package-unpack-single): Return the pkg-dir.
20326 (package-download-transaction): Use it to update package-alist.
20327
20328 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20329
20330 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
20331 possible choice.
20332
20333 2013-06-17 Juri Linkov <juri@jurta.org>
20334
20335 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
20336
20337 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
20338
20339 * emacs-lisp/package.el (package-load-descriptor):
20340 Remove `with-syntax-table' call, `read' doesn't need it.
20341 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
20342
20343 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
20344
20345 * startup.el (command-line): Expand package name returned by
20346 `package--description-file' (bug#14639).
20347
20348 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
20349
20350 * emacs-lisp/package.el (package-load-descriptor): Do not call
20351 `emacs-lisp-mode', just use its syntax table.
20352
20353 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
20354
20355 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
20356 `font-lock-extra-managed-props' if any prettifying keyword is added.
20357 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
20358 (prog-mode): Use `setq-local'.
20359
20360 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
20361
20362 * international/characters.el (standard-case-table): Set syntax of ?»
20363 and ?« to punctuation.
20364
20365 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
20366
20367 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
20368 Save relevant match data before calling `syntax-ppss' (bug#14595).
20369
20370 2013-06-15 Juri Linkov <juri@jurta.org>
20371
20372 * files-x.el (modify-file-local-variable-prop-line): Add local
20373 variables to the end of the existing comment on the first line.
20374 Use `file-auto-mode-skip' to skip interpreter magic line,
20375 and also skip XML declaration.
20376
20377 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20378
20379 * startup.el (package--builtin-versions): New var.
20380 (package-subdirectory-regexp): Remove.
20381 (package--description-file): Hard code its value instead.
20382
20383 * emacs-lisp/package.el: Don't activate packages older than builtin.
20384 (package-obsolete-list): Rename from package-obsolete-alist, and make
20385 it into a simple list of package-desc.
20386 (package-strip-version): Remove.
20387 (package-built-in-p): Use package--builtin-versions.
20388 (package-mark-obsolete): Simplify.
20389 (package-process-define-package): Mark it obsolete if older than the
20390 builtin version.
20391 (package-handle-response): Use line-end-position.
20392 (package-read-archive-contents, package--download-one-archive):
20393 Simplify.
20394 (package--add-to-archive-contents): Skip if older than the builtin or
20395 installed version.
20396 (package-menu-describe-package): Fix last change.
20397 (package-list-unversioned): New var.
20398 (package-menu--generate): Use it.
20399
20400 * emacs-lisp/autoload.el: Manage package--builtin-versions.
20401 (autoload--insert-text, autoload--insert-cookie-text): New functions.
20402 (autoload-builtin-package-versions): New variable.
20403 (autoload-generate-file-autoloads): Use them.
20404 Remove the list of autoloaded functions/macros from the
20405 (autoload...) comments.
20406
20407 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
20408
20409 2013-06-15 Eli Zaretskii <eliz@gnu.org>
20410
20411 * simple.el (line-move-partial): Don't jump to the next screen
20412 line as soon as it becomes visible. Instead, continue enlarging
20413 the vscroll until the portion of a tall screen line that's left on
20414 display is about the height of the frame's default font.
20415 (Bug#14567)
20416
20417 2013-06-15 Glenn Morris <rgm@gnu.org>
20418
20419 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
20420 compilation-error-regexp-alist void, or local while let-bound.
20421
20422 * progmodes/make-mode.el (makefile-mode-syntax-table):
20423 Treat "=" as punctuation. (Bug#14614)
20424
20425 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
20426
20427 * help-fns.el (describe-variable):
20428 Add extra line for permanent-local variables.
20429
20430 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
20431
20432 * progmodes/scheme.el (scheme-font-lock-keywords-2):
20433 Add export, import, library. (Bug#9164)
20434 (library): Set indent function.
20435
20436 2013-06-14 Glenn Morris <rgm@gnu.org>
20437
20438 * term/xterm.el (xterm--query):
20439 Stop after first matching handler. (Bug#14615)
20440
20441 2013-06-14 Ivan Kanis <ivan@kanis.fr>
20442
20443 Add support for dired in saveplace.
20444 * dired.el (dired-initial-position-hook): New variable.
20445 (dired-initial-position): Call hook to place cursor position.
20446 * saveplace.el (save-place-to-alist): Add dired position.
20447 (save-place-dired-hook): New function.
20448
20449 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
20450
20451 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
20452 through a symbol rather than letrec.
20453
20454 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
20455 (package-desc): Add `dir' field.
20456 (package-desc-full-name): New function.
20457 (package-load-descriptor): Combine the two arguments. Don't use `load'.
20458 (package-maybe-load-descriptor): Remove.
20459 (package-load-all-descriptors): Just call package-load-descriptor.
20460 (package--disabled-p): New function.
20461 (package-desc-vers, package-desc-doc): Remove aliases.
20462 (package--dir): Remove function.
20463 (package-activate): Check if a package is disabled.
20464 (package-process-define-package): New function, extracted from
20465 define-package.
20466 (define-package): Turn into a place holder.
20467 (package-unpack-single, package-tar-file-info):
20468 Use package--description-file.
20469 (package-compute-transaction): Use package--disabled-p.
20470 (package-download-transaction): Don't call
20471 package-maybe-load-descriptor since they're all loaded anyway.
20472 (package-install): Change argument to be a pkg-desc.
20473 (package-delete): Use a single pkg-desc argument.
20474 (describe-package-1): Use package-desc-dir instead of package--dir.
20475 Use package-desc property instead of package-symbol.
20476 (package-install-button-action): Adjust accordingly.
20477 (package--push): Rewrite.
20478 (package-menu--print-info): Adjust accordingly. Change the ID format
20479 to be a pkg-desc.
20480 (package-menu-describe-package, package-menu-get-status)
20481 (package-menu--find-upgrades, package-menu-mark-upgrades)
20482 (package-menu-execute, package-menu--name-predicate):
20483 Adjust accordingly.
20484 * startup.el (package--description-file): New function.
20485 (command-line): Use it.
20486 * emacs-lisp/package-x.el (package-upload-buffer-internal):
20487 Use package-desc-version.
20488
20489 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
20490 (byte-compile-preprocess): Use it.
20491 (byte-compile-file-form-defalias): Try a bit harder to use macros we
20492 can't quite recognize.
20493 (byte-compile-add-to-list): Remove.
20494 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
20495 (cconv-closure-convert): Add assertion.
20496
20497 * emacs-lisp/map-ynp.el: Use lexical-binding.
20498 (map-y-or-n-p): Remove unused vars `tail' and `object'.
20499 Factor out some repeated code.
20500
20501 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
20502
20503 * subr.el (with-eval-after-load): New macro.
20504 (eval-after-load): Allow form to be a function.
20505 take advantage of lexical-binding.
20506 (do-after-load-evaluation): Use dolist and adjust to new format.
20507 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
20508
20509 2013-06-13 Juri Linkov <juri@jurta.org>
20510
20511 * replace.el (perform-replace): Display "symbol " and other search
20512 modes from `isearch-message-prefix' in the *Help* buffer.
20513
20514 * isearch.el (isearch-query-replace): Add " symbol" and other
20515 possible search modes from `isearch-message-prefix' to the prompt.
20516 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
20517 when reading a regexp to collect.
20518
20519 2013-06-13 Juri Linkov <juri@jurta.org>
20520
20521 * isearch.el (word-search-regexp): Match whitespace if the search
20522 string begins or ends in whitespace. The LAX arg is applied to
20523 both ends of the search string. Use `regexp-quote' and explicit
20524 \< and \> instead of \b. Use \` and \' instead of ^ and $.
20525 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
20526 boundaries are replaced with symbol boundaries, and characters
20527 between symbols match non-word non-symbol syntax. (Bug#14602)
20528
20529 2013-06-13 Juri Linkov <juri@jurta.org>
20530
20531 * isearch.el (isearch-del-char): Don't exceed the length of
20532 `isearch-string' by the prefix arg. (Bug#14563)
20533
20534 2013-06-13 Juri Linkov <juri@jurta.org>
20535
20536 * isearch.el (isearch-yank-word, isearch-yank-line)
20537 (isearch-char-by-name, isearch-quote-char)
20538 (isearch-printing-char, isearch-process-search-char):
20539 Add optional count prefix arg. (Bug#14563)
20540
20541 * international/isearch-x.el
20542 (isearch-process-search-multibyte-characters):
20543 Add optional count prefix arg.
20544
20545 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
20546
20547 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
20548 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
20549 lexical-binding.
20550
20551 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
20552
20553 * subr.el (set-temporary-overlay-map): Add on-exit argument.
20554
20555 2013-06-13 Glenn Morris <rgm@gnu.org>
20556
20557 * startup.el (tty-handle-args):
20558 Don't just discard "--" and anything after. (Bug#14608)
20559
20560 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
20561
20562 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
20563
20564 Implement changes in Secret Service API. Make it backward compatible.
20565 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
20566 (secrets-create-item): Use it. Prefix properties with interface.
20567
20568 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
20569
20570 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
20571 (term-emulate-terminal): Respect term-suppress-hard-newline.
20572
20573 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
20574
20575 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
20576 Only remove a `thumb-file' overlay. (Bug#14548)
20577
20578 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
20579
20580 * mail/reporter.el (reporter-submit-bug-report):
20581 Handle missing package-name. (Bug#14600)
20582
20583 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
20584
20585 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
20586 (reftex-citation-prompt, reftex-default-bibliography)
20587 (reftex-bib-or-thebib, reftex-get-bibfile-list)
20588 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
20589 (reftex-bib-sort-author, reftex-bib-sort-year)
20590 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
20591 (reftex-extract-bib-entries-from-thebibliography)
20592 (reftex-get-bibkey-default, reftex-get-bib-names)
20593 (reftex-parse-bibtex-entry, reftex-get-bib-field)
20594 (reftex-format-bib-entry, reftex-parse-bibitem)
20595 (reftex-format-bibitem, reftex-do-citation)
20596 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
20597 (reftex-restrict-bib-matches, reftex-extract-bib-file)
20598 (reftex-insert-bib-matches, reftex-format-citation)
20599 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
20600 (reftex-create-bibtex-file): Add docstrings, mostly by converting
20601 existing comments into docstrings.
20602
20603 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
20604
20605 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
20606
20607 2013-06-12 Andreas Schwab <schwab@suse.de>
20608
20609 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
20610 for auto-save files.
20611
20612 2013-06-12 Glenn Morris <rgm@gnu.org>
20613
20614 * ido.el (ido-delete-ignored-files): Remove.
20615 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
20616 Go back to calling ido-ignore-item-p directly.
20617
20618 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
20619
20620 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
20621
20622 * ido.el (ido-delete-ignored-files): New function,
20623 split from ido-make-file-list-1.
20624 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
20625 (ido-make-file-list-1): Use ido-delete-ignored-files.
20626
20627 2013-06-12 Leo Liu <sdl.web@gmail.com>
20628
20629 * progmodes/octave.el (inferior-octave-startup)
20630 (inferior-octave-completion-table)
20631 (inferior-octave-track-window-width-change)
20632 (octave-eldoc-function-signatures, octave-help)
20633 (octave-find-definition): Use single quoted strings.
20634 (inferior-octave-startup-args): Change default value.
20635 (inferior-octave-startup): Do not hard code "-i" and
20636 "--no-line-editing".
20637 (inferior-octave-resync-dirs): Add optional arg NOERROR.
20638 (inferior-octave-directory-tracker): Use it.
20639 (octave-goto-function-definition): Robustify.
20640 (octave-help): Support highlighting operators in 'See also'.
20641 (octave-find-definition): Find subfunctions only in Octave mode.
20642
20643 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
20644
20645 * help-fns.el (help-fns--compiler-macro): If the handler function is
20646 named, then put a link to it.
20647 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
20648 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
20649 (cl-typep): Use it.
20650 (cl-eval-when): Simplify debug spec.
20651 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
20652 compiler-macro function instead of setting `compiler-macro-file'.
20653
20654 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
20655
20656 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
20657 * vc/vc-hooks.el (vc-stay-local): Doc fix.
20658
20659 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
20660 Daniel Hackney <dan@haxney.org>
20661
20662 First part of Daniel Hackney's patch to package.el.
20663 * emacs-lisp/package.el: Use defstruct.
20664 (package-desc): New, main struct.
20665 (package--bi-desc, package--ac-desc): New structs, used to describe the
20666 format in external files.
20667 (package-desc-vers): Replace with package-desc-version accessor.
20668 (package-desc-doc): Replace with package-desc-summary accessor.
20669 (package-activate-1): Remove `package' arg since the pkg-vec now
20670 includes the name.
20671 (define-package): Use package-desc-from-define.
20672 (package-unpack-single): Change file-name arg to be a symbol.
20673 (package--add-to-archive-contents): Use package-desc-create and new
20674 accessor functions to package--ac-desc.
20675 (package-buffer-info, package-tar-file-info): Return a package-desc.
20676 (package-install-from-buffer): Remove `type' argument. Change pkg-info
20677 arg to be a package-desc.
20678 (package-install-file): Adjust accordingly. Use \' to match EOS.
20679 (package--from-builtin): New function.
20680 (describe-package-1, package-menu--generate): Use it.
20681 (package--make-autoloads-and-compile): Change name arg to be a symbol.
20682 (package-generate-autoloads): Idem and return the name of the file.
20683 * emacs-lisp/package-x.el (package-upload-buffer-internal):
20684 Change pkg-info arg to be a package-desc.
20685 Use package-make-ac-desc.
20686 (package-upload-file): Use \' to match EOS.
20687 * finder.el (finder-compile-keywords): Use package-make-builtin.
20688
20689 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
20690
20691 * vc/vc.el (vc-deduce-fileset): Change error message.
20692 (vc-read-backend): New function.
20693 (vc-next-action): Use it.
20694
20695 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
20696
20697 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
20698 (prolog-font-lock-keywords): Use regexp-opt instead.
20699 Don't manually highlight strings.
20700 (prolog-mode-variables): Simplify comment-start-skip.
20701 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
20702
20703 * emacs-lisp/generic.el (generic--normalise-comments)
20704 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
20705 (generic-mode-set-comments): Use them.
20706 (generic-bracket-support): Use setq-local.
20707 (generic-make-keywords-list): Declare obsolete.
20708
20709 2013-06-11 Glenn Morris <rgm@gnu.org>
20710
20711 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20712 Prettify after setting font-lock-defaults. (Bug#14574)
20713
20714 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
20715
20716 * replace.el (query-replace, occur-read-regexp-defaults-function)
20717 (replace-search):
20718 * subr.el (declare-function, number-sequence, local-set-key)
20719 (substitute-key-definition, locate-user-emacs-file)
20720 (with-silent-modifications, split-string, eval-after-load):
20721 Fix typos, remove unneeded backslashes and reflow some docstrings.
20722
20723 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
20724
20725 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
20726 default for Elisp files.
20727
20728 2013-06-11 Glenn Morris <rgm@gnu.org>
20729
20730 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
20731 although define-derived-mode was doing this anyway. (Bug#14583)
20732
20733 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
20734
20735 * allout.el (allout-encryption-plaintext-sanitization-regexps):
20736 Fix make-variable-buffer-local call to refer to the correct variable.
20737
20738 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
20739
20740 * eshell/em-term.el (eshell-visual-commands)
20741 (eshell-visual-subcommands, eshell-visual-options):
20742 Add summary line to docstrings. Add cross-references.
20743
20744 2013-06-10 Glenn Morris <rgm@gnu.org>
20745
20746 * epa.el (epa-read-file-name): New function. (Bug#14510)
20747 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
20748
20749 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
20750
20751 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
20752 output redirection to be ignored with visual commands.
20753
20754 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
20755
20756 * eshell/em-term.el (eshell-visual-command-p): New function.
20757 (eshell-term-initialize): Move long lambda to separate function
20758 eshell-visual-command-p.
20759 * eshell/em-dirs.el (eshell-dirs-initialize):
20760 * eshell/em-script.el (eshell-script-initialize):
20761 Add missing #' to lambda.
20762
20763 2013-06-08 Leo Liu <sdl.web@gmail.com>
20764
20765 * progmodes/octave.el (octave-add-log-current-defun): New function.
20766 (octave-mode): Set add-log-current-defun-function.
20767 (octave-goto-function-definition): Do not move point if not found.
20768 (octave-find-definition): Enhance to try subfunctions first.
20769
20770 2013-06-08 Glenn Morris <rgm@gnu.org>
20771
20772 * emacs-lisp/bytecomp.el (byte-compile-char-before)
20773 (byte-compile-backward-char, byte-compile-backward-word):
20774 Improve previous change, to handle non-explicit nil.
20775
20776 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
20777
20778 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
20779 (smie--opener/closer-at-point): New function.
20780 (smie--matching-block-data): Use it. Don't match from right after an
20781 opener or right before a closer. Obey smie-blink-matching-inners.
20782 Don't signal a mismatch for repeated inners like "switch..case..case".
20783
20784 2013-06-07 Leo Liu <sdl.web@gmail.com>
20785
20786 * progmodes/octave.el (octave-mode): Set comment-use-global-state
20787 to t. (Bug#14303)
20788 (octave-function-header-regexp): Fix. (Bug#14570)
20789 (octave-help-mode-finish-hook, octave-help-mode-finish):
20790 Remove. Just use temp-buffer-show-hook.
20791
20792 * newcomment.el (comment-search-backward): Revert last change.
20793 (Bug#14434)
20794
20795 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
20796
20797 2013-06-07 Eli Zaretskii <eliz@gnu.org>
20798
20799 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
20800 through xargs, to avoid failure due to MS-Windows limitations on
20801 command-line length.
20802
20803 2013-06-06 Glenn Morris <rgm@gnu.org>
20804
20805 * font-lock.el (lisp-font-lock-keywords-2):
20806 Treat user-error like error.
20807
20808 * emacs-lisp/bytecomp.el (byte-compile-char-before)
20809 (byte-compile-backward-char, byte-compile-backward-word):
20810 Handle explicit nil arguments. (Bug#14565)
20811
20812 2013-06-05 Alan Mackenzie <acm@muc.de>
20813
20814 * isearch.el (isearch-allow-prefix): New user option.
20815 (isearch-other-meta-char): Don't exit isearch when a prefix
20816 argument is typed whilst `isearch-allow-prefix' is non-nil.
20817 (Bug#9706)
20818
20819 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20820
20821 * autorevert.el (auto-revert-notify-handler): Use memq.
20822 Hide assertion failure.
20823
20824 * skeleton.el: Use cl-lib.
20825 (skeleton-further-elements): Use defvar-local.
20826 (skeleton-insert): Use cl-progv.
20827
20828 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
20829
20830 * progmodes/prog-mode.el (prog-prettify-symbols)
20831 (prog-prettify-install): Update docstrings.
20832
20833 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20834
20835 * simple.el: Move all the prog-mode code to prog-mode.el.
20836 * progmodes/prog-mode.el: New file.
20837 * loadup.el: Add prog-mode.el.
20838
20839 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
20840
20841 * simple.el (prog-prettify-symbols): Add version.
20842 (prog-prettify-install): Add convenience function to prettify symbols.
20843
20844 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
20845 (perl--augmented-font-lock-keywords-1)
20846 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
20847 variables and use it.
20848
20849 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
20850 (cfengine3-mode): Remove unneeded variable and use it.
20851
20852 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
20853 (lisp--augmented-font-lock-keywords-1)
20854 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
20855 Remove unneeded variables and use it.
20856
20857 2013-06-05 João Távora <joaotavora@gmail.com>
20858
20859 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
20860 to point when opening the connection. (Bug#14380)
20861
20862 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20863
20864 * subr.el (load-history-regexp, load-history-filename-element)
20865 (eval-after-load, after-load-functions, do-after-load-evaluation)
20866 (eval-next-after-load, display-delayed-warnings)
20867 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
20868 definition of save-match-data.
20869 (overriding-local-map): Remove accidental obsolescence declaration.
20870
20871 * emacs-lisp/edebug.el (edebug-result): Move before first use.
20872
20873 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
20874
20875 Generalize symbol prettify support to prog-mode and implement it
20876 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
20877 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
20878 (prog--prettify-font-lock-compose-symbol)
20879 (prog-prettify-font-lock-symbols-keywords): New variables and
20880 functions to support symbol prettification.
20881 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
20882 (lisp--augmented-font-lock-keywords-1)
20883 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
20884 (lisp--prettify-symbols-alist): Implement prettify of lambda.
20885 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
20886 (cfengine3--prettify-symbols-alist, cfengine3-mode):
20887 Implement prettify of -> => :: strings.
20888 * progmodes/perl-mode.el (perl-prettify-symbols)
20889 (perl--font-lock-compose-symbol)
20890 (perl--font-lock-symbols-keywords): Move to prog-mode.
20891 (perl--prettify-symbols-alist): Prettify -> => :: strings.
20892 (perl-font-lock-keywords-1)
20893 (perl-font-lock-keywords-2): Remove explicit prettify support.
20894 (perl--augmented-font-lock-keywords)
20895 (perl--augmented-font-lock-keywords-1)
20896 (perl--augmented-font-lock-keywords-2, perl-mode):
20897 Implement prettify support.
20898
20899 2013-06-05 Leo Liu <sdl.web@gmail.com>
20900
20901 Re-implement SMIE matching block highlight using
20902 show-paren-data-function. (Bug#14395)
20903 * emacs-lisp/smie.el (smie-matching-block-highlight)
20904 (smie--highlight-matching-block-overlay)
20905 (smie--highlight-matching-block-lastpos)
20906 (smie-highlight-matching-block)
20907 (smie-highlight-matching-block-mode): Remove.
20908 (smie--matching-block-data-cache): New variable.
20909 (smie--matching-block-data): New function.
20910 (smie-setup): Use smie--matching-block-data for
20911 show-paren-data-function.
20912
20913 * progmodes/octave.el (octave-mode-menu): Fix.
20914 (octave-find-definition): Skip garbage lines.
20915
20916 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20917
20918 Fix compilation error with simultaneous dynamic+lexical scoping.
20919 Add warning when a defvar appears after the first let-binding.
20920 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
20921 (byte-compile-close-variables): Initialize it.
20922 (byte-compile--declare-var): New function.
20923 (byte-compile-file-form-defvar)
20924 (byte-compile-file-form-define-abbrev-table)
20925 (byte-compile-file-form-custom-declare-variable): Use it.
20926 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
20927 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
20928 (byte-compile-bind): Handle dynamic bindings that shadow
20929 lexical bindings.
20930 (byte-compile-unbind): Make arg non-optional.
20931 (byte-compile-let): Simplify.
20932 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
20933 (cconv--analyse-function, cconv-analyse-form): Populate it.
20934 Protect byte-compile-bound-variables to limit the scope of defvars.
20935 (cconv-analyse-form): Add missing rule for (defvar <foo>).
20936 Remove unneeded rule for `declare'.
20937
20938 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
20939 so as to avoid depending on cl-adjoin at run-time.
20940 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
20941
20942 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
20943 (macroexp--warn-and-return): Use it.
20944
20945 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20946
20947 * subr.el: Convert to lexical binding.
20948 (overriding-local-map): Make obsolete.
20949 (add-to-list): Doc fix. Add compiler macro.
20950 (read-key): Swap values of local maps.
20951
20952 2013-06-05 Leo Liu <sdl.web@gmail.com>
20953
20954 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
20955
20956 2013-06-04 Leo Liu <sdl.web@gmail.com>
20957
20958 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
20959 (compilation-auto-jump): Suppress the "Mark set" message to give
20960 way to exit message.
20961
20962 2013-06-04 Alan Mackenzie <acm@muc.de>
20963
20964 Remove faulty optimization from indentation calculation.
20965 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
20966 search limit based on 2000 characters back from indent-point.
20967
20968 2013-06-03 Tassilo Horn <tsdh@gnu.org>
20969
20970 * eshell/em-term.el (cl-lib): Require `cl-lib'.
20971
20972 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
20973
20974 * emacs-lisp/lisp.el: Use lexical-binding.
20975 (lisp--local-variables-1, lisp--local-variables): New functions.
20976 (lisp--local-variables-completion-table): New var.
20977 (lisp-completion-at-point): Use it complete let-bound vars.
20978
20979 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
20980 eagerly (bug#14422).
20981
20982 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
20983
20984 * autorevert.el (auto-revert-notify-enabled)
20985 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
20986 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
20987 (auto-revert-notify-handler): Handle also gfilenotify.
20988
20989 * subr.el (file-notify-handle-event): New defun. Replacing ...
20990 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
20991 Remove.
20992
20993 2013-06-03 Juri Linkov <juri@jurta.org>
20994
20995 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
20996 `M-s h .'. (Bug#14427)
20997
20998 * hi-lock.el (highlight-symbol-at-point): New alias for the new
20999 command `hi-lock-face-symbol-at-point'.
21000 (hi-lock-face-symbol-at-point): New command.
21001 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
21002 (hi-lock-menu): Add `highlight-symbol-at-point'.
21003 (hi-lock-mode): Doc fix.
21004
21005 * isearch.el (isearch-forward-symbol-at-point): New command.
21006 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
21007 (isearch-highlight-regexp): Add a regexp which matches
21008 words/symbols for word/symbol mode.
21009
21010 * subr.el (find-tag-default-bounds): New function with the body
21011 mostly moved from `find-tag-default'.
21012 (find-tag-default): Move most code to `find-tag-default-bounds',
21013 call it and apply `buffer-substring-no-properties' afterwards.
21014
21015 2013-06-03 Tassilo Horn <tsdh@gnu.org>
21016
21017 * eshell/em-term.el (eshell-term-initialize):
21018 Use `cl-intersection' rather than `intersection'.
21019
21020 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
21021
21022 * vc/log-view.el: Doc fix.
21023 (log-view-mode-map): Copy keymap from `special-mode-map'.
21024
21025 2013-06-02 Eric Ludlam <zappo@gnu.org>
21026
21027 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
21028 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
21029 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
21030 (eieio-unbound, eieio-default-superclass)
21031 (eieio--define-field-accessors, method-static, method-before)
21032 (method-primary, method-after, method-num-lists)
21033 (method-generic-before, method-generic-primary)
21034 (method-generic-after, method-num-slots)
21035 (eieio-specialized-key-to-generic-key)
21036 (eieio--check-type, class-v, class-p)
21037 (eieio-class-name, define-obsolete-function-alias)
21038 (eieio-class-parents-fast, eieio-class-children-fast)
21039 (same-class-fast-p, class-constructor, generic-p)
21040 (generic-primary-only-p, generic-primary-only-one-p)
21041 (class-option-assoc, class-option, eieio-object-p)
21042 (class-abstract-p, class-method-invocation-order)
21043 (eieio-defclass-autoload-map, eieio-defclass-autoload)
21044 (eieio-class-un-autoload, eieio-defclass)
21045 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
21046 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
21047 (eieio--defgeneric-init-form, eieio-defgeneric-form)
21048 (eieio-defgeneric-reset-generic-form)
21049 (eieio-defgeneric-form-primary-only)
21050 (eieio-defgeneric-reset-generic-form-primary-only)
21051 (eieio-defgeneric-form-primary-only-one)
21052 (eieio-defgeneric-reset-generic-form-primary-only-one)
21053 (eieio-unbind-method-implementations)
21054 (eieio--defmethod, eieio--typep)
21055 (eieio-perform-slot-validation, eieio-validate-slot-value)
21056 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
21057 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
21058 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
21059 (eieio-slot-name-index, eieio-class-slot-name-index)
21060 (eieio-set-defaults, eieio-initarg-to-attribute)
21061 (eieio-attribute-to-initarg, eieio-c3-candidate)
21062 (eieio-c3-merge-lists, eieio-class-precedence-c3)
21063 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
21064 (eieio-class-precedence-list, eieio-generic-call-methodname)
21065 (eieio-generic-call-arglst, eieio-generic-call-key)
21066 (eieio-generic-call-next-method-list)
21067 (eieio-pre-method-execution-functions, eieio-generic-call)
21068 (eieio-generic-call-primary-only, eieiomt-method-list)
21069 (eieiomt-optimizing-obarray, eieiomt-install)
21070 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
21071 (eieio-generic-form, eieio-defmethod, make-obsolete)
21072 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
21073 (defclass): Remove `eval-and-compile' from macro.
21074 (call-next-method, shared-initialize): Instead of using
21075 `scoped-class' variable, use new eieio--scoped-class, and
21076 eieio--with-scoped-class.
21077 (initialize-instance): Rename local variable 'scoped-class' to
21078 'this-class' to remove ambiguitity from old global.
21079
21080 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
21081 eieio.el.
21082 (eieio--scoped-class-stack): New variable.
21083 (eieio--scoped-class): New fcn.
21084 (eieio--with-scoped-class): New scoping macro.
21085 (eieio-defclass): Use pushnew instead of add-to-list.
21086 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
21087 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
21088 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
21089 `scoped-class' variable, use new eieio--scoped-class, and
21090 eieio--with-scoped-class.
21091
21092 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
21093
21094 2013-06-02 Tassilo Horn <tsdh@gnu.org>
21095
21096 * eshell/esh-ext.el (eshell-external-command): Pass args to
21097 `eshell-find-interpreter'.
21098 (eshell-find-interpreter): Add new second parameter ARGS.
21099
21100 * eshell/em-script.el (eshell-script-initialize): Add second arg
21101 to the function added as MATCH to `eshell-interpreter-alist'.
21102
21103 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
21104 the function added as MATCH to `eshell-interpreter-alist'.
21105
21106 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
21107 (eshell-visual-options): New defcustom.
21108 (eshell-escape-control-x): Adapt docstring.
21109 (eshell-term-initialize): Test `eshell-visual-subcommands' and
21110 `eshell-visual-options' in addition to `eshell-visual-commands'.
21111 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
21112
21113 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
21114
21115 * progmodes/python.el (python-indent-block-enders): Add break,
21116 continue and raise keywords.
21117
21118 2013-06-01 Glenn Morris <rgm@gnu.org>
21119
21120 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
21121
21122 Plain (f)boundp silences compilation warnings since Emacs 22.1.
21123 * progmodes/cc-cmds.el (delete-forward-p):
21124 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
21125 * progmodes/cc-engine.el (buffer-syntactic-context):
21126 * progmodes/cc-fonts.el (face-property-instance):
21127 * progmodes/cc-mode.el (set-keymap-parents):
21128 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
21129 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
21130 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
21131 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
21132 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
21133
21134 * progmodes/cc-vars.el (other): Emacs has this widget since
21135 at least 21.1, so don't (re)define it.
21136
21137 * eshell/em-cmpl.el (eshell-cmpl-initialize):
21138 Replace the obsolete alias pcomplete-arg-quote-list.
21139
21140 2013-06-01 Leo Liu <sdl.web@gmail.com>
21141
21142 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
21143 punctuation syntax.
21144 (inferior-octave-minimal-columns)
21145 (inferior-octave-last-column-width): New variables.
21146 (inferior-octave-track-window-width-change): New function.
21147 (inferior-octave-mode): Adjust column width so that Octave output,
21148 for example from 'ls', can fit into the window nicely.
21149
21150 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
21151
21152 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
21153 Highlight expansions inside regexp literals.
21154
21155 2013-05-31 Glenn Morris <rgm@gnu.org>
21156
21157 * obsolete/sym-comp.el (symbol-complete):
21158 Replace obsolete completion-annotate-function.
21159
21160 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
21161
21162 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
21163
21164 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
21165 New function, checks if point is inside a literal that allows
21166 expression expansion.
21167 (ruby-syntax-propertize-expansion): Use it.
21168 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
21169 around the body.
21170
21171 2013-05-30 Juri Linkov <juri@jurta.org>
21172
21173 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
21174 to "\M-si".
21175 (isearch-invisible): New variable.
21176 (isearch-forward): Doc fix.
21177 (isearch-mode): Set `isearch-invisible'
21178 to the value of `search-invisible'.
21179 (isearch-toggle-case-fold): Doc fix.
21180 (isearch-toggle-invisible): New command.
21181 (isearch-query-replace): Let-bind `search-invisible'
21182 to the value of `isearch-invisible'.
21183 (isearch-search): Use `isearch-invisible' instead of
21184 `search-invisible'. Let-bind `search-invisible'
21185 to the value of `isearch-invisible'. (Bug#11378)
21186
21187 2013-05-30 Juri Linkov <juri@jurta.org>
21188
21189 * replace.el (perform-replace): Avoid `isearch-range-invisible'
21190 call when `query-flag' is nil and `search-invisible' is non-nil.
21191 (Bug#11746)
21192
21193 2013-05-30 Glenn Morris <rgm@gnu.org>
21194
21195 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
21196
21197 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
21198 (cc-require): Suppress spurious "noruntime" warnings.
21199 (cc-require-when-compile): Use fboundp, for sake of compiler.
21200
21201 * progmodes/cc-mode.el: Move load of cc-vars before that of
21202 cc-langs (which in turn loads cc-vars), to quieten compiler.
21203
21204 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21205
21206 * paren.el: Simplify the code.
21207 (show-paren-mode): Always start the timer.
21208 (show-paren--idle-timer): Rename from show-paren-idle-timer.
21209 (show-paren--overlay, show-paren--overlay-1): Rename from
21210 show-paren-overlay and show-paren-overlay-1, and initialize to an
21211 overlay rather than to nil.
21212 (show-paren-function): Misc cleanup and simplifications.
21213
21214 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21215
21216 * paren.el (show-paren-data-function): New hook.
21217 (show-paren--default): New function, extracted from show-paren-function.
21218 (show-paren-function): Use show-paren-data-function.
21219
21220 2013-05-30 Glenn Morris <rgm@gnu.org>
21221
21222 * ielm.el (ielm-map, ielm-complete-symbol):
21223 Use completion-at-point rather than obsolete functions.
21224 (inferior-emacs-lisp-mode): Doc fix.
21225 Set completion-at-point-functions, rather than
21226 comint-dynamic-complete-functions.
21227
21228 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
21229 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
21230 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
21231
21232 * image.el (image-animated-p): Tweak definition.
21233
21234 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
21235 (rlogin-process-connection-type): Tweak default. Add set-after.
21236 (rlogin-host): Doc fix.
21237 (rlogin): Tweak prompt.
21238 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
21239
21240 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
21241 * progmodes/tcl.el (inferior-tcl-mode-map):
21242 Use completion-at-point rather than obsolete alias.
21243
21244 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
21245
21246 * minibuffer.el (read-file-name-completion-ignore-case):
21247 Move before completion--in-region, for eager macro expansion.
21248
21249 2013-05-29 Juri Linkov <juri@jurta.org>
21250
21251 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
21252 for total count of matching lines. Add `global-matches' for total
21253 count of matches. Rename `matches' to `lines' for count of
21254 matching lines. Add `matches' for count of matches.
21255 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
21256 to `prev-line' for line number of prev match endpt.
21257 Increment `matches' for every match. Print the number of
21258 matching lines in the header.
21259 (occur-context-lines): Rename `lines' to `curr-line'.
21260 Rename `prev-lines' to `prev-line'. (Bug#14017)
21261
21262 2013-05-29 Juri Linkov <juri@jurta.org>
21263
21264 * replace.el (perform-replace): Add `skip-read-only-count',
21265 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
21266 Increment them for corresponding conditions and report the number
21267 of skipped occurrences in the final message. (Bug#11746)
21268 (query-replace, query-replace-regexp, query-replace-regexp-eval)
21269 (replace-string, replace-regexp): Doc fix.
21270
21271 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
21272
21273 * emacs-lisp/trace.el (trace--read-args): Provide a default.
21274
21275 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
21276 prog-mode-map (bug#14504).
21277
21278 2013-05-29 Leo Liu <sdl.web@gmail.com>
21279
21280 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
21281 (octave-help): Small simplification.
21282
21283 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
21284 off the highlight first.
21285
21286 2013-05-29 Glenn Morris <rgm@gnu.org>
21287
21288 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
21289 Handle idlwave-last-system-routine-info-cons-cell being nil.
21290
21291 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
21292 (idlwave-write-paths): Simplify via with-temp-buffer.
21293
21294 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
21295 * emulation/cua-rect.el: Also load cua-base at run time.
21296
21297 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
21298 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
21299 (cperl-imenu-on-info): Require imenu.
21300
21301 2013-05-28 Alan Mackenzie <acm@muc.de>
21302
21303 Handle "capitalised keywords" correctly.
21304 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
21305
21306 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
21307
21308 * eshell/em-unix.el: Add -r option to cp.
21309
21310 2013-05-28 Glenn Morris <rgm@gnu.org>
21311
21312 * vc/vc-arch.el (vc-exec-after): Declare.
21313 (vc-switches): Autoload.
21314 * vc/vc-bzr.el: No need to require vc when compiling.
21315 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
21316 (vc-resynch-buffer, vc-dir-refresh): Declare.
21317 (vc-setup-buffer, vc-switches): Autoload.
21318 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
21319 (vc-resynch-buffer): Declare.
21320 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
21321 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
21322 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
21323 (grep-read-regexp, grep-read-files, grep-expand-template)
21324 (vc-dir-refresh): Declare.
21325 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
21326 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
21327 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
21328 * vc/vc-mtn.el (vc-exec-after): Declare.
21329 (vc-switches): Autoload.
21330 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
21331 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
21332 (vc-file-tree-walk): Declare.
21333 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
21334 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
21335 (vc-tag-precondition, vc-rename-master): Autoload.
21336 * vc/vc-svn.el (vc-exec-after): Declare.
21337 (vc-switches, vc-setup-buffer): Autoload.
21338 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
21339 Autoload.
21340 (vc-resynch-buffer): Declare.
21341
21342 * obsolete/fast-lock.el (byte-compile-warnings):
21343 Don't warn about obsolete features in this obsolete file.
21344
21345 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
21346 Move definition before use.
21347
21348 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
21349 (dun-unix-verbs): Remove dun-zippy.
21350 (dun-zippy): Remove function.
21351
21352 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
21353
21354 2013-05-27 Juri Linkov <juri@jurta.org>
21355
21356 * replace.el (replace-search): New function with code moved out
21357 from `perform-replace'.
21358 (replace-highlight, replace-dehighlight): Move function definitions
21359 up closer to `replace-search'. (Bug#11746)
21360
21361 2013-05-27 Juri Linkov <juri@jurta.org>
21362
21363 * replace.el (perform-replace): Ignore invisible matches.
21364 In addition to checking `query-replace-skip-read-only', also
21365 filter out matches by calling `run-hook-with-args-until-failure'
21366 on `isearch-filter-predicates', and also check `search-invisible'
21367 for t or call `isearch-range-invisible'.
21368 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
21369
21370 2013-05-27 Juri Linkov <juri@jurta.org>
21371
21372 * isearch.el (isearch-filter-predicates): Rename from
21373 `isearch-filter-predicate'. Doc fix. (Bug#11378)
21374 (isearch-message-prefix): Display text from the property
21375 `isearch-message-prefix' of the currently active filters.
21376 (isearch-search): Don't compare `isearch-filter-predicate' with
21377 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
21378 on `isearch-filter-predicates'. Also check `search-invisible' for t
21379 or call `isearch-range-invisible'.
21380 (isearch-filter-visible): Make obsolete.
21381 (isearch-lazy-highlight-search):
21382 Call `run-hook-with-args-until-failure' on
21383 `isearch-filter-predicates' and use `isearch-range-invisible'.
21384
21385 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
21386 `isearch-filter-predicates' instead of `funcall'ing
21387 `isearch-filter-predicate'.
21388 (Info-mode): Set `Info-isearch-filter' to
21389 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
21390
21391 * dired-aux.el (dired-isearch-filter-predicate-orig):
21392 Remove variable.
21393 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
21394 (dired-isearch-filenames-end): Add and remove
21395 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
21396 instead of changing the value of `isearch-filter-predicate'.
21397 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
21398 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
21399 Put property `isearch-message-prefix' to "filename " on
21400 `dired-isearch-filter-filenames'.
21401
21402 * wdired.el (wdired-change-to-wdired-mode):
21403 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
21404 locally instead of changing `isearch-filter-predicate'.
21405 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
21406
21407 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
21408
21409 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
21410 return the commit hash (Bug#14459). Also set the
21411 `vc-git-detached' property.
21412 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
21413 (vc-git-mode-line-string): Use the same help-echo format whether
21414 in detached mode or not, because we know the actual revision now.
21415 When in detached mode, shorten the revision to 7 chars.
21416
21417 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
21418
21419 * emacs-lisp/easy-mmode.el (define-minor-mode):
21420 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
21421 mode hook and provide a docstring.
21422
21423 2013-05-27 Alan Mackenzie <acm@muc.de>
21424
21425 Remove spurious syntax-table text properties inserted by C-y.
21426 * progmodes/cc-mode.el (c-after-change): Also clear hard
21427 syntax-table property with value nil.
21428
21429 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
21430
21431 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
21432 when reading the events; the buffer layout shall not be changed.
21433
21434 2013-05-27 Leo Liu <sdl.web@gmail.com>
21435
21436 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
21437 New variable.
21438 (inferior-octave-directory-tracker): Automatically re-sync
21439 default-directory.
21440 (octave-help): Improve handling of 'See also'.
21441
21442 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
21443
21444 * doc-view.el: Minor naming convention tweaks.
21445 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
21446
21447 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
21448 even if there's no `display' property yet (bug#14435).
21449
21450 2013-05-25 Eli Zaretskii <eliz@gnu.org>
21451
21452 * subr.el (unmsys--file-name): Rename from reveal-filename.
21453
21454 * Makefile.in (custom-deps, finder-data, autoloads)
21455 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
21456 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
21457 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
21458
21459 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21460
21461 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
21462 error-completion on the first 2 args of condition-case (bug#14446).
21463 Don't burp at EOB.
21464
21465 2013-05-25 Leo Liu <sdl.web@gmail.com>
21466
21467 * comint.el (comint-previous-matching-input): Do not flood the
21468 *Messages* buffer with trivial messages.
21469
21470 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21471
21472 * progmodes/flymake.el (flymake-nop): Don't return a string.
21473 (flymake-set-at): Fix typo.
21474
21475 * simple.el (read--expression): New function, extracted from
21476 eval-expression. Set completion-at-point-functions (bug#14465).
21477 (eval-expression, eval-minibuffer): Use it.
21478
21479 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
21480
21481 * progmodes/flymake.el (flymake-save-buffer-in-file)
21482 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
21483 (flymake-selected-frame, flymake-log, flymake-ins-after)
21484 (flymake-set-at, flymake-get-buildfile-from-cache)
21485 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
21486 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
21487 Refine the doc string.
21488 (flymake-get-file-name-mode-and-masks): Reformat.
21489 (flymake-get-real-file-name-function): Fix a minor bug.
21490
21491 2013-05-24 Juri Linkov <juri@jurta.org>
21492
21493 * progmodes/grep.el (grep-mode-font-lock-keywords):
21494 Support =linenumber= format used by git-grep for lines with
21495 function names. (Bug#13549)
21496
21497 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21498
21499 * progmodes/octave.el (octave-smie-rules): Return nil rather than
21500 0 after a semi-colon; it works better for smie-auto-fill.
21501 (octave--indent-new-comment-line): New function.
21502 (octave-indent-new-comment-line): Use it (indirectly).
21503 (octave-mode): Don't disable smie-auto-fill. Use add-function to
21504 modify comment-line-break-function.
21505
21506 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
21507 (smie-setup): Use add-function to set it.
21508
21509 2013-05-24 Sam Steingold <sds@gnu.org>
21510
21511 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
21512 argument (before the `interactive' argument).
21513
21514 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21515
21516 * image-mode.el (image-mode-winprops): Add winprops to
21517 image-mode-winprops-alist before running
21518 image-mode-new-window-functions.
21519 * doc-view.el (doc-view-new-window-function): Don't delay
21520 doc-view-goto-page via timers (bug#14435).
21521
21522 2013-05-24 Tassilo Horn <tsdh@gnu.org>
21523
21524 * doc-view.el: Integrate with desktop.el. (Bug#14435)
21525 (doc-view-desktop-save-buffer): New function.
21526 (doc-view-restore-desktop-buffer): New function.
21527 (desktop-buffer-mode-handlers):
21528 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
21529 handler.
21530 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
21531 `desktop-save-buffer' function.
21532
21533 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
21534
21535 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
21536 (tramp-gvfs-file-name-handler): Raise a user error when
21537 `tramp-gvfs-enabled' is nil.
21538 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
21539 Do not raise a user error when loading package. (Bug#14447)
21540
21541 * net/xesam.el: Move to obsolete/.
21542
21543 2013-05-24 Glenn Morris <rgm@gnu.org>
21544
21545 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
21546
21547 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
21548
21549 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
21550 (Info-find-node, Man-getpage-in-background): Declare.
21551
21552 * mail/unrmail.el (unrmail):
21553 Replace obsolete detect-coding-with-priority.
21554
21555 * net/socks.el (socks-split-string): Use this rather than split-string.
21556 (socks-nslookup-host): Update for above change.
21557 (dynamic-choice, s5-dynamic-choice-match)
21558 (s5-dynamic-choice-match-inline, s5-widget-value-create):
21559 Comment out unused code.
21560
21561 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
21562 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
21563 (gud-tooltip-echo-area): Make obsolete.
21564 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
21565
21566 * progmodes/js.el (js--optimize-arglist): Declare.
21567
21568 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
21569
21570 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
21571 (ediff-window-C): Declare.
21572
21573 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
21574 Tweak requires to silence compiler.
21575
21576 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
21577 (he-search-string, he-tried-table, he-expand-list)
21578 (he-init-string, he-string-member, he-substitute-string)
21579 (he-reset-string): Declare.
21580
21581 * obsolete/options.el (list-options): Use custom-variable-p,
21582 rather than obsolete alias.
21583
21584 2013-05-23 Sam Steingold <sds@gnu.org>
21585
21586 * simple.el (shell-command-on-region): Pass the `replace' argument
21587 down to `call-process-region' to comply with the doc as reported on
21588 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
21589
21590 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21591
21592 * emacs-lisp/smie.el (smie-indent-forward-token)
21593 (smie-indent-backward-token): Handle string tokens (bug#14381).
21594
21595 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
21596
21597 * ielm.el (ielm-menu): New menu.
21598 (inferior-emacs-lisp-mode): Set comment-start.
21599
21600 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
21601
21602 * textmodes/reftex.el (reftex-ref-style-toggle):
21603 Fix deactivate action.
21604
21605 * textmodes/reftex-vars.el (reftex-ref-style-alist):
21606 Add cleveref macros.
21607
21608 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
21609 Accept options for bibliography commands.
21610 * textmodes/reftex-vars.el (reftex-bibliography-commands):
21611 Add addbibresource. Basic Biblatex support.
21612
21613 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
21614
21615 * net/tramp-gvfs.el (top):
21616 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
21617 when loading package. (Bug#14447)
21618
21619 2013-05-23 Glenn Morris <rgm@gnu.org>
21620
21621 * progmodes/js.el: No need to load comint when compiling.
21622 (ring-insert, comint-send-string, comint-send-input)
21623 (comint-last-input-end, ido-chop): Declare.
21624
21625 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
21626 * vc/ediff-mult.el: Adjust requires.
21627 (ediff-directories-internal, ediff-directory-revisions-internal)
21628 (ediff-patch-file-internal): Declare.
21629 * vc/ediff-ptch.el: Adjust requires.
21630 (ediff-use-last-dir, ediff-buffers-internal): Declare.
21631 (ediff-find-file): Autoload.
21632 * vc/ediff-util.el: No need to load ediff when compiling.
21633 (ediff-regions-internal): Declare.
21634 * vc/ediff-wind.el: Adjust requires.
21635 (ediff-compute-toolbar-width): Define when compiling.
21636 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
21637 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
21638 (dired-get-filename, dired-get-marked-files)
21639 (ediff-last-dir-patch, ediff-patch-default-directory)
21640 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
21641 (ediff-patch-buffer-internal): Declare.
21642
21643 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
21644 (ispell-process, ispell-buffer-local-words, lm-summary)
21645 (lm-section-start, lm-section-end): Declare.
21646 (checkdoc-ispell-init): Simplify.
21647
21648 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
21649 (he-string-member, he-reset-string, he-substitute-string): Declare.
21650
21651 * eshell/em-ls.el: Adjust requires.
21652 (eshell-glob-regexp): Declare.
21653 * eshell/em-tramp.el: Adjust requires.
21654 (eshell-parse-command): Autoload.
21655 * eshell/em-xtra.el: Adjust requires.
21656 (eshell-parse-command): Autoload.
21657 * eshell/esh-ext.el: Adjust requires.
21658 (eshell-parse-command, eshell-close-handles): Autoload.
21659 * eshell/esh-io.el: Adjust requires.
21660 (eshell-output-filter): Autoload.
21661 * eshell/esh-util.el: No need to load tramp when compiling.
21662 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
21663 Declare.
21664 (eshell-parse-ange-ls): Require ange-ftp and tramp.
21665 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
21666 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
21667 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
21668 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
21669 * eshell/esh-opt.el, eshell/esh-proc.el:
21670 * eshell/esh-var.el: Adjust requires.
21671 * eshell/eshell.el: Do not require esh-util twice.
21672 (eshell-add-input-to-history): Declare.
21673 (eshell-command): Check history module is active before using it.
21674
21675 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
21676
21677 2013-05-22 Leo Liu <sdl.web@gmail.com>
21678
21679 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
21680
21681 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
21682
21683 * autorevert.el (auto-revert-notify-add-watch)
21684 (auto-revert-notify-handler): Add `attrib' for the inotify case,
21685 it indicates changes in file modification time.
21686
21687 2013-05-22 Glenn Morris <rgm@gnu.org>
21688
21689 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
21690 Always delete the autoloaded function from the noruntime and
21691 unresolved functions lists.
21692
21693 * allout.el: No need to load epa, epg, overlay when compiling.
21694 (epg-context-set-passphrase-callback, epg-list-keys)
21695 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
21696 (epg-key-user-id-list): Declare.
21697
21698 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
21699 (viper-set-parsing-style-toggling-macro)
21700 (viper-set-emacs-state-searchstyle-macros):
21701 Use called-interactively-p on Emacs.
21702 (viper-looking-back): Make it an obsolete alias. Update callers.
21703 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
21704 Use looking-back rather than viper-looking-back.
21705 (viper-tmp-insert-at-eob, viper-enlarge-region)
21706 (viper-read-string-with-history, viper-register-to-point)
21707 (viper-append-to-register, viper-change-state-to-vi)
21708 (viper-backward-char-carefully, viper-forward-char-carefully)
21709 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
21710 (viper-change-state-to-emacs): Declare.
21711 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
21712 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
21713 * emulation/viper-mous.el: Do not load viper-cmd.
21714 (viper-backward-char-carefully, viper-forward-char-carefully)
21715 (viper-forward-word, viper-adjust-window): Declare.
21716
21717 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
21718
21719 * progmodes/idlw-help.el (idlwave-help-fontify):
21720 Use called-interactively-p.
21721
21722 * term/w32console.el (w32-get-console-codepage)
21723 (w32-get-console-output-codepage): Declare.
21724
21725 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
21726 Remove unnecessary declarations.
21727 (dframe-message): Doc fix.
21728
21729 * info.el (dframe-select-attached-frame, dframe-current-frame):
21730 Declare.
21731
21732 * speedbar.el (speedbar-message): Make it an obsolete alias.
21733 Update all callers.
21734 (speedbar-with-attached-buffer)
21735 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
21736 (speedbar-with-writable): Use backquote.
21737 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
21738 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
21739 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
21740 rather than speedbar- aliases.
21741 * mail/rmail.el: Load dframe rather than speedbar when compiling.
21742 (speedbar-make-specialized-keymap, speedbar-insert-button)
21743 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
21744 (speedbar-do-function-pointer): Declare.
21745 (rmail-speedbar-button, rmail-speedbar-find-file)
21746 (rmail-speedbar-move-message):
21747 Use dframe-with-attached-buffer rather than speedbar- alias.
21748 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
21749 (dframe-message, speedbar-make-specialized-keymap)
21750 (speedbar-add-expansion-list, speedbar-mode-functions-list)
21751 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
21752 (speedbar-insert-button, dframe-select-attached-frame)
21753 (dframe-maybee-jump-to-attached-frame)
21754 (speedbar-change-initial-expansion-list)
21755 (speedbar-previously-used-expansion-list-name): Declare.
21756 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
21757 Use dframe-message, dframe-with-attached-buffer rather than
21758 speedbar- aliases.
21759 (gud-sentinel): Silence compiler.
21760 * progmodes/vhdl-mode.el (speedbar-refresh)
21761 (speedbar-do-function-pointer, speedbar-add-supported-extension)
21762 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
21763 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
21764 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
21765 (speedbar-file-lists, speedbar-make-tag-line)
21766 (speedbar-line-directory, speedbar-goto-this-file)
21767 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
21768 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
21769 (speedbar-make-button, speedbar-reset-scanners)
21770 (speedbar-files-item-info, speedbar-line-text)
21771 (speedbar-find-file-in-frame, speedbar-set-timer)
21772 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
21773 (speedbar-with-writable): Do not (re)define it.
21774 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
21775 rather than speedbar- alias.
21776
21777 2013-05-21 Leo Liu <sdl.web@gmail.com>
21778
21779 * progmodes/octave.el (octave-mode-menu): Update and re-organize
21780 menu items.
21781 (octave-mode): Tweak fill-nobreak-predicate.
21782 (inferior-octave-startup): Check process to avoid infinite loop.
21783 (inferior-octave): Pop to buffer first to show abornmal process
21784 exit information.
21785
21786 2013-05-21 Glenn Morris <rgm@gnu.org>
21787
21788 * printing.el (pr-menu-bar): Define when compiling.
21789
21790 2013-05-21 Leo Liu <sdl.web@gmail.com>
21791
21792 * progmodes/octave.el (octave-auto-fill): Remove.
21793 (octave-indent-new-comment-line): Improve.
21794 (octave-mode): Use auto fill mode through
21795 comment-line-break-function and fill-nobreak-predicate.
21796 (octave-goto-function-definition): Support DEFUN_DLD.
21797 (octave-beginning-of-defun): Small tweak.
21798 (octave-help): Show parent directory.
21799
21800 2013-05-21 Glenn Morris <rgm@gnu.org>
21801
21802 * files.el (dired-unmark):
21803 * progmodes/gud.el (gdb-input): Update declarations.
21804
21805 * calculator.el (electric, ehelp): No need to load when compiling.
21806 (Electric-command-loop, electric-describe-mode): Declare.
21807
21808 * doc-view.el (doc-view-current-converter-processes): Move before use.
21809
21810 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
21811 Move MODE-set-explicitly definition before use.
21812
21813 * international/mule-diag.el (mule-diag):
21814 Don't use obsolete window-system-version.
21815
21816 * mail/feedmail.el (smtpmail): No need to load when compiling.
21817 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
21818
21819 * mail/mail-utils.el (rfc822): No need to load when compiling.
21820 (rfc822-addresses): Autoload it.
21821 (mail-strip-quoted-names): Trivial simplification.
21822
21823 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
21824 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
21825
21826 * net/snmp-mode.el (tempo): Don't duplicate requires.
21827
21828 * progmodes/prolog.el (info): No need to load when compiling.
21829 (comint): Require before shell requires it.
21830 (Info-goto-node): Autoload it.
21831 (Info-follow-nearest-node): Declare.
21832 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
21833
21834 * textmodes/artist.el (picture-mode-exit): Declare.
21835
21836 * textmodes/reftex-parse.el (reftex-parse-from-file):
21837 Trivial rewrite so the compiler can parse it better.
21838
21839 2013-05-20 Leo Liu <sdl.web@gmail.com>
21840
21841 * progmodes/octave.el (octave-help-mode-map)
21842 (octave-help-mode-finish-hook): New variables.
21843 (octave-help-mode, octave-help-mode-finish): New functions.
21844 (octave-help): Use octave-help-mode.
21845
21846 2013-05-20 Glenn Morris <rgm@gnu.org>
21847
21848 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
21849
21850 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
21851
21852 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
21853 start at point, so that expansion starting right after opening
21854 slash in a regexp is recognized.
21855 (ruby-syntax-before-regexp-re): New defvar, extracted from
21856 ruby-syntax-propertize-function. Since the value of this regexp
21857 is looked up at runtime now, we should be able to turn
21858 `ruby-syntax-methods-before-regexp' into a defcustom later.
21859 (ruby-syntax-propertize-function): Split regexp matching into two
21860 parts, for opening and closing slashes. That allows us to skip
21861 over string interpolations and support multiline regexps.
21862 Don't call `ruby-syntax-propertize-expansions', instead use another rule
21863 for them, which calls `ruby-syntax-propertize-expansion'.
21864 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
21865 call to `ruby-syntax-propertize-function'.
21866 (ruby-syntax-propertize-expansion): Extracted from
21867 `ruby-syntax-propertize-expansions'. Handles one expansion.
21868 (ruby-syntax-propertize-percent-literal): Leave point right after
21869 the percent symbol, so that the expression expansion rule can
21870 propertize the contents.
21871 (ruby-syntax-propertize-heredoc): Leave point at bol following the
21872 heredoc openers.
21873 (ruby-syntax-propertize-expansions): Remove.
21874
21875 2013-05-18 Juri Linkov <juri@jurta.org>
21876
21877 * man.el (Man-default-man-entry): Remove `-' from the end
21878 of the default value. (Bug#14400)
21879
21880 2013-05-18 Glenn Morris <rgm@gnu.org>
21881
21882 * comint.el (comint-password-prompt-regexp):
21883 Allow "password for XXX" where XXX contains colons (eg https://...).
21884
21885 2013-05-18 Leo Liu <sdl.web@gmail.com>
21886
21887 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
21888 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
21889 (octave-source-directories): Don't check process.
21890 (octave-source-directories, octave-find-definition): Doc fix.
21891
21892 2013-05-18 Glenn Morris <rgm@gnu.org>
21893
21894 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
21895 Remove backspace/delete bindings. (Bug#14392)
21896
21897 * cus-dep.el (custom-make-dependencies): Sort the output.
21898 (custom-versions-load-alist): Convert comment to doc.
21899
21900 2013-05-17 Leo Liu <sdl.web@gmail.com>
21901
21902 * newcomment.el (comment-search-backward): Stricter in finding
21903 comment start. (Bug#14303)
21904
21905 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
21906 (octave-comment-start-skip): Properly anchored.
21907
21908 2013-05-17 Leo Liu <sdl.web@gmail.com>
21909
21910 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
21911 Clean up when turned off. (Bug#14395)
21912 (smie--highlight-matching-block-overlay): No longer buffer-local.
21913 (smie-highlight-matching-block): Adjust.
21914
21915 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
21916
21917 Doc string fix for "nanoseconds" (Bug#14406).
21918 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
21919 Fix doc string typo that had "nanoseconds" instead of "microseconds".
21920
21921 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
21922
21923 * calc/calc-units.el (math-extract-units): Preserve powers
21924 of units.
21925
21926 2013-05-17 Leo Liu <sdl.web@gmail.com>
21927
21928 * subr.el (delete-consecutive-dups): New function.
21929 * ido.el (ido-set-matches-1): Use it.
21930 * progmodes/octave.el (inferior-octave-completion-table): Use it.
21931 * ido.el (ido-remove-consecutive-dups): Remove.
21932
21933 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
21934
21935 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21936 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
21937 regexp-opt's `words'.
21938
21939 2013-05-16 Leo Liu <sdl.web@gmail.com>
21940
21941 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
21942 (smie--highlight-matching-block-overlay)
21943 (smie--highlight-matching-block-lastpos)
21944 (smie--highlight-matching-block-timer): New variables.
21945 (smie-highlight-matching-block): New function.
21946 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
21947 (smie-setup): Conditionally enable smie-blink-matching-open.
21948
21949 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
21950
21951 Sync with upstream verilog-mode r840.
21952 * progmodes/verilog-mode.el (verilog-mode-version)
21953 (verilog-mode-release-date): Update.
21954 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
21955 (verilog-sig-tieoff): Fix string error on
21956 AUTORESET with colon define, bug594. Reported by Andrew Hou.
21957 (verilog-read-decls): Fix parameters confusing
21958 AUTOINST interfaces, bug565. Reported by Leith Johnson.
21959
21960 2013-05-16 Eli Zaretskii <eliz@gnu.org>
21961
21962 * subr.el (reveal-filename): New function.
21963
21964 * loadup.el: Compute Emacs executable versions on MS-Windows,
21965 where executables have the .exe extension. Add a hard link
21966 emacs-XX.YY.ZZ.exe on MS-Windows.
21967
21968 * Makefile.in (XARGS_LIMIT): New variable.
21969 (custom-deps, finder-data, autoloads)
21970 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
21971 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
21972 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
21973 (compile-main): Limit xargs according to $(XARGS_LIMIT).
21974
21975 2013-05-16 Leo Liu <sdl.web@gmail.com>
21976
21977 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
21978 (octave-mode-menu, octave-mode-map): Remove its uses.
21979
21980 2013-05-16 Reto Zimmermann <reto@gnu.org>
21981
21982 Sync with upstream vhdl mode v3.34.2.
21983 * progmodes/vhdl-mode.el: Use `push' throughout.
21984 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
21985 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
21986 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
21987 (vhdl-actual-generic-name): New option to derive actual generic name.
21988 (vhdl-port-paste-signals): Replace formal by actual generics.
21989 (vhdl-beautify): New name for old group vhdl-align. Update users.
21990 (vhdl-beautify-options): New option.
21991 (vhdl-last-input-event): New compat alias. Use throughout.
21992 (vhdl-goto-line): Replace user level function `goto-line'.
21993 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
21994 vhdl-fix-statement-buffer.
21995 (vhdl-create-mode-menu): Add some entries.
21996 (vhdl-align-region-groups): Respect vhdl-beautify-options.
21997 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
21998 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
21999 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
22000 to force statements on one line.
22001 (vhdl-remove-trailing-spaces-region):
22002 New, split from vhdl-remove-trailing-spaces.
22003 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
22004 Respect vhdl-beautify-options.
22005 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
22006 (vhdl-update-sensitivity-list): Not add with index if exists without.
22007 Not include array index with signal. Ignore keywords in comments.
22008 (vhdl-get-visible-signals): Regexp tweaks.
22009 (vhdl-template-component-inst): Handle empty library.
22010 (vhdl-template-type): Add template for 'enum' type.
22011 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
22012 Use vhdl-replace-string.
22013 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
22014 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
22015 (vhdl-speedbar-initialize): Update for above name change.
22016 (vhdl-compose-wire-components): Fix in handling of constants.
22017 (vhdl-error-regexp-emacs-alist): New variable.
22018 (vhdl-error-regexp-add-emacs): New function;
22019 adds support for new compile.el (Emacs 22+)
22020 (vhdl-generate-makefile-1): Change target order for single lib. units.
22021 Allow use of absolute file names.
22022
22023 2013-05-16 Leo Liu <sdl.web@gmail.com>
22024
22025 * simple.el (prog-indent-sexp): Indent enclosing defun.
22026
22027 2013-05-15 Glenn Morris <rgm@gnu.org>
22028
22029 * cus-start.el (show-trailing-whitespace): Move to editing basics.
22030 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
22031 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
22032 (whitespace-highlight): Move to whitespace group.
22033
22034 * comint.el (comint-source):
22035 * pcmpl-linux.el (pcmpl-linux):
22036 * shell.el (shell-faces):
22037 * eshell/esh-opt.el (eshell-opt):
22038 * international/ccl.el (ccl): Remove empty custom groups.
22039
22040 * completion.el (dynamic-completion-mode):
22041 * jit-lock.el (jit-lock-debug-mode):
22042 * minibuffer.el (completion-in-region-mode):
22043 * type-break.el (type-break-mode-line-message-mode)
22044 (type-break-query-mode):
22045 * emulation/tpu-edt.el (tpu-edt-mode):
22046 * progmodes/subword.el (global-subword-mode, global-superword-mode):
22047 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
22048 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
22049
22050 * term/xterm.el (xterm): Change parent group to terminals.
22051
22052 * master.el (master): Remove empty custom group.
22053 (master-mode): Remove unused :group argument.
22054 * textmodes/refill.el (refill): Remove empty custom group.
22055 (refill-mode): Remove unused :group argument.
22056
22057 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
22058
22059 * cus-dep.el: Provide a feature.
22060 (custom-make-dependencies): Ignore dotfiles (dir-locals).
22061 Don't mistakenly ignore files whose basenames match a basename
22062 from preloaded-file-list (eg cedet/ede/simple.el).
22063 Add a fallback method for getting :group.
22064
22065 2013-05-15 Juri Linkov <juri@jurta.org>
22066
22067 * isearch.el (isearch-char-by-name): Rename from
22068 `isearch-insert-char-by-name'. Doc fix.
22069 (isearch-forward): Mention `isearch-char-by-name' in
22070 the docstring. (Bug#13348)
22071
22072 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
22073 `exit-minibuffer' instead of
22074 `isearch-nonincremental-exit-minibuffer'.
22075 (isearch-edit-string): Remove mention of
22076 `isearch-nonincremental-exit-minibuffer' from docstring.
22077 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
22078 (isearch-forward-exit-minibuffer)
22079 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
22080
22081 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
22082
22083 * loadup.el: Just use unversioned DOC.
22084
22085 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
22086 literals as extending to EOB.
22087 (nxml-last-fontify-end): Remove unused variable.
22088 (nxml-after-change1): Use with-silent-modifications.
22089 (nxml-extend-after-change-region): Simplify.
22090 (nxml-extend-after-change-region1): Remove function.
22091 (nxml-after-change1): Don't adjust for dependent regions.
22092 (nxml-fontify-matcher): Simplify.
22093 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
22094 (xmltok-add-dependent): Remove function.
22095 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
22096 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
22097 (xmltok-scan-prolog-after-processing-instruction-open): Treat
22098 unclosed <[[, <?, comment, and other literals as extending to EOB.
22099 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
22100 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
22101 Remove functions.
22102 (rng-do-some-validation-1): Don't mark dependent regions.
22103 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
22104 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
22105 (nxml-clear-dependent-regions): Remove functions.
22106 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
22107 (nxml-ensure-scan-up-to-date):
22108 Don't clear&mark dependent regions.
22109
22110 2013-05-15 Leo Liu <sdl.web@gmail.com>
22111
22112 * progmodes/octave.el (octave-goto-function-definition):
22113 Improve and fix callers.
22114
22115 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
22116
22117 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
22118 the setter (bug#14387).
22119
22120 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
22121 surrounding group (bug#14402).
22122
22123 2013-05-14 Juri Linkov <juri@jurta.org>
22124
22125 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
22126 (Bug#14390)
22127
22128 2013-05-14 Glenn Morris <rgm@gnu.org>
22129
22130 * progmodes/f90.el (f90-imenu-generic-expression):
22131 Fix typo in 2013-05-08 change. (Bug#14402)
22132
22133 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
22134
22135 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
22136 Remove signals for which replies are never received.
22137
22138 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
22139
22140 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
22141 (gdb-handler-alist, gdb-handler-number): Remove variables.
22142 (gdb-handler-list): New variable.
22143 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
22144 (gdb-pending-handler-p, gdb-handle-reply)
22145 (gdb-remove-all-pending-triggers): New functions.
22146 (gdb-discard-unordered-replies): New defcustom.
22147 (gdb-handler): New defstruct.
22148 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
22149 instead of gdb-pending-triggers. Update docstring.
22150 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
22151 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
22152 (gdb-var-update-handler, def-gdb-auto-update-trigger)
22153 (def-gdb-auto-update-handler, gdb-get-changed-registers)
22154 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
22155 (gdb-frame-handler): Pending triggers are now automatically managed.
22156 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
22157 Remove argument.
22158 (gdb-input): Automatically handles pending triggers. Update docstring.
22159 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
22160 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
22161 Update comments.
22162 (gdb-done-or-error): Now use gdb-handle-reply.
22163
22164 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
22165
22166 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
22167 gdb-debug-log.
22168
22169 2013-05-14 Glenn Morris <rgm@gnu.org>
22170
22171 * subr.el (user-emacs-directory-warning): New option.
22172 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
22173
22174 2013-05-14 Leo Liu <sdl.web@gmail.com>
22175
22176 * progmodes/octave.el (octave-font-lock-keywords): Fix error
22177 during redisplay.
22178 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
22179 (octave-font-lock-texinfo-comment): Fix invalid search bound
22180 error: wrong side of point.
22181
22182 2013-05-14 Glenn Morris <rgm@gnu.org>
22183
22184 * progmodes/flymake.el (flymake-xml-program): New option.
22185 (flymake-xml-init): Use it.
22186
22187 * term/xterm.el: Provide a feature.
22188
22189 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
22190
22191 2013-05-13 Glenn Morris <rgm@gnu.org>
22192
22193 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
22194 Add compat aliases as a hack workaround. (Bug#14384)
22195
22196 2013-05-13 Leo Liu <sdl.web@gmail.com>
22197
22198 * progmodes/octave.el (octave-indent-comment): Fix indentation for
22199 ###, and %!.
22200 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
22201 C-M-q.
22202 (octave-comment-start-skip): Include %!.
22203 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
22204
22205 2013-05-12 Leo Liu <sdl.web@gmail.com>
22206
22207 * progmodes/octave.el (inferior-octave-startup): Store the value
22208 of __octave_srcdir__ for octave-source-directories.
22209 (inferior-octave-check-process): New function refactored out of
22210 inferior-octave-send-list-and-digest.
22211 (octave-source-directories)
22212 (octave-find-definition-filename-function): New variables.
22213 (octave-source-directories)
22214 (octave-find-definition-default-filename): New functions.
22215 (octave-find-definition): Improve to find functions implemented in C++.
22216
22217 2013-05-12 Glenn Morris <rgm@gnu.org>
22218
22219 * calendar/diary-lib.el (diary-outlook-format-1):
22220 Don't include dayname in the output. (Bug#14349)
22221
22222 2013-05-11 Glenn Morris <rgm@gnu.org>
22223
22224 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
22225
22226 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
22227 Treat cc-provide like provide.
22228
22229 2013-05-11 Kevin Ryde <user42@zip.com.au>
22230
22231 * cus-dep.el (custom-make-dependencies):
22232 Use generated-autoload-load-name for the sake of files such
22233 such cedet/semantic/bovine/c.el, where the base file name
22234 is not in load-path. (Bug#5277)
22235
22236 2013-05-11 Glenn Morris <rgm@gnu.org>
22237
22238 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
22239 Provide features.
22240
22241 2013-05-11 Leo Liu <sdl.web@gmail.com>
22242
22243 * progmodes/octave.el (octave-indent-comment): Improve.
22244 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
22245 (octave-eldoc-function-signatures, octave-eldoc-function):
22246 New functions.
22247 (octave-mode, inferior-octave-mode): Add eldoc support.
22248
22249 2013-05-11 Richard Stallman <rms@gnu.org>
22250
22251 * epa.el (epa-decrypt-file): Take output file name as argument
22252 and read it using `interactive'.
22253
22254 2013-05-11 Leo Liu <sdl.web@gmail.com>
22255
22256 * progmodes/octave.el (octave-beginning-of-line)
22257 (octave-end-of-line): Check before using up-list because it jumps
22258 out of more syntactic contructs since moving to smie.
22259 (octave-indent-comment): New function.
22260 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
22261 (octave-begin-keywords, octave-end-keywords)
22262 (octave-reserved-words, octave-smie-bnf-table)
22263 (octave-smie-rules): Add new keywords from Octave 3.6.4.
22264
22265 2013-05-11 Glenn Morris <rgm@gnu.org>
22266
22267 * faces.el (internal-face-x-get-resource):
22268 * frame.el (ns-display-monitor-attributes-list):
22269 * calc/calc-aent.el (math-to-radians-2):
22270 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
22271 Fix declarations.
22272
22273 * calc/calc-menu.el: Make it loadable in isolation.
22274
22275 * net/eudcb-bbdb.el: Make it loadable without bbdb.
22276 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
22277 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
22278 (eudc-bbdb-query-internal): Require 'bbdb.
22279
22280 * lpr.el (lpr-headers-switches):
22281 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
22282
22283 * progmodes/sql.el (sql-login-params): Fix and improve :type.
22284
22285 * emulation/edt-mapper.el: In batch mode, error rather than hang.
22286
22287 * term.el (term-set-escape-char): Make it idempotent.
22288
22289 2013-05-10 Leo Liu <sdl.web@gmail.com>
22290
22291 * progmodes/octave.el (inferior-octave-completion-table):
22292 No longer a function and all uses changed. Use cache to speed up
22293 completion due to bug#11906.
22294 (octave-beginning-of-defun): Re-write to be more general.
22295
22296 2013-05-10 Glenn Morris <rgm@gnu.org>
22297
22298 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
22299
22300 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
22301
22302 * comint.el (comint-redirect-send-command-to-process): Use :around
22303 rather than :override for comint-redirect-filter.
22304 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
22305 Call it instead of comint-redirect-original-filter-function (which
22306 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
22307
22308 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
22309
22310 * frame.el (display-monitor-attributes-list): Add NS case.
22311 (ns-display-monitor-attributes-list): Declare.
22312
22313 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
22314
22315 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
22316
22317 2013-05-09 Glenn Morris <rgm@gnu.org>
22318
22319 * international/fontset.el (vertical-centering-font-regexp):
22320 Set standard-value.
22321
22322 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
22323
22324 * bookmark.el (bookmark-search-delay):
22325 * cus-start.el (vertical-centering-font-regexp):
22326 * ps-mule.el (ps-mule-font-info-database-default):
22327 * ps-print.el (ps-default-fg, ps-default-bg):
22328 * type-break.el (type-break-good-break-interval):
22329 * whitespace.el (whitespace-indentation-regexp)
22330 (whitespace-space-after-tab-regexp):
22331 * emacs-lisp/testcover.el (testcover-1value-functions)
22332 (testcover-noreturn-functions, testcover-progn-functions)
22333 (testcover-prog1-functions):
22334 * emulation/viper-init.el (viper-emacs-state-cursor-color):
22335 * eshell/em-glob.el (eshell-glob-translate-alist):
22336 * play/tetris.el (tetris-tty-colors):
22337 * progmodes/cpp.el (cpp-face-default-list):
22338 * progmodes/flymake.el (flymake-allowed-file-name-masks):
22339 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
22340 (idlwave-help-browser-generic-args):
22341 * progmodes/make-mode.el (makefile-special-targets-list):
22342 * progmodes/python.el (python-shell-virtualenv-path):
22343 * progmodes/verilog-mode.el (verilog-active-low-regexp)
22344 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
22345 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
22346 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
22347 * textmodes/reftex-vars.el (reftex-format-label-function):
22348 * textmodes/remember.el (remember-diary-file): Fix custom types.
22349
22350 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
22351 Add :version.
22352
22353 2013-05-09 Leo Liu <sdl.web@gmail.com>
22354
22355 * progmodes/octave.el (inferior-octave-completion-at-point):
22356 Restore file completion. (Bug#14300)
22357 (inferior-octave-startup): Fix incorrect highlighting for the
22358 first prompt.
22359
22360 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22361
22362 * progmodes/ruby-mode.el: First cut at SMIE support.
22363 (ruby-use-smie): New var.
22364 (ruby-smie-grammar): New constant.
22365 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
22366 (ruby-smie--forward-token, ruby-smie--backward-token)
22367 (ruby-smie-rules): New functions.
22368 (ruby-mode-variables): Setup SMIE if applicable.
22369
22370 2013-05-08 Eli Zaretskii <eliz@gnu.org>
22371
22372 * simple.el (line-move-visual): Signal beginning/end of buffer
22373 only if vertical-motion moved less than it was requested. Avoids
22374 silly incorrect error messages when there are display strings with
22375 multiple newlines at EOL.
22376
22377 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22378
22379 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
22380 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
22381 (prolog-char-quote-workaround):
22382 * progmodes/cperl-mode.el (cperl-under-as-char):
22383 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
22384 Mark as obsolete.
22385 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
22386 their declaration.
22387 (vhdl-mode-syntax-table-init): Remove.
22388
22389 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
22390 last change.
22391
22392 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
22393 syntax for "_".
22394 (ld-script-font-lock-keywords):
22395 Change regexps to use things like \_< and \_>.
22396
22397 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
22398 Change all regexps to use things like \_< and \_>.
22399
22400 * progmodes/autoconf.el (autoconf-definition-regexp)
22401 (autoconf-font-lock-keywords, autoconf-current-defun-function):
22402 Handle a _ with symbol syntax.
22403 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
22404
22405 * progmodes/ada-mode.el (ada-mode-abbrev-table):
22406 Consolidate declaration.
22407 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
22408 the declaration.
22409 (ada-create-syntax-table): Remove.
22410 (ada-capitalize-word): Don't mess with the syntax of "_" since it
22411 already has the right syntax nowadays.
22412 (ada-goto-next-word): Don't change the syntax of "_".
22413
22414 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
22415 with-wrapper-hook.
22416
22417 2013-05-08 Sam Steingold <sds@gnu.org>
22418
22419 * thingatpt.el (thing-at-point): Accept optional second argument
22420 NO-PROPERTIES to strip the text properties from the return value.
22421 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
22422 to `thing-at-point' instead of stripping the properties ourselves.
22423 Also, when `thing-at-point' fails to find a url, prepend "http://"
22424 to the filename at point on the assumption that the user is
22425 pointing at something like gnu.org/gnu.
22426
22427 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
22428
22429 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
22430 * faces.el (crm-separator):
22431 Silence byte-compiler.
22432
22433 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
22434 (tool-bar-map): Remove unneeded defvars.
22435
22436 2013-05-08 Leo Liu <sdl.web@gmail.com>
22437
22438 Re-work a fix for bug#10994 based on Le Wang's patch.
22439 * ido.el (ido-remove-consecutive-dups): New helper.
22440 (ido-completing-read): Use it.
22441 (ido-chop): Revert fix for bug#10994.
22442
22443 2013-05-08 Adam Spiers <emacs@adamspiers.org>
22444
22445 * cus-edit.el (custom-save-variables):
22446 Pretty-print long values. (Bug#14187)
22447
22448 2013-05-08 Glenn Morris <rgm@gnu.org>
22449
22450 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
22451 (m4-mode-syntax-table): Init in the defvar.
22452 (m4-mode-abbrev-table): Let define-derived-mode define it.
22453
22454 2013-05-08 Tom Tromey <tromey@redhat.com>
22455
22456 * progmodes/m4-mode.el (m4-mode-syntax-table):
22457 Do not treat "_" as word constituent. (Bug#14167)
22458
22459 2013-05-07 Glenn Morris <rgm@gnu.org>
22460
22461 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
22462 Remove explicit eshell-isearch-cancel-map.
22463
22464 * progmodes/f90.el (f90-smart-end-names): New option.
22465 (f90-smart-end): Doc fix.
22466 (f90-end-block-optional-name): New constant.
22467 (f90-block-match): Respect f90-smart-end-names.
22468
22469 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22470
22471 * progmodes/octave.el (octave-smie-forward-token): Be more careful
22472 about implicit semi-colons (bug#14218).
22473
22474 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22475
22476 * frame.el (display-monitor-attributes-list)
22477 (frame-monitor-attributes): New functions.
22478
22479 2013-05-06 Leo Liu <sdl.web@gmail.com>
22480
22481 * progmodes/octave.el (octave-syntax-propertize-function): Change
22482 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
22483 (octave-font-lock-keywords): Use octave-operator-regexp.
22484 (octave-completion-at-point): Rename from
22485 octave-completion-at-point-function.
22486 (inferior-octave-directory-tracker): Robustify.
22487 (octave-text-functions): Remove and fix its uses. No such things
22488 any more.
22489
22490 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22491
22492 * emacs-lisp/trace.el (trace--display-buffer): New function.
22493 (trace-make-advice): Use it.
22494
22495 2013-05-06 Juri Linkov <juri@jurta.org>
22496
22497 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
22498 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
22499 Doc fix.
22500 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
22501 in the help string. (Bug#12985)
22502
22503 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
22504
22505 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
22506
22507 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22508
22509 * progmodes/perl-mode.el: Add support for here documents.
22510 (perl-syntax-propertize-function): Match here-doc markers.
22511 (perl-syntax-propertize-special-constructs): Find their end.
22512 (perl-imenu-generic-expression): Use [:alnum:].
22513
22514 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
22515 (advice--add-function): Refresh the advice if already present
22516 (bug#14317).
22517
22518 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
22519
22520 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
22521
22522 2013-05-06 Glenn Morris <rgm@gnu.org>
22523
22524 * w32-fns.el (w32-charset-info-alist): Declare.
22525
22526 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
22527 of its defcustom properties.
22528 (eshell-cmpl-initialize): No need to load pcomplete.
22529
22530 * generic-x.el: No need to require comint when compiling.
22531
22532 * net/eudc-export.el: Make it loadable without bbdb.
22533 (top-level): Use require rather than load-library.
22534 (eudc-create-bbdb-record, eudc-bbdbify-phone)
22535 (eudc-batch-export-records-to-bbdb)
22536 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
22537 Require bbdb.
22538
22539 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22540
22541 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
22542 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
22543 some tweaks, instead.
22544
22545 2013-05-05 Leo Liu <sdl.web@gmail.com>
22546
22547 * progmodes/octave.el (octave-font-lock-keywords)
22548 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
22549 (inferior-octave-send-list-and-digest): Improve error message.
22550 (octave-mode, inferior-octave-mode): Use setq-local.
22551 (octave-help): Set info-lookup-mode.
22552
22553 2013-05-05 Richard Stallman <rms@gnu.org>
22554
22555 * vc/compare-w.el (compare-windows-whitespace):
22556 Treat no-break space as whitespace.
22557
22558 * mail/rmailsum.el (rmail-summary-rmail-update):
22559 Detect empty summary and don't change selected message.
22560 (rmail-summary-goto-msg): Likewise.
22561
22562 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
22563 Doc fixes, rename args.
22564
22565 2013-05-05 Alan Mackenzie <acm@muc.de>
22566
22567 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
22568
22569 2013-05-05 Juri Linkov <juri@jurta.org>
22570
22571 * info.el (Info-read-subfile): Use (point-min) instead of (point)
22572 to not add the length of the summary segment to the return value.
22573 (Bug#14125)
22574
22575 2013-05-05 Leo Liu <sdl.web@gmail.com>
22576
22577 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
22578 (inferior-octave-output-filter): Remove.
22579 (octave-send-region, inferior-octave-startup): Fix callers.
22580 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
22581 (octave-binary-file-extensions): New user variable.
22582 (octave-find-definition): Confirm if opening binary files.
22583 (octave-help-file): Use octave-find-definition to get the binary
22584 confirmation.
22585 (octave-help): Adjust for octave-help-file change.
22586
22587 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22588
22589 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
22590 Merge the two entries that handle function definitions.
22591 (pascal--syntax-propertize): New const.
22592 (pascal-mode): Use it. Use setq-local.
22593
22594 2013-05-04 Glenn Morris <rgm@gnu.org>
22595
22596 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
22597 (diary-from-outlook): Respect diary-from-outlook-function.
22598
22599 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
22600
22601 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
22602 Move the declaration from C.
22603 (read-minibuffer, eval-minibuffer): Move from C.
22604 (completion-setup-function): Avoid minibuffer-completion-contents.
22605
22606 2013-05-03 Leo Liu <sdl.web@gmail.com>
22607
22608 * progmodes/octave.el (octave-font-lock-keywords): Do not
22609 dehighlight 'end' in comments or strings.
22610 (octave-completing-read, octave-goto-function-definition):
22611 New helpers.
22612 (octave-help-buffer): New user variable.
22613 (octave-help-file, octave-help-function): New button types.
22614 (octave-help): New command and bind it to C-h ;.
22615 (octave-find-definition): New command and bind it to M-.
22616 (user-error): Alias to error if not defined.
22617
22618 2013-05-02 Leo Liu <sdl.web@gmail.com>
22619
22620 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
22621 for \. (bug#14332)
22622 (octave-font-lock-keywords): Include [ and {.
22623
22624 2013-05-02 Leo Liu <sdl.web@gmail.com>
22625
22626 * progmodes/octave.el (inferior-octave-startup-file): Change default.
22627 (inferior-octave): Remove calling comint-mode and return the buffer.
22628 (inferior-octave-startup): Cosmetic changes.
22629
22630 2013-05-02 Leo Liu <sdl.web@gmail.com>
22631
22632 * progmodes/octave.el (octave-syntax-propertize-function):
22633 Include the case when ' is at line beginning. (Bug#14336)
22634
22635 2013-05-02 Glenn Morris <rgm@gnu.org>
22636
22637 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
22638 * desktop.el (vc-dir-mode): Just autoload it here.
22639
22640 2013-05-02 Alan Mackenzie <acm@muc.de>
22641
22642 Eliminate variable c-standard-font-lock-fontify-region-function.
22643 * progmodes/cc-mode.el
22644 (c-standard-font-lock-fontify-region-function): Remove.
22645 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
22646
22647 2013-05-01 Leo Liu <sdl.web@gmail.com>
22648
22649 * progmodes/octave.el: Compatible with older emacs-24 releases.
22650 (inferior-octave-has-built-in-variables): Remove. Built-in
22651 variables were removed from Octave in 2007.
22652 (inferior-octave-startup): Fix uses.
22653 (comint-line-beginning-position): Remove compatibility code for
22654 emacs 21.
22655
22656 2013-05-01 Juri Linkov <juri@jurta.org>
22657
22658 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
22659
22660 2013-05-01 Juri Linkov <juri@jurta.org>
22661
22662 * comint.el (comint-previous-matching-input): Don't print message
22663 "History item: %d" when `isearch-mode' is active.
22664 (comint-history-isearch-message): Print message "History item: %d"
22665 when `comint-input-ring-index' is not empty and this function is
22666 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
22667
22668 2013-05-01 Leo Liu <sdl.web@gmail.com>
22669
22670 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
22671 definitions. Use completion-at-point to insert keywords.
22672 (octave-abbrev-start): Remove.
22673 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
22674
22675 2013-04-30 Leo Liu <sdl.web@gmail.com>
22676
22677 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
22678 change.
22679
22680 2013-04-30 Alan Mackenzie <acm@muc.de>
22681
22682 Handle arbitrarily long C++ member initialisation lists.
22683 * progmodes/cc-engine.el (c-back-over-member-initializers):
22684 new function.
22685 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
22686 (most) member init lists.
22687
22688 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
22689
22690 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
22691 variable.
22692
22693 2013-04-30 Leo Liu <sdl.web@gmail.com>
22694
22695 * progmodes/octave.el (octave-variables): Remove. No builtin
22696 variables any more. All converted to functions.
22697 (octave-font-lock-keywords, octave-completion-at-point-function):
22698 Fix uses.
22699 (octave-font-lock-texinfo-comment): New user variable.
22700 (octave-texinfo-font-lock-keywords): New variable for texinfo
22701 comment block.
22702 (octave-function-comment-block): New face.
22703 (octave-font-lock-texinfo-comment): New function.
22704 (octave-mode): Font lock texinfo comment block.
22705
22706 2013-04-29 Leo Liu <sdl.web@gmail.com>
22707
22708 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
22709 indexing expression.
22710 (octave-continuation-string): Do not use \.
22711 (inferior-octave-complete-impossible): Remove.
22712 (inferior-octave-completion-table)
22713 (inferior-octave-completion-at-point): Remove its uses.
22714 (inferior-octave-startup): completion_matches was introduced to
22715 Octave in 1996 so safe to assume it.
22716 (octave-function-file-comment): Improve to follow how Octave does it.
22717 (octave-update-function-file-comment): Tweak.
22718
22719 2013-04-29 Leo Liu <sdl.web@gmail.com>
22720
22721 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
22722 (inferior-octave-startup): Remove inferior-octave-startup-hook.
22723 (octave-function-file-comment): Fix typo.
22724 (octave-sync-function-file-names): Use read-char-choice.
22725
22726 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
22727
22728 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
22729 to t for the less important warnings.
22730
22731 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
22732
22733 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
22734
22735 2013-04-27 Glenn Morris <rgm@gnu.org>
22736
22737 * vc/log-view.el (log-view-current-entry):
22738 Treat "---" separator lines as part of the following rev. (Bug#14169)
22739
22740 2013-04-27 Juri Linkov <juri@jurta.org>
22741
22742 * subr.el (read-number): Doc fix about using it by interactive
22743 code letter `n'. (Bug#14254)
22744
22745 2013-04-27 Juri Linkov <juri@jurta.org>
22746
22747 * desktop.el (desktop-auto-save-timeout): New option.
22748 (desktop-file-checksum): New variable.
22749 (desktop-save): Add optional arg `auto-save' and don't auto-save
22750 if nothing changed.
22751 (desktop-auto-save-timer): New variable.
22752 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
22753 (after-init-hook): Call `desktop-auto-save-set-timer'.
22754 Suggested by Reuben Thomas <rrt@sc3d.org> in
22755 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
22756
22757 2013-04-27 Leo Liu <sdl.web@gmail.com>
22758
22759 * progmodes/octave.el (octave-function-file-p)
22760 (octave-skip-comment-forward, octave-function-file-comment)
22761 (octave-update-function-file-comment): New functions.
22762 (octave-mode-map): Bind C-c ; to
22763 octave-update-function-file-comment.
22764 (octave-mode-menu): Add octave-update-function-file-comment.
22765 (octave-mode, inferior-octave-mode): Fix doc-string.
22766 (octave-insert-defun): Conform to Octave's coding convention.
22767 (Bug#14285)
22768
22769 * files.el (basic-save-buffer): Don't let errors in
22770 before-save-hook prevent saving buffer.
22771
22772 2013-04-20 Roland Winkler <winkler@gnu.org>
22773
22774 * faces.el (read-face-name): Use completing-read if arg multiple
22775 is nil.
22776
22777 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
22778
22779 * ls-lisp.el (ls-lisp-insert-directory): If no files are
22780 displayed, move point to after the totals line.
22781 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
22782 for the details.
22783
22784 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
22785
22786 * emacs-lisp/package.el (package-autoload-ensure-default-file):
22787 Add current dir to the load-path.
22788 (package-generate-autoloads): Don't rely on
22789 autoload-ensure-default-file.
22790
22791 2013-04-26 Reuben Thomas <rrt@sc3d.org>
22792
22793 * textmodes/remember.el (remember-store-in-files): Document that
22794 the file name format is passed to `format-time-string'.
22795
22796 2013-04-26 Leo Liu <sdl.web@gmail.com>
22797
22798 * progmodes/octave.el (octave-sync-function-file-names): New function.
22799 (octave-mode): Use it in before-save-hook.
22800
22801 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
22802
22803 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
22804 (bug#14274).
22805
22806 * progmodes/octave.el (octave-smie-forward-token): Properly skip
22807 \n and comment, even if it's not an implicit ; (bug#14218).
22808
22809 2013-04-26 Glenn Morris <rgm@gnu.org>
22810
22811 * subr.el (read-number): Once more use `read' rather than
22812 `string-to-number', to trap non-numeric input. (Bug#14254)
22813
22814 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
22815
22816 * emacs-lisp/syntax.el (syntax-propertize-multiline):
22817 Use `syntax-multiline' text property consistently instead of
22818 `font-lock-multiline'. (Bug#14237)
22819
22820 2013-04-26 Glenn Morris <rgm@gnu.org>
22821
22822 * emacs-lisp/shadow.el (list-load-path-shadows):
22823 No longer necessary to check for duplicate simple.el, since
22824 2012-07-07 change to init_lread to not include installation lisp
22825 directories in load-path when running uninstalled. (Bug#14270)
22826
22827 2013-04-26 Leo Liu <sdl.web@gmail.com>
22828
22829 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
22830 (octave-mode, inferior-octave-mode): Use setq-local.
22831 (octave-not-in-string-or-comment-p): Rename to
22832 octave-in-string-or-comment-p.
22833 (octave-in-comment-p, octave-in-string-p)
22834 (octave-in-string-or-comment-p): Replace defsubst with defun.
22835
22836 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
22837
22838 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
22839
22840 2013-04-25 Bastien Guerry <bzg@gnu.org>
22841
22842 * textmodes/remember.el (remember-data-directory)
22843 (remember-directory-file-name-format): Fix custom types.
22844
22845 2013-04-25 Leo Liu <sdl.web@gmail.com>
22846
22847 * progmodes/octave.el (octave-completion-at-point-function):
22848 Make use of inferior octave process.
22849 (octave-initialize-completions): Remove.
22850 (inferior-octave-completion-table): New function.
22851 (inferior-octave-completion-at-point): Use it.
22852 (octave-completion-alist): Remove.
22853
22854 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22855
22856 * progmodes/opascal.el: Use font-lock and syntax-propertize.
22857 (opascal-mode-syntax-table): New var.
22858 (opascal-literal-kind, opascal-is-literal-end)
22859 (opascal-literal-token-at): Rewrite.
22860 (opascal--literal-start-re, opascal-font-lock-keywords)
22861 (opascal--syntax-propertize): New constants.
22862 (opascal-font-lock-defaults): Adjust.
22863 (opascal-mode): Use them. Set comment-<foo> variables as well.
22864 (delphi-comment-face, opascal-comment-face, delphi-string-face)
22865 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
22866 (delphi-other-face, opascal-other-face): Remove face variables.
22867 (opascal-save-state): Remove macro.
22868 (opascal-fontifying-progress-step): Remove constant.
22869 (opascal--ignore-changes): Remove var.
22870 (opascal-set-token-property, opascal-parse-next-literal)
22871 (opascal-is-stable-literal, opascal-complete-literal)
22872 (opascal-is-literal-start, opascal-face-of)
22873 (opascal-parse-region, opascal-parse-region-until-stable)
22874 (opascal-fontify-region, opascal-after-change)
22875 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
22876 (opascal-debug-parse-region, opascal-debug-parse-window)
22877 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
22878 (opascal-debug-fontify-buffer): Remove.
22879 (opascal-debug-mode-map): Adjust accordingly.
22880
22881 2013-04-25 Leo Liu <sdl.web@gmail.com>
22882
22883 Merge octave-mod.el and octave-inf.el into octave.el with some
22884 cleanups.
22885 * progmodes/octave.el: New file renamed from octave-mod.el.
22886 * progmodes/octave-inf.el: Merged into octave.el.
22887 * progmodes/octave-mod.el: Renamed to octave.el.
22888
22889 2013-04-25 Tassilo Horn <tsdh@gnu.org>
22890
22891 * textmodes/reftex-vars.el
22892 (reftex-label-ignored-macros-and-environments): New defcustom.
22893
22894 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
22895
22896 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22897
22898 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
22899 (smie-indent-keyword): Improve the check to ensure that the next
22900 comment is really on the same line.
22901 (smie-indent-comment): Don't align with a subsequent closer (or eob).
22902
22903 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
22904 semi-colons if the line is not otherwise empty (bug#14218).
22905
22906 2013-04-25 Glenn Morris <rgm@gnu.org>
22907
22908 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
22909
22910 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
22911
22912 * progmodes/opascal.el (opascal-set-token-property): Rename from
22913 opascal-set-text-properties and only set `token' (bug#14134).
22914 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
22915 (opascal-literal-text-properties): Remove.
22916 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
22917 Adjust callers.
22918
22919 2013-04-24 Reuben Thomas <rrt@sc3d.org>
22920
22921 * textmodes/remember.el (remember-handler-functions): Add an
22922 option for a new handler `remember-store-in-files'.
22923 (remember-data-directory, remember-directory-file-name-format):
22924 New options.
22925 (remember-store-in-files): New function to store remember notes
22926 as separate files within a directory.
22927
22928 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
22929
22930 * progmodes/compile.el (compilation-next-error-function):
22931 Pass "formats" to compilation-find-file (bug#11777).
22932
22933 2013-04-24 Glenn Morris <rgm@gnu.org>
22934
22935 * vc/vc-bzr.el (vc-bzr-print-log):
22936 * vc/vc-hg.el (vc-hg-print-log):
22937 * vc/vc-svn.el (vc-svn-print-log):
22938 Fix START-REVISION with LIMIT != 1. (Bug#14168)
22939
22940 * vc/vc-bzr.el (vc-bzr-print-log):
22941 * vc/vc-cvs.el (vc-cvs-print-log):
22942 * vc/vc-git.el (vc-git-print-log):
22943 * vc/vc-hg.el (vc-hg-print-log):
22944 * vc/vc-mtn.el (vc-mtn-print-log):
22945 * vc/vc-rcs.el (vc-rcs-print-log):
22946 * vc/vc-sccs.el (vc-sccs-print-log):
22947 * vc/vc-svn.el (vc-svn-print-log):
22948 * vc/vc.el (vc-print-log-internal): Doc fixes.
22949
22950 2013-04-23 Glenn Morris <rgm@gnu.org>
22951
22952 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
22953 Remove venerable code attempting to avoid substitute-command-keys.
22954
22955 2013-04-23 Tassilo Horn <tsdh@gnu.org>
22956
22957 * textmodes/reftex-vars.el (reftex-label-regexps):
22958 Call `reftex-compile-variables' after changes to this variable.
22959
22960 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
22961
22962 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
22963 Use lexical-binding.
22964 (jit-lock-force-redisplay): Use markers, check buffer's continued
22965 existence and beware narrowed buffers.
22966 (jit-lock-fontify-now): Adjust call accordingly.
22967
22968 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
22969
22970 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
22971 to avoid misleading the user.
22972
22973 2013-04-22 Leo Liu <sdl.web@gmail.com>
22974
22975 * info-look.el: Prefer latex2e.info. (Bug#14240)
22976
22977 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
22978
22979 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
22980
22981 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
22982 * net/tramp.el (tramp-call-process): ... here.
22983 (tramp-set-completion-function, tramp-parse-putty):
22984 * net/tramp-adb.el (tramp-adb-execute-adb-command):
22985 * net/tramp-gvfs.el (tramp-gvfs-send-command):
22986 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
22987 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
22988 (tramp-call-local-coding-command): Use `tramp-call-process'
22989 instead of `tramp-compat-call-process'.
22990
22991 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
22992 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
22993 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
22994 (tramp-find-inline-compress): Improve traces.
22995 (tramp-maybe-send-script): Check for Perl binary.
22996 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
22997
22998 2013-04-22 Daiki Ueno <ueno@gnu.org>
22999
23000 * epg.el (epg-context-pinentry-mode): New function.
23001 (epg-context-set-pinentry-mode): New function.
23002 (epg--start): Pass --pinentry-mode option to gpg command.
23003
23004 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
23005
23006 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
23007 `comint-dynamic-complete' is obsolete since 24.1, replaced by
23008 `completion-at-point'. (Bug#13774)
23009
23010 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
23011 default key binding for `describe-distribution' has been moved to
23012 `C-h C-o'. (Bug#13970)
23013
23014 2013-04-21 Glenn Morris <rgm@gnu.org>
23015
23016 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
23017 Add doc strings.
23018 (vc-print-log): Clarify interactive prompt.
23019
23020 2013-04-20 Glenn Morris <rgm@gnu.org>
23021
23022 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
23023 No longer include timestamp etc information.
23024
23025 2013-04-20 Roland Winkler <winkler@gnu.org>
23026
23027 * faces.el (read-face-name): Bug fix, return just one face if arg
23028 multiple is nil. (Bug#14209)
23029
23030 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23031
23032 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
23033 (remove-function): Autoload.
23034
23035 * comint.el (comint-redirect-original-filter-function): Remove.
23036 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
23037 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
23038 (vc-cvs-annotate-command):
23039 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
23040 * progmodes/prolog.el (prolog-consult-compile):
23041 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
23042 Use add/remove-function instead.
23043 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
23044 (gud-tooltip-process-output, gud-tooltip-tips):
23045 Use add/remove-function instead.
23046 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
23047 (scheme-interaction-mode, exit-scheme-interaction-mode):
23048 Use add/remove-function instead.
23049
23050 * vc/vc-dispatcher.el: Use lexical-binding.
23051 (vc--process-sentinel): Rename from vc-process-sentinel.
23052 Change last arg to be the code to run. Don't use vc-previous-sentinel
23053 and vc-sentinel-commands any more.
23054 (vc-exec-after): Allow code to be a function. Use add/remove-function.
23055 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
23056
23057 2013-04-19 Masatake YAMATO <yamato@redhat.com>
23058
23059 * progmodes/sh-script.el (sh-imenu-generic-expression):
23060 Handle function names with a single character. (Bug#14111)
23061
23062 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
23063
23064 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
23065 for subroutines defined in an eval (bug#14182).
23066
23067 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
23068
23069 * bookmark.el (bookmark-completing-read): Improve handling of empty
23070 string (bug#14176).
23071
23072 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23073
23074 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
23075
23076 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
23077
23078 New faster Imenu implementation (bug#14058).
23079 * progmodes/python.el (python-imenu-prev-index-position)
23080 (python-imenu-format-item-label-function)
23081 (python-imenu-format-parent-item-label-function)
23082 (python-imenu-format-parent-item-jump-label-function):
23083 New vars.
23084 (python-imenu-format-item-label)
23085 (python-imenu-format-parent-item-label)
23086 (python-imenu-format-parent-item-jump-label)
23087 (python-imenu--put-parent, python-imenu--build-tree)
23088 (python-imenu-create-index, python-imenu-create-flat-index)
23089 (python-util-popn): New functions.
23090 (python-mode): Set imenu-create-index-function to
23091 python-imenu-create-index.
23092
23093 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23094
23095 * winner.el (winner-active-region): Use region-active-p, activate-mark
23096 and deactivate-mark (bug#14225).
23097
23098 * simple.el (deactivate-mark): Don't inline it.
23099
23100 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
23101
23102 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
23103
23104 2013-04-18 Tassilo Horn <tsdh@gnu.org>
23105
23106 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
23107 file extensions from the archive-mode entry in order to prefer
23108 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
23109
23110 2013-04-18 Leo Liu <sdl.web@gmail.com>
23111
23112 * bindings.el (help-event-list): Add ?\?.
23113
23114 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23115
23116 * subr.el (with-wrapper-hook): Declare obsolete.
23117 * simple.el (filter-buffer-substring-function): New hook.
23118 (filter-buffer-substring): Use it.
23119 (filter-buffer-substring-functions): Mark obsolete.
23120 * minibuffer.el (completion-in-region-function): New hook.
23121 (completion-in-region): Use it.
23122 (completion-in-region-functions): Mark obsolete.
23123 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
23124 * abbrev.el (abbrev-expand-function): New hook.
23125 (expand-abbrev): Use it.
23126 (abbrev-expand-functions): Mark obsolete.
23127 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
23128 and :filter-return.
23129
23130 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
23131
23132 * progmodes/python.el (python-nav--syntactically): Fix cornercases
23133 and do not care about match data.
23134
23135 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
23136
23137 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
23138 completion tables when completing error conditions and
23139 `declare' arguments.
23140 (lisp-complete-symbol, field-complete): Mark as obsolete.
23141 (check-parens): Unmatched parens are user errors.
23142 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
23143
23144 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
23145
23146 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
23147 command changed buffer (ie. `flyspell-pre-buffer' is not current
23148 buffer), which prevents making decisions based on invalid value of
23149 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
23150 cause an error when `flyspell-pre-point' was nil after switching
23151 buffers.
23152 (flyspell-post-command-hook): No longer needs to change buffers when
23153 checking pre-word. While at it remove unnecessary progn.
23154
23155 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
23156
23157 * textmodes/ispell.el (ispell-add-per-file-word-list):
23158 Fix `flyspell-correct-word-before-point' error when accepting
23159 words and `coment-padding' is an integer by using
23160 `comment-normalize-vars' (Bug #14214).
23161
23162 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
23163
23164 New defun movement commands.
23165 * progmodes/python.el (python-nav--syntactically)
23166 (python-nav--forward-defun, python-nav-backward-defun)
23167 (python-nav-forward-defun): New functions.
23168
23169 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
23170
23171 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
23172 (python-syntax-context): Use named compiler-macro for backwards
23173 compatibility with Emacs 24.x.
23174
23175 2013-04-17 Leo Liu <sdl.web@gmail.com>
23176
23177 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
23178 octave-hide-process-buffer.
23179
23180 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
23181
23182 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
23183 (bug#14216).
23184
23185 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
23186
23187 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
23188 Fix adjustment of offset when receiving incomplete responses from GDB
23189 (bug#14129).
23190
23191 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23192
23193 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
23194 python-mode-abbrev-table.
23195 (python-skeleton-define): Adjust accordingly.
23196 (python-mode-abbrev-table): New table that inherits from it so that
23197 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
23198
23199 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
23200 (abbrev-symbol): Use it.
23201 (abbrev--before-point): Use it since we already handle inheritance.
23202
23203 2013-04-16 Leo Liu <sdl.web@gmail.com>
23204
23205 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
23206 binding to info-lookup-symbol.
23207
23208 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
23209
23210 * minibuffer.el (completion--twq-all):
23211 * term/ns-win.el (ns-initialize-window-system):
23212 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
23213
23214 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23215
23216 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
23217 global bindings.
23218
23219 * doc-view.el (doc-view-start-process): Handle url-handler directories.
23220
23221 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
23222
23223 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
23224 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
23225 to nil.
23226 (ruby-end-of-defun): Remove the unused arg, change the docstring
23227 to reflect that this function is only used as the value of
23228 `end-of-defun-function'.
23229 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
23230 to reflect an earlier change that beginning/end-of-defun functions
23231 jump between methods in a class definition, as well as top-level
23232 functions.
23233
23234 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23235
23236 * minibuffer.el (minibuffer-complete): Don't just scroll
23237 a *Completions* that's been iconified.
23238 (minibuffer-force-complete): Make sure repetitions do cycle when going
23239 through completion-in-region -> minibuffer-complete.
23240
23241 2013-04-15 Alan Mackenzie <acm@muc.de>
23242
23243 Correct the placement of c-cpp-delimiters when there're #s not at
23244 col 0.
23245
23246 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
23247 place a submatch around the #.
23248 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
23249 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
23250 on the #, not BOL.
23251
23252 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23253
23254 * emacs-lisp/nadvice.el: Properly test names when adding advice.
23255 (advice--member-p): New arg `name'.
23256 (advice--add-function, advice-member-p): Use it (bug#14202).
23257
23258 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
23259
23260 Reformulate java imenu-generic-expression.
23261 The old expression contained ill formed regexps.
23262
23263 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
23264 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
23265 (cc-imenu-java-method-arg-regexp): New defconsts.
23266 (cc-imenu-java-build-type-args-regex): New defun.
23267 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
23268 handling of spaces in the regexp.
23269
23270 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
23271
23272 * textmodes/ispell.el (ispell-command-loop): Remove
23273 flyspell highlight of a word when ispell accepts it (bug #14178).
23274
23275 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
23276
23277 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
23278 uses code from the previous `ange-ftp-run-real-handler'.
23279 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
23280 only in case that function exist. This is needed for proper
23281 unloading of Tramp.
23282
23283 2013-04-15 Tassilo Horn <tsdh@gnu.org>
23284
23285 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
23286
23287 * textmodes/reftex.el (reftex-compile-variables): Use it.
23288
23289 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23290
23291 * files.el (normal-mode): Only use default major-mode if no other mode
23292 was specified.
23293
23294 * emacs-lisp/trace.el (trace-values): New function.
23295
23296 * files.el: Allow : in local variables (bug#14089).
23297 (hack-local-variable-regexp): New var.
23298 (hack-local-variables-prop-line, hack-local-variables): Use it.
23299
23300 2013-04-13 Roland Winkler <winkler@gnu.org>
23301
23302 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
23303 data before it gets modified by bibtex-beginning-of-entry.
23304
23305 2013-04-13 Roland Winkler <winkler@gnu.org>
23306
23307 * textmodes/bibtex.el (bibtex-url): Doc fix.
23308
23309 2013-04-13 Roland Winkler <winkler@gnu.org>
23310
23311 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
23312 does not visit a BibTeX file, exclude it from the list of buffers
23313 returned by bibtex-initialize.
23314
23315 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
23316
23317 * window.el (split-window): Remove interactive form, since as a
23318 command this function is a special case of split-window-below.
23319 Correct doc string.
23320
23321 2013-04-12 Roland Winkler <winkler@gnu.org>
23322
23323 * faces.el (read-face-name): Do not override value of arg default.
23324 Allow single faces and strings as default values. Remove those
23325 elements from return value that are not faces.
23326 (describe-face): Simplify.
23327 (face-at-point): New optional args thing and multiple so that this
23328 function can provide the same functionality previously provided by
23329 read-face-name.
23330 (make-face-bold, make-face-unbold, make-face-italic)
23331 (make-face-unitalic, make-face-bold-italic, invert-face)
23332 (modify-face, read-face-and-attribute): Use face-at-point.
23333
23334 * cus-edit.el (customize-face, customize-face-other-window)
23335 * cus-theme.el (custom-theme-add-face)
23336 * face-remap.el (buffer-face-set)
23337 * facemenu.el (facemenu-set-face): Use face-at-point.
23338
23339 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
23340
23341 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
23342
23343 2013-04-10 Tassilo Horn <tsdh@gnu.org>
23344
23345 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
23346 off leading { and trailing } from field values.
23347
23348 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23349
23350 * emacs-lisp/timer.el (timer--check): New function.
23351 (timer--time, timer-set-function, timer-event-handler): Use it.
23352 (timer-set-idle-time): Simplify.
23353 (timer--activate): CSE.
23354 (timer-event-handler): Give more info in error message.
23355 (internal-timer-start-idle): New function, moved from C.
23356
23357 * mpc.el (mpc-proc): Add `restart' argument.
23358 (mpc-proc-cmd): Use it.
23359 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
23360 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
23361 less often.
23362
23363 2013-04-10 Masatake YAMATO <yamato@redhat.com>
23364
23365 * progmodes/sh-script.el: Implement `sh-mode' own
23366 `add-log-current-defun-function' (bug#14112).
23367 (sh-current-defun-name): New function.
23368 (sh-mode): Use the function.
23369
23370 2013-04-09 Bastien Guerry <bzg@gnu.org>
23371
23372 * simple.el (choose-completion-string): Fix docstring (bug#14163).
23373
23374 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
23375
23376 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
23377
23378 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
23379 timer (bug#14156).
23380
23381 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
23382
23383 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
23384 declaration.
23385
23386 2013-04-07 Leo Liu <sdl.web@gmail.com>
23387
23388 * pcmpl-x.el: New file.
23389
23390 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
23391
23392 Do not set x-display-name until X connection is established.
23393 This is needed to prevent from weird situation described at
23394 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
23395 * frame.el (make-frame): Set x-display-name after call to
23396 window system initialization function, not before.
23397 * term/x-win.el (x-initialize-window-system): Add optional
23398 display argument and use it.
23399 * term/w32-win.el (w32-initialize-window-system):
23400 * term/ns-win.el (ns-initialize-window-system):
23401 * term/pc-win.el (msdos-initialize-window-system):
23402 Add compatible optional display argument.
23403
23404 2013-04-06 Eli Zaretskii <eliz@gnu.org>
23405
23406 * files.el (normal-backup-enable-predicate): On MS-Windows and
23407 MS-DOS compare truenames of temporary-file-directory and of the
23408 file, so that 8+3 aliases (usually found in $TEMP on Windows)
23409 don't fail comparison by compare-strings. Also, compare file
23410 names case-insensitively on MS-Windows and MS-DOS.
23411
23412 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
23413
23414 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
23415 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
23416
23417 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
23418
23419 * whitespace.el (whitespace-color-on, whitespace-color-off):
23420 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
23421
23422 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
23423
23424 * ispell.el (ispell-set-spellchecker-params):
23425 Really set `ispell-args' for all equivs.
23426
23427 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
23428
23429 * ido.el (ido-completions): Use extra elements of ido-decorations
23430 (bug#14143).
23431 (ido-decorations): Update docstring.
23432
23433 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
23434
23435 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
23436 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
23437 nil during initialization, in order not to miss changes since the
23438 file was opened. (Bug#14140)
23439
23440 2013-04-05 Leo Liu <sdl.web@gmail.com>
23441
23442 * kmacro.el (kmacro-call-macro): Fix bug#14135.
23443
23444 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
23445
23446 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
23447
23448 2013-04-04 Glenn Morris <rgm@gnu.org>
23449
23450 * electric.el (electric-pair-inhibit-predicate): Add :version.
23451
23452 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
23453
23454 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
23455 when a package is required several times (bug#14082).
23456
23457 2013-04-04 Roland Winkler <winkler@gnu.org>
23458
23459 * faces.el (read-face-name): Behave as promised by the docstring.
23460 Assume that arg default is a list of faces.
23461 (describe-face): Call read-face-name with list of default faces.
23462
23463 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
23464
23465 * bookmark.el: Fix deletion of bookmarks (bug#13972).
23466 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
23467 (bookmark-bmenu-execute-deletions): Only skip first line if it's
23468 the header.
23469 (bookmark-exit-hook-internal): Save even if list is empty.
23470
23471 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
23472
23473 * emacs-lisp/package.el (package-pinned-packages): New var.
23474 (package--add-to-archive-contents): Obey it (bug#14118).
23475
23476 2013-04-03 Alan Mackenzie <acm@muc.de>
23477
23478 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
23479 Also adapt to the new values of element 7 of a parse state.
23480
23481 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
23482 parameter `not-in-delimiter'. Handle being inside comment opener.
23483 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
23484 character in case we're typing a '*' after a '/'.
23485 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
23486 instead by passing the parameter to c-state-pp-to-literal.
23487
23488 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
23489 for elt. 7 of a parse state.
23490
23491 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
23492
23493 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
23494 * international/latin1-disp.el, international/mule-util.el:
23495 * language/cyril-util.el, language/european.el, language/ind-util.el:
23496 * language/lao-util.el, language/thai.el, language/tibet-util.el:
23497 * language/tibetan.el, language/viet-util.el:
23498 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
23499
23500 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23501
23502 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
23503 (electric-pair-post-self-insert-function): Use it.
23504 (electric-pair-default-inhibit): New function, extracted from
23505 electric-pair-post-self-insert-function.
23506
23507 2013-03-31 Roland Winkler <winkler@gnu.org>
23508
23509 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
23510
23511 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23512
23513 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
23514
23515 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
23516
23517 Un-indent after "pass" and "return" statements (Bug#13888)
23518 * progmodes/python.el (python-indent-block-enders): New var.
23519 (python-indent-calculate-indentation): Use it.
23520
23521 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
23522
23523 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
23524 defun. Defining it as defalias could introduce too eager
23525 byte-compiler optimization. (Bug#14030)
23526
23527 2013-03-30 Chong Yidong <cyd@gnu.org>
23528
23529 * iswitchb.el (iswitchb-read-buffer): Fix typo.
23530
23531 2013-03-30 Leo Liu <sdl.web@gmail.com>
23532
23533 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
23534 (kmacro-execute-from-register): Pass the keyboard macro to
23535 kmacro-call-macro or repeating won't work correctly.
23536
23537 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
23538
23539 * progmodes/subword.el: Back to using `forward-symbol'.
23540
23541 * subr.el (forward-whitespace, forward-symbol)
23542 (forward-same-syntax): Move from thingatpt.el.
23543
23544 2013-03-29 Leo Liu <sdl.web@gmail.com>
23545
23546 * kmacro.el (kmacro-to-register): New command.
23547 (kmacro-execute-from-register): New function.
23548 (kmacro-keymap): Bind to 'x'. (Bug#14071)
23549
23550 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
23551
23552 * mpc.el: Use defvar-local and setq-local.
23553 (mpc--proc-connect): Connection failures are not bugs.
23554 (mpc-mode-map): `follow-link' only applies to the buffer's content.
23555 (mpc-volume-map): Bind to the up-events.
23556
23557 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
23558
23559 * progmodes/subword.el (superword-mode): Use `forward-sexp'
23560 instead of `forward-symbol'.
23561
23562 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
23563
23564 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
23565 (edebug--recursive-edit): Use it.
23566 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
23567 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
23568
23569 2013-03-28 Leo Liu <sdl.web@gmail.com>
23570
23571 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
23572
23573 2013-03-27 Eli Zaretskii <eliz@gnu.org>
23574
23575 * facemenu.el (list-colors-callback): New defvar.
23576 (list-colors-redisplay): New function.
23577 (list-colors-display): Install list-colors-redisplay as the
23578 revert-buffer-function. (Bug#14063)
23579
23580 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
23581
23582 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
23583 and suffixes don't overlap (bug#14061).
23584
23585 * case-table.el: Use lexical-binding.
23586 (case-table-get-table): New function.
23587 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
23588
23589 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
23590
23591 * progmodes/subword.el: Add `superword-mode' to do word motion
23592 over symbol_words (parallels and leverages `subword-mode' which
23593 does word motion inside MixedCaseWords).
23594
23595 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
23596
23597 * eshell/em-unix.el: Move su and sudo to...
23598 * eshell/em-tramp.el: ...Eshell tramp module.
23599
23600 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
23601
23602 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
23603 Change return value to be a sexp. Delay `get-buffer' to after
23604 restoring the desktop (bug#13951).
23605
23606 2013-03-26 Leo Liu <sdl.web@gmail.com>
23607
23608 * register.el: Move semantic tag handling back to
23609 cedet/semantic/senator.el. (Bug#14052)
23610
23611 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
23612
23613 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
23614 into the prompt either (bug#13963).
23615
23616 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
23617
23618 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
23619 part of "(error-foo)".
23620
23621 2013-03-24 Juri Linkov <juri@jurta.org>
23622
23623 * replace.el (list-matching-lines-prefix-face): New defcustom.
23624 (occur-1): Pass `list-matching-lines-prefix-face' to the function
23625 `occur-engine' if `face-differs-from-default-p' returns t.
23626 (occur-engine): Add `,' inside backquote construct to evaluate
23627 `prefix-face'. Propertize the prefix with the `prefix-face' face.
23628 Pass `prefix-face' to the functions `occur-context-lines' and
23629 `occur-engine-add-prefix'.
23630 (occur-engine-add-prefix, occur-context-lines): Add optional arg
23631 `prefix-face' and propertize the prefix with `prefix-face'.
23632 (Bug#14017)
23633
23634 2013-03-24 Leo Liu <sdl.web@gmail.com>
23635
23636 * nxml/rng-valid.el (rng-validate-while-idle)
23637 (rng-validate-quick-while-idle): Guard against deleted buffer.
23638 (Bug#13999)
23639
23640 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
23641 is the last entry in kill-buffer-hook.
23642
23643 * files.el (kill-buffer-hook): Doc fix.
23644
23645 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
23646
23647 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
23648 Make it safe-local.
23649
23650 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
23651
23652 2013-03-23 Leo Liu <sdl.web@gmail.com>
23653
23654 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
23655 Remove.
23656
23657 * nxml/rng-valid.el (rng-validate-mode)
23658 (rng-after-change-function, rng-do-some-validation):
23659 * nxml/rng-maint.el (rng-validate-buffer):
23660 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
23661 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
23662 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
23663 (nxml-extend-after-change-region): Use with-silent-modifications.
23664
23665 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
23666 timer-idle-list.
23667
23668 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
23669 (rng-next-error-1, rng-previous-error-1): Do not let-bind
23670 timer-idle-list. (Bug#13999)
23671
23672 2013-03-23 Juri Linkov <juri@jurta.org>
23673
23674 * info.el (info-index-match): New face.
23675 (Info-index, Info-apropos-matches): Add a nested subgroup to the
23676 main pattern and add text properties with the new face to matches
23677 in index entries relative to the beginning of the index entry.
23678 (Bug#14015)
23679
23680 2013-03-21 Eric Ludlam <zappo@gnu.org>
23681
23682 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
23683 Inhibit read only while inserting objects.
23684
23685 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
23686
23687 * progmodes/cfengine.el: Update docs to mention
23688 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
23689 symbol motion. Remove "_" from the word syntax.
23690
23691 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
23692
23693 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
23694 syntax for both `cfengine2-mode' and `cfengine3-mode'.
23695
23696 2013-03-20 Juri Linkov <juri@jurta.org>
23697
23698 * info.el (Info-next-reference-or-link)
23699 (Info-prev-reference-or-link): New functions.
23700 (Info-next-reference, Info-prev-reference): Use them.
23701 (Info-try-follow-nearest-node): Handle footnote navigation.
23702 (Info-fontify-node): Fontify footnotes. (Bug#13989)
23703
23704 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
23705
23706 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
23707 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
23708
23709 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
23710
23711 Suppress unnecessary non-ASCII chatter during build process.
23712 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
23713 (batch-skkdic-convert): Suppress most of the chatter.
23714 It's not needed so much now that machines are faster,
23715 and its non-ASCII component was confusing; see Dmitry Gutov in
23716 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
23717
23718 2013-03-20 Leo Liu <sdl.web@gmail.com>
23719
23720 * ido.el (ido-chop): Fix bug#10994.
23721
23722 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
23723
23724 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
23725 Remove vars.
23726 (whitespace-color-on, whitespace-color-off):
23727 Use `font-lock-fontify-buffer' (Bug#13817).
23728
23729 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
23730
23731 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
23732 remapping in mode-line.
23733 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
23734
23735 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
23736
23737 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
23738 value for `whitespace-line' face (Bug#13875).
23739 (whitespace-font-lock-keywords): Change description.
23740 (whitespace-color-on): Don't save `font-lock-keywords' value, save
23741 the constructed keywords instead.
23742 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
23743
23744 2013-03-19 Leo Liu <sdl.web@gmail.com>
23745
23746 * progmodes/compile.el (compilation-display-error): New command.
23747 (compilation-mode-map, compilation-minor-mode-map): Bind it to
23748 C-o. (Bug#13992)
23749
23750 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
23751
23752 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
23753
23754 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
23755
23756 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
23757
23758 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
23759
23760 * net/tramp-compat.el (tramp-compat-user-error): New defun.
23761
23762 * net/tramp-adb.el (tramp-adb-handle-shell-command):
23763 * net/tramp-gvfs.el (top):
23764 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
23765 (tramp-handle-shell-command): Use it.
23766 (tramp-dissect-file-name): Raise an error when hostname is a
23767 method name, and neither method nor user is specified.
23768
23769 * net/trampver.el: Update release number.
23770
23771 2013-03-18 Leo Liu <sdl.web@gmail.com>
23772
23773 Make sure eldoc can be turned off properly.
23774 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
23775 eldoc-mode.
23776 (eldoc-display-message-p): Revert last change.
23777 (eldoc-display-message-no-interference-p)
23778 (eldoc-print-current-symbol-info): Tweak.
23779
23780 2013-03-18 Tassilo Horn <tsdh@gnu.org>
23781
23782 * doc-view.el (doc-view-new-window-function): Check the new window
23783 overlay's display property instead the char property of the
23784 buffer's first char. Use `with-selected-window' instead of
23785 `save-window-excursion' with `select-window'.
23786 (doc-view-document->bitmap): Check the current doc-view overlay's
23787 display property instead the char property of the buffer's first char.
23788
23789 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
23790
23791 Automate the build of ja-dic.el (Bug#13984).
23792 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
23793 from the input, rather than assume that it's been done for us by the
23794 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
23795 the current date into a ja-dic.el comment, as that complicates
23796 regression testing.
23797
23798 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
23799
23800 * whitespace.el: Fix double evaluation.
23801 (whitespace-space, whitespace-hspace, whitespace-tab)
23802 (whitespace-newline, whitespace-trailing, whitespace-line)
23803 (whitespace-space-before-tab, whitespace-indentation)
23804 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
23805 obsolete defvars.
23806 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
23807 (whitespace-color-on): Use a single font-lock-add-keywords call.
23808 Fix double-evaluation of face variables.
23809
23810 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
23811
23812 * net/tramp-adb.el (tramp-adb-parse-device-names):
23813 Use `start-process' instead of `call-process'. Otherwise, the
23814 function might be blocked under MS Windows. (Bug#13299)
23815
23816 2013-03-17 Leo Liu <sdl.web@gmail.com>
23817
23818 Extend eldoc to display info in the mode-line. (Bug#13978)
23819 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
23820 (eldoc-mode-line-string): New variable.
23821 (eldoc-minibuffer-message): New function.
23822 (eldoc-message-function): New variable.
23823 (eldoc-message): Use it.
23824 (eldoc-display-message-p)
23825 (eldoc-display-message-no-interference-p):
23826 Support eldoc-post-insert-mode.
23827
23828 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
23829 (eval-expression): Run it.
23830
23831 2013-03-17 Roland Winkler <winkler@gnu.org>
23832
23833 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
23834 strings in the list of return values.
23835
23836 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
23837
23838 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
23839 radix before checking for HMS forms.
23840
23841 2013-03-16 Leo Liu <sdl.web@gmail.com>
23842
23843 * progmodes/scheme.el: Add indentation and font-locking for λ.
23844 (Bug#13975)
23845
23846 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
23847
23848 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
23849 token before point (bug#13942).
23850
23851 2013-03-16 Leo Liu <sdl.web@gmail.com>
23852
23853 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
23854
23855 2013-03-16 Eli Zaretskii <eliz@gnu.org>
23856
23857 * startup.el (command-line-normalize-file-name): Fix handling of
23858 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
23859 <xfq.free@gmail.com> in
23860 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
23861
23862 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
23863
23864 Sync with Tramp 2.2.7.
23865
23866 * net/trampver.el: Update release number.
23867
23868 2013-03-14 Tassilo Horn <tsdh@gnu.org>
23869
23870 * doc-view.el: Fix bug#13887.
23871 (doc-view-insert-image): Don't modify overlay associated to
23872 non-live windows, and implement horizontal centering of image in
23873 case it's smaller than the window.
23874 (doc-view-new-window-function): Force redisplay of new windows on
23875 doc-view buffers.
23876
23877 2013-03-13 Karl Fogel <kfogel@red-bean.com>
23878
23879 * saveplace.el (save-place-alist-to-file): Don't sort
23880 `save-place-alist', just pretty-print it (bug#13882).
23881
23882 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
23883
23884 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
23885 Check whether `default-file-name-coding-system' is bound.
23886 It isn't in XEmacs.
23887
23888 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
23889
23890 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
23891 backquotes for `obsolete' (bug#13929).
23892
23893 * international/mule.el (find-auto-coding): Include file name in
23894 obsolescence warning (bug#13922).
23895
23896 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
23897
23898 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
23899 for CFEngine 3-specific indentation.
23900 (cfengine3-indent-line): Use it. Fix up category regex.
23901 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
23902
23903 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
23904
23905 * type-break.el (type-break-file-name):
23906 * textmodes/remember.el (remember-data-file):
23907 * strokes.el (strokes-file):
23908 * shadowfile.el (shadow-initialize):
23909 * saveplace.el (save-place-file):
23910 * ps-bdf.el (bdf-cache-file):
23911 * progmodes/idlwave.el (idlwave-config-directory):
23912 * net/quickurl.el (quickurl-url-file):
23913 * international/kkc.el (kkc-init-file-name):
23914 * ido.el (ido-save-directory-list-file):
23915 * emulation/viper.el (viper-custom-file-name):
23916 * emulation/vip.el (vip-startup-file):
23917 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
23918 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
23919
23920 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
23921
23922 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
23923 * language/thai-word.el: Switch to UTF-8.
23924
23925 See ChangeLog.16 for earlier changes.
23926
23927 ;; Local Variables:
23928 ;; coding: utf-8
23929 ;; End:
23930
23931 Copyright (C) 2011-2015 Free Software Foundation, Inc.
23932
23933 This file is part of GNU Emacs.
23934
23935 GNU Emacs is free software: you can redistribute it and/or modify
23936 it under the terms of the GNU General Public License as published by
23937 the Free Software Foundation, either version 3 of the License, or
23938 (at your option) any later version.
23939
23940 GNU Emacs is distributed in the hope that it will be useful,
23941 but WITHOUT ANY WARRANTY; without even the implied warranty of
23942 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23943 GNU General Public License for more details.
23944
23945 You should have received a copy of the GNU General Public License
23946 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.