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