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