aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorJoakim Verona2012-06-13 18:00:21 +0200
committerJoakim Verona2012-06-13 18:00:21 +0200
commit13d6898b0656b38da837261ec20a055a1be4a7e5 (patch)
treeb3399abf9cbea221b083b5bd8368915169b02fb1 /lisp/ChangeLog
parent5259b41aab32e82ff06d977877f2e456541b3c0b (diff)
parent8cca97031d60136b3bdebef0d978ee3fe40eddec (diff)
downloademacs-13d6898b0656b38da837261ec20a055a1be4a7e5.tar.gz
emacs-13d6898b0656b38da837261ec20a055a1be4a7e5.zip
upstream, doesn build yet
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog861
1 files changed, 847 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b70008fb821..845c666bc8b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,848 @@
12012-06-13 Chong Yidong <cyd@gnu.org>
2
3 * mouse.el (mouse-drag-track): Do not set the mark if the user
4 releases the mouse without selecting anything (Bug#11588).
5
62012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
7
8 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
9 as well (bug#11646).
10
11 * loadup.el: Count byte-code functions as well.
12
13 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
14 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
15
16 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
17 (bug#11649). Add cl-defun and cl-defmacro.
18
192012-06-13 Drew Adams <drew.adams@oracle.com>
20
21 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
22 Fix last change.
23
242012-06-13 Michael Albinus <michael.albinus@gmx.de>
25
26 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
27 Otherwise, it blocks in batch mode.
28
292012-06-13 Juanma Barranquero <lekktu@gmail.com>
30
31 * help-mode.el (bookmark-make-record-default): Declare.
32
332012-06-13 Chong Yidong <cyd@gnu.org>
34
35 * emacs-lisp/package.el (list-packages): Compute a list of
36 packages that are newly-available since the last list-packages
37 invocation.
38 (package-menu--new-package-list): New var.
39 (package-menu--generate, package-menu--print-info)
40 (package-menu--status-predicate, package-menu-mark-install):
41 Handle new status label "new".
42
432012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
44
45 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
46 conversion to backquotes.
47
482012-06-12 Chong Yidong <cyd@gnu.org>
49
50 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
51 Rename from gud-inhibit-global-bindings.
52
53 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
54
55 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
56 hook from nxml-glyph-set-hook.
57
58 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
59 declaration.
60
61 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
62
63 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
64 Convert to defcustom.
65
662012-06-12 Drew Adams <drew.adams@oracle.com>
67
68 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
69 New functions.
70 (help-mode): Use them.
71
722012-06-11 Glenn Morris <rgm@gnu.org>
73
74 * progmodes/fortran.el (fortran-font-lock-keywords-3):
75 Use preprocessor face for directives.
76 (fortran-directive-re): Doc fix.
77
782012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
81 conversion to backquotes (bug#11652).
82
83 Fix compiler-expansion of CL's cXXr functions (bug#11673).
84 * emacs-lisp/cl-lib.el (cl--defalias): New function.
85 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
86 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
87 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
88 (cl-ninth, cl-tenth): Mark them as inlinable.
89 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
90 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
91 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
92 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
93 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
94 (cl-list*, cl-adjoin): Don't put an autoload manually.
95 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
96 (cl--compiler-macro-list*): Add autoload cookie.
97 (cl--compiler-macro-cXXr): New function.
98
99 * help-fns.el (help-fns--compiler-macro): New function extracted from
100 describe-function-1; follow aliases and use `compiler-macro' property.
101 (describe-function-1): Use it.
102
1032012-06-11 Chong Yidong <cyd@gnu.org>
104
105 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
106 is uninstalled, if imagemagick is installed.
107
1082012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
109
110 * emacs-lisp/cl-lib.el: Use lexical-binding.
111 (cl-map-extents, cl-maclisp-member): Remove.
112 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
113 (cl--set-substring, cl--block-wrapper, cl--block-throw)
114 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
115 * emacs-lisp/cl-extra.el: Use lexical-binding.
116 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
117 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
118 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
119 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
120 * emacs-lisp/cl-seq.el: Use lexical-binding.
121 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
122 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
123 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
124 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
125 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
126 CL's internals.
127
1282012-06-11 Michael Albinus <michael.albinus@gmx.de>
129
130 Sync with Tramp 2.2.6-pre.
131
132 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
133 `print-length' and `print-level' to nil, in order to avoid
134 truncation. Reported by Christopher Schmidt
135 <christopher@ristopher.com>.
136
137 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
138
139 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
140 New defmacro.
141 (tramp-compat-copy-directory): Add optional argument
142 COPY-CONTENTS. It is not handled yet.
143
144 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
145 (tramp-ftp-file-name-p): Simplify.
146
147 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
148 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
149 connection vector.
150
151 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
152 (tramp-methods): Do not use `tramp-password-end-of-line'.
153 (tramp-completion-function-alist-putty): Handle UNIX case.
154 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
155 (tramp-do-file-attributes-with-stat)
156 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
157 gid as real numbers. They could run out of integer range on cygwin.
158 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
159 (tramp-sh-handle-expand-file-name): Handle hops.
160 (tramp-open-connection-setup-interactive-shell):
161 Use `tramp-cleanup'. Move check for busyboxes ...
162 (tramp-find-shell): ... here. Simplify implementation.
163 Set "remote-shell" property also for alternative shells.
164 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
165 If failing, a regular file would be written otherwise.
166 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
167 (tramp-find-inline-encoding): Cache the coding commands in the
168 process cache. Apply test command on the remote side, if defined.
169 (tramp-find-inline-compress): Cache the compress commands in the
170 process cache.
171 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
172 when requested. Handle hops.
173 (tramp-current-connection): New defvar.
174 (tramp-maybe-open-connection): Use `tramp-cleanup'.
175 Throw `suppress', if there was a failed connection shortly before.
176 Handle user interrupt. (Bug#10187)
177 (tramp-get-inline-compress, tramp-get-inline-coding):
178 Read connection properties from the process cache.
179
180 * net/tramp-smb.el (tramp-smb-server-version)
181 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
182 New defconsts.
183 (tramp-smb-prompt): Extend for powershell prompt.
184 (tramp-smb-file-name-handler-alist): Add handlers for
185 `process-file', `shell-command' and `start-file-process'.
186 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
187 (tramp-smb-winexe-shell-command-switch): New defcustoms.
188 (tramp-smb-file-name-p): Simplify.
189 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
190 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
191 (tramp-smb-shell-quote-argument): New defuns.
192 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
193 Implement using "tar". By this, time-stamps are preserved.
194 (tramp-smb-handle-copy-file): Handle also the case of directories.
195 (tramp-smb-do-file-attributes-with-stat)
196 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
197 Use `tramp-get-connection-buffer').
198 (tramp-smb-handle-rename-file): Use "rename", when source and
199 target are on the same share.
200 (tramp-smb-maybe-open-connection): Handle wrong passwords.
201 Use `tramp-smb-server-version'.
202 (tramp-smb-wait-for-output): Remove prompt.
203
204 * net/tramp.el (top): Require 'cl.
205 (tramp-methods, tramp-rsh-end-of-line):
206 Remove `tramp-password-end-of-line' from docstring.
207 (tramp-save-ad-hoc-proxies): New defcustom.
208 (tramp-completion-function-alist): Adapt docstring.
209 (tramp-default-password-end-of-line): Remove defcustom.
210 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
211 (tramp-user-regexp, tramp-file-name-regexp-unified)
212 (tramp-file-name-regexp-url): Extend regexp by hop separator.
213 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
214 (tramp-remote-file-name-spec-regexp): New defconst.
215 (tramp-file-name-structure): Extend structure for hops.
216 (tramp-get-method-parameter): Move up.
217 (tramp-file-name-p, tramp-dissect-file-name)
218 (with-parsed-tramp-file-name): Handle hops.
219 (tramp-file-name-hop): New defun.
220 (tramp-make-tramp-file-name): New optional arg HOP.
221 (tramp-message-show-progress-reporter-message): New defvar.
222 (tramp-with-progress-reporter): Use it. We cannot use
223 `tramp-message-show-message' here, because this suppresses also
224 error buffers.
225 (tramp-error-with-buffer): Suppress buffer view, if
226 `tramp-message-show-message' is nil.
227 Use `tramp-get-connection-buffer'.
228 (tramp-cleanup): New defun.
229 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
230 (tramp-file-name-handler): If `debug-on-error' is set, propagate
231 an error unchanged.
232 (tramp-completion-handle-file-name-all-completions): Handle hops.
233 Fix an error when called from ido.
234 (tramp-completion-dissect-file-name): Use better local variable
235 name. Add hop to the vector.
236 (tramp-handle-insert-file-contents): Use progress-reporter for the
237 whole scenario.
238 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
239 to `t'.
240 (tramp-check-for-regexp): Simplify search.
241 (tramp-enter-password): Remove it. Move implementation ...
242 (tramp-action-password): ... here.
243 (tramp-mode-string-to-int, tramp-local-host-p)
244 (tramp-make-tramp-temp-file, tramp-read-passwd)
245 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
246 Set tramp-autoload cookie.
247
248 * net/trampver.el: Update release number.
249
2502012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
251 Michael Albinus <michael.albinus@gmx.de>
252
253 * net/tramp.el (tramp-set-completion-function): Fix docstring.
254 (tramp-parse-group, tramp-parse-file)
255 (tramp-parse-shostkeys-sknownhosts): New defuns.
256 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
257 (tramp-parse-shosts-group, tramp-parse-sconfig)
258 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
259 (tramp-parse-sknownhosts, tramp-parse-hosts)
260 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
261 Use them.
262 (tramp-parse-passwd-group, tramp-parse-netrc-group)
263 (tramp-parse-putty-group): Don't narrow.
264 (tramp-parse-putty): Make a loop.
265 (tramp-file-name-handler): Catch the `suppress' signal.
266
2672012-06-11 Chong Yidong <cyd@gnu.org>
268
269 * image.el (imagemagick-register-types): Put the ImageMagick entry
270 at the end of image-type-file-name-regexps.
271
2722012-06-11 Johan Bockgård <bojohan@gnu.org>
273
274 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
275 (pcase, pcase-let*, pcase-dolist): Use them.
276
2772012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
278
279 * emacs-lisp/pcase.el (pcase--let*): New function.
280 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
281 (pcase--expand): Use macroexp-let².
282
2832012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
284
285 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
286 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
287 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
288 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
289 * emacs-lisp/derived.el: Use pcase instead of `cl'.
290 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
291
2922012-06-10 Glenn Morris <rgm@gnu.org>
293
294 * mail/rmail.el (rmail-yank-current-message): Leave point at
295 correct position. (Bug#11660)
296
2972012-06-10 Chong Yidong <cyd@gnu.org>
298
299 * allout-widgets.el: Fix code header.
300
3012012-06-10 Chong Yidong <cyd@gnu.org>
302
303 * cus-edit.el (customize-changed-options-previous-release):
304 Bump to 24.1.
305
3062012-06-09 Andreas Schwab <schwab@linux-m68k.org>
307
308 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
309
3102012-06-09 Chong Yidong <cyd@gnu.org>
311
312 * ebuff-menu.el (electric-buffer-list): Preserve header line.
313
3142012-06-09 Martin Rudalics <rudalics@gmx.at>
315
316 * window.el (special-display-popup-frame): Don't use
317 window--display-buffer (Bug#11651).
318
3192012-06-09 Eli Zaretskii <eliz@gnu.org>
320
321 Fix parallel builds: make sure loaddefs.el is not being written
322 while Lisp files are compiled.
323 (compile): Don't depend on 'mh-autoloads'.
324 (compile-CMD, compile-SH): Depend on 'autoloads'.
325 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
326
327 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
328
3292012-06-09 Chong Yidong <cyd@gnu.org>
330
331 * face-remap.el (face-remap-add-relative, face-remap-set-base)
332 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
333 Doc fixes (Bug#11225).
334
3352012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
336
337 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
338 a function if there's a clear indication that it has a compiler-macro.
339 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
340 (macro-declarations-alist): Add arglist to declaration functions.
341 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
342 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
343 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
344 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
345 Also add autoload to find the compiler macro.
346 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
347 (cl--compiler-macro-member, cl--compiler-macro-assoc)
348 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
349 (cl--compiler-macro-get): New functions, replacing calls to
350 cl-define-compiler-macro.
351 (cl-typep) [compiler-macro]: Use macroexp-let².
352
3532012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
354
355 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
356 string properly, fixes Bug#11473.
357
3582012-06-08 Chong Yidong <cyd@gnu.org>
359
360 * faces.el (set-face-attribute): Doc fix.
361 (modify-face): Don't use :bold and :italic.
362 (error, warning, success): Tweak definitions.
363
364 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
365 (custom-modified, custom-set, custom-changed, custom-themed)
366 (custom-saved, custom-button, custom-button-mouse)
367 (custom-button-pressed, custom-state, custom-comment-tag)
368 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
369 (custom-group-subtitle): Use new-style face specs.
370 (custom-invalid-face, custom-rogue-face, custom-modified-face)
371 (custom-set-face, custom-changed-face, custom-saved-face)
372 (custom-button-face, custom-button-pressed-face)
373 (custom-documentation-face, custom-state-face)
374 (custom-comment-face, custom-comment-tag-face)
375 (custom-variable-tag-face, custom-variable-button-face)
376 (custom-face-tag-face, custom-group-tag-face-1)
377 (custom-group-tag-face): Remove obsolete face alias.
378
379 * epa.el (epa-validity-high, epa-validity-medium)
380 (epa-validity-low, epa-mark, epa-field-name, epa-string)
381 (epa-field-name, epa-field-body):
382 * font-lock.el (font-lock-comment-face, font-lock-string-face)
383 (font-lock-keyword-face, font-lock-builtin-face)
384 (font-lock-function-name-face, font-lock-variable-name-face)
385 (font-lock-type-face, font-lock-constant-face):
386 * ido.el (ido-first-match, ido-only-match, ido-subdir)
387 (ido-virtual, ido-indicator, ido-incomplete-regexp):
388 * speedbar.el (speedbar-button-face, speedbar-file-face)
389 (speedbar-directory-face, speedbar-tag-face)
390 (speedbar-selected-face, speedbar-highlight-face)
391 (speedbar-separator-face):
392 * whitespace.el (whitespace-newline, whitespace-space)
393 (whitespace-hspace, whitespace-tab, whitespace-trailing)
394 (whitespace-line, whitespace-space-before-tab)
395 (whitespace-space-after-tab, whitespace-indentation)
396 (whitespace-empty):
397 * emulation/cua-base.el (cua-global-mark):
398 * eshell/em-prompt.el (eshell-prompt):
399 * net/newst-plainview.el (newsticker-new-item-face)
400 (newsticker-old-item-face, newsticker-immortal-item-face)
401 (newsticker-obsolete-item-face, newsticker-date-face)
402 (newsticker-statistics-face, newsticker-default-face):
403 * net/newst-reader.el (newsticker-feed-face)
404 (newsticker-extra-face, newsticker-enclosure-face):
405 * net/newst-treeview.el (newsticker-treeview-face)
406 (newsticker-treeview-new-face, newsticker-treeview-old-face)
407 (newsticker-treeview-immortal-face)
408 (newsticker-treeview-obsolete-face)
409 (newsticker-treeview-selection-face):
410 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
411 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
412 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
413 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
414 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
415 (nxml-outline-active-indicator, nxml-outline-ellipsis):
416 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
417 (mpuz-text):
418 * progmodes/vera-mode.el (vera-font-lock-number)
419 (vera-font-lock-function, vera-font-lock-interface):
420 * textmodes/table.el (table-cell): Use new-style face specs, and
421 don't use the old :bold and :italic attributes.
422
423 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
424 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
425 (ebrowse-member-class, ebrowse-progress): Likewise.
426 (ebrowse-tree-mark-face, ebrowse-root-class-face)
427 (ebrowse-file-name-face, ebrowse-default-face)
428 (ebrowse-member-attribute-face, ebrowse-member-class-face)
429 (ebrowse-progress-face): Remove obsolete faces.
430
431 * progmodes/flymake.el (flymake-errline, flymake-warnline):
432 Inherit from error and warning faces respectively.
433
434 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
435 Likewise.
436 (flyspell-incorrect-face, flyspell-duplicate-face):
437 Remove obsolete aliases.
438
4392012-06-08 Michael Albinus <michael.albinus@gmx.de>
440
441 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
442 Avoid infloop.
443
4442012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
445
446 * startup.el (argv, argi): Make lexically scoped.
447 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
448 * emacs-lisp/cl-macs.el: Use lexical-binding.
449 Rename cl-bind-* to cl--bind-*.
450 * files.el: Don't require `cl' since it doesn't use it.
451 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
452
4532012-06-08 Juanma Barranquero <lekktu@gmail.com>
454
455 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
456 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
457 instead of calling external sort utility.
458 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
459
4602012-06-08 Eli Zaretskii <eliz@gnu.org>
461
462 * descr-text.el (describe-char): Mention how to insert the
463 character, if the current input method doesn't support it.
464 See the discussion in this thread for the details:
465 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
466
4672012-06-08 Sam Steingold <sds@gnu.org>
468
469 * bindings.el (global-map): Bind XF86Forward to next-buffer and
470 XF86Back to previous-buffer.
471 (minibuffer-local-map): Bind them to next-history-element and
472 previous-history-element respectively.
473 * help-mode.el (help-mode-map): Bind them to help-go-forward and
474 help-go-back respectively.
475 * info.el (Info-mode-map): Bind them to Info-history-forward and
476 Info-history-back respectively.
477 These are the keys next to Up on the ThinkPad keyboard.
478
4792012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
480
481 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
482 * emacs-lisp/cl-macs.el: Provide itself.
483 (cl--labels-convert-cache): New var.
484 (cl--labels-convert): New function.
485 (cl-flet, cl-labels): New implementation with new semantics, relying on
486 lexical-binding.
487 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
488 (cl-closure-vars, cl--function-convert-cache)
489 (cl--function-convert): Move from cl-macs.el.
490 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
491 rename by removing the "cl-" prefix.
492 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
493
4942012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
495
496 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
497 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
498 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
499 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
500 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
501 (cl-hash-table-count): Add old compatibility aliases.
502
503 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
504 Use macroexpand-all-environment instead.
505 (cl--old-macroexpand): New var.
506 (cl--sm-macroexpand): New function.
507 (cl-symbol-macrolet): Use it during macro expansion.
508 (cl--function-convert-cache): New var.
509 (cl--function-convert): New function, extracted from
510 cl-macroexpand-all.
511 (cl-lexical-let): Use it.
512
513 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
514 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
515 (cl-member): Remove old alias.
516
517 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
518 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
519 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
520 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
521 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
522 (cl-macroexpand-cmacs): Remove var.
523 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
524 Use macroexpand-all instead.
525
5262012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
527
528 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
529 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
530 (macroexp-copyable-p): New functions and macros.
531 * emacs-lisp/edebug.el (edebug-unwrap):
532 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
533 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
534 (pcase--let*): Remove.
535 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
536 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
537 macroexp-const-p instead.
538 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
539
540 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
541 instead of "cl-" for internal definitions. Use macroexp-const-p.
542 (cl-old-bc-file-form): Remove var.
543 (cl-const-exprs-p): Remove fun.
544 (cl-labels, cl-macrolet): Use backquote.
545 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
546 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
547 (cl-define-setf-expander): Rename from cl-define-setf-method.
548 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
549
550 * international/mule-cmds.el: Don't require CL.
551 (view-hello-file): Don't use `letf'.
552
5532012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
554
555 * tmm.el (tmm-prompt): Use string-prefix-p.
556 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
557 (tmm-add-prompt): Use minibuffer-completion-help.
558 (tmm-delete-map): Remove.
559
560 * subr.el (kbd): Make it its own function.
561
5622012-06-07 Stefan Merten <smerten@oekonux.de>
563
564 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
565 Silence compiler warnings. Fix versions.
566 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
567 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
568 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
569 (rst-package-emacs-version-alist): Correct Emacs version to
570 represent major merge with upstream.
571 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
572
5732012-06-06 Glenn Morris <rgm@gnu.org>
574
575 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
576 Only print environment variables if set.
577
5782012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
579
580 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
581 (macroexp--cons): Rename from maybe-cons.
582 (macroexp--accumulate): Rename from macroexp-accumulate.
583 (macroexp--all-forms): Rename from macroexpand-all-forms.
584 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
585 (macroexp--expand-all): Rename from macroexpand-all-1.
586
5872012-06-06 Sam Steingold <sds@gnu.org>
588
589 * calendar/calendar.el (calendar-in-read-only-buffer):
590 Call `special-mode' to enable the standard read-only keybindings.
591
5922012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
595 with "loading" messages (bug#11635).
596
5972012-06-06 Michael Albinus <michael.albinus@gmx.de>
598
599 * files.el (enable-remote-dir-locals): New option.
600 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
601
602 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
603 Ensure, that the temp directory is local.
604
605 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
606 `temporary-file-directory'.
607
608 * progmodes/python.el (python-send-region): Ensure, that the
609 temporary file is created also in the remote case.
610
6112012-06-06 Glenn Morris <rgm@gnu.org>
612
613 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
614 (vc-rcs-update-changelog): Use it.
615
616 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
617
618 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
619 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
620 (vc-sccs-diff): Replace use of the external vcdiff script.
621
6222012-06-05 Glenn Morris <rgm@gnu.org>
623
624 * ledit.el: Move to obsolete/.
625
6262012-06-05 Sam Steingold <sds@gnu.org>
627
628 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
629 patch (Bug#11140).
630
6312012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
632
633 * emacs-list/cust-print.el: Move to obsolete.
634
635 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
636 compiler-macro expansion.
637
638 Add native compiler-macro support.
639 * emacs-lisp/macroexp.el (macroexpand-all-1):
640 Support compiler-macros directly. Properly follow aliases and apply
641 the compiler macros more thoroughly.
642 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
643 macroexpand now properly follows aliases.
644 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
645 (cl-compiler-macroexpand): Use new prop.
646 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
647
648 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
649
6502012-06-05 Martin Rudalics <rudalics@gmx.at>
651
652 * window.el (get-lru-window, get-mru-window, get-largest-window):
653 New argument NOT-SELECTED to avoid picking the selected window.
654 (window--display-buffer-1, window--display-buffer-2): Replace by
655 new function window--display-buffer
656 (display-buffer-same-window, display-buffer-reuse-window)
657 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
658 Use window--display-buffer.
659 (display-buffer-use-some-window): Remove temporary dedication
660 hack by calling get-lru-window and get-largest-window with
661 NOT-SELECTED argument non-nil. Call window--display-buffer.
662
6632012-06-05 Glenn Morris <rgm@gnu.org>
664
665 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
666 Replace external vcdiff script.
667
6682012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
671
6722012-06-04 Chong Yidong <cyd@gnu.org>
673
674 * image.el (imagemagick-types-inhibit): Revert last change.
675 Add INFO and M.
676 (imagemagick-enabled-types): Remove CIN and EPS*.
677
6782012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
679
680 * emacs-lisp/cl-lib.el: Rename from cl.el.
681 * emacs-lisp/cl.el: New compatibility file.
682 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
683 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
684 to obey the "cl-" prefix.
685 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
686
6872012-06-03 Glenn Morris <rgm@gnu.org>
688
689 * emacs-lisp/authors.el (authors-aliases): Addition.
690
691 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
692 Fix :version.
693
6942012-06-03 Stefan Merten <smerten@oekonux.de>
695
696 * textmodes/rst.el: Add comments.
697 (rst-transition, rst-adornment): New faces.
698 (rst-adornment-faces-alist): Make default safe to reevaluate.
699 Fixes
700 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
701 Improve customization tags.
702 (rst-define-level-faces): Clarify meaning.
703
7042012-06-03 Chong Yidong <cyd@gnu.org>
705
706 * progmodes/compile.el (compilation-mode-line-fail)
707 (compilation-mode-line-run, compilation-mode-line-exit):
708 New faces.
709 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
710
7112012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
712
713 * progmodes/which-func.el (which-func-update-ediff-windows):
714 New function. Use it in ediff-select-hook (Bug#11478).
715
7162012-06-03 Chong Yidong <cyd@gnu.org>
717
718 * bindings.el: Remove explicit help text from format-mode-line.
719 It is now supplied by mode-line-default-help-echo.
720 (mode-line-front-space, mode-line-end-spaces)
721 (mode-line-misc-info): New variables.
722 (mode-line-modes, mode-line-position): Move the default value to
723 the variable definition.
724 (mode-line-default-help-echo): New defcustom.
725 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
726 (mode-line-modified-help-echo): New functions.
727 (mode-line-mule-info, mode-line-modified): Use them.
728 (mode-line-eol-desc, propertized-buffer-identification):
729 Consistency fixes for help text.
730 (mode-line-coding-system-map): Allow using mouse-3 to invoke
731 set-buffer-file-coding-system (Bug#289).
732 (mode-line-mule-info-help-echo): Update help text.
733
7342012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
735
736 * simple.el (execute-extended-command): Set real-this-command
737 (bug#11506).
738
7392012-06-02 Chong Yidong <cyd@gnu.org>
740
741 Remove incorrect uses of "modeline" in comments, docstrings, and
742 function/variable names (Bug#10329).
743
744 * cus-edit.el (mode-line):
745 * dframe.el (dframe-mouse-hscroll):
746 * emacs-lisp/re-builder.el:
747 * emacs-lisp/easy-mmode.el (define-minor-mode):
748 * frame.el (set-frame-name):
749 * help.el (lookup-minor-mode-from-indicator):
750 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
751 * progmodes/cc-cmds.el (c-toggle-auto-newline)
752 (c-toggle-hungry-state):
753 * progmodes/antlr-mode.el (antlr-language-alist):
754 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
755 * progmodes/vhdl-mode.el (vhdl-mode):
756 * progmodes/which-func.el (which-func, which-func-cleanup-function):
757 * term/ns-win.el (ns-face-at-pos):
758 * term/sup-mouse.el (sup-mouse-report):
759 * textmodes/flyspell.el (flyspell-mode-line-string):
760 * textmodes/ispell.el (ispell-highlight-face):
761 * textmodes/reftex-global.el:
762 * vc/vc-arch.el (vc-arch-mode-line-string):
763 * vc/vc-cvs.el (vc-cvs-mode-line-string):
764 * vc/vc-git.el (vc-git-mode-line-string):
765 * vc/vc-hooks.el (vc-display-status)
766 (vc-default-mode-line-string):
767 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
768
769 * ansi-color.el (ansi-color-faces-vector): Change default faces.
770
771 * dired.el (dired-sort-set-mode-line): Rename from
772 dired-sort-set-modeline. All callers changed.
773
774 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
775 eshell-status-in-modeline.
776
777 * foldout.el (foldout-mode-line-string): Rename from
778 foldout-modeline-string. All callers changed.
779 (foldout-update-mode-line): Rename from foldout-update-modeline.
780
781 * subr.el (redraw-modeline): Make into obsolete alias.
782
783 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
784 timeclock-modeline-display. Make old name an alias.
785 (timeclock-update-mode-line): Likewise. All callers changed.
786 (timeclock-mode-line-display): No need to check before using
787 add-hook.
788 (timeclock-relative, timeclock-day-over-hook)
789 (timeclock-use-elapsed, timeclock-mode-string)
790 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
791
792 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
793 crisp-mode-modeline-string.
794
795 * play/solitaire.el (solitaire-build-mode-line): Rename from
796 solitaire-build-modeline. All callers changed.
797
798 * play/zone.el (zone-hiding-mode-line): Rename from
799 zone-hiding-modeline. All callers changed.
800 (zone): Remove unusued `modeline-hidden-level' property.
801
802 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
803 xscheme-modeline-initialize. All callers changed.
804
805 * strokes.el (strokes-lighter): Rename from
806 strokes-modeline-string.
807
808 * textmodes/sgml-mode.el (html-face-tag-alist)
809 (html-tag-face-alist): Use mode-line face instead of obsolete
810 alias modeline.
811
8122012-06-02 Stefan Merten <smerten@oekonux.de>
813
814 * textmodes/rst.el: Always require `cl'.
815 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
816
8172012-06-02 Chong Yidong <cyd@gnu.org>
818
819 * image.el (imagemagick-enabled-types): Rename from
820 imagemagick-types-enable. Add many more types.
821 (imagemagick-types-inhibit): Change default to nil.
822 (imagemagick-filter-types): Caller changed.
823
8242012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
825
826 * emacs-lisp/cl-macs.el: Use backquotes.
827 (cl-transform-function-property): Use eval-and-compile rather than
828 abusing `require'.
829 (defstruct): Use declare-function instead of with-no-warnings.
830
831 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
832 (byte-compile-output-docform): Re-add the print-circle bindings.
833 (byte-compile-fix-header): Use #$ just because it's shorter.
834 (byte-compile-output-file-form): Remove defun/defmacro.
835
8362012-06-01 Martin Rudalics <rudalics@gmx.at>
837
838 * simple.el (choose-completion): Remove now obsolete binding for
839 owindow.
840
8412012-06-01 Michael Albinus <michael.albinus@gmx.de>
842
843 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
844 in order to avoid "Stack overflow in regexp matcher".
845
12012-05-31 Glenn Morris <rgm@gnu.org> 8462012-05-31 Glenn Morris <rgm@gnu.org>
2 847
3 * image.el: For clarity, call imagemagick-register-types at 848 * image.el: For clarity, call imagemagick-register-types at
@@ -11,20 +856,14 @@
11 856
122012-05-31 Stefan Monnier <monnier@iro.umontreal.ca> 8572012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13 858
14 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Handle 859 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
15 arbitrary file name lengths (Bug#11585). 860 Handle arbitrary file name lengths (Bug#11585).
16 861
172012-05-31 Martin Rudalics <rudalics@gmx.at> 8622012-05-31 Martin Rudalics <rudalics@gmx.at>
18 863
19 * desktop.el (desktop-read): Clear previous and next buffers for 864 * desktop.el (desktop-read): Clear previous and next buffers for
20 all windows and bury *Messages* buffer (bug#11556). 865 all windows and bury *Messages* buffer (bug#11556).
21 866
222012-05-31 Eli Zaretskii <eliz@gnu.org>
23
24 * mail/sendmail.el (mail-yank-region): Recognize
25 rmail-yank-current-message in addition to insert-buffer. Fixes
26 mail-mode's "C-c C-r" that otherwise does nothing when invoked in
27
282012-05-31 Stefan Monnier <monnier@iro.umontreal.ca> 8672012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
29 868
30 Add `declare' for `defun'. Align `defmacro's with it. 869 Add `declare' for `defun'. Align `defmacro's with it.
@@ -4311,9 +5150,6 @@
4311 5150
4312 * net/tramp.el (tramp-action-login): Set connection property "login-as". 5151 * net/tramp.el (tramp-action-login): Set connection property "login-as".
4313 5152
4314 * net/tramp-cache.el (tramp-dump-connection-properties): Do not dump
4315 properties, when "login-as" is set.
4316
4317 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp". 5153 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
4318 (tramp-default-user-alist): Don't add "pscp". 5154 (tramp-default-user-alist): Don't add "pscp".
4319 (tramp-do-copy-or-rename-file-out-of-band): Use connection 5155 (tramp-do-copy-or-rename-file-out-of-band): Use connection
@@ -5638,9 +6474,6 @@
5638 6474
56392011-11-16 Michael Albinus <michael.albinus@gmx.de> 64752011-11-16 Michael Albinus <michael.albinus@gmx.de>
5640 6476
5641 * net/tramp-cache.el (tramp-flush-file-property): Flush also
5642 properties of linked files. (Bug#9879)
5643
5644 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the 6477 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
5645 local file name. 6478 local file name.
5646 6479