Auto-commit of generated files.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
4d2d1ccd
GM
12011-04-17 Glenn Morris <rgm@gnu.org>
2
3 * calendar/diary-lib.el (diary-sexp-entry):
4 * calendar/holidays.el (holiday-sexp):
5 Set debug-on-error rather than the removed stack-trace-on-error.
6
239da61d
GM
72011-04-16 Glenn Morris <rgm@gnu.org>
8
9 * progmodes/f90.el: Use lexical-binding.
10 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
11
8b05752a
SM
122011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13
daca8ba5
SM
14 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
15 (mail-mode): Setup mailalias completion here instead.
16 * mail/mailalias.el: Use lexical-binding.
17 (pattern, mailalias-done): Declare dynamic.
18 (mail-completion-at-point-function): New function, from mail-complete.
19 (mail-complete): Use it.
20 (mail-completion-expand): New function.
21 (mail-get-names): Use it.
22 (mail-directory, mail-directory-process, mail-directory-stream):
23 Don't use `pattern' for lexically bound arg.
24
6f542485
SM
25 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
26
037e7c3f
SM
27 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
28 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
29 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
30
8b05752a
SM
31 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
32 (byte-save-window-excursion, byte-temp-output-buffer-setup)
33 (byte-interactive-p): Define them again, for use when inlining
34 old code.
35
49093f60
JB
362011-04-15 Juanma Barranquero <lekktu@gmail.com>
37
38 * loadup.el: Use `string-to-number', not `string-to-int'.
39
b5b8e7de
SM
402011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
41
42 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
43 gud-gdb-complete-command.
44 (gud-gdb-completions): New function, from gud-gdb-complete-command.
45 (gud-gdb-completion-at-point): New function.
46 (gud-gdb-completions): Remove.
47
f42efeb5
MA
482011-04-14 Michael Albinus <michael.albinus@gmx.de>
49
49093f60
JB
50 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
51 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
52 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
53 whether `executable-find' is bound.
f42efeb5
MA
54
55 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
56
e240cc21
SM
572011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * minibuffer.el (completion-in-region-mode-predicate)
60 (completion-in-region-mode--predicate): New vars.
61 (completion-in-region, completion-in-region--postch)
62 (completion-in-region-mode): Use them.
63 (completion--capf-wrapper): Also return the hook function.
64 (completion-at-point, completion-help-at-point):
65 Adjust and provide a predicate.
c2bd2ab0
SM
66
67 Preserve arg names for advice of subr and lexical functions (bug#8457).
68 * help-fns.el (help-function-arglist): Consolidate the subr and
69 new-byte-code cases. Add argument `preserve-names' to extract names
70 from the docstring when needed.
71 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
72 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
73 (ad-arglist): Use help-function-arglist's new arg.
74 (ad-definition-type): Use cond.
75
c183f693
JB
762011-04-13 Juanma Barranquero <lekktu@gmail.com>
77
06641a47
JB
78 * autorevert.el (auto-revert-handler):
79 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
80 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
81 Don't quote lambda.
82
c183f693
JB
83 * image-mode.el (image-transform-set-scale):
84 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
85
1e3b6001
G
862011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
87
88 * net/network-stream.el (network-stream-open-starttls): Only do
89 opportunistic STARTTLS upgrades if we have built-in gnutls support.
90 Upgrades via gnutls-cli are too slow to be done opportunistically.
91
2d6af8dd
JB
922011-04-12 Juanma Barranquero <lekktu@gmail.com>
93
94 * dframe.el (dframe-current-frame): Remove spurious quote.
95
c0749a51
GM
962011-04-12 Glenn Morris <rgm@gnu.org>
97
088d0d61
GM
98 * calendar/cal-tex.el (cal-tex-end-document):
99 Try to automatically use latin1 input if needed.
100
c0749a51
GM
101 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
102 Don't try to cons a mark onto an empty element.
103
5c90fde0
LL
1042011-04-11 Leo Liu <sdl.web@gmail.com>
105
106 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
107 buffers.
108 (ido-kill-buffer-at-head): Support killing virtual buffers.
109
369e974d
CY
1102011-04-10 Chong Yidong <cyd@stupidchicken.com>
111
112 * minibuffer.el (completion-show-inline-help): New var.
113 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
114 (minibuffer-force-complete, minibuffer-complete-word):
115 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
116
117 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
118 to avoid interference from inline help (Bug#5849).
119
37f1c930
LL
1202011-04-10 Leo Liu <sdl.web@gmail.com>
121
099c39a4
JB
122 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
123 Fix typo.
37f1c930 124
a32d4040
CY
1252011-04-09 Chong Yidong <cyd@stupidchicken.com>
126
127 * image-mode.el (image-toggle-display-image): Signal an error if
128 not in Image mode.
129 (image-transform-mode, image-transform-resize)
130 (image-transform-set-rotation): Doc fix.
daca8ba5 131 (image-transform-set-resize): Delete.
a32d4040
CY
132 (image-transform-set-scale, image-transform-fit-to-height)
133 (image-transform-fit-to-width): Handle image-toggle-display-image
134 and image-transform-resize directly.
135
099c39a4 1362011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
137
138 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
139 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
140 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
141 (doc-view-mode-map): Add bindings for the new functions.
142
099c39a4 1432011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb
JB
144
145 * vc-annotate.el (vc-annotate-show-log-revision-at-line):
146 Fix typo in docstring.
147
3726838a
EZ
1482011-04-08 Eli Zaretskii <eliz@gnu.org>
149
04f33f1e
EZ
150 * files.el (file-size-human-readable): Produce one digit after
151 decimal, like "ls -lh" does.
152
153 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
154 the file size representation.
155
3726838a
EZ
156 * simple.el (list-processes): If async subprocesses are not
157 available, error out with a clear error message.
158
cbb59342
CY
1592011-04-08 Chong Yidong <cyd@stupidchicken.com>
160
161 * help.el (help-form-show): New function, to be called from C.
162 Put help-form output in a buffer named differently than *Help*.
163
e3971c44
EZ
1642011-04-08 Eli Zaretskii <eliz@gnu.org>
165
166 * files.el (file-size-human-readable): New function.
167
168 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
169 computing the representation inline. Don't require `cl'.
170
12544bbe
GM
1712011-04-08 Glenn Morris <rgm@gnu.org>
172
a1de6c6a
GM
173 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
174
3c4671f4
GM
175 * net/browse-url.el (browse-url-firefox):
176 Test system-type, not system-configuration.
177
b605679c
GM
178 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
179 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
180 Use log-edit-empty-buffer-p. (Bug#7598)
181
56442f0c
GM
182 * net/rlogin.el (rlogin-process-connection-type): Simplify.
183 (rlogin-mode-map): Initialize in the defvar.
184 (rlogin): Use ignore-errors.
185
12544bbe
GM
186 * replace.el (occur-mode-map): Some fixes for menu items.
187
eb237b0f
AH
1882011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
189
190 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
191
7d668f2c
CY
1922011-04-06 Chong Yidong <cyd@stupidchicken.com>
193
e67a13ab
CY
194 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
195 issuing unused warnings.
196
197 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
198 macro directly.
199
7d668f2c
CY
200 * simple.el: Lisp reimplement of list-processes. Based on an
201 earlier reimplementation by Leo Liu, but using tabulated-list.el.
202 (process-menu-mode): New major mode.
203 (list-processes--refresh, list-processes):
204 (process-menu-visit-buffer): New functions.
205
206 * files.el (save-buffers-kill-emacs): Don't assume any return
207 value of list-processes, which is undocumented anyway.
208
a83ec3c9
CY
2092011-04-06 Chong Yidong <cyd@stupidchicken.com>
210
211 * emacs-lisp/tabulated-list.el: New file.
212
e91a96fe
CY
213 * emacs-lisp/package.el: Use Tabulated List mode.
214 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
215 (package-menu-mode): Derive from tabulated-list-mode. Set up the
216 table format using Tabulated List mode variables.
217 (package--push): New macro, replacing package-list-maybe-add.
218 (package-menu--generate): Use package--push. Renamed from
219 package--generate-package-list.
220 (package-menu-refresh, list-packages): Use it.
daca8ba5 221 (package-menu--print-info): Rename from package-print-package.
e91a96fe 222 Return insertion data instead of inserting it directly.
099c39a4
JB
223 (package-menu-describe-package, package-menu-execute):
224 Use tabulated-list-get-id.
e91a96fe
CY
225 (package-menu-mark-delete, package-menu-mark-install)
226 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
227 (package-menu-mark-obsolete-for-deletion):
228 Use tabulated-list-put-tag.
e91a96fe
CY
229 (package--list-packages, package-menu-revert)
230 (package-menu-get-package, package-menu-get-version)
231 (package-menu-sort-by-column): Functions deleted.
232 (package-menu-package-list, package-menu-sort-key): Vars deleted.
233 (package-menu--status-predicate, package-menu--version-predicate)
234 (package-menu--name-predicate)
235 (package-menu--description-predicate): Handle arguments in the
236 Tabulated List format.
237 (package-list-packages-no-fetch): Call list-packages.
238
3e214b50
JB
2392011-04-06 Juanma Barranquero <lekktu@gmail.com>
240
241 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 242 (after-find-file): Don't bind it.
3e214b50
JB
243 (revert-buffer-in-progress-p): New variable.
244 (revert-buffer): Bind it.
245 Pass nil for `after-find-file-from-revert-buffer'.
246
247 * saveplace.el (save-place-find-file-hook): Use new variable
248 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
249
3f0f1700
GM
2502011-04-06 Glenn Morris <rgm@gnu.org>
251
c0274801
GM
252 * Makefile.in (AUTOGEN_VCS): New variable.
253 (autoloads): Use $AUTOGEN_VCS.
254
3f0f1700
GM
255 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
256 * calendar/calendar.el (calendar-mode-map):
257 Check for toolkit scroll bars. (Bug#8305)
258
41ea9e48
CY
2592011-04-05 Chong Yidong <cyd@stupidchicken.com>
260
261 * minibuffer.el (completion-in-region--postch)
262 (completion-in-region-mode): Remove unnecessary messages.
263
6194c800
JB
2642011-04-05 Juanma Barranquero <lekktu@gmail.com>
265
33256f14
JB
266 * font-lock.el (font-lock-refresh-defaults):
267 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
268 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
269
6194c800
JB
270 * info.el (Info-directory-list, Info-read-node-name-2)
271 (Info-split-parameter-string): Doc fixes.
272 (Info-virtual-nodes): Reflow docstring.
273 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
274 (Info-apropos-toc-nodes, info-finder, Info-get-token)
275 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
276 Fix typos in docstrings.
277 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
278 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
279 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
280 (Info-restore-desktop-buffer): Mark unused parameters.
281 (Info-directory-find-file, Info-directory-find-node)
282 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
283 (Info-virtual-index-find-node, Info-apropos-find-file)
284 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 285 Mark unused parameters; fix typos in docstrings.
6194c800
JB
286 (Info-virtual-index): Remove unused local variable `nodename'.
287
b87a8200 2882011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 289
b87a8200
DD
290 * net/rcirc.el: Update my e-mail address.
291 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 292
3b2ff876
CY
2932011-04-05 Chong Yidong <cyd@stupidchicken.com>
294
295 * startup.el (command-line): Save the cursor's theme-face
296 directly, instead of using face-override-spec.
297
298 * custom.el (load-theme): Minor optimization in assigning faces.
299
8d17e7ca
JB
3002011-04-04 Juanma Barranquero <lekktu@gmail.com>
301
302 * help-fns.el (describe-variable): Complete all variables having
303 documentation, including keywords.
304 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
305
2fbc1934
JB
3062011-04-04 Juanma Barranquero <lekktu@gmail.com>
307
308 Convert to lexical-binding.
309
310 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
311 (bs--get-marked-string, bs--get-modified-string)
312 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
313 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
314 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
315
316 * ehelp.el (electric-help-execute-extended)
317 (electric-help-ctrl-x-prefix):
318 * hexl.el (hexl-revert-buffer-function):
319 * linum.el (linum-after-change, linum-after-scroll):
320 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
321
322 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
323
74f50695
DU
3242011-04-04 Daiki Ueno <ueno@unixuser.org>
325
326 * epa-dired.el:
327 * epa-mail.el:
328 * epa-hook.el:
329 * epa-file.el:
330 * epa.el:
331 * epg.el: Use lexical binding.
332
c11325f7
CY
3332011-04-03 Chong Yidong <cyd@stupidchicken.com>
334
0d9e9a12
CY
335 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
336
c11325f7 337 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
338 dictionary case for flyspell-mark-duplications-exceptions.
339 Use regexp matching for languages.
c11325f7
CY
340 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
341 default dictionary (Bug#7926).
342
da91b5f2
CY
3432011-04-02 Chong Yidong <cyd@stupidchicken.com>
344
099c39a4
JB
345 * emacs-lisp/package.el (package--with-work-buffer):
346 Recognize https URLs.
da91b5f2 347
099c39a4
JB
348 * net/network-stream.el: Move from gnus/proto-stream.el.
349 Change prefix to network-stream throughout.
da91b5f2
CY
350 (open-protocol-stream): Merge into open-network-stream, leaving
351 open-protocol-stream as an alias. Handle nil BUFFER args.
352
353 * subr.el (open-network-stream): Move to net/network-stream.el.
354
afa8e9f6
GM
3552011-04-02 Glenn Morris <rgm@gnu.org>
356
1d2e369d
GM
357 * find-dired.el (find-exec-terminator): New option.
358 (find-ls-option): Test for -ls support.
359 (find-ls-subdir-switches): Test for -b in find-ls-option.
360 (find-dired, find-grep-dired): Doc fixes.
361 (find-dired): Use find-exec-terminator.
362
8abb7da8 363 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
364 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
365 (find-name-arg): Remove purecopy.
8abb7da8 366
f3ca7378
GM
367 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
368 (grep-compute-defaults): Check for `-exec COMMAND +' support.
369 Set grep-find-use-xargs, grep-find-command, and grep-find-template
370 accordingly. Don't add the null-device if not needed.
371
afa8e9f6
GM
372 * files.el (save-some-buffers): Doc fix.
373
35eae264
EZ
3742011-04-02 Eli Zaretskii <eliz@gnu.org>
375
376 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
377
26b51db5
JB
3782011-04-01 Juanma Barranquero <lekktu@gmail.com>
379
380 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
381 Use `dolist' rather than `mapcar'.
382
7200d79c
SM
3832011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
384
03408648 385 Add lexical binding.
7200d79c 386
03408648
SM
387 * subr.el (apply-partially): Use new closures rather than CL.
388 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
389 (dolist, dotimes): Use slightly different expansion for lexical code.
390 (functionp): Move to C.
391 (letrec): New macro.
392 (with-wrapper-hook): Use it and apply-partially instead of CL.
393 (eval-after-load): Preserve lexical-binding.
394 (save-window-excursion, with-output-to-temp-buffer): Turn them
395 into macros.
7200d79c 396
03408648
SM
397 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
398
399 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
400 than the arglist.
401 (help-add-fundoc-usage): Don't add `Not documented'.
402 (help-function-arglist): Handle closures, subroutines, and new
403 byte-code-functions.
404 (help-make-usage): Remove leading underscores.
405 (describe-function-1): Handle closures.
406 (describe-variable): Use special-variable-p for completion.
407
408 * files.el (lexical-binding): Declare safe.
f488fb65 409
03408648
SM
410 * emacs-lisp/pcase.el: Don't use destructuring-bind.
411 (pcase--memoize): Rename from pcase-memoize. Change weakness.
412 (pcase): Add `let' pattern.
413 Change memoization so it actually works.
414 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
415 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
416 <let>: New case.
f488fb65 417
03408648
SM
418 * emacs-lisp/macroexp.el: Use lexical binding.
419 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
420 Don't convert ' to #' without checking that it's indeed quoting
421 a lambda.
422
423 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 424 Use eval-sexp-add-defvars.
03408648
SM
425 (eval-sexp-add-defvars): New fun.
426
427 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
428
429 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
430 Don't autoload.
431 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
432 than the internal `byte-compile-lambda'.
433 (defmethod): Don't hide code under quotes.
434 (eieio-defmethod): New `code' argument.
435
436 * emacs-lisp/eieio-comp.el: Remove.
437
438 * emacs-lisp/edebug.el (edebug-eval-defun)
439 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
440 (edebug-toggle): Avoid `eval'.
441
442 * emacs-lisp/disass.el (disassemble-internal): Handle new
443 `closure' objects.
444 (disassemble-1): Handle new byte codes.
445
446 * emacs-lisp/cl.el (pushnew): Silence warning.
447
448 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
449 (cl-byte-compile-throw): Remove.
450 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
451
452 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
453 closures.
454
455 * emacs-lisp/cconv.el: New file.
456
457 * emacs-lisp/bytecomp.el: Use lexical binding instead of
458 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
459 (byte-compile-initial-macro-environment):
460 Handle declare-function here.
461 (byte-compile--lexical-environment): New var.
462 (byte-stack-ref, byte-stack-set, byte-discardN)
463 (byte-discardN-preserve-tos): New lap codes.
464 (byte-interactive-p): Don't use any more.
465 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
466 New macros.
467 (byte-compile-lapcode): Use them and handle new lap codes.
468 (byte-compile-obsolete): Remove.
469 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
470 (byte-compile-arglist-warn): Check late def of inlinable funs.
471 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
472 since they should have been expanded by now.
473 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
474 (byte-compile-from-buffer): Remove unused second arg.
475 (byte-compile-preprocess): New function.
476 (byte-compile-toplevel-file-form): New function to distinguish
477 file-form calls from outside from file-form calls from hunk-handlers.
478 (byte-compile-file-form): Simplify.
479 (byte-compile-file-form-defsubst): Remove.
480 (byte-compile-file-form-defmumble): Simplify now that
481 byte-compile-lambda always returns a byte-code-function.
482 (byte-compile): Preprocess.
483 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
484 Remove, not used any more.
485 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
486 (byte-compile-make-args-desc): New funs.
487 (byte-compile-lambda): Handle lexical functions. Always return
488 a byte-code-function.
489 (byte-compile-reserved-constants): New var, to make up room for
490 closed-over variables.
491 (byte-compile-constants-vector): Obey it.
492 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
493 (byte-compile-macroexpand-declare-function): New function.
494 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
495 byte-code-functions.
496 (byte-compile-form): Check obsolescence here.
497 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
498 (byte-compile-variable-ref): Remove.
499 (byte-compile-dynamic-variable-op): New fun.
500 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
501 (byte-compile-variable-set): New funs.
502 (byte-compile-discard): Add 2 args.
503 (byte-compile-stack-ref, byte-compile-stack-set)
504 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
505 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
506 macroexpand-all instead.
507 (byte-compile-quote-form): Remove.
508 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
509 (byte-compile-bind, byte-compile-unbind): New funs.
510 (byte-compile-let): Handle let* and lexical binding.
511 (byte-compile-let*): Remove.
512 (byte-compile-catch, byte-compile-unwind-protect)
513 (byte-compile-track-mouse, byte-compile-condition-case):
514 Handle a new :fun-body form, used for lexical scoping.
515 (byte-compile-save-window-excursion)
516 (byte-compile-with-output-to-temp-buffer): Remove.
517 (byte-compile-defun): Simplify.
518 (byte-compile-stack-adjustment): New fun.
519 (byte-compile-out): Use it.
520 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
521
522 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
523 handler any more.
524
525 * emacs-lisp/byte-opt.el: Use lexical binding.
526 (byte-inline-lapcode): Remove (to bytecomp).
527 (byte-compile-inline-expand): Pay attention to inlining to/from
528 lexically bound code.
529 (byte-compile-unfold-lambda): Don't handle byte-code-functions
530 any more.
531 (byte-optimize-form-code-walker): Don't handle save-window-excursion
532 any more and don't call compiler-macros.
533 (byte-compile-splice-in-already-compiled-code): Remove.
534 (byte-code): Don't inline any more.
535 (disassemble-offset): Receive `bytes' as argument rather than via
536 dynamic scoping.
537 (byte-compile-tag-number): Declare before first use.
538 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
539 `return' even if make-spliceable.
540 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
541 obsolete interactive-p.
542 (byte-optimize-lapcode): Optimize new lap-codes.
543 Don't trip up on new form of `byte-constant' lap code.
544
545 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
546
547 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
548
549 * custom.el (custom-initialize-default, custom-declare-variable):
550 Use `defvar'.
551
552 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
553 New variables.
554 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
555 (COMPILE_FIRST): Add macroexp and cconv.
556 * makefile.w32-in: Mirror changes in Makefile.in.
557
558 * vc/cvs-status.el:
559 * vc/diff-mode.el:
560 * vc/log-edit.el:
561 * vc/log-view.el:
562 * vc/smerge-mode.el:
563 * textmodes/bibtex-style.el:
564 * textmodes/css.el:
565 * startup.el:
566 * uniquify.el:
da91b5f2
CY
567 * minibuffer.el:
568 * newcomment.el:
569 * reveal.el:
570 * server.el:
571 * mpc.el:
572 * emacs-lisp/smie.el:
573 * doc-view.el:
574 * dired.el:
03408648
SM
575 * abbrev.el: Use lexical binding.
576
0f0c1f27
EZ
5772011-04-01 Eli Zaretskii <eliz@gnu.org>
578
579 * info.el (info-display-manual): New function.
580
c82b2579
SM
5812011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
582
583 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
584
221ddf68
TH
5852011-03-31 Tassilo Horn <tassilo@member.fsf.org>
586
587 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 588 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 589
cba6e77e
GM
5902011-03-31 Glenn Morris <rgm@gnu.org>
591
e040639f
GM
592 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
593
cba6e77e
GM
594 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
595
6d0f1c9e
CS
5962011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
597
598 * progmodes/python.el (python-default-interpreter)
599 (python-python-command-args, python-jython-command-args)
600 (python-which-shell, python-which-args, python-which-bufname)
601 (python-file-queue, python-comint-output-filter-function)
602 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
603 variables and functions.
604
3e2d70fd
SM
6052011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
606
607 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
608 (completion-in-region-mode): New minor mode.
609 (completion-in-region): Use it.
610 (completion-in-region--data, completion-in-region-mode-map): New vars.
611 (completion-in-region--postch): New function.
612 (completion--capf-misbehave-funs, completion--capf-safe-funs):
613 New vars.
614 (completion--capf-wrapper): New function.
615 (completion-at-point): Use it to track well-behavedness of
616 hook functions.
617 (completion-help-at-point): New command.
618
f3e4086c
JM
6192011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
620
621 * vc/add-log.el (add-change-log-entry): Don't use whitespace
622 syntax class to search for whitespace on a single line
623 (Message-ID: <4D938140.4030905@redhat.com>).
624
eb7ffc14
LL
6252011-03-30 Leo Liu <sdl.web@gmail.com>
626
627 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
628 New commands.
629 (edit-abbrevs-map): Bind them here.
630 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
631
d806ab68
KM
6322011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
633
634 * allout.el (allout-hide-by-annotation, allout-flag-region):
635 Reduce possibility of overlay leakage by making them volatile.
636
637 * allout-widgets.el (allout-widgets-tally): Define as nil so the
638 hash is not shared between buffers. Mode initialization is
639 responsible for giving it a useful starting value.
640 (allout-item-span): Reduce possibility of overlay leakage by
641 making them volatile.
642 (allout-widgets-count-buttons-in-region): Add diagnostic function
643 for tracking down button overlay leaks.
644
ea622834
LL
6452011-03-29 Leo Liu <sdl.web@gmail.com>
646
647 * ido.el (ido-read-internal): Use the default history var
648 minibuffer-history if no HISTORY is specified.
649
b62f8267
G
6502011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
651
03408648
SM
652 * net/imap.el (imap-shell-open, imap-process-connection-type):
653 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
654 Kerberos, SSL, other subprocesses.
655
947b6566
LL
6562011-03-28 Leo Liu <sdl.web@gmail.com>
657
658 * abbrev.el (abbrev-table-empty-p): New function.
659 (prepare-abbrev-list-buffer): Place empty abbrev tables after
660 nonempty ones. (Bug#5937)
661
5ffb62aa
JD
6622011-03-27 Jan Djärv <jan.h.d@swipnet.se>
663
664 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
665
7a097943
LL
6662011-03-27 Leo Liu <sdl.web@gmail.com>
667
668 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
669 for foreground and background colors.
670 (ansi-color-make-color-map): Adapt.
671
c5b40130
LL
6722011-03-25 Leo Liu <sdl.web@gmail.com>
673
1f48f7d2
LL
674 * midnight.el (midnight-time-float): Remove. Note it calculates
675 the microsecond component incorrectly and seconds-to-time does the
676 same job.
625897ec 677 Remove redundant (require 'timer).
1f48f7d2 678
c5b40130
LL
679 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
680 (ido-completions): Remove unused arguments. (Bug#8329)
681
d86d2721
SM
6822011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
683
684 * minibuffer.el (completion--flush-all-sorted-completions):
685 Remove itself from hook.
686 (completion-at-point): Let the functions perform the completion
687 immediately and return nil or t.
688 * comint.el (comint-dynamic-complete-functions): Now identical to
689 completion-at-point-functions.
690 (comint-dynamic-list-input-ring): Remove unused var `index'.
691 (comint--match-partial-filename, comint--unquote&expand-filename):
692 New funs, split from comint-match-partial-filename.
693 (comint-dynamic-complete): Use completion-at-point.
694 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
695
e8974c48
DA
6962011-03-24 Drew Adams <drew.adams@oracle.com>
697
698 * thingatpt.el: Support `defun'.
699
def71b5e
LL
7002011-03-23 Leo Liu <sdl.web@gmail.com>
701
cb5af48e
LL
702 * abbrevlist.el: Move to obsolete/abbrevlist.el.
703
def71b5e
LL
704 * help-mode.el (help-mode-finish): Tweak regexp.
705
927c53e7
GM
7062011-03-23 Glenn Morris <rgm@gnu.org>
707
18d05bed
GM
708 * eshell/esh-opt.el (eshell-eval-using-options):
709 Do not bind unused local variable `eshell-option-stub'.
710
927c53e7
GM
711 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
712
9d0da923
JB
7132011-03-22 Juanma Barranquero <lekktu@gmail.com>
714
715 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
716 keymap variable in `with-no-warnings' to avoid a warning when the
717 keymap has been already `defconst'ed.
718
4b978a67
LL
7192011-03-22 Leo Liu <sdl.web@gmail.com>
720
721 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
722 encode all chars in abbrevs; otherwise use emacs-mule or
723 utf-8-emacs. (Bug#8308)
724
5fd62452
JB
7252011-03-22 Juanma Barranquero <lekktu@gmail.com>
726
0b1596c6
JB
727 * simple.el (backward-delete-char-untabify):
728 Avoid warning about using `delete-backward-char'.
729
5fd62452
JB
730 * image.el (image-type-file-name-regexps): Make it variable.
731 `imagemagick-register-types' modifies it, and the user may want
732 to add new extensions for known image types.
733 (imagemagick-register-types): Throw error if not using ImageMagick.
734
0b4e93f1
LL
7352011-03-22 Leo Liu <sdl.web@gmail.com>
736
737 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
738 located before rcirc-prompt-end-marker.
739 (rcirc-complete): Error if point is not after rcirc prompt.
740 Handle the case when table is nil.
9882e214 741 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 742
fccee4ab
CY
7432011-03-22 Chong Yidong <cyd@stupidchicken.com>
744
745 * custom.el (custom--inhibit-theme-enable): Make it affect only
746 custom-theme-set-variables and custom-theme-set-faces.
747 (provide-theme): Ignore custom--inhibit-theme-enable.
748 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
749 (custom-enabling-themes): Delete variable.
d86d2721
SM
750 (enable-theme): Accept only loaded themes as arguments.
751 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
752 (custom-enabled-themes): Forbid themes from setting this.
753 Eliminate use of custom-enabling-themes.
754 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 755
af896da6
LL
7562011-03-21 Leo Liu <sdl.web@gmail.com>
757
758 * ido.el (ido-read-internal): Add ido-selected to history instead
759 of user input.
760
78f64af0
SM
7612011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
762
763 * subr.el (deferred-action-list, deferred-action-function):
764 Mark obsolete.
765
b16ac1ec
LL
7662011-03-21 Leo Liu <sdl.web@gmail.com>
767
810f7698
LL
768 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
769 change on 2011-02-13 (bug#8309).
770
b16ac1ec
LL
771 * minibuffer.el (read-file-name-function): Change default value.
772 (read-file-name--defaults): Rename from read-file-name-defaults.
773 (read-file-name-default): Rename from read-file-name.
774 (read-file-name): Call read-file-name-function.
775
4e05e67e
GM
7762011-03-21 Glenn Morris <rgm@gnu.org>
777
778 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
779 Doc fixes.
780
4359915b
CY
7812011-03-21 Chong Yidong <cyd@stupidchicken.com>
782
783 * cus-theme.el: Add missing provide statement.
784 (customize-create-theme): Extract theme value correctly.
785 (custom-theme-visit-theme): Autoload.
786 (customize-create-theme): Prompt before inserting default faces.
787
1fe275ee
JB
7882011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
789
790 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
791 units and musical notes.
792
3ec03f7e
LL
7932011-03-20 Leo <sdl.web@gmail.com>
794
795 * ido.el (ido-read-internal): Use completing-read-default.
796 (ido-completing-read): Fix compatibility with completing-read.
797
7d476bde
CO
7982011-03-20 Christian Ohler <ohler@gnu.org>
799
800 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
801 (ert-delete-all-tests): Use `called-interactively-p' rather than
802 `interactive-p'.
803 (ert--make-xrefs-region): Respect END.
804
fe0fb33e
CY
8052011-03-19 Chong Yidong <cyd@stupidchicken.com>
806
ff854b0b
CY
807 * dired-aux.el (dired-create-directory): Signal an error if the
808 directory already exists (Bug#8246).
809
fe0fb33e
CY
810 * facemenu.el (list-colors-display): Call list-faces-display
811 inside with-help-window.
812 (list-colors-print): Use display property to align the final
813 column, instead of checking window-width.
814
576bce32
EZ
8152011-03-19 Eli Zaretskii <eliz@gnu.org>
816
817 * emerge.el (emerge-metachars): Separate value for ms-dos and
818 windows-nt systems.
819 (emerge-protect-metachars): Quote correctly for ms-dos and
820 windows-nt systems.
821
8546720e 8222011-03-19 Ralph Schleicher <rs@ralph-schleicher.de> (tiny change)
e6ce307c
RS
823
824 * info.el (info-initialize): Replace all uses of `:' with
825 path-separator for compatibility with non-Unix systems.
826 Cache quoting of path-separator. (Bug#8258)
827
b14e3e21 8282011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
829
830 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
831 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
832 (mouse-avoidance-mode): Fix typos in docstrings.
833
4525ce3e
CY
8342011-03-19 Chong Yidong <cyd@stupidchicken.com>
835
836 * startup.el (package-subdirectory-regexp): Move from package.el.
837 Omit \\` and \\', and let callers add them.
838
839 * emacs-lisp/package.el (package-strip-version)
840 (package-load-all-descriptors): Add \\` and \\' to
841 package-subdirectory-regexp before using it.
842 (package-untar-buffer): New arg DIR; ensure that file untars only
843 into this expected directory. Remove superfluous delete-region.
844 (package-unpack): Caller changed.
845 (package-tar-file-info): Use package-subdirectory-regexp.
846
a904a09a 8472011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 848
a904a09a
SM
849 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
850 diff-mode-shared-map (bug#8284).
851 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
852
8532011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
854
855 * calendar/time-date.el (format-seconds): Use assoc instead of
856 assoc-string, since assoc-string doesn't exist in XEmacs.
857
171fc304
JB
8582011-03-17 Juanma Barranquero <lekktu@gmail.com>
859
860 * custom.el (custom-known-themes): Reflow docstring.
861 (custom-theme-load-path): Fix typo in docstring.
862 (load-theme): Fix typo in error message.
863 (custom-available-themes, custom-variable-theme-value):
864 Use `let', not `let*'.
865
d71990a1
JB
8662011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
867
868 * calc/README: Mention inclusion of musical notes.
869
870 * calc/calc-units.el (calc-lu-quant): Rename from
871 `calc-logunits-quantity'.
872 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
873 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
874 (calc-db): Rename from `calc-dblevel'.
875 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
876 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
877 (calc-np): Rename from `calc-nplevel'.
878 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
879 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
880 (calc-lu-plus): Rename from `calc-logunits-add'.
881 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
882 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
883 (calc-lu-minus): Rename from `calc-logunits-sub'.
884 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
885 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
886 (calc-lu-times): Rename from `calc-logunits-mul'.
887 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
888 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
889 (calc-lu-divide): Rename from `calc-logunits-div'.
890 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
891 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
892
893 * calc/calc-ext.el (calc-init-extensions): Update the names of the
894 functions being autoloaded.
895
896 * calc/calc.el (calc-lu-power-reference): Rename from
897 `calc-logunits-power-reference'.
898 (calc-lu-field-reference): Rename from
899 `calc-logunits-field-reference'.
900
901 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
902
40c2934b
SM
9032011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
904
905 * minibuffer.el (completion-all-sorted-completions):
906 Use :completion-cycle-penalty text property if present.
907
b0911414
KM
9082011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
909
910 * allout.el (allout-yank-processing): Adjust for new rebulleting
911 regime so bullet being yanked is used without prompting the user
912 for a choice.
913
8a05b668
JB
9142011-03-16 Juanma Barranquero <lekktu@gmail.com>
915
916 * startup.el (command-line): Warn the user that _emacs is deprecated.
917
5ba5fb81
JB
9182011-03-16 Juanma Barranquero <lekktu@gmail.com>
919
920 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
921 (delphi-verbose, delphi-comment-face, delphi-string-face)
922 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
923 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
924 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
925 (delphi-new-comment-line, delphi-font-lock-defaults)
926 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
927 Fix typos in docstrings.
928
2dab465b
KM
9292011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
930
5ba5fb81 931 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
932 Invert the roles of character and string values for INSTEAD, so a
933 string is used for the more common case of a defaulting prompt.
934
0adf5618
SM
9352011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
936
937 * progmodes/ruby-mode.el (ruby-backward-sexp):
938 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
939 * play/gamegrid.el (gamegrid-make-face):
940 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
941 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
942 * notifications.el (notifications-notify):
943 * net/xesam.el (xesam-search-engines):
944 * net/quickurl.el (quickurl-list-insert):
945 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
946
d72700e5
CY
9472011-03-15 Chong Yidong <cyd@stupidchicken.com>
948
949 * startup.el (command-line): Update package subdirectory regexp.
950
49c5410a
SM
9512011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
952
c6eee9aa
SM
953 * allout.el (allout-abbreviate-flattened-numbering)
954 (allout-mode-deactivate-hook): Fix up obsolescence "date".
955
49c5410a
SM
956 * subr.el (read-char-choice): Only show the cursor after the prompt,
957 not after the answer.
958
047b2bb9
KR
9592011-03-15 Kevin Ryde <user42@zip.com.au>
960
961 * help-fns.el (variable-at-point): Skip leading quotes, if any
962 (bug#8253).
963
0a57d256
SM
9642011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
965
966 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
967 warning message.
968
77c992bc
MA
9692011-03-14 Michael Albinus <michael.albinus@gmx.de>
970
971 * shell.el (shell): When called interactively, offer to change the
972 shell file name on remote hosts.
973
eebc475d
TZ
9742011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
975
976 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
977 integration for LDAP parameters. The host, base, user or binddn,
978 and secret tokens can be specified in a netrc file, for instance.
979 This is optional because an `auth-source' parameter must be
980 specified in the search attributes.
981
9d05d1ba
JB
9822011-03-13 Juanma Barranquero <lekktu@gmail.com>
983
984 * help.el (describe-mode): Link to the mode's definition (bug#8185).
985
09d9db2c
GM
9862011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
987
988 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
989 into declaration. Remove redundant and harmful binding.
990
9912011-03-12 Eli Zaretskii <eliz@gnu.org>
992
993 * files.el (file-ownership-preserved-p): Pass `integer' as an
994 explicit 2nd argument to `file-attributes'. If the file's owner
995 is the Administrators group on Windows, and the current user is
996 Administrator, consider that a match.
997
998 * server.el (server-ensure-safe-dir): Consider server directory
999 safe on MS-Windows if its owner is the Administrators group while
1000 the current Emacs user is Administrator. Use `=' to compare
1001 numerical UIDs, since they could be integers or floats.
1002
219bd536
JB
10032011-03-12 Juanma Barranquero <lekktu@gmail.com>
1004
1005 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
1006
f3afd36b
MA
10072011-03-12 Michael Albinus <michael.albinus@gmx.de>
1008
1009 Sync with Tramp 2.2.1.
1010
1011 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
1012
1013 * net/trampver.el: Update release number.
1014
3aaaa6f1
SM
10152011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1016
94642599
SM
1017 * progmodes/compile.el (compilation--previous-directory): Fix up
1018 various nil/dead-marker mismatches (bug#8014).
1019 (compilation-directory-properties, compilation-error-properties):
1020 Don't call it at a position past the one we're about to change.
1021
3aaaa6f1
SM
1022 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
1023 Disable obsolescence warnings in the file that declares it.
1024
14239447
KM
10252011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
1026
099c39a4
JB
1027 * allout-widgets.el (allout-widgets-tally):
1028 Initialize allout-widgets-tally as a hash table rather than nil to
1029 prevent mode-line redisplay warnings. Also, clarify the module
1030 description and fix a comment typo.
14239447 1031
135e287c
JB
10322011-03-11 Juanma Barranquero <lekktu@gmail.com>
1033
1034 * help-fns.el (describe-variable): Don't complete keywords.
1035 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
1036
ffbf300e
CY
10372011-03-10 Chong Yidong <cyd@stupidchicken.com>
1038
ba08b241
CY
1039 * emacs-lisp/package.el (package-version-join): Impose a standard
1040 string representation for pre/alpha/beta version lists.
1041 (package-unpack-single): Standardize the directory name by passing
1042 it through package-version-join.
1043 (package-strip-rcs-id): Accept any version string that does not
1044 signal an error in version-to-list.
ffbf300e 1045
f346fd6b
MA
10462011-03-10 Michael Albinus <michael.albinus@gmx.de>
1047
1048 * simple.el (delete-trailing-whitespace): Return nil for the
1049 benefit of `write-file-functions'.
1050
ccb55d27
GM
10512011-03-10 Glenn Morris <rgm@gnu.org>
1052
5ceaac0c
GM
1053 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
1054
02da65ff
GM
1055 * vc/vc-git.el (vc-git-program): New option.
1056 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
1057 (vc-git--call): Use it.
1058
b2f603cc
GM
1059 * eshell/esh-util.el (eshell-condition-case): Doc fix.
1060
5772caab
GM
1061 * cus-edit.el (Custom-newline): If no button at point, look
1062 for a subgroup button at start-of-line. (Bug#2298)
1063
ccb55d27
GM
1064 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
1065
ec6ecaed
JD
10662011-03-10 Julien Danjou <julien@danjou.info>
1067
1068 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
1069 `cursor-type' is nil.
1070
9d5aa01d
JB
10712011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
1072
1073 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
1074
b6a5875b
KM
10752011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
1076
1077 * allout.el Summary: Change so yank of distinctive-bullet items
1078 preserves the existing header prefix, rebulleting it if necessary,
1079 rather than replacing it. This is necessary for proper operation
1080 of cooperative addons like allout-widgets.
219bd536 1081 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
1082 SOLICIT arg to INSTEAD, and interpret additionally a string value
1083 as alternate bullet to be used, instead of prompting the user for
1084 a bullet character.
1085
ee545c35
MA
10862011-03-09 Michael Albinus <michael.albinus@gmx.de>
1087
d86d2721
SM
1088 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
1089 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
1090 `tramp-default-port'.
1091
c47971d7
DD
10922011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1093
1094 * net/rcirc.el (rcirc-handler-001): Remove useless
1095 with-rcirc-process-buffer.
1096 (rcirc-check-auth-status): Swap arguments to string-match.
1097
13522cb4
GM
10982011-03-09 Glenn Morris <rgm@gnu.org>
1099
0be6f4f1
GM
1100 * shell.el (shell-mode):
1101 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
1102
13522cb4
GM
1103 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
1104 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
1105
515de2e3
CY
11062011-03-08 Chong Yidong <cyd@stupidchicken.com>
1107
1108 * emacs-lisp/package.el (package-refresh-contents)
1109 (package-menu-execute): Use condition-case-no-debug.
1110
b511b994
MA
11112011-03-08 Michael Albinus <michael.albinus@gmx.de>
1112
1113 * simple.el (shell-command-to-string): Use `process-file'.
1114
1115 * emacs-lisp/package.el (package-tar-file-info): Handle also
1116 remote files.
1117
d86d2721
SM
1118 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1119 Use `equal' for upload base check.
b511b994 1120
25bbfb31
AM
11212011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
1122
1123 * textmodes/texinfo.el (texinfo-environments):
1124 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
1125
be996521
GM
11262011-03-08 Glenn Morris <rgm@gnu.org>
1127
e9c8529f
GM
1128 * cus-start.el (cursor-in-non-selected-windows):
1129 Fix :set quoting oddness. (Bug#8192)
1130
be996521
GM
1131 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
1132 in some setf expressions. (Bug#2159)
1133
2bb5649e
CY
11342011-03-08 Chong Yidong <cyd@stupidchicken.com>
1135
1136 * custom.el (custom-available-themes): Return themes in
1137 alphabetical order.
1138
33383987 1139See ChangeLog.15 for earlier changes.
e3d51b27
MR
1140
1141;; Local Variables:
1142;; coding: utf-8
e3d51b27
MR
1143;; End:
1144
33383987 1145 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
1146
1147 This file is part of GNU Emacs.
1148
1149 GNU Emacs is free software: you can redistribute it and/or modify
1150 it under the terms of the GNU General Public License as published by
1151 the Free Software Foundation, either version 3 of the License, or
1152 (at your option) any later version.
1153
1154 GNU Emacs is distributed in the hope that it will be useful,
1155 but WITHOUT ANY WARRANTY; without even the implied warranty of
1156 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1157 GNU General Public License for more details.
1158
1159 You should have received a copy of the GNU General Public License
1160 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.