keep highlight when switching between major modes on a file.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
14a7fbd8
SM
12011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
7eabc1be
SM
3 * progmodes/pascal.el: Use lexical binding.
4 (pascal-mode-map): Remove author preferences.
5
14a7fbd8
SM
6 * pcomplete.el (pcomplete-std-complete): Don't abuse
7 completion-at-point.
8
50f84510
JB
92011-04-28 Juanma Barranquero <lekktu@gmail.com>
10
6e087a44
JB
11 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
12 removing code that has been dead since 1991 or so.
13
50f84510
JB
14 * startup.el (command-line): When warning about "_emacs", use a
15 delayed warning to allow the user to filter it out.
16
0ba690bd
DD
172011-04-28 Deniz Dogan <deniz@dogan.se>
18
19 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
20 user has not joined.
21
08abfaad
SM
222011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23
24 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
25 aren't any completions at point.
26
638f053a
JB
272011-04-28 Juanma Barranquero <lekktu@gmail.com>
28
29 * subr.el (display-delayed-warnings): New function.
30 (delayed-warnings-hook): New variable.
31
8fff8daa
SM
322011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
33
08abfaad
SM
34 * minibuffer.el (completion-at-point, completion-help-at-point):
35 Don't presume that a given completion-at-point-function will always
36 use the same calling convention.
37
8fff8daa
SM
38 * pcomplete.el (pcomplete-completions-at-point):
39 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
40 pcomplete-seen is non-nil.
41 (pcomplete-comint-setup): Also recognize the new comint/shell
42 completion functions.
43 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
44 pcomplete-seen is non-nil.
45
841a1577 462011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 47
841a1577 48 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 49 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 50 the first character in the entry. This allows for code to add its
211ec907
UJ
51 own uid to the entry.
52 (icalendar--convert-float-to-ical): Add export of
53 `diary-float'-entries save for those with the optional DAY
54 argument.
55
2a782793
DC
562011-04-27 Daniel Colascione <dan.colascione@gmail.com>
57
58 * subr.el (shell-quote-argument): Use alternate escaping strategy
59 when we spot a variable reference in a string.
60
0438ce91
DC
612011-04-26 Daniel Colascione <dan.colascione@gmail.com>
62
63 * cus-start.el (all): Define customization for debug-on-event.
64
841a1577 652011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
66
67 * subr.el (shell-quote-argument): Escape correctly under Windows.
68
d090ed6c
SM
692011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
70
71 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
72
bfd31217
MA
732011-04-25 Michael Albinus <michael.albinus@gmx.de>
74
d090ed6c
SM
75 * net/tramp.el (tramp-process-actions): Add POS argument.
76 Delete region between POS and (pos).
bfd31217 77
d090ed6c
SM
78 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
79 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
80 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
81
82 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
83 position in `tramp-process-actions' call.
84
85 * net/trampver.el: Update release number.
86
e92f3bd3
SM
872011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
88
850256b5
SM
89 * custom.el (defcustom): Obey lexical-binding.
90
e92f3bd3
SM
91 Fix octave-inf completion problems reported by Alexander Klimov.
92 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
93 Inherit from octave-mode-syntax-table.
94 (inferior-octave-mode): Set info-lookup-mode.
95 (inferior-octave-completion-at-point): New function.
96 (inferior-octave-complete): Use it and completion-in-region.
97 (inferior-octave-dynamic-complete-functions): Use it as well, and use
98 comint-filename-completion.
99 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
100 symbol elements which shouldn't be word elements.
101 (octave-font-lock-keywords, octave-beginning-of-defun)
102 (octave-function-header-regexp): Adjust regexps accordingly.
103 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
104
cd22b309
JB
1052011-04-25 Juanma Barranquero <lekktu@gmail.com>
106
107 * net/gnutls.el (gnutls-errorp): Declare before first use.
108
8b492194
TZ
1092011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
110
111 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
112 verify-error, and verify-hostname-error parameters. Check whether
cd22b309
JB
113 default trustfile exists before going to use it. Add missing
114 argument to gnutls-message-maybe call. Return return value.
8b492194
TZ
115 Reported by Claudio Bley <claudio.bley@gmail.com>.
116 (open-gnutls-stream): Add usage example.
117
118 * net/network-stream.el (network-stream-open-starttls): Give host
119 parameter to `gnutls-negotiate'.
120 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 121 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 122
841a1577 1232011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 124
cd22b309
JB
125 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
126 Use correct match group (bug#8438).
05842630 127
3ba7869c
CY
1282011-04-24 Chong Yidong <cyd@stupidchicken.com>
129
512e3ae1
CY
130 * emacs-lisp/package.el (package-built-in-p): Fix typo.
131 (package-menu--generate): New arg specifying packages to show.
132 (package-menu-refresh, package-menu-execute, list-packages):
133 Callers changed.
134 (package-show-package-list): New function, replacing deleted
135 package--list-packages (renamed because it is non-internal).
136
137 * finder.el (finder-list-matches): Use package-show-package-list
138 instead of deleted package--list-packages.
139
e92f3bd3
SM
140 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
141 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
142 (vc-annotate-mode-map): Bind it to RET.
143
7031be6d
UR
1442011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
145
146 * progmodes/etags.el (next-file): Don't use set-buffer to change
147 buffers (Bug#8478).
148
4ef177aa
CY
1492011-04-24 Chong Yidong <cyd@stupidchicken.com>
150
c8d173eb
CY
151 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
152
4ef177aa
CY
153 * apropos.el (apropos-label-face): Avoid variable-pitch face.
154 (apropos-accumulator): Doc fix.
155 (apropos-function, apropos-macro, apropos-command)
156 (apropos-variable, apropos-face, apropos-group, apropos-widget)
157 (apropos-plist): Add face property.
158 (apropos-symbols-internal): Fix indentation.
159 (apropos-print): Simplify help, and recognize apropos-multi-type.
160 (apropos-print-doc): Use button-type-get to extract the button's
161 face property. Fill docstring (Bug#8352).
162
4ffd0d6b 1632011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
164
165 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
166
c6c32125 167 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 168 (mpuz-mode-map): Use mapc.
c6c32125
JB
169 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
170 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
171 Fix typos in docstrings.
172
58d468b4
JB
173 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
174 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
175
6470c3c6
JB
176 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
177
4ffd0d6b 1782011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
179
180 * minibuffer.el (completion--do-completion): Avoid the "Next char
181 not unique" prompt if icomplete-mode is enabled (Bug#5849).
182
3ad8bad0
CY
183 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
184 mouse-2 into unread-command-events, it is interpreted correctly.
185
71d73c9c 186 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 187 (image-toggle-display): Doc fix.
71d73c9c 188
841a1577 1892011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 190
4ffd0d6b
GM
191 * textmodes/page.el (what-page): Use line-number-at-pos to
192 calculate line number (Bug#6825).
6e1dbaa9 193
c2fb1b60
JB
1942011-04-22 Juanma Barranquero <lekktu@gmail.com>
195
196 * eshell/esh-mode.el (find-tag-interactive): Declare function.
197 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
198 Pass argument NO-DEFAULT to `find-tag-interactive'.
199
e02f48d7
JB
2002011-04-22 Juanma Barranquero <lekktu@gmail.com>
201
202 Lexical-binding cleanup.
203
204 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
205 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
206 * progmodes/ada-prj.el (ada-prj-initialize-values)
207 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
208 (ada-prj-show-value):
209 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
210 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
211 (antlr-invalidate-context-cache, antlr-options-menu-filter)
212 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
213 * progmodes/bug-reference.el (bug-reference-push-button):
214 * progmodes/fortran.el (fortran-line-length):
215 * progmodes/glasses.el (glasses-change):
216 * progmodes/octave-mod.el (octave-fill-paragraph):
217 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
218 (python-pdbtrack-grub-for-buffer, python-sentinel):
219 * progmodes/sql.el (sql-save-connection):
220 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
221 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
222 Mark unused parameters.
223
224 * progmodes/compile.el (compilation--flush-directory-cache)
225 (compilation--flush-parse, compile-internal): Mark unused parameters.
226 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
227 (compilation-next-error-function): Remove unused variable `timestamp'.
228
229 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
230 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
231
232 * progmodes/dcl-mode.el (dcl-end-of-command):
233 Remove unused variable `start'.
234 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
235 (dcl-option-value-basic, dcl-option-value-offset)
236 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
237 Mark unused parameters.
238 (dcl-save-local-variable): Remove unused variable `val'.
239 (mode): Declare.
240
241 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
242 Mark unused parameters.
243 (delphi-ignore-changes): Move before first use.
244 (delphi-charset-token-at): Remove unused variable `start'.
245 (delphi-else-start): Remove unused variable `if-count'.
246 (delphi-comment-block-start, delphi-comment-block-end):
247 Remove unused variable `kind'.
248 (delphi-indent-line): Remove unused variable `new-point'.
249
250 * progmodes/ebrowse.el (ebrowse-files-list)
251 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
252 Mark unused parameters. Don't quote `lambda'.
253 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
254 Don't quote `lambda'.
255 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
256 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
257 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
258 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
259 Use `ignore-errors'.
260 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
261 (ebrowse-view/find-file-and-search-pattern)
262 (ebrowse-view/find-member-declaration/definition):
263 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
264 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
265 Rename parameter PREFIX-ARG to PREFIX.
266 (ebrowse-tags-read-name): Remove unused variables `start' and
267 `member-info'.
268 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
269 to `tags-file'.
270
271 * progmodes/etags.el (local-find-tag-hook): Declare.
272 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
273 Mark unused parameters.
274
275 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
276 (executable-interpret): Mark unused parameter.
277
278 * progmodes/flymake.el (flymake-process-sentinel)
279 (flymake-after-change-function)
280 (flymake-create-temp-with-folder-structure)
281 (flymake-get-include-dirs-dot): Mark unused parameters.
282 (flymake-safe-delete-directory): Remove unused variable `err'.
283
284 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
285 (speedbar-timer-fn, speedbar-line-text)
286 (speedbar-change-expand-button-char, speedbar-delete-subblock)
287 (speedbar-center-buffer-smartly): Declare functions.
288 (gdb-find-watch-expression): Remove unused variable `array'.
289 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
290 (gdb-starting): Mark unused parameters.
291 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
292 (gdb-table-string): Remove unused variable `res'.
293 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
294 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
295 (gdb-display-buffer): Remove unused variable `cur-size'.
296
297 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
298 allow lexical-binding compilation.
299 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
300 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
301 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
302 Mark unused parameters.
303 (gud-gdb-marker-filter): Remove unused variable `match'.
304 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
305 lambda expressions and funcall them, instead of using `fset'.
306
307 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
308 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
309
310 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
311 variable `header-beg'; use `let'.
312
313 * progmodes/icon.el (indent-icon-exp): Remove unused variables
314 `restart', `last-sexp' and `at-do'.
315
316 * progmodes/js.el (js--debug): Mark unused parameter.
317 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
318 (js--splice-into-items): Remove unused variable `item'.
319 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
320
321 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
322 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
323 (makefile-complete): Remove unused variable `try'.
324 (makefile-fill-paragraph, makefile-match-function-end):
325 Mark unused parameters.
326
327 * progmodes/octave-inf.el (inferior-octave-complete):
328 Remove unused variable `proc'.
329 (inferior-octave-output-digest): Mark unused parameter.
330
331 * progmodes/perl-mode.el (perl-calculate-indent):
332 Remove unused variable `err'.
333
334 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
335 (prolog-indent-line): Mark unused parameters.
336 (prolog-indent-line): Remove unused variable `beg'.
337
338 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
339 (reporter-dont-compact-list): Declare.
340
341 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
342 Remove unused variable `char'.
343 (sh-debug): Mark unused parameter.
344 (sh-get-indent-info): Remove unused variable `start'.
345 (sh-calculate-indent): Remove unused variable `var'.
346
347 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
348 (simula-electric-keyword): Remove unused variable `null'.
349 (simula-search-backward, simula-search-forward): Remove unused
350 variables `begin' and `end'.
351
352 * progmodes/vera-mode.el (vera-guess-basic-syntax):
353 Remove unused variable `pos'.
354 (vera-electric-tab, vera-comment-uncomment-region):
355 Mark unused parameters.
356 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
357
7ede3b65
CY
3582011-04-22 Chong Yidong <cyd@stupidchicken.com>
359
360 * emacs-lisp/package.el (package--builtins, package-alist)
361 (package-load-descriptor, package-built-in-p, package-activate)
362 (define-package, package-installed-p)
363 (package-compute-transaction, package-buffer-info)
364 (package--push): Doc fix. Distinguish more clearly between
365 version strings and version lists.
366
121656e9
JB
3672011-04-21 Juanma Barranquero <lekktu@gmail.com>
368
369 Lexical-binding cleanup.
370
371 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
372 (5x5-make-mutate-best):
373 * play/fortune.el (fortune-in-buffer):
374 * play/gomoku.el (gomoku-init-display):
375 * play/solitaire.el (solitaire, solitaire-do-check):
376 * play/tetris.el (tetris-default-update-speed-function):
377 Mark unused parameters.
378
379 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
380 (bubbles--shift): Remove unused variable `char-org'.
381 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
382 (bubbles--show-images): Remove unused variable `char'.
383
384 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
385 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
386 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
387 (decipher-analyze-buffer): Use ?\s.
388 (decipher-make-checkpoint): Remove unused variable `mapping'.
389
390 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
391
392 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
393 Remove unused variable `result'; use `let'.
394
395 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
396 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
397 (gametree-children-shown-p, gametree-compute-reduced-score):
398 Use `ignore-errors'.
399
400 * play/handwrite.el (ps-lpr-switches): Declare.
401 (handwrite): Remove unused variables `pmin' and `lastp'.
402
403 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
404
405 * play/landmark.el (landmark-init-display)
406 (landmark-update-naught-weights): Mark unused parameters.
407 (landmark-y): Remove unused variable `noise'. Simplify.
408 (landmark-human-plays): Remove unused variable `score'.
409
410 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
411 (mpuz-try-proposal): Remove unused variable `game'.
412
413 * play/zone.el (life-patterns): Declare.
414
80f499c7
JB
4152011-04-20 Juanma Barranquero <lekktu@gmail.com>
416
417 * vc/vc.el (ediff-vc-internal): Declare function.
418
024ff170
SM
4192011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
420
c0a193ea
SM
421 * shell.el: Use lexical-binding and std completion UI.
422 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
423 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
424 comint-preoutput-filter-functions rather than on
425 comint-output-filter-functions.
426 (shell-command-completion, shell--command-completion-data)
427 (shell-filename-completion, shell-environment-variable-completion)
428 (shell-c-a-p-replace-by-expanded-directory): New functions.
429 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
430 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
431 (shell-dynamic-complete-environment-variable): Use them.
432 (shell-dynamic-complete-as-environment-variable)
433 (shell-dynamic-complete-as-command): Remove.
434 (shell-match-partial-variable): Match past point.
435 * comint.el: Clean up use of completion-at-point-functions.
436 (comint-completion-at-point): New function.
437 (comint-mode): Use it completion-at-point-functions.
438 (comint-dynamic-complete): Make it obsolete.
439 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
440 (comint-c-a-p-replace-by-expanded-history): New function.
441 (comint-dynamic-complete-functions)
442 (comint-replace-by-expanded-history): Use it.
443 * minibuffer.el (completion-table-with-terminator): Allow dynamic
444 termination strings. Try harder to avoid second try-completion.
445 (completion-in-region-mode-map): Disable bindings that don't work yet.
446
2dbaa080
SM
447 * comint.el: Use lexical-binding. Require CL.
448 (comint-dynamic-complete-functions): Use comint-filename-completion.
449 (comint-completion-addsuffix): Tweak custom type.
450 (comint-filename-completion, comint--common-suffix)
451 (comint--common-quoted-suffix, comint--table-subvert)
452 (comint--complete-file-name-data): New functions.
453 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
454 (comint-dynamic-list-filename-completions): Use them.
455 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 456
2dbaa080
SM
457 * minibuffer.el (completion-in-region-mode):
458 Keep completion-in-region-mode--predicate global.
459 (completion-in-region--postch):
460 Assume completion-in-region-mode--predicate is not null.
461
c79a6f38
SM
462 * progmodes/flymake.el (flymake-start-syntax-check-process):
463 Obey `dir'. Simplify.
464
024ff170
SM
465 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
466 we're in VC after all.
467
1c6c854e
CS
4682011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
469
470 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 471 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
472 (vc-version-diff): Use vc-diff-build-argument-list-internal.
473
bed7f140
SM
4742011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
475
332e62ab
SM
476 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
477 add sanity check.
478
bed7f140
SM
479 * obsolete/erc-hecomplete.el: Make obsolete.
480 * obsolete/: Standardize obsolescence info in the header.
481
f195c582
GM
4822011-04-20 Glenn Morris <rgm@gnu.org>
483
484 * calendar/solar.el (solar-horizontal-coordinates):
485 Use the longitude argument rather than `calendar-longitude'.
486 (solar-date-next-longitude): Remove unused locals.
487
cb79b8c0
VJL
4882011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
489
490 * whitespace.el: New version 13.2.1.
491
4922011-04-20 felix <EmacsWiki> (tiny change)
493
494 * whitespace.el (global-whitespace-mode): keep highlight when
495 switching between major modes on a file.
496
602ea69d
SM
4972011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
498
499 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
500 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
501 multi-line comments as well.
502
06b60517
JB
5032011-04-19 Juanma Barranquero <lekktu@gmail.com>
504
505 Lexical-binding cleanup.
506
507 * arc-mode.el (archive-mode-revert):
508 * cmuscheme.el (scheme-interactively-start-process):
509 * custom.el (custom-initialize-delay):
510 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
511 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
512 * emacs-lock.el (emacs-lock-clear-sentinel):
513 * ezimage.el (defezimage):
514 * follow.el (follow-avoid-tail-recenter):
515 * fringe.el (set-fringe-mode-1):
516 * generic-x.el (bat-generic-mode-compile):
517 * help-mode.el (help-info-variable, help-do-xref)
518 (help-mode-revert-buffer):
519 * help.el (view-emacs-todo):
520 * iswitchb.el (iswitchb-completion-help):
521 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
522 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
523 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
524 * locate.el (locate-update):
525 * longlines.el (longlines-encode-region)
526 (longlines-after-change-function):
527 * outline.el (outline-isearch-open-invisible):
528 * ps-def.el (declare-function, charset-dimension, char-width)
529 (encode-char):
530 * ps-mule.el (ps-mule-plot-string):
531 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
532 (recentf-edit-list-select, recentf-edit-list-validate)
533 (recentf-open-files-action):
534 * rect.el (delete-whitespace-rectangle-line)
535 (rectangle-number-line-callback):
536 * register.el (window-configuration-to-register)
537 (frame-configuration-to-register):
538 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
539 * select.el (xselect-convert-to-string, xselect-convert-to-length)
540 (xselect-convert-to-targets, xselect-convert-to-delete)
541 (xselect-convert-to-filename, xselect-convert-to-charpos)
542 (xselect-convert-to-lineno, xselect-convert-to-colno)
543 (xselect-convert-to-os, xselect-convert-to-host)
544 (xselect-convert-to-user, xselect-convert-to-class)
545 (xselect-convert-to-name, xselect-convert-to-integer)
546 (xselect-convert-to-atom, xselect-convert-to-identity):
547 * subr.el (declare, ignore, process-kill-without-query)
548 (text-clone-maintain):
549 * terminal.el (te-get-char, te-tic-sentinel):
550 * tool-bar.el (tool-bar-make-keymap):
551 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
552 * type-break.el (type-break-mode, type-break-noninteractive-query):
553 * view.el (View-back-to-mark):
554 * wid-browse.el (widget-browse-action, widget-browse-widget)
555 (widget-browse-widgets, widget-browse-sexp):
556 * widget.el (define-widget-keywords):
557 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
558 Mark unused parameters.
559
560 * align.el (align-adjust-col-for-rule): Mark unused parameter.
561 (align-areas): Remove unused variable `look'.
562 (align-region): Remove unused variables `real-end' and `pos-list'.
563
564 * apropos.el (apropos-score-doc): Remove unused variable `i'.
565
566 * bindings.el (mode-line-modified, mode-line-remote):
567 Mark unused parameters.
568 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
569
570 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
571 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
572
573 * comint.el (comint-history-isearch-pop-state)
574 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
575 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
576 (comint-substitute-in-file-name): Doc fix.
577
578 * completion.el (cmpl-statistics-block): Mark unused parameter.
579 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
580 (save-completions-to-file, load-completions-from-file):
581 Remove unused local variable `e'.
582
583 * composite.el (compose-chars): Remove unused variable `len'.
584 (lgstring-insert-glyph): Remove unused variable `g'.
585 (compose-glyph-string): Remove unused variables `ascent',
586 `descent', `lbearing' and `rbearing'.
587 (compose-glyph-string-relative): Remove unused variables
588 `lbearing', `rbearing' and `wadjust'.
589 (compose-gstring-for-graphic): Remove unused variables `header',
590 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
591 (compose-gstring-for-terminal): Remove unused variables `header'
592 and `nchars'. Use `let', not `let*'.
593
594 * cus-edit.el (Custom-set, Custom-save, custom-reset)
595 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
596 (Custom-buffer-done, custom-buffer-create-internal)
597 (custom-browse-visibility-action, custom-browse-group-tag-action)
598 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
599 (widget-magic-mouse-down-action, custom-toggle-parent)
600 (custom-add-parent-links, custom-toggle-hide-variable)
601 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
602 (custom-toggle-hide-face, face, hook, custom-group-link-action)
603 (custom-face-menu-create, custom-variable-menu-create, get)
604 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
605 (custom-reset-standard-save-and-update): Remove unused variable `value'.
606 (customize-apropos): Remove unused variable `tests'.
607 (custom-group-value-create): Remove unused variable `hidden-p'.
608 (sort-fold-case): Declare.
609
610 * cus-theme.el (custom-reset-standard-faces-list)
611 (custom-reset-standard-variables-list): Declare.
612 (customize-create-theme, custom-theme-revert, custom-theme-write)
613 (custom-theme-choose-mode, customize-themes, custom-theme-save):
614 Mark unused parameters.
615
616 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
617
618 * delim-col.el (delimit-columns-max): Move defvar before first use.
619
620 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 621 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
622
623 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
624 (auto-insert): Declare.
625 (desktop-restore-file-buffer): Rename desktop-* parameters;
626 mark unused ones.
627 (desktop-create-buffer): Rename desktop-* parameters and bind them.
628 (desktop-buffer): Rename desktop-* parameters.
629
630 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
631 (dframe-reposition-frame-xemacs, dframe-help-echo)
632 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
633 Mark unused parameters.
634
635 * dired-aux.el (backup-extract-version-start, overwrite-query)
636 (overwrite-backup-query, rename-regexp-query)
637 (rename-non-directory-query): Declare.
638 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
639 (dired-add-entry): Remove unused variable `orig-file-name'.
640 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
641 Use parameter PRESERVE-TIME instead of accessing dynamic variable
642 `dired-copy-preserve-time' directly.
643 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
644 (dired-insert-subdir-newpos): Rename unused variable `pos'.
645
646 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
647 (dired-virtual-revert, dired-make-relative-symlink):
648 Mark unused parameters.
649 (manual-program): Declare.
650 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
651 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
652 wrapped in `with-no-warnings' to avoid replacing one warning by another.
653
654 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
655
656 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
657
658 * echistory.el (electric-history-in-progress, Helper-return-blurb):
659 Declare.
660
661 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
662
663 * electric.el (Electric-command-loop): Rename parameter
664 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
665
666 * expand.el (expand-in-literal): Remove unused variable `here'.
667
668 * facemenu.el (facemenu-add-new-color):
669 Remove unused variable `docstring'.
670
671 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
672 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
673 (face-attr-construct): Mark unused parameter. Doc fix.
674 (read-color): Remove unused variable `hex-string'.
675
676 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
677 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
678 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
679 (display-buffer-other-frame): Remove unused variable `old-window'.
680 (kill-buffer-hook): Declare.
681 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
682 Mark unused parameters.
683 (after-find-file): Pass 1 to `auto-save-mode', not t.
684
685 * files-x.el (auto-insert): Declare.
686 (modify-file-local-variable-prop-line): Remove unused variable `val'.
687
688 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 689 variable `buf'. Mark unused parameter.
06b60517
JB
690 (find-lisp-insert-directory): Mark unused parameter.
691
692 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
693 (format-encode-region): Remove unused variables `cur-buf' and `result'.
694 (format-common-tail): Remove, unused.
695 (format-deannotate-region): Remove unused variable `loc'.
696 (format-annotate-region): Remove unused variable `p'.
697 (format-annotate-single-property-change): Remove unused variables
698 `default' and `tail'.
699
700 * forms.el (read-file-filter): Declare.
701 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
702
703 * frame.el (frame-creation-function-alist): Mark unused parameter.
704 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
705
706 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
707 Remove unused parameters.
708 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
709 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
710
711 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
712 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
713 (hfy-prepare-tag-map): Mark unused parameters.
714 (htmlfontify-buffer): Use `called-interactively-p'.
715
716 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
717 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
718 (ibuffer-do-occur): Mark unused parameters.
719 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
720 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
721
722 * ibuffer.el: Don't quote `lambda'.
723 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
724 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
725 Mark unused parameters.
726
727 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
728 (ido-completing-read): Mark unused parameters.
729 (ido-copy-current-word): Mark unused parameters;
730 remove unused variable `name'.
731 (ido-sort-merged-list): Remove unused parameter `dirs'.
732
733 * ielm.el (ielm-input-sender): Mark unused parameter.
734 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
735 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
736 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
737 `ielm-string' as a dynamic variable accessible from the IELM prompt.
738 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
739
740 * image-dired.el (image-dired-display-thumbs): Remove unused
741 variables `curr-file' and `count'.
742 (image-dired-remove-tag): Remove unused variable `start'.
743 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
744 variable `curr-file'
745 (image-dired-rotate-original): Remove unused variable `temp-file'.
746 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
747 Remove unused variable `file'.
748 (image-dired-gallery-generate): Remove unused variable `curr'.
749 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
750
751 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
752
753 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
754
755 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
756
757 * isearch.el (minibuffer-history-symbol): Declare.
758 (isearch-edit-string): Remove unused variable `err'.
759 (isearch-message-prefix, isearch-message-suffix):
760 Mark unused parameters.
761
762 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
763
764 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
765
766 * makesum.el (double-column): Remove unused variable `cnt'.
767
768 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
769 (ido-ignore-item-temp-list): Declare.
770
771 * mouse-drag.el (mouse-drag-throw): Remove unused variables
772 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
773 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
774 (mouse-drag-drag): Remove unused variables `mouse-delta' and
775 `mouse-col-delta'.
776
777 * mouse-sel.el (mouse-extend-internal):
778 Remove unused variable `orig-window-frame'.
779
780 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
781 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
782 Move declarations before first use.
783 (pcomplete-opt): Mark unused parameters; doc fix.
784
785 * proced.el (proced-revert): Mark unused parameter.
786 (proced-send-signal): Remove unused variable `err'.
787
788 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
789 Rename parameter PREFIX-ARG to ARG.
790 (ps-basic-plot-string, ps-basic-plot-whitespace):
791 Mark unused parameters.
792
793 * replace.el (replace-count): Define.
794 (occur-revert-function): Mark unused parameters.
795 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
796 (isearch-case-fold-search, isearch-string): Declare.
797 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
798 bind `case-fold-search'. Remove unused variables `beg' and `end',
799 and simplify.
800 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
801 COUNT and bind `replace-count'.
802 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
803 to COUNT.
804
805 * savehist.el (print-readably, print-string-length): Declare.
806
807 * shadowfile.el (shadow-expand-cluster-in-file-name):
808 Remove unused variable `cluster'.
809 (shadow-copy-file): Remove unused variable `i'.
810 (shadow-noquery, shadow-clusters, shadow-site-cluster)
811 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
812 (shadow-define-literal-group, shadow-define-regexp-group)
813 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
814
815 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
816 (shell): Use `called-interactively-p'.
817 (shell-directory-tracker): Remove unused variable `chdir-failure'.
818
819 * simple.el (compilation-context-lines, comint-file-name-quote-list)
820 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
821 (delete-backward-char): Remove unused variable `ocol'.
822 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
823 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
824 (event-apply-hyper-modifier, event-apply-shift-modifier)
825 (event-apply-control-modifier, event-apply-meta-modifier):
826 Mark unused parameters.
827 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
828 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
829
830 * speedbar.el (speedbar-ignored-directory-expressions)
831 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
832 (speedbar-find-file, speedbar-dir-follow)
833 (speedbar-directory-buttons-follow, speedbar-tag-find)
834 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
835 (speedbar-buffers-line-directory, speedbar-buffer-click):
836 Mark unused parameters.
837 (speedbar-tag-file): Remove unused variable `mode'.
838 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
839
840 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
841
842 * talk.el (talk): Remove unused variable `display'.
843
844 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
845 (tar-write-region-annotate): Mark unused parameter.
846
847 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
848 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
849 Declare them, wrapped in `with-no-warnings' to avoid replacing one
850 warning by another.
851
852 * time-stamp.el (time-stamp-string-preprocess):
853 Remove unused variable `require-padding'.
854
855 * tree-widget.el (widget-glyph-enable): Declare.
856 (tree-widget-action): Mark unused parameter.
857
858 * w32-fns.el (x-get-selection): Mark unused parameter.
859 (autoload-make-program, generated-autoload-file): Declare.
860
861 * wdired.el (wdired-revert): Mark unused parameters.
862 (wdired-xcase-word): Remove unused variable `err'.
863
864 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
865 (whitespace-help-scroll): Remove unused variable `data-help'.
866
867 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
868 (widget-image-insert, widget-after-change, default)
869 (widget-default-format-handler, widget-default-notify)
870 (widget-default-prompt-value, widget-info-link-action)
871 (widget-url-link-action, widget-function-link-action)
872 (widget-variable-link-action, widget-file-link-action)
873 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
874 (widget-field-prompt-internal, widget-field-action, widget-field-match)
875 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
876 (widget-insert-button-action, widget-delete-button-action, visibility)
877 (widget-documentation-link-action, widget-documentation-string-action)
878 (widget-const-prompt-value, widget-regexp-match, symbol)
879 (widget-coding-system-prompt-value)
880 (widget-key-sequence-value-to-external, sexp)
881 (widget-sexp-value-to-internal, character, vector, cons)
882 (widget-choice-prompt-value, widget-boolean-prompt-value)
883 (widget-color--choose-action): Mark unused parameters.
884 (widget-item-match-inline, widget-choice-match-inline)
885 (widget-checklist-match, widget-checklist-match-inline)
886 (widget-group-match): Rename parameter VALUES to VALS.
887 (widget-field-value-set): Remove unused variable `size'.
888 (widget-color-action): Remove unused variables `value' and `start'.
889
890 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 891 variable `dir'. Doc fix.
06b60517
JB
892 (windmove-find-other-window): Don't pass it.
893
894 * window.el (count-windows): Mark unused parameter.
895 (bw-adjust-window): Remove unused variable `err'.
896
897 * woman.el (woman-file-name): Remove unused variable `default'.
898 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
899 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
900 (global-font-lock-mode): Declare.
901 (woman-decode-region): Mark unused parameter.
902 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
903
904 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
905 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
906 (x-dnd-handle-moz-url): Remove unused variable `title'.
907 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
908
909 * xml.el (xml-parse-tag, xml-parse-attlist):
910 Remove unused variable `pos'.
911
bc4f7f3d
GM
9122011-04-19 Glenn Morris <rgm@gnu.org>
913
914 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
915 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
916 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
917 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
918 * calendar/cal-html.el (cal-html-insert-minical):
919 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
920 (calendar-mark-date-pattern):
921 Prefix "unused" locals.
922
923 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
924 optional argument `style'.
925
926 * calendar/appt.el (appt-make-list):
927 * calendar/cal-china.el (calendar-chinese-date-string):
928 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
929 (diary-hebrew-yahrzeit):
930 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
931 * calendar/calendar.el (calendar-generate-window):
932 * calendar/time-date.el (time-to-days):
933 Remove unused local variables.
934
16a43933
CY
9352011-04-18 Chong Yidong <cyd@stupidchicken.com>
936
937 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
938 glyphless-char-display table.
939 (tabulated-list-glyphless-char-display): New var.
940
7eed1860
SS
9412011-04-18 Sam Steingold <sds@gnu.org>
942
943 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
944 to acknowledgments.
945
4d2d1ccd
GM
9462011-04-17 Glenn Morris <rgm@gnu.org>
947
948 * calendar/diary-lib.el (diary-sexp-entry):
949 * calendar/holidays.el (holiday-sexp):
950 Set debug-on-error rather than the removed stack-trace-on-error.
951
239da61d
GM
9522011-04-16 Glenn Morris <rgm@gnu.org>
953
954 * progmodes/f90.el: Use lexical-binding.
955 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
956
8b05752a
SM
9572011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
958
daca8ba5
SM
959 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
960 (mail-mode): Setup mailalias completion here instead.
961 * mail/mailalias.el: Use lexical-binding.
962 (pattern, mailalias-done): Declare dynamic.
963 (mail-completion-at-point-function): New function, from mail-complete.
964 (mail-complete): Use it.
965 (mail-completion-expand): New function.
966 (mail-get-names): Use it.
967 (mail-directory, mail-directory-process, mail-directory-stream):
968 Don't use `pattern' for lexically bound arg.
969
6f542485
SM
970 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
971
037e7c3f
SM
972 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
973 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
974 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
975
8b05752a
SM
976 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
977 (byte-save-window-excursion, byte-temp-output-buffer-setup)
978 (byte-interactive-p): Define them again, for use when inlining
979 old code.
980
49093f60
JB
9812011-04-15 Juanma Barranquero <lekktu@gmail.com>
982
983 * loadup.el: Use `string-to-number', not `string-to-int'.
984
b5b8e7de
SM
9852011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
986
987 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
988 gud-gdb-complete-command.
989 (gud-gdb-completions): New function, from gud-gdb-complete-command.
990 (gud-gdb-completion-at-point): New function.
991 (gud-gdb-completions): Remove.
992
f42efeb5
MA
9932011-04-14 Michael Albinus <michael.albinus@gmx.de>
994
49093f60
JB
995 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
996 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
997 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
998 whether `executable-find' is bound.
f42efeb5
MA
999
1000 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
1001
e240cc21
SM
10022011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * minibuffer.el (completion-in-region-mode-predicate)
1005 (completion-in-region-mode--predicate): New vars.
1006 (completion-in-region, completion-in-region--postch)
1007 (completion-in-region-mode): Use them.
1008 (completion--capf-wrapper): Also return the hook function.
1009 (completion-at-point, completion-help-at-point):
1010 Adjust and provide a predicate.
c2bd2ab0
SM
1011
1012 Preserve arg names for advice of subr and lexical functions (bug#8457).
1013 * help-fns.el (help-function-arglist): Consolidate the subr and
1014 new-byte-code cases. Add argument `preserve-names' to extract names
1015 from the docstring when needed.
1016 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
1017 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
1018 (ad-arglist): Use help-function-arglist's new arg.
1019 (ad-definition-type): Use cond.
1020
c183f693
JB
10212011-04-13 Juanma Barranquero <lekktu@gmail.com>
1022
06641a47
JB
1023 * autorevert.el (auto-revert-handler):
1024 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
1025 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
1026 Don't quote lambda.
1027
c183f693
JB
1028 * image-mode.el (image-transform-set-scale):
1029 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
1030
1e3b6001
G
10312011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1032
1033 * net/network-stream.el (network-stream-open-starttls): Only do
1034 opportunistic STARTTLS upgrades if we have built-in gnutls support.
1035 Upgrades via gnutls-cli are too slow to be done opportunistically.
1036
2d6af8dd
JB
10372011-04-12 Juanma Barranquero <lekktu@gmail.com>
1038
1039 * dframe.el (dframe-current-frame): Remove spurious quote.
1040
c0749a51
GM
10412011-04-12 Glenn Morris <rgm@gnu.org>
1042
088d0d61
GM
1043 * calendar/cal-tex.el (cal-tex-end-document):
1044 Try to automatically use latin1 input if needed.
1045
c0749a51
GM
1046 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
1047 Don't try to cons a mark onto an empty element.
1048
5c90fde0
LL
10492011-04-11 Leo Liu <sdl.web@gmail.com>
1050
1051 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
1052 buffers.
1053 (ido-kill-buffer-at-head): Support killing virtual buffers.
1054
369e974d
CY
10552011-04-10 Chong Yidong <cyd@stupidchicken.com>
1056
1057 * minibuffer.el (completion-show-inline-help): New var.
1058 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
1059 (minibuffer-force-complete, minibuffer-complete-word):
1060 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
1061
1062 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
1063 to avoid interference from inline help (Bug#5849).
1064
37f1c930
LL
10652011-04-10 Leo Liu <sdl.web@gmail.com>
1066
099c39a4
JB
1067 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
1068 Fix typo.
37f1c930 1069
a32d4040
CY
10702011-04-09 Chong Yidong <cyd@stupidchicken.com>
1071
1072 * image-mode.el (image-toggle-display-image): Signal an error if
1073 not in Image mode.
1074 (image-transform-mode, image-transform-resize)
1075 (image-transform-set-rotation): Doc fix.
daca8ba5 1076 (image-transform-set-resize): Delete.
a32d4040
CY
1077 (image-transform-set-scale, image-transform-fit-to-height)
1078 (image-transform-fit-to-width): Handle image-toggle-display-image
1079 and image-transform-resize directly.
1080
099c39a4 10812011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
1082
1083 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
1084 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
1085 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
1086 (doc-view-mode-map): Add bindings for the new functions.
1087
099c39a4 10882011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb
JB
1089
1090 * vc-annotate.el (vc-annotate-show-log-revision-at-line):
1091 Fix typo in docstring.
1092
3726838a
EZ
10932011-04-08 Eli Zaretskii <eliz@gnu.org>
1094
04f33f1e
EZ
1095 * files.el (file-size-human-readable): Produce one digit after
1096 decimal, like "ls -lh" does.
1097
1098 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
1099 the file size representation.
1100
3726838a
EZ
1101 * simple.el (list-processes): If async subprocesses are not
1102 available, error out with a clear error message.
1103
cbb59342
CY
11042011-04-08 Chong Yidong <cyd@stupidchicken.com>
1105
1106 * help.el (help-form-show): New function, to be called from C.
1107 Put help-form output in a buffer named differently than *Help*.
1108
e3971c44
EZ
11092011-04-08 Eli Zaretskii <eliz@gnu.org>
1110
1111 * files.el (file-size-human-readable): New function.
1112
1113 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
1114 computing the representation inline. Don't require `cl'.
1115
12544bbe
GM
11162011-04-08 Glenn Morris <rgm@gnu.org>
1117
a1de6c6a
GM
1118 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
1119
3c4671f4
GM
1120 * net/browse-url.el (browse-url-firefox):
1121 Test system-type, not system-configuration.
1122
b605679c
GM
1123 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
1124 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
1125 Use log-edit-empty-buffer-p. (Bug#7598)
1126
56442f0c
GM
1127 * net/rlogin.el (rlogin-process-connection-type): Simplify.
1128 (rlogin-mode-map): Initialize in the defvar.
1129 (rlogin): Use ignore-errors.
1130
12544bbe
GM
1131 * replace.el (occur-mode-map): Some fixes for menu items.
1132
eb237b0f
AH
11332011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1134
1135 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
1136
7d668f2c
CY
11372011-04-06 Chong Yidong <cyd@stupidchicken.com>
1138
e67a13ab
CY
1139 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
1140 issuing unused warnings.
1141
1142 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
1143 macro directly.
1144
7d668f2c
CY
1145 * simple.el: Lisp reimplement of list-processes. Based on an
1146 earlier reimplementation by Leo Liu, but using tabulated-list.el.
1147 (process-menu-mode): New major mode.
1148 (list-processes--refresh, list-processes):
1149 (process-menu-visit-buffer): New functions.
1150
1151 * files.el (save-buffers-kill-emacs): Don't assume any return
1152 value of list-processes, which is undocumented anyway.
1153
a83ec3c9
CY
11542011-04-06 Chong Yidong <cyd@stupidchicken.com>
1155
1156 * emacs-lisp/tabulated-list.el: New file.
1157
e91a96fe
CY
1158 * emacs-lisp/package.el: Use Tabulated List mode.
1159 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
1160 (package-menu-mode): Derive from tabulated-list-mode. Set up the
1161 table format using Tabulated List mode variables.
1162 (package--push): New macro, replacing package-list-maybe-add.
1163 (package-menu--generate): Use package--push. Renamed from
1164 package--generate-package-list.
1165 (package-menu-refresh, list-packages): Use it.
daca8ba5 1166 (package-menu--print-info): Rename from package-print-package.
e91a96fe 1167 Return insertion data instead of inserting it directly.
099c39a4
JB
1168 (package-menu-describe-package, package-menu-execute):
1169 Use tabulated-list-get-id.
e91a96fe
CY
1170 (package-menu-mark-delete, package-menu-mark-install)
1171 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
1172 (package-menu-mark-obsolete-for-deletion):
1173 Use tabulated-list-put-tag.
e91a96fe
CY
1174 (package--list-packages, package-menu-revert)
1175 (package-menu-get-package, package-menu-get-version)
1176 (package-menu-sort-by-column): Functions deleted.
1177 (package-menu-package-list, package-menu-sort-key): Vars deleted.
1178 (package-menu--status-predicate, package-menu--version-predicate)
1179 (package-menu--name-predicate)
1180 (package-menu--description-predicate): Handle arguments in the
1181 Tabulated List format.
1182 (package-list-packages-no-fetch): Call list-packages.
1183
3e214b50
JB
11842011-04-06 Juanma Barranquero <lekktu@gmail.com>
1185
1186 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 1187 (after-find-file): Don't bind it.
3e214b50
JB
1188 (revert-buffer-in-progress-p): New variable.
1189 (revert-buffer): Bind it.
1190 Pass nil for `after-find-file-from-revert-buffer'.
1191
1192 * saveplace.el (save-place-find-file-hook): Use new variable
1193 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
1194
3f0f1700
GM
11952011-04-06 Glenn Morris <rgm@gnu.org>
1196
c0274801
GM
1197 * Makefile.in (AUTOGEN_VCS): New variable.
1198 (autoloads): Use $AUTOGEN_VCS.
1199
3f0f1700
GM
1200 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
1201 * calendar/calendar.el (calendar-mode-map):
1202 Check for toolkit scroll bars. (Bug#8305)
1203
41ea9e48
CY
12042011-04-05 Chong Yidong <cyd@stupidchicken.com>
1205
1206 * minibuffer.el (completion-in-region--postch)
1207 (completion-in-region-mode): Remove unnecessary messages.
1208
6194c800
JB
12092011-04-05 Juanma Barranquero <lekktu@gmail.com>
1210
33256f14
JB
1211 * font-lock.el (font-lock-refresh-defaults):
1212 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
1213 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
1214
6194c800
JB
1215 * info.el (Info-directory-list, Info-read-node-name-2)
1216 (Info-split-parameter-string): Doc fixes.
1217 (Info-virtual-nodes): Reflow docstring.
1218 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
1219 (Info-apropos-toc-nodes, info-finder, Info-get-token)
1220 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
1221 Fix typos in docstrings.
1222 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
1223 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
1224 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
1225 (Info-restore-desktop-buffer): Mark unused parameters.
1226 (Info-directory-find-file, Info-directory-find-node)
1227 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
1228 (Info-virtual-index-find-node, Info-apropos-find-file)
1229 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 1230 Mark unused parameters; fix typos in docstrings.
6194c800
JB
1231 (Info-virtual-index): Remove unused local variable `nodename'.
1232
b87a8200 12332011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 1234
b87a8200
DD
1235 * net/rcirc.el: Update my e-mail address.
1236 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 1237
3b2ff876
CY
12382011-04-05 Chong Yidong <cyd@stupidchicken.com>
1239
1240 * startup.el (command-line): Save the cursor's theme-face
1241 directly, instead of using face-override-spec.
1242
1243 * custom.el (load-theme): Minor optimization in assigning faces.
1244
8d17e7ca
JB
12452011-04-04 Juanma Barranquero <lekktu@gmail.com>
1246
1247 * help-fns.el (describe-variable): Complete all variables having
1248 documentation, including keywords.
1249 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
1250
2fbc1934
JB
12512011-04-04 Juanma Barranquero <lekktu@gmail.com>
1252
1253 Convert to lexical-binding.
1254
1255 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
1256 (bs--get-marked-string, bs--get-modified-string)
1257 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
1258 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
1259 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
1260
1261 * ehelp.el (electric-help-execute-extended)
1262 (electric-help-ctrl-x-prefix):
1263 * hexl.el (hexl-revert-buffer-function):
1264 * linum.el (linum-after-change, linum-after-scroll):
1265 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
1266
1267 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
1268
74f50695
DU
12692011-04-04 Daiki Ueno <ueno@unixuser.org>
1270
1271 * epa-dired.el:
1272 * epa-mail.el:
1273 * epa-hook.el:
1274 * epa-file.el:
1275 * epa.el:
1276 * epg.el: Use lexical binding.
1277
c11325f7
CY
12782011-04-03 Chong Yidong <cyd@stupidchicken.com>
1279
0d9e9a12
CY
1280 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
1281
c11325f7 1282 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
1283 dictionary case for flyspell-mark-duplications-exceptions.
1284 Use regexp matching for languages.
c11325f7
CY
1285 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
1286 default dictionary (Bug#7926).
1287
da91b5f2
CY
12882011-04-02 Chong Yidong <cyd@stupidchicken.com>
1289
099c39a4
JB
1290 * emacs-lisp/package.el (package--with-work-buffer):
1291 Recognize https URLs.
da91b5f2 1292
099c39a4
JB
1293 * net/network-stream.el: Move from gnus/proto-stream.el.
1294 Change prefix to network-stream throughout.
da91b5f2
CY
1295 (open-protocol-stream): Merge into open-network-stream, leaving
1296 open-protocol-stream as an alias. Handle nil BUFFER args.
1297
1298 * subr.el (open-network-stream): Move to net/network-stream.el.
1299
afa8e9f6
GM
13002011-04-02 Glenn Morris <rgm@gnu.org>
1301
1d2e369d
GM
1302 * find-dired.el (find-exec-terminator): New option.
1303 (find-ls-option): Test for -ls support.
1304 (find-ls-subdir-switches): Test for -b in find-ls-option.
1305 (find-dired, find-grep-dired): Doc fixes.
1306 (find-dired): Use find-exec-terminator.
1307
8abb7da8 1308 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
1309 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
1310 (find-name-arg): Remove purecopy.
8abb7da8 1311
f3ca7378
GM
1312 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
1313 (grep-compute-defaults): Check for `-exec COMMAND +' support.
1314 Set grep-find-use-xargs, grep-find-command, and grep-find-template
1315 accordingly. Don't add the null-device if not needed.
1316
afa8e9f6
GM
1317 * files.el (save-some-buffers): Doc fix.
1318
35eae264
EZ
13192011-04-02 Eli Zaretskii <eliz@gnu.org>
1320
1321 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
1322
26b51db5
JB
13232011-04-01 Juanma Barranquero <lekktu@gmail.com>
1324
1325 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
1326 Use `dolist' rather than `mapcar'.
1327
7200d79c
SM
13282011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
1329
03408648 1330 Add lexical binding.
7200d79c 1331
03408648
SM
1332 * subr.el (apply-partially): Use new closures rather than CL.
1333 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
1334 (dolist, dotimes): Use slightly different expansion for lexical code.
1335 (functionp): Move to C.
1336 (letrec): New macro.
1337 (with-wrapper-hook): Use it and apply-partially instead of CL.
1338 (eval-after-load): Preserve lexical-binding.
1339 (save-window-excursion, with-output-to-temp-buffer): Turn them
1340 into macros.
7200d79c 1341
03408648
SM
1342 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
1343
1344 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
1345 than the arglist.
1346 (help-add-fundoc-usage): Don't add `Not documented'.
1347 (help-function-arglist): Handle closures, subroutines, and new
1348 byte-code-functions.
1349 (help-make-usage): Remove leading underscores.
1350 (describe-function-1): Handle closures.
1351 (describe-variable): Use special-variable-p for completion.
1352
1353 * files.el (lexical-binding): Declare safe.
f488fb65 1354
03408648
SM
1355 * emacs-lisp/pcase.el: Don't use destructuring-bind.
1356 (pcase--memoize): Rename from pcase-memoize. Change weakness.
1357 (pcase): Add `let' pattern.
1358 Change memoization so it actually works.
1359 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
1360 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
1361 <let>: New case.
f488fb65 1362
03408648
SM
1363 * emacs-lisp/macroexp.el: Use lexical binding.
1364 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
1365 Don't convert ' to #' without checking that it's indeed quoting
1366 a lambda.
1367
1368 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 1369 Use eval-sexp-add-defvars.
03408648
SM
1370 (eval-sexp-add-defvars): New fun.
1371
1372 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
1373
1374 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
1375 Don't autoload.
1376 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
1377 than the internal `byte-compile-lambda'.
1378 (defmethod): Don't hide code under quotes.
1379 (eieio-defmethod): New `code' argument.
1380
1381 * emacs-lisp/eieio-comp.el: Remove.
1382
1383 * emacs-lisp/edebug.el (edebug-eval-defun)
1384 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
1385 (edebug-toggle): Avoid `eval'.
1386
1387 * emacs-lisp/disass.el (disassemble-internal): Handle new
1388 `closure' objects.
1389 (disassemble-1): Handle new byte codes.
1390
1391 * emacs-lisp/cl.el (pushnew): Silence warning.
1392
1393 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
1394 (cl-byte-compile-throw): Remove.
1395 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
1396
1397 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
1398 closures.
1399
1400 * emacs-lisp/cconv.el: New file.
1401
1402 * emacs-lisp/bytecomp.el: Use lexical binding instead of
1403 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
1404 (byte-compile-initial-macro-environment):
1405 Handle declare-function here.
1406 (byte-compile--lexical-environment): New var.
1407 (byte-stack-ref, byte-stack-set, byte-discardN)
1408 (byte-discardN-preserve-tos): New lap codes.
1409 (byte-interactive-p): Don't use any more.
1410 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
1411 New macros.
1412 (byte-compile-lapcode): Use them and handle new lap codes.
1413 (byte-compile-obsolete): Remove.
1414 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
1415 (byte-compile-arglist-warn): Check late def of inlinable funs.
1416 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
1417 since they should have been expanded by now.
1418 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
1419 (byte-compile-from-buffer): Remove unused second arg.
1420 (byte-compile-preprocess): New function.
1421 (byte-compile-toplevel-file-form): New function to distinguish
1422 file-form calls from outside from file-form calls from hunk-handlers.
1423 (byte-compile-file-form): Simplify.
1424 (byte-compile-file-form-defsubst): Remove.
1425 (byte-compile-file-form-defmumble): Simplify now that
1426 byte-compile-lambda always returns a byte-code-function.
1427 (byte-compile): Preprocess.
1428 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
1429 Remove, not used any more.
1430 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
1431 (byte-compile-make-args-desc): New funs.
1432 (byte-compile-lambda): Handle lexical functions. Always return
1433 a byte-code-function.
1434 (byte-compile-reserved-constants): New var, to make up room for
1435 closed-over variables.
1436 (byte-compile-constants-vector): Obey it.
1437 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
1438 (byte-compile-macroexpand-declare-function): New function.
1439 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
1440 byte-code-functions.
1441 (byte-compile-form): Check obsolescence here.
1442 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
1443 (byte-compile-variable-ref): Remove.
1444 (byte-compile-dynamic-variable-op): New fun.
1445 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
1446 (byte-compile-variable-set): New funs.
1447 (byte-compile-discard): Add 2 args.
1448 (byte-compile-stack-ref, byte-compile-stack-set)
1449 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
1450 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
1451 macroexpand-all instead.
1452 (byte-compile-quote-form): Remove.
1453 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
1454 (byte-compile-bind, byte-compile-unbind): New funs.
1455 (byte-compile-let): Handle let* and lexical binding.
1456 (byte-compile-let*): Remove.
1457 (byte-compile-catch, byte-compile-unwind-protect)
1458 (byte-compile-track-mouse, byte-compile-condition-case):
1459 Handle a new :fun-body form, used for lexical scoping.
1460 (byte-compile-save-window-excursion)
1461 (byte-compile-with-output-to-temp-buffer): Remove.
1462 (byte-compile-defun): Simplify.
1463 (byte-compile-stack-adjustment): New fun.
1464 (byte-compile-out): Use it.
1465 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
1466
1467 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
1468 handler any more.
1469
1470 * emacs-lisp/byte-opt.el: Use lexical binding.
1471 (byte-inline-lapcode): Remove (to bytecomp).
1472 (byte-compile-inline-expand): Pay attention to inlining to/from
1473 lexically bound code.
1474 (byte-compile-unfold-lambda): Don't handle byte-code-functions
1475 any more.
1476 (byte-optimize-form-code-walker): Don't handle save-window-excursion
1477 any more and don't call compiler-macros.
1478 (byte-compile-splice-in-already-compiled-code): Remove.
1479 (byte-code): Don't inline any more.
1480 (disassemble-offset): Receive `bytes' as argument rather than via
1481 dynamic scoping.
1482 (byte-compile-tag-number): Declare before first use.
1483 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
1484 `return' even if make-spliceable.
1485 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
1486 obsolete interactive-p.
1487 (byte-optimize-lapcode): Optimize new lap-codes.
1488 Don't trip up on new form of `byte-constant' lap code.
1489
1490 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
1491
1492 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
1493
1494 * custom.el (custom-initialize-default, custom-declare-variable):
1495 Use `defvar'.
1496
1497 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
1498 New variables.
1499 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
1500 (COMPILE_FIRST): Add macroexp and cconv.
1501 * makefile.w32-in: Mirror changes in Makefile.in.
1502
1503 * vc/cvs-status.el:
1504 * vc/diff-mode.el:
1505 * vc/log-edit.el:
1506 * vc/log-view.el:
1507 * vc/smerge-mode.el:
1508 * textmodes/bibtex-style.el:
1509 * textmodes/css.el:
1510 * startup.el:
1511 * uniquify.el:
da91b5f2
CY
1512 * minibuffer.el:
1513 * newcomment.el:
1514 * reveal.el:
1515 * server.el:
1516 * mpc.el:
1517 * emacs-lisp/smie.el:
1518 * doc-view.el:
1519 * dired.el:
03408648
SM
1520 * abbrev.el: Use lexical binding.
1521
0f0c1f27
EZ
15222011-04-01 Eli Zaretskii <eliz@gnu.org>
1523
1524 * info.el (info-display-manual): New function.
1525
c82b2579
SM
15262011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
1529
221ddf68
TH
15302011-03-31 Tassilo Horn <tassilo@member.fsf.org>
1531
1532 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 1533 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 1534
cba6e77e
GM
15352011-03-31 Glenn Morris <rgm@gnu.org>
1536
e040639f
GM
1537 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
1538
cba6e77e
GM
1539 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
1540
6d0f1c9e
CS
15412011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
1542
1543 * progmodes/python.el (python-default-interpreter)
1544 (python-python-command-args, python-jython-command-args)
1545 (python-which-shell, python-which-args, python-which-bufname)
1546 (python-file-queue, python-comint-output-filter-function)
1547 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
1548 variables and functions.
1549
3e2d70fd
SM
15502011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
1551
1552 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
1553 (completion-in-region-mode): New minor mode.
1554 (completion-in-region): Use it.
1555 (completion-in-region--data, completion-in-region-mode-map): New vars.
1556 (completion-in-region--postch): New function.
1557 (completion--capf-misbehave-funs, completion--capf-safe-funs):
1558 New vars.
1559 (completion--capf-wrapper): New function.
1560 (completion-at-point): Use it to track well-behavedness of
1561 hook functions.
1562 (completion-help-at-point): New command.
1563
f3e4086c
JM
15642011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
1565
1566 * vc/add-log.el (add-change-log-entry): Don't use whitespace
1567 syntax class to search for whitespace on a single line
1568 (Message-ID: <4D938140.4030905@redhat.com>).
1569
eb7ffc14
LL
15702011-03-30 Leo Liu <sdl.web@gmail.com>
1571
1572 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
1573 New commands.
1574 (edit-abbrevs-map): Bind them here.
1575 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
1576
d806ab68
KM
15772011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
1578
1579 * allout.el (allout-hide-by-annotation, allout-flag-region):
1580 Reduce possibility of overlay leakage by making them volatile.
1581
1582 * allout-widgets.el (allout-widgets-tally): Define as nil so the
1583 hash is not shared between buffers. Mode initialization is
1584 responsible for giving it a useful starting value.
1585 (allout-item-span): Reduce possibility of overlay leakage by
1586 making them volatile.
1587 (allout-widgets-count-buttons-in-region): Add diagnostic function
1588 for tracking down button overlay leaks.
1589
ea622834
LL
15902011-03-29 Leo Liu <sdl.web@gmail.com>
1591
1592 * ido.el (ido-read-internal): Use the default history var
1593 minibuffer-history if no HISTORY is specified.
1594
b62f8267
G
15952011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
1596
03408648
SM
1597 * net/imap.el (imap-shell-open, imap-process-connection-type):
1598 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
1599 Kerberos, SSL, other subprocesses.
1600
947b6566
LL
16012011-03-28 Leo Liu <sdl.web@gmail.com>
1602
1603 * abbrev.el (abbrev-table-empty-p): New function.
1604 (prepare-abbrev-list-buffer): Place empty abbrev tables after
1605 nonempty ones. (Bug#5937)
1606
5ffb62aa
JD
16072011-03-27 Jan Djärv <jan.h.d@swipnet.se>
1608
1609 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
1610
7a097943
LL
16112011-03-27 Leo Liu <sdl.web@gmail.com>
1612
1613 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
1614 for foreground and background colors.
1615 (ansi-color-make-color-map): Adapt.
1616
c5b40130
LL
16172011-03-25 Leo Liu <sdl.web@gmail.com>
1618
1f48f7d2
LL
1619 * midnight.el (midnight-time-float): Remove. Note it calculates
1620 the microsecond component incorrectly and seconds-to-time does the
1621 same job.
625897ec 1622 Remove redundant (require 'timer).
1f48f7d2 1623
c5b40130
LL
1624 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
1625 (ido-completions): Remove unused arguments. (Bug#8329)
1626
d86d2721
SM
16272011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1628
1629 * minibuffer.el (completion--flush-all-sorted-completions):
1630 Remove itself from hook.
1631 (completion-at-point): Let the functions perform the completion
1632 immediately and return nil or t.
1633 * comint.el (comint-dynamic-complete-functions): Now identical to
1634 completion-at-point-functions.
1635 (comint-dynamic-list-input-ring): Remove unused var `index'.
1636 (comint--match-partial-filename, comint--unquote&expand-filename):
1637 New funs, split from comint-match-partial-filename.
1638 (comint-dynamic-complete): Use completion-at-point.
1639 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
1640
e8974c48
DA
16412011-03-24 Drew Adams <drew.adams@oracle.com>
1642
1643 * thingatpt.el: Support `defun'.
1644
def71b5e
LL
16452011-03-23 Leo Liu <sdl.web@gmail.com>
1646
cb5af48e
LL
1647 * abbrevlist.el: Move to obsolete/abbrevlist.el.
1648
def71b5e
LL
1649 * help-mode.el (help-mode-finish): Tweak regexp.
1650
927c53e7
GM
16512011-03-23 Glenn Morris <rgm@gnu.org>
1652
18d05bed
GM
1653 * eshell/esh-opt.el (eshell-eval-using-options):
1654 Do not bind unused local variable `eshell-option-stub'.
1655
927c53e7
GM
1656 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
1657
9d0da923
JB
16582011-03-22 Juanma Barranquero <lekktu@gmail.com>
1659
1660 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
1661 keymap variable in `with-no-warnings' to avoid a warning when the
1662 keymap has been already `defconst'ed.
1663
4b978a67
LL
16642011-03-22 Leo Liu <sdl.web@gmail.com>
1665
1666 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
1667 encode all chars in abbrevs; otherwise use emacs-mule or
1668 utf-8-emacs. (Bug#8308)
1669
5fd62452
JB
16702011-03-22 Juanma Barranquero <lekktu@gmail.com>
1671
0b1596c6
JB
1672 * simple.el (backward-delete-char-untabify):
1673 Avoid warning about using `delete-backward-char'.
1674
5fd62452
JB
1675 * image.el (image-type-file-name-regexps): Make it variable.
1676 `imagemagick-register-types' modifies it, and the user may want
1677 to add new extensions for known image types.
1678 (imagemagick-register-types): Throw error if not using ImageMagick.
1679
0b4e93f1
LL
16802011-03-22 Leo Liu <sdl.web@gmail.com>
1681
1682 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
1683 located before rcirc-prompt-end-marker.
1684 (rcirc-complete): Error if point is not after rcirc prompt.
1685 Handle the case when table is nil.
9882e214 1686 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 1687
fccee4ab
CY
16882011-03-22 Chong Yidong <cyd@stupidchicken.com>
1689
1690 * custom.el (custom--inhibit-theme-enable): Make it affect only
1691 custom-theme-set-variables and custom-theme-set-faces.
1692 (provide-theme): Ignore custom--inhibit-theme-enable.
1693 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
1694 (custom-enabling-themes): Delete variable.
d86d2721
SM
1695 (enable-theme): Accept only loaded themes as arguments.
1696 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
1697 (custom-enabled-themes): Forbid themes from setting this.
1698 Eliminate use of custom-enabling-themes.
1699 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 1700
af896da6
LL
17012011-03-21 Leo Liu <sdl.web@gmail.com>
1702
1703 * ido.el (ido-read-internal): Add ido-selected to history instead
1704 of user input.
1705
78f64af0
SM
17062011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1707
1708 * subr.el (deferred-action-list, deferred-action-function):
1709 Mark obsolete.
1710
b16ac1ec
LL
17112011-03-21 Leo Liu <sdl.web@gmail.com>
1712
810f7698
LL
1713 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
1714 change on 2011-02-13 (bug#8309).
1715
b16ac1ec
LL
1716 * minibuffer.el (read-file-name-function): Change default value.
1717 (read-file-name--defaults): Rename from read-file-name-defaults.
1718 (read-file-name-default): Rename from read-file-name.
1719 (read-file-name): Call read-file-name-function.
1720
4e05e67e
GM
17212011-03-21 Glenn Morris <rgm@gnu.org>
1722
1723 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
1724 Doc fixes.
1725
4359915b
CY
17262011-03-21 Chong Yidong <cyd@stupidchicken.com>
1727
1728 * cus-theme.el: Add missing provide statement.
1729 (customize-create-theme): Extract theme value correctly.
1730 (custom-theme-visit-theme): Autoload.
1731 (customize-create-theme): Prompt before inserting default faces.
1732
1fe275ee
JB
17332011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
1734
1735 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
1736 units and musical notes.
1737
3ec03f7e
LL
17382011-03-20 Leo <sdl.web@gmail.com>
1739
1740 * ido.el (ido-read-internal): Use completing-read-default.
1741 (ido-completing-read): Fix compatibility with completing-read.
1742
7d476bde
CO
17432011-03-20 Christian Ohler <ohler@gnu.org>
1744
1745 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
1746 (ert-delete-all-tests): Use `called-interactively-p' rather than
1747 `interactive-p'.
1748 (ert--make-xrefs-region): Respect END.
1749
fe0fb33e
CY
17502011-03-19 Chong Yidong <cyd@stupidchicken.com>
1751
ff854b0b
CY
1752 * dired-aux.el (dired-create-directory): Signal an error if the
1753 directory already exists (Bug#8246).
1754
fe0fb33e
CY
1755 * facemenu.el (list-colors-display): Call list-faces-display
1756 inside with-help-window.
1757 (list-colors-print): Use display property to align the final
1758 column, instead of checking window-width.
1759
576bce32
EZ
17602011-03-19 Eli Zaretskii <eliz@gnu.org>
1761
1762 * emerge.el (emerge-metachars): Separate value for ms-dos and
1763 windows-nt systems.
1764 (emerge-protect-metachars): Quote correctly for ms-dos and
1765 windows-nt systems.
1766
8546720e 17672011-03-19 Ralph Schleicher <rs@ralph-schleicher.de> (tiny change)
e6ce307c
RS
1768
1769 * info.el (info-initialize): Replace all uses of `:' with
1770 path-separator for compatibility with non-Unix systems.
1771 Cache quoting of path-separator. (Bug#8258)
1772
b14e3e21 17732011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
1774
1775 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
1776 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
1777 (mouse-avoidance-mode): Fix typos in docstrings.
1778
4525ce3e
CY
17792011-03-19 Chong Yidong <cyd@stupidchicken.com>
1780
1781 * startup.el (package-subdirectory-regexp): Move from package.el.
1782 Omit \\` and \\', and let callers add them.
1783
1784 * emacs-lisp/package.el (package-strip-version)
1785 (package-load-all-descriptors): Add \\` and \\' to
1786 package-subdirectory-regexp before using it.
1787 (package-untar-buffer): New arg DIR; ensure that file untars only
1788 into this expected directory. Remove superfluous delete-region.
1789 (package-unpack): Caller changed.
1790 (package-tar-file-info): Use package-subdirectory-regexp.
1791
a904a09a 17922011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 1793
a904a09a
SM
1794 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
1795 diff-mode-shared-map (bug#8284).
1796 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
1797
17982011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
1799
1800 * calendar/time-date.el (format-seconds): Use assoc instead of
1801 assoc-string, since assoc-string doesn't exist in XEmacs.
1802
171fc304
JB
18032011-03-17 Juanma Barranquero <lekktu@gmail.com>
1804
1805 * custom.el (custom-known-themes): Reflow docstring.
1806 (custom-theme-load-path): Fix typo in docstring.
1807 (load-theme): Fix typo in error message.
1808 (custom-available-themes, custom-variable-theme-value):
1809 Use `let', not `let*'.
1810
d71990a1
JB
18112011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
1812
1813 * calc/README: Mention inclusion of musical notes.
1814
1815 * calc/calc-units.el (calc-lu-quant): Rename from
1816 `calc-logunits-quantity'.
1817 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
1818 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
1819 (calc-db): Rename from `calc-dblevel'.
1820 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
1821 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
1822 (calc-np): Rename from `calc-nplevel'.
1823 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
1824 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
1825 (calc-lu-plus): Rename from `calc-logunits-add'.
1826 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
1827 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
1828 (calc-lu-minus): Rename from `calc-logunits-sub'.
1829 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
1830 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
1831 (calc-lu-times): Rename from `calc-logunits-mul'.
1832 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
1833 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
1834 (calc-lu-divide): Rename from `calc-logunits-div'.
1835 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
1836 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
1837
1838 * calc/calc-ext.el (calc-init-extensions): Update the names of the
1839 functions being autoloaded.
1840
1841 * calc/calc.el (calc-lu-power-reference): Rename from
1842 `calc-logunits-power-reference'.
1843 (calc-lu-field-reference): Rename from
1844 `calc-logunits-field-reference'.
1845
1846 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
1847
40c2934b
SM
18482011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
1849
1850 * minibuffer.el (completion-all-sorted-completions):
1851 Use :completion-cycle-penalty text property if present.
1852
b0911414
KM
18532011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
1854
1855 * allout.el (allout-yank-processing): Adjust for new rebulleting
1856 regime so bullet being yanked is used without prompting the user
1857 for a choice.
1858
8a05b668
JB
18592011-03-16 Juanma Barranquero <lekktu@gmail.com>
1860
1861 * startup.el (command-line): Warn the user that _emacs is deprecated.
1862
5ba5fb81
JB
18632011-03-16 Juanma Barranquero <lekktu@gmail.com>
1864
1865 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
1866 (delphi-verbose, delphi-comment-face, delphi-string-face)
1867 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
1868 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
1869 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
1870 (delphi-new-comment-line, delphi-font-lock-defaults)
1871 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
1872 Fix typos in docstrings.
1873
2dab465b
KM
18742011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
1875
5ba5fb81 1876 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
1877 Invert the roles of character and string values for INSTEAD, so a
1878 string is used for the more common case of a defaulting prompt.
1879
0adf5618
SM
18802011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
1881
1882 * progmodes/ruby-mode.el (ruby-backward-sexp):
1883 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
1884 * play/gamegrid.el (gamegrid-make-face):
1885 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
1886 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
1887 * notifications.el (notifications-notify):
1888 * net/xesam.el (xesam-search-engines):
1889 * net/quickurl.el (quickurl-list-insert):
1890 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
1891
d72700e5
CY
18922011-03-15 Chong Yidong <cyd@stupidchicken.com>
1893
1894 * startup.el (command-line): Update package subdirectory regexp.
1895
49c5410a
SM
18962011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
1897
c6eee9aa
SM
1898 * allout.el (allout-abbreviate-flattened-numbering)
1899 (allout-mode-deactivate-hook): Fix up obsolescence "date".
1900
49c5410a
SM
1901 * subr.el (read-char-choice): Only show the cursor after the prompt,
1902 not after the answer.
1903
047b2bb9
KR
19042011-03-15 Kevin Ryde <user42@zip.com.au>
1905
1906 * help-fns.el (variable-at-point): Skip leading quotes, if any
1907 (bug#8253).
1908
0a57d256
SM
19092011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
1910
1911 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
1912 warning message.
1913
77c992bc
MA
19142011-03-14 Michael Albinus <michael.albinus@gmx.de>
1915
1916 * shell.el (shell): When called interactively, offer to change the
1917 shell file name on remote hosts.
1918
eebc475d
TZ
19192011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
1920
1921 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
1922 integration for LDAP parameters. The host, base, user or binddn,
1923 and secret tokens can be specified in a netrc file, for instance.
1924 This is optional because an `auth-source' parameter must be
1925 specified in the search attributes.
1926
9d05d1ba
JB
19272011-03-13 Juanma Barranquero <lekktu@gmail.com>
1928
1929 * help.el (describe-mode): Link to the mode's definition (bug#8185).
1930
09d9db2c
GM
19312011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
1934 into declaration. Remove redundant and harmful binding.
1935
19362011-03-12 Eli Zaretskii <eliz@gnu.org>
1937
1938 * files.el (file-ownership-preserved-p): Pass `integer' as an
1939 explicit 2nd argument to `file-attributes'. If the file's owner
1940 is the Administrators group on Windows, and the current user is
1941 Administrator, consider that a match.
1942
1943 * server.el (server-ensure-safe-dir): Consider server directory
1944 safe on MS-Windows if its owner is the Administrators group while
1945 the current Emacs user is Administrator. Use `=' to compare
1946 numerical UIDs, since they could be integers or floats.
1947
219bd536
JB
19482011-03-12 Juanma Barranquero <lekktu@gmail.com>
1949
1950 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
1951
f3afd36b
MA
19522011-03-12 Michael Albinus <michael.albinus@gmx.de>
1953
1954 Sync with Tramp 2.2.1.
1955
1956 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
1957
1958 * net/trampver.el: Update release number.
1959
3aaaa6f1
SM
19602011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1961
94642599
SM
1962 * progmodes/compile.el (compilation--previous-directory): Fix up
1963 various nil/dead-marker mismatches (bug#8014).
1964 (compilation-directory-properties, compilation-error-properties):
1965 Don't call it at a position past the one we're about to change.
1966
3aaaa6f1
SM
1967 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
1968 Disable obsolescence warnings in the file that declares it.
1969
14239447
KM
19702011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
1971
099c39a4
JB
1972 * allout-widgets.el (allout-widgets-tally):
1973 Initialize allout-widgets-tally as a hash table rather than nil to
1974 prevent mode-line redisplay warnings. Also, clarify the module
1975 description and fix a comment typo.
14239447 1976
135e287c
JB
19772011-03-11 Juanma Barranquero <lekktu@gmail.com>
1978
1979 * help-fns.el (describe-variable): Don't complete keywords.
1980 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
1981
ffbf300e
CY
19822011-03-10 Chong Yidong <cyd@stupidchicken.com>
1983
ba08b241
CY
1984 * emacs-lisp/package.el (package-version-join): Impose a standard
1985 string representation for pre/alpha/beta version lists.
1986 (package-unpack-single): Standardize the directory name by passing
1987 it through package-version-join.
1988 (package-strip-rcs-id): Accept any version string that does not
1989 signal an error in version-to-list.
ffbf300e 1990
f346fd6b
MA
19912011-03-10 Michael Albinus <michael.albinus@gmx.de>
1992
1993 * simple.el (delete-trailing-whitespace): Return nil for the
1994 benefit of `write-file-functions'.
1995
ccb55d27
GM
19962011-03-10 Glenn Morris <rgm@gnu.org>
1997
5ceaac0c
GM
1998 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
1999
02da65ff
GM
2000 * vc/vc-git.el (vc-git-program): New option.
2001 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
2002 (vc-git--call): Use it.
2003
b2f603cc
GM
2004 * eshell/esh-util.el (eshell-condition-case): Doc fix.
2005
5772caab
GM
2006 * cus-edit.el (Custom-newline): If no button at point, look
2007 for a subgroup button at start-of-line. (Bug#2298)
2008
ccb55d27
GM
2009 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
2010
ec6ecaed
JD
20112011-03-10 Julien Danjou <julien@danjou.info>
2012
2013 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
2014 `cursor-type' is nil.
2015
9d5aa01d
JB
20162011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
2017
2018 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
2019
b6a5875b
KM
20202011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
2021
2022 * allout.el Summary: Change so yank of distinctive-bullet items
2023 preserves the existing header prefix, rebulleting it if necessary,
2024 rather than replacing it. This is necessary for proper operation
2025 of cooperative addons like allout-widgets.
219bd536 2026 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
2027 SOLICIT arg to INSTEAD, and interpret additionally a string value
2028 as alternate bullet to be used, instead of prompting the user for
2029 a bullet character.
2030
ee545c35
MA
20312011-03-09 Michael Albinus <michael.albinus@gmx.de>
2032
d86d2721
SM
2033 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2034 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
2035 `tramp-default-port'.
2036
c47971d7
DD
20372011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2038
2039 * net/rcirc.el (rcirc-handler-001): Remove useless
2040 with-rcirc-process-buffer.
2041 (rcirc-check-auth-status): Swap arguments to string-match.
2042
13522cb4
GM
20432011-03-09 Glenn Morris <rgm@gnu.org>
2044
0be6f4f1
GM
2045 * shell.el (shell-mode):
2046 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
2047
13522cb4
GM
2048 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
2049 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
2050
515de2e3
CY
20512011-03-08 Chong Yidong <cyd@stupidchicken.com>
2052
2053 * emacs-lisp/package.el (package-refresh-contents)
2054 (package-menu-execute): Use condition-case-no-debug.
2055
b511b994
MA
20562011-03-08 Michael Albinus <michael.albinus@gmx.de>
2057
2058 * simple.el (shell-command-to-string): Use `process-file'.
2059
2060 * emacs-lisp/package.el (package-tar-file-info): Handle also
2061 remote files.
2062
d86d2721
SM
2063 * emacs-lisp/package-x.el (package-upload-buffer-internal):
2064 Use `equal' for upload base check.
b511b994 2065
25bbfb31
AM
20662011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
2067
2068 * textmodes/texinfo.el (texinfo-environments):
2069 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
2070
be996521
GM
20712011-03-08 Glenn Morris <rgm@gnu.org>
2072
e9c8529f
GM
2073 * cus-start.el (cursor-in-non-selected-windows):
2074 Fix :set quoting oddness. (Bug#8192)
2075
be996521
GM
2076 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
2077 in some setf expressions. (Bug#2159)
2078
2bb5649e
CY
20792011-03-08 Chong Yidong <cyd@stupidchicken.com>
2080
2081 * custom.el (custom-available-themes): Return themes in
2082 alphabetical order.
2083
33383987 2084See ChangeLog.15 for earlier changes.
e3d51b27
MR
2085
2086;; Local Variables:
2087;; coding: utf-8
e3d51b27
MR
2088;; End:
2089
33383987 2090 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
2091
2092 This file is part of GNU Emacs.
2093
2094 GNU Emacs is free software: you can redistribute it and/or modify
2095 it under the terms of the GNU General Public License as published by
2096 the Free Software Foundation, either version 3 of the License, or
2097 (at your option) any later version.
2098
2099 GNU Emacs is distributed in the hope that it will be useful,
2100 but WITHOUT ANY WARRANTY; without even the implied warranty of
2101 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2102 GNU General Public License for more details.
2103
2104 You should have received a copy of the GNU General Public License
2105 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.