Remove dead code in configure.in.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
db0406bb 12011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
2
3 * mail/sendmail.el: Require `rfc2047'.
4 (mail-insert-from-field): Do not perform RFC2047 encoding.
5 (mail-encode-header): New function.
6 (sendmail-send-it): Set buffer-file-coding-system of the work
7 buffer to the return value of select-message-coding-system. Call
8 mail-encode-header.
9
10 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
11
db0406bb 122011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce
SN
13
14 * mail/supercite.el (sc-default-cite-frame): Handle
15 sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
16
eb8a5e9b
GM
172011-05-24 Glenn Morris <rgm@gnu.org>
18
f8630703
GM
19 * progmodes/python.el (brm-menu): Declare.
20
8831bbed
GM
21 * emulation/viper.el (viper-set-hooks): Declare.
22
eb8a5e9b
GM
23 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
24 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
25 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
26 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
27 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
28 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
29
a2a25d24
SM
302011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
31
32 Add an :exit-function for completion-at-point.
33
34 * minibuffer.el (completion--done): New fun.
35 (completion--do-completion): Use it. New arg `expect-exact'.
36 (minibuffer-complete, minibuffer-complete-word): Don't output message,
37 since completion--do-completion does it for us now.
38 (minibuffer-force-complete): Use completion--done and
39 completion--replace. Handle sole-completion case with more care.
40 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
41 (completion-extra-properties): New var.
42 (completion-annotate-function): Make obsolete.
43 (minibuffer-completion-help): Adjust accordingly.
44 Use completion-list-insert-choice-function.
45 (completion-at-point, completion-help-at-point):
46 Bind completion-extra-properties.
47 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
48 * simple.el (completion-list-insert-choice-function): New var.
49 (completion-setup-function): Preserve it.
50 (choose-completion): Pay attention to it, shuffle the code a bit.
51 (choose-completion-string): New arg `insert-function'.
52
53 * textmodes/bibtex.el: Convert to lexical binding.
54 (bibtex-mode-map): Use completion-at-point.
55 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
56 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
57 (bibtex-complete): Define as obsolete alias.
58 (bibtex-complete-internal): Remove.
59 (bibtex-format-entry): Remove unused sub-group in regexp.
60 * shell.el (shell--command-completion-data)
61 (shell-environment-variable-completion):
62 * pcomplete.el (pcomplete-completions-at-point):
63 * comint.el (comint--complete-file-name-data): Use :exit-function
64 instead of completion-table-with-terminator so it also works for
65 choose-completion.
66
e44e373d
SM
672011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
68
4f91a816
SM
69 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
70
782fc819
SM
71 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
72 (bug#8710).
73
e44e373d
SM
74 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
75
381987c3
KM
762011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
77
78 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
79 customization variable and implement: If non-nil, auto-fill will
80 be inhibited while on topic's header line.
81
b776bc70
VB
822011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
83
84 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
85 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
86 always have a solution in grid size = 5 cases.
87 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
88 (5x5-solver-output, 5x5-log-buffer): New vars.
89 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
90 Make these variables buffer local to achieve 5x5 multi-session-ness.
91 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
92 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
93 (5x5-solve-suggest): New funs.
94 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
95 randomize a grid so that we ensure that there is always a solution.
96 (5x5-make-random-grid): Allow other movement than flipping.
97
7de88b6e
KR
982011-05-23 Kevin Ryde <user42@zip.com.au>
99
100 * emacs-lisp/advice.el (ad-read-advised-function):
101 Use `function-called-at-point' as the default default, if it has
102 advice and passes PREDICATE.
103
b1ef1257
SM
1042011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
105
bbca48fe
SM
106 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
107 byte-compile-lambda if it's actually a lambda.
108
b1ef1257
SM
109 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
110 Fix function quoting. Use backquote better.
111
92a9cc65
YS
1122011-05-22 Yuanle Song <sylecn@gmail.com>
113
114 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
115 matching (Bug#8516).
116
f0fb8059
JA
1172011-01-22 Jari Aalto <jari.aalto@cante.net>
118
119 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
120 different face (Bug#8178).
121
d5b44c93
CY
1222011-05-22 Chong Yidong <cyd@stupidchicken.com>
123
124 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
125 defface (Bug#8144).
126
79106a44
SM
1272011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
128
9c848d8a
SM
129 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
130 funcall as well (bug#8712). Warn when performing those conversions.
131 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
132
79106a44
SM
133 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
134
88dfa756
GM
1352011-05-22 Glenn Morris <rgm@gnu.org>
136
137 * files.el (hack-local-variables-prop-line): Small simplifications.
138 (hack-local-variables, hack-local-variables-prop-line):
139 If MODE-ONLY, return the mode, rather than just `t'.
140
b7cf2c79
SM
1412011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
142
143 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
144
3f1a8558
GM
1452011-05-21 Glenn Morris <rgm@gnu.org>
146
7e4ccca3
GM
147 * files.el (hack-local-variables-prop-line, hack-local-variables):
148 If only interested in the mode, don't bother doing the other stuff.
149
637d46ca
GM
150 * image-mode.el (image-after-revert-hook):
151 Redraw all frames on which the image is visible. (Bug#8567)
152
973d955b
GM
153 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
154
3f1a8558
GM
155 * wid-edit.el (widget-checklist-match-inline):
156 Fix 2011-04-19 change. (Bug#8649)
157
96479927
SM
1582011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
159
1dcf791f
SM
160 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
161 Also allow singlespace after single-letter capitals followed by a dot.
162
96479927
SM
163 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
164 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
165
35fd0881
N
1662011-05-20 Nix <nix@esperi.org.uk>
167
168 * files.el (basic-save-buffer-2):
169 Fix handling of break-hardlink-on-save with non-existent files.
170
82745640
DD
1712011-05-19 Deniz Dogan <deniz@dogan.se>
172
173 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 174 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 175
4a720484
GM
1762011-05-19 Glenn Morris <rgm@gnu.org>
177
d1f21341
GM
178 * progmodes/f90.el (f90-type-def-re):
179 Handle "type, bind(c)". (Bug#8691)
180
4a720484
GM
181 * emacs-lisp/autoload.el (batch-update-autoloads):
182 Set autoload-excludes by parsing loadup.el rather than Makefiles.
183
2fb0a219
MA
1842011-05-18 Michael Albinus <michael.albinus@gmx.de>
185
186 * net/tramp.el (tramp-process-actions): Set "first-password-request"
187 property for the correct connection in case of multihops.
188
e565dd37
GM
1892011-05-18 Glenn Morris <rgm@gnu.org>
190
c2571358 191 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
192 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
193
e565dd37
GM
194 Rationalize calendar handling of day and month abbrev-arrays.
195 * calendar/calendar.el (calendar-customized-p): New function.
196 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
197 (calendar-day-name-array, calendar-month-name-array): Doc fix.
198 Add :set function.
199 (calendar-abbrev-length, calendar-day-abbrev-array)
200 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
201 (calendar-day-abbrev-array, calendar-month-abbrev-array):
202 Elements may no longer be nil.
203 (calendar-day-name, calendar-month-name):
204 Update for changed nature of abbrev arrays.
205 * calendar/diary-lib.el (diary-name-pattern):
206 Update for changed nature of abbrev arrays.
207 (diary-mark-entries-1): Update calendar-make-alist calls.
208 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
209 * calendar/cal-html.el (cal-html-day-abbrev-array):
210 Simply inherit from calendar-day-abbrev-array.
211
1d99a745
SM
2122011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
213
214 * progmodes/grep.el (grep-mode): Disable default
215 compilation-directory-matcher setting (bug#8684).
216
7c1d9aa0
MA
2172011-05-17 Michael Albinus <michael.albinus@gmx.de>
218
219 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
220 instead of "head" and "tail". There were problems with SunOS 5.9,
221 and it performs better.
222
3952e9d8
GM
2232011-05-17 Glenn Morris <rgm@gnu.org>
224
2dd12e7f
GM
225 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
226
e4157b9c
GM
227 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
228 Replace obsolete function.
229
8e249bbd
GM
230 * shell.el (pcomplete-parse-arguments-function): Declare.
231
3952e9d8
GM
232 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
233 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
234 (appt-check): Doc fixes.
235 (appt-disp-window-function, appt-delete-window-function):
236 Remove needless special case in custom :type.
237 (appt-display-count): Default to 0, not nil.
238 (appt-check): Reset appt-display-count to 0, not nil.
239
c71a0d48 2402011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 241
c71a0d48
GM
242 * progmodes/python.el (python-font-lock-keywords):
243 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 244
31d55be9
SM
2452011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
246
247 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
248
3bfacb2f
KR
2492011-05-16 Kevin Ryde <user42@zip.com.au>
250
251 * info-look.el (makefile-automake-mode): New setups, looking in
252 automake manual, then makefile-mode.
253 (makefile-mode): Remove automake manual, have it just in
254 makefile-automake-mode since there's various things different or
255 not relevant to plain make.
256 (makefile-mode): Remove "other-modes" non-existent automake-mode,
257 believe a hypothetical automake-mode would go to makefile-mode,
258 not the other way around.
259
c8e83751
CY
2602011-05-15 Chong Yidong <cyd@stupidchicken.com>
261
5e9e35cd
CY
262 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
263 hunk-end tags (Bug#8672).
264
c8e83751
CY
265 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
266 vc-annotate-show-diff-revision-at-line (Bug#8671).
267
50b23e5a
GM
2682011-05-14 Glenn Morris <rgm@gnu.org>
269
7210a739
GM
270 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
271 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
272 (change-log-font-lock-keywords): Also handle multiple author lines
273 with leading tabs. (Bug#8644)
7210a739 274
4691905a
GM
275 * calendar/appt.el (appt-check): Rename some local variables.
276 Some simplification/reordering.
277
50b23e5a
GM
278 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
279 (feedmail-sendmail-f-doesnt-sell-me-out)
280 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
281 (feedmail-debug-sit-for, feedmail-queue-express-hook)
282 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
283 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
284 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
285 (feedmail-binmail-gnulinuxish-template):
286 Rename from feedmail-binmail-linuxish-template.
287 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
288 Use insert-buffer-substring.
289
215cda7c
BC
2902011-05-14 Bill Carpenter <bill@carpenter.org>
291
292 * mail/feedmail.el (feedmail-patch-level): Increase.
293 (feedmail-debug): New custom group.
294 (feedmail-confirm-outgoing-timeout)
295 (feedmail-sendmail-f-doesnt-sell-me-out)
296 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
297 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
298 (feedmail-sender-line, feedmail-from-line)
299 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 300 (feedmail-spray-this-address)
215cda7c
BC
301 (feedmail-spray-address-fiddle-plex-list)
302 (feedmail-queue-use-send-time-for-date)
303 (feedmail-queue-use-send-time-for-message-id)
304 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
305 (feedmail-buffer-eating-function):
306 Doc fixes.
307 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
308 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
309 (feedmail-message-action-scroll-down): New functions.
310 (feedmail-queue-directory, feedmail-queue-draft-directory):
311 Use expand-file-name.
312 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
313 Remove C-v help entry.
314 (feedmail-queue-buffer-file-name): New variable.
315 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
316 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
317 (feedmail-message-action-send-strong, feedmail-message-action-edit)
318 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
319 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
320 (feedmail-message-action-toggle-spray)
321 (feedmail-run-the-queue-no-prompts)
322 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
323 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
324 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
325 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
326 (feedmail-envelope-deducer, feedmail-fiddle-from)
327 (feedmail-fiddle-sender, feedmail-default-date-generator)
328 (feedmail-fiddle-date, feedmail-fiddle-message-id)
329 (feedmail-fiddle-spray-address)
330 (feedmail-fiddle-list-of-spray-fiddle-plexes)
331 (feedmail-fiddle-list-of-fiddle-plexes)
332 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
333 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
334 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
335 Change default. Doc fix.
336 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
337 (feedmail-binmail-linuxish-template): New constant.
338 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
339 Respect feedmail-sendmail-f-doesnt-sell-me-out.
340 (feedmail-send-it): Add debug call.
341 Use feedmail-queue-buffer-file-name, and
342 feedmail-send-it-immediately-wrapper.
343 (feedmail-message-action-send): Add debug call.
344 Use feedmail-send-it-immediately-wrapper.
345 (feedmail-queue-express-to-queue): Add debug call.
346 Run feedmail-queue-express-hook.
347 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
348 (feedmail-message-action-help-blat):
349 Rename from feedmail-queue-send-edit-prompt-help-first.
350 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
351 Check line-endings. Handle errors better.
352 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
353 Doc fix. Add debug call.
354 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
355 Use feedmail-queue-send-edit-prompt-inner.
356 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
357 (feedmail-queue-send-edit-prompt-inner): New function, extracted
358 from feedmail-queue-send-edit-prompt.
359 (feedmail-queue-send-edit-prompt-help)
360 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
361 (feedmail-tidy-up-slug): Add debug call.
362 Respect feedmail-queue-slug-suspect-regexp.
363 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
364 (feedmail-dump-message-to-queue): Add debug call.
365 Expand queue-directory.
366 (feedmail-dump-message-to-queue): Change message slightly.
367 Use feedmail-say-chatter.
368 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
369 (feedmail-send-it-immediately-wrapper): New function.
370 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
371 Insert empty string rather than newline. Handle full-frame case.
372 Use catch/throw. Use feedmail-say-chatter.
373 (feedmail-fiddle-from): Try mail-host-address.
374 (feedmail-default-message-id-generator): Doc fix.
375 Bind system-time-locale. Handle missing end.
376 (feedmail-fiddle-x-mailer): Add debug call.
377 Handle feedmail-x-mailer-line being nil.
378 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
379 Add debug call. Use buffer-substring-no-properties.
380 (feedmail-say-debug, feedmail-say-chatter): New functions.
381 (feedmail-find-eoh): Give an explicit error.
382
42c7e61e
UJ
3832011-05-13 Ulf Jasper <ulf.jasper@web.de>
384
c2571358 385 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 386 family from helvetica to sans.
c2571358 387 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
388 etc/images/newsticker.
389
c2571358 390 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
391 family from helvetica to sans.
392
393 * net/newst-plainview.el (newsticker-new-item-face)
394 (newsticker-old-item-face, newsticker-immortal-item-face)
395 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 396 (newsticker-statistics-face): Change default family from
42c7e61e 397 helvetica to sans.
c2571358 398 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
399 etc/images/newsticker.
400
401 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
402 (newsticker--process-auto-mark-filter-match): : Tell user about
403 auto-marking.
404
8497a297
DV
4052011-05-13 Didier Verna <didier@xemacs.org>
406
407 Common Lisp indentation improvements on defmethod and lambda-lists.
408 * cl-indent.el: Advertise the changes and remove obsolete TODO entries.
409 (lisp-lambda-list-keyword-parameter-indentation)
410 (lisp-lambda-list-keyword-parameter-alignment)
411 (lisp-lambda-list-keyword-alignment): New customizable user options.
412 (lisp-indent-defun-method): Improve docstring.
413 (extended-loop-p): Fix comment.
414 (lisp-indent-lambda-list-keywords-regexp): New variable.
415 (lisp-indent-lambda-list): New function.
416 (lisp-indent-259): Use it.
417 (lisp-indent-defmethod): Support for more than one
418 method qualifier and properly indent methods lambda-lists.
419 (defgeneric): Provide a missing common-lisp-indent-function property.
420
f278f87f
SM
4212011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
422
423 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
424 bounds for the empty string (bug#8667).
425
5233edd7
GM
4262011-05-13 Glenn Morris <rgm@gnu.org>
427
5237a44f
GM
428 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
429
8340026c 430 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 431 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 432
5233edd7 433 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 434 (appt-time-msg-list): Doc fix.
a5464014 435 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 436
92d10796
AS
4372011-05-12 Andreas Schwab <schwab@linux-m68k.org>
438
439 * progmodes/ld-script.el (ld-script-keywords)
440 (ld-script-builtins): Update keywords list.
441
914a0ae1
SM
4422011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
443
c89be45f
SM
444 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
445
914a0ae1
SM
446 * shell.el (shell-completion-vars): New function.
447 (shell-mode):
448 * simple.el (read-shell-command): Use it.
449 (blink-matching-open): No need for " [...]" in minibuffer-message.
450
98dc3df3
GM
4512011-05-12 Glenn Morris <rgm@gnu.org>
452
453 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
454 (appt-check): Simplify.
455
d2fc7e3d 4562011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21
EZ
457
458 * smerge-mode.el (smerge-resolve): Use null-device rather than a
459 literal "/dev/null".
460
d2fc7e3d 4612011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
462
463 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
464 Fix typo.
465
d2fc7e3d 4662011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 467
3f254caa
SM
468 * progmodes/which-func.el (which-function):
469 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
470 which might not be defined (Bug#8260).
471
d45885f7
GM
4722011-05-12 Glenn Morris <rgm@gnu.org>
473
474 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
475 Let byte-compile-initial-macro-environment always take precedence.
476
488086f4
SM
4772011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
478
479 * net/rcirc.el: Add support for SSL/TLS connections.
480 (rcirc-server-alist): New field `encryption'.
481 (rcirc): Check `encryption' settings.
482 (rcirc-connect): New arg `encryption'. Use open-network-stream.
483 Merge make-local-variable into `set'.
484 (rcirc--connection-open-p): New function.
485 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
486 the process is not a network process (e.g. running gnutls-cli).
487 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
488 Make rcirc-(en|de)code-coding-system local here.
489 (rcirc-mode): Merge make-local-variable into `set'.
490 (rcirc-parent-buffer): Make permanent buffer-local.
491 (rcirc-multiline-minor-mode): Don't do it here.
492 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
493 there's no server buffer.
494
7d3b9d44
GM
4952011-05-11 Glenn Morris <rgm@gnu.org>
496
f64049c6
GM
497 * newcomment.el (comment-kill): Prefix "unused" local.
498
93c9df73
GM
499 * term/w32console.el (get-screen-color): Declare.
500
7d3b9d44
GM
501 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
502 Handle symbol elements of byte-compile-initial-macro-environment.
503
9e2dd53f
LL
5042011-05-10 Leo Liu <sdl.web@gmail.com>
505
488086f4
SM
506 * bookmark.el (bookmark-bmenu-mode-map):
507 Bind bookmark-bmenu-search to `/'.
8b340240 508
9e2dd53f 509 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
510 (footnote-unicode-string, footnote-unicode-regexp): New variable.
511 (Footnote-unicode): New function.
512 (footnote-style-alist): Add unicode style to the list.
513 (footnote-style): Doc fix.
9e2dd53f 514
79b70037
GM
5152011-05-10 Jim Meyering <meyering@redhat.com>
516
517 Fix doubled-word typos.
518 * international/quail.el (quail-insert-kbd-layout): and and -> and
519 * kermit.el: and and -> and
520 * net/ldap.el (ldap-search-internal): to to -> to
521 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
522 * progmodes/js.el (js-mode): and and -> and
523 * textmodes/artist.el (artist-move-to-xy): at at -> at
524 (artist-draw-region-trim-line-endings): if if -> if
525 And Safetyc -> Safety.
526 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
527
b8f82dc1 5282011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 529 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
530
531 * files.el (hack-one-local-variable-eval-safep):
532 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
533
4f99f44b
GM
5342011-05-10 Glenn Morris <rgm@gnu.org>
535
536 * calendar/diary-lib.el (diary-list-entries-hook)
537 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
538 (diary-nongregorian-marking-hook, diary-list-entries)
539 (diary-include-other-diary-files, diary-mark-entries)
540 (diary-mark-included-diary-files): Doc fixes.
541
84f29e6b
JB
5422011-05-09 Juanma Barranquero <lekktu@gmail.com>
543
544 * misc.el: Require tabulated-list.el during compilation.
545
9bedd73a
CY
5462011-05-09 Chong Yidong <cyd@stupidchicken.com>
547
488086f4
SM
548 * progmodes/compile.el (compilation-start):
549 Run compilation-filter-hook for the async case too.
9bedd73a
CY
550 (compilation-filter-hook): Doc fix.
551
797c735c
DD
5522011-05-09 Deniz Dogan <deniz@dogan.se>
553
554 * wdired.el: Remove outdated installation comment. Fix usage
555 comment.
556
5f4b1dfe
JB
5572011-05-09 Juanma Barranquero <lekktu@gmail.com>
558
559 * misc.el: Implement new command `list-dynamic-libraries'.
560 (list-dynamic-libraries--loaded-only-p): New variable.
561 (list-dynamic-libraries--refresh): New function.
562 (list-dynamic-libraries): New command.
563
4c44026c
CY
5642011-05-09 Chong Yidong <cyd@stupidchicken.com>
565
488086f4
SM
566 * progmodes/compile.el (compilation-error-regexp-alist-alist):
567 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
568 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
569 higher priority to avoid clobbering by gnu.
570
027f966d
CY
5712011-05-08 Chong Yidong <cyd@stupidchicken.com>
572
573 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
574 if the face has existing theme settings (Bug#8454).
575
085f5d7d
CY
5762011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
577
488086f4
SM
578 * progmodes/perl-mode.el (perl-imenu-generic-expression):
579 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 580
2a86a00c
RS
581 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
582 special file names `.' and `..' (Bug#8259).
583
d9c54a06
CY
5842011-05-08 Chong Yidong <cyd@stupidchicken.com>
585
488086f4
SM
586 * progmodes/grep.el (grep-mode-font-lock-keywords):
587 Remove buffer-changing entries.
d9c54a06
CY
588 (grep-filter): New function.
589 (grep-mode): Add it to compilation-filter-hook.
590
591 * progmodes/compile.el (compilation-filter-hook)
592 (compilation-filter-start): New defvars.
593 (compilation-filter): Call compilation-filter-hook prior to
594 updating the process mark.
595
c4662635
SM
5962011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
597
598 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
599
b0512a1d
EZ
6002011-05-07 Eli Zaretskii <eliz@gnu.org>
601
605c9376
EZ
602 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
603 mailclient-send-it even if window-system is nil. (Bug#8595)
604
c4662635
SM
605 * term/w32console.el (terminal-init-w32console):
606 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
607 background-mode. (Bug#8597)
608
d1dc2cc2
SM
6092011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
610
611 Make bytecomp.el understand that defmethod defines funs (bug#8631).
612 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
613 New functions.
614 (defgeneric, eieio--defmethod): Use them.
615 (eieio-defgeneric): Remove.
616 (defmethod): Call defgeneric in a way visible to the byte-compiler.
617
915d1300
GM
6182011-05-07 Glenn Morris <rgm@gnu.org>
619
a3961c3e
GM
620 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
621 Use let rather than let*.
622 (timeclock-find-discrep): Remove unused local.
623
314347b9
GM
624 * calendar/diary-lib.el (diary-comment-start): Doc fix.
625
915d1300
GM
626 * calendar/appt.el (appt-time-msg-list): Doc fix.
627
275b59b0
NF
6282011-05-06 Noah Friedman <friedman@splode.com>
629
630 * apropos.el (apropos-print-doc): Only use
631 emacs-lisp-docstring-fill-column when it is bound to an integer,
632 per that variable's documentation.
633
6c19f744
SM
6342011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
635
636 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 637 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 638
60f884b2
GM
6392011-05-06 Glenn Morris <rgm@gnu.org>
640
5006e634
GM
641 * calendar/appt.el (appt-message-warning-time): Doc fix.
642 (appt-warning-time-regexp): New option.
643 (appt-make-list): Respect appt-message-warning-time.
644
548d0a63
GM
645 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
646 New options.
647 (diary-add-to-list): Strip comments from the displayed string.
648 (diary-mode): Set comment-start and comment-end.
649
60f884b2
GM
650 * vc/diff-mode.el (smerge-refine-subst): Declare.
651 (diff-refine-hunk): Don't require smerge-mode when compiling.
652
989681bb
JB
6532011-05-06 Juanma Barranquero <lekktu@gmail.com>
654
655 * simple.el (list-processes): Return nil as the docstring says.
656
a6bc05e1
MA
6572011-05-05 Michael Albinus <michael.albinus@gmx.de>
658
659 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
660 to "".
661 (ange-ftp-write-region, ange-ftp-insert-file-contents)
662 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
663 determining of binary transfer. (Bug#7383)
664
23c22e9a
MA
6652011-05-05 Michael Albinus <michael.albinus@gmx.de>
666
c4662635
SM
667 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
668 Fix port computation bug. (Bug#8618)
23c22e9a 669
0bff894f
GM
6702011-05-05 Glenn Morris <rgm@gnu.org>
671
b8296902
GM
672 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
673
1f522ce8
GM
674 * simple.el (shell-dynamic-complete-functions)
675 (comint-dynamic-complete-functions): Declare.
676
cf5bee67
GM
677 * net/network-stream.el (gnutls-negotiate):
678 * simple.el (tabulated-list-print): Fix declarations.
679
680 * progmodes/gud.el (syntax-symbol, syntax-point):
681 Remove unnecessary and incorrect declarations.
682
0bff894f
GM
683 * emacs-lisp/check-declare.el (check-declare-scan):
684 Handle byte-compile-initial-macro-environment in bytecomp.el
685
9869b3ae
SM
6862011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
687
688 Fix earlier half-done eieio-defmethod change (bug#8338).
689 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
690 Streamline and change calling convention.
691 (defmethod): Adjust accordingly and simplify.
692 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
693 new eieio--defmethod.
694 (slot-boundp): Minor CSE simplification.
695
9c1d5ac5
MZ
6962011-05-05 Milan Zamazal <pdm@zamazal.org>
697
698 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
699 (glasses-make-readable): Use glasses-separate-capital-groups.
700
455c834e
JB
7012011-05-05 Juanma Barranquero <lekktu@gmail.com>
702
703 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
704 (warning-series): Doc fix.
705 (display-warning): Don't try to create the buffer if we just found it.
706
9ed7c8cb
CY
7072011-05-04 Chong Yidong <cyd@stupidchicken.com>
708
709 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
710 (autoload-find-generated-file): New function.
711 (generate-file-autoloads): Bind generated-autoload-file to
712 buffer-file-name.
9869b3ae
SM
713 (update-file-autoloads, update-directory-autoloads):
714 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
715 output file (Bug#7989).
716 (batch-update-autoloads): Doc fix.
717
0898ca10
JB
7182011-05-04 Juanma Barranquero <lekktu@gmail.com>
719
720 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
721
31dfb76c
GM
7222011-05-04 Glenn Morris <rgm@gnu.org>
723
f330b642
GM
724 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
725 function, so it follows changes in calendar-date-style.
726 (diary-fancy-date-matcher): New function.
727 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
728 (diary-fancy-font-lock-fontify-region-function):
729 Use diary-fancy-date-pattern as a function.
730
31dfb76c
GM
731 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
732 non-numbers for `year' etc pseudo-variables. (Bug#8583)
733
48e79d6a
TZ
7342011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
735
736 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
737 instead of positional arguments. Allow :keylist and :crlfiles
738 arguments.
739 (open-gnutls-stream): Call it.
740
741 * net/network-stream.el (network-stream-open-starttls): Adjust to
742 call `gnutls-negotiate' with :process and :hostname arguments.
743
dd5a5ee0
SM
7442011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
745
ef80fc09
SM
746 * minibuffer.el (completion--message): New function.
747 (completion--do-completion, minibuffer-complete)
748 (minibuffer-force-complete, minibuffer-complete-word): Use it.
749 (completion--do-completion): Don't ignore completion-auto-help when in
750 icomplete-mode.
751
dd5a5ee0
SM
752 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
753 internal encoding (e.g. tibetan zero is not whitespace).
754 (global-whitespace-mode): Prefer save-current-buffer.
755 (whitespace-trailing-regexp): Remove useless save-match-data.
756 (whitespace-empty-at-bob-regexp): Minor simplification.
757
b7d22a83
CY
7582011-05-03 Chong Yidong <cyd@stupidchicken.com>
759
760 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
761
5192af46
AM
7622011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
763
764 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 765 Use `concat' to create string for insertion.
5192af46 766
5767d190
SM
7672011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
768
769 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
770 Avoid open-line which runs post-self-insert-hook.
771 (bibtex-fill-entry): Remove unused `end' var.
772
bf242939
AM
7732011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
774
5767d190
SM
775 * textmodes/ispell.el (ispell-add-per-file-word-list):
776 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 777
25666126
LL
7782011-05-03 Leo Liu <sdl.web@gmail.com>
779
780 * isearch.el (isearch-yank-pop): New command.
5767d190 781 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
782 (isearch-forward): Mention it.
783
52d3c2d0
SM
7842011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
785
1bcace58
SM
786 * simple.el (minibuffer-complete-shell-command): Remove.
787 (minibuffer-local-shell-command-map): Use completion-at-point.
788 (read-shell-command): Setup completion vars here instead.
789 (read-expression-map): Bind TAB to symbol completion.
790
52d3c2d0
SM
791 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
792 error directly rather via storing it into `results'.
793
35813471
LL
7942011-05-02 Leo Liu <sdl.web@gmail.com>
795
796 * vc/diff.el: Fix description.
797
e793a940
LMI
7982011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
799
800 * server.el (server-eval-at): New function.
801
8de66e05
LMI
8022011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
803
804 * net/network-stream.el (open-network-stream): Take a :nowait
805 parameter and pass it on to `make-network-process'.
806 (network-stream-open-plain): Ditto.
807
dcb79f20
AS
8082011-04-30 Andreas Schwab <schwab@linux-m68k.org>
809
810 * faces.el (face-spec-set-match-display): Don't match toolkit
811 options on terminal frames.
812
14a7fbd8
SM
8132011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
814
7eabc1be
SM
815 * progmodes/pascal.el: Use lexical binding.
816 (pascal-mode-map): Remove author preferences.
817
14a7fbd8
SM
818 * pcomplete.el (pcomplete-std-complete): Don't abuse
819 completion-at-point.
820
50f84510
JB
8212011-04-28 Juanma Barranquero <lekktu@gmail.com>
822
6e087a44
JB
823 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
824 removing code that has been dead since 1991 or so.
825
50f84510
JB
826 * startup.el (command-line): When warning about "_emacs", use a
827 delayed warning to allow the user to filter it out.
828
0ba690bd
DD
8292011-04-28 Deniz Dogan <deniz@dogan.se>
830
831 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
832 user has not joined.
833
08abfaad
SM
8342011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
835
836 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
837 aren't any completions at point.
838
638f053a
JB
8392011-04-28 Juanma Barranquero <lekktu@gmail.com>
840
841 * subr.el (display-delayed-warnings): New function.
842 (delayed-warnings-hook): New variable.
843
8fff8daa
SM
8442011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
845
08abfaad
SM
846 * minibuffer.el (completion-at-point, completion-help-at-point):
847 Don't presume that a given completion-at-point-function will always
848 use the same calling convention.
849
8fff8daa
SM
850 * pcomplete.el (pcomplete-completions-at-point):
851 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
852 pcomplete-seen is non-nil.
853 (pcomplete-comint-setup): Also recognize the new comint/shell
854 completion functions.
855 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
856 pcomplete-seen is non-nil.
857
841a1577 8582011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 859
841a1577 860 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 861 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 862 the first character in the entry. This allows for code to add its
211ec907
UJ
863 own uid to the entry.
864 (icalendar--convert-float-to-ical): Add export of
865 `diary-float'-entries save for those with the optional DAY
866 argument.
867
2a782793
DC
8682011-04-27 Daniel Colascione <dan.colascione@gmail.com>
869
870 * subr.el (shell-quote-argument): Use alternate escaping strategy
871 when we spot a variable reference in a string.
872
0438ce91
DC
8732011-04-26 Daniel Colascione <dan.colascione@gmail.com>
874
875 * cus-start.el (all): Define customization for debug-on-event.
876
841a1577 8772011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
878
879 * subr.el (shell-quote-argument): Escape correctly under Windows.
880
d090ed6c
SM
8812011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
882
883 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
884
bfd31217
MA
8852011-04-25 Michael Albinus <michael.albinus@gmx.de>
886
d090ed6c
SM
887 * net/tramp.el (tramp-process-actions): Add POS argument.
888 Delete region between POS and (pos).
bfd31217 889
d090ed6c
SM
890 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
891 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
892 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
893
894 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
895 position in `tramp-process-actions' call.
896
897 * net/trampver.el: Update release number.
898
e92f3bd3
SM
8992011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
900
850256b5
SM
901 * custom.el (defcustom): Obey lexical-binding.
902
e92f3bd3
SM
903 Fix octave-inf completion problems reported by Alexander Klimov.
904 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
905 Inherit from octave-mode-syntax-table.
906 (inferior-octave-mode): Set info-lookup-mode.
907 (inferior-octave-completion-at-point): New function.
908 (inferior-octave-complete): Use it and completion-in-region.
909 (inferior-octave-dynamic-complete-functions): Use it as well, and use
910 comint-filename-completion.
911 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
912 symbol elements which shouldn't be word elements.
913 (octave-font-lock-keywords, octave-beginning-of-defun)
914 (octave-function-header-regexp): Adjust regexps accordingly.
915 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
916
cd22b309
JB
9172011-04-25 Juanma Barranquero <lekktu@gmail.com>
918
919 * net/gnutls.el (gnutls-errorp): Declare before first use.
920
8b492194
TZ
9212011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
922
923 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
924 verify-error, and verify-hostname-error parameters. Check whether
cd22b309
JB
925 default trustfile exists before going to use it. Add missing
926 argument to gnutls-message-maybe call. Return return value.
8b492194
TZ
927 Reported by Claudio Bley <claudio.bley@gmail.com>.
928 (open-gnutls-stream): Add usage example.
929
930 * net/network-stream.el (network-stream-open-starttls): Give host
931 parameter to `gnutls-negotiate'.
932 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 933 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 934
841a1577 9352011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 936
cd22b309
JB
937 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
938 Use correct match group (bug#8438).
05842630 939
3ba7869c
CY
9402011-04-24 Chong Yidong <cyd@stupidchicken.com>
941
512e3ae1
CY
942 * emacs-lisp/package.el (package-built-in-p): Fix typo.
943 (package-menu--generate): New arg specifying packages to show.
944 (package-menu-refresh, package-menu-execute, list-packages):
945 Callers changed.
946 (package-show-package-list): New function, replacing deleted
947 package--list-packages (renamed because it is non-internal).
948
949 * finder.el (finder-list-matches): Use package-show-package-list
950 instead of deleted package--list-packages.
951
e92f3bd3
SM
952 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
953 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
954 (vc-annotate-mode-map): Bind it to RET.
955
7031be6d
UR
9562011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
957
958 * progmodes/etags.el (next-file): Don't use set-buffer to change
959 buffers (Bug#8478).
960
4ef177aa
CY
9612011-04-24 Chong Yidong <cyd@stupidchicken.com>
962
c8d173eb
CY
963 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
964
4ef177aa
CY
965 * apropos.el (apropos-label-face): Avoid variable-pitch face.
966 (apropos-accumulator): Doc fix.
967 (apropos-function, apropos-macro, apropos-command)
968 (apropos-variable, apropos-face, apropos-group, apropos-widget)
969 (apropos-plist): Add face property.
970 (apropos-symbols-internal): Fix indentation.
971 (apropos-print): Simplify help, and recognize apropos-multi-type.
972 (apropos-print-doc): Use button-type-get to extract the button's
973 face property. Fill docstring (Bug#8352).
974
4ffd0d6b 9752011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
976
977 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
978
c6c32125 979 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 980 (mpuz-mode-map): Use mapc.
c6c32125
JB
981 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
982 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
983 Fix typos in docstrings.
984
58d468b4
JB
985 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
986 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
987
6470c3c6
JB
988 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
989
4ffd0d6b 9902011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
991
992 * minibuffer.el (completion--do-completion): Avoid the "Next char
993 not unique" prompt if icomplete-mode is enabled (Bug#5849).
994
3ad8bad0
CY
995 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
996 mouse-2 into unread-command-events, it is interpreted correctly.
997
71d73c9c 998 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 999 (image-toggle-display): Doc fix.
71d73c9c 1000
841a1577 10012011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 1002
4ffd0d6b
GM
1003 * textmodes/page.el (what-page): Use line-number-at-pos to
1004 calculate line number (Bug#6825).
6e1dbaa9 1005
c2fb1b60
JB
10062011-04-22 Juanma Barranquero <lekktu@gmail.com>
1007
1008 * eshell/esh-mode.el (find-tag-interactive): Declare function.
1009 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
1010 Pass argument NO-DEFAULT to `find-tag-interactive'.
1011
e02f48d7
JB
10122011-04-22 Juanma Barranquero <lekktu@gmail.com>
1013
1014 Lexical-binding cleanup.
1015
1016 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
1017 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
1018 * progmodes/ada-prj.el (ada-prj-initialize-values)
1019 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
1020 (ada-prj-show-value):
1021 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
1022 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
1023 (antlr-invalidate-context-cache, antlr-options-menu-filter)
1024 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
1025 * progmodes/bug-reference.el (bug-reference-push-button):
1026 * progmodes/fortran.el (fortran-line-length):
1027 * progmodes/glasses.el (glasses-change):
1028 * progmodes/octave-mod.el (octave-fill-paragraph):
1029 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
1030 (python-pdbtrack-grub-for-buffer, python-sentinel):
1031 * progmodes/sql.el (sql-save-connection):
1032 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
1033 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
1034 Mark unused parameters.
1035
1036 * progmodes/compile.el (compilation--flush-directory-cache)
1037 (compilation--flush-parse, compile-internal): Mark unused parameters.
1038 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
1039 (compilation-next-error-function): Remove unused variable `timestamp'.
1040
1041 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
1042 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
1043
1044 * progmodes/dcl-mode.el (dcl-end-of-command):
1045 Remove unused variable `start'.
1046 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
1047 (dcl-option-value-basic, dcl-option-value-offset)
1048 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
1049 Mark unused parameters.
1050 (dcl-save-local-variable): Remove unused variable `val'.
1051 (mode): Declare.
1052
1053 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
1054 Mark unused parameters.
1055 (delphi-ignore-changes): Move before first use.
1056 (delphi-charset-token-at): Remove unused variable `start'.
1057 (delphi-else-start): Remove unused variable `if-count'.
1058 (delphi-comment-block-start, delphi-comment-block-end):
1059 Remove unused variable `kind'.
1060 (delphi-indent-line): Remove unused variable `new-point'.
1061
1062 * progmodes/ebrowse.el (ebrowse-files-list)
1063 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
1064 Mark unused parameters. Don't quote `lambda'.
1065 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
1066 Don't quote `lambda'.
1067 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
1068 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
1069 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
1070 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
1071 Use `ignore-errors'.
1072 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
1073 (ebrowse-view/find-file-and-search-pattern)
1074 (ebrowse-view/find-member-declaration/definition):
1075 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
1076 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
1077 Rename parameter PREFIX-ARG to PREFIX.
1078 (ebrowse-tags-read-name): Remove unused variables `start' and
1079 `member-info'.
1080 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
1081 to `tags-file'.
1082
1083 * progmodes/etags.el (local-find-tag-hook): Declare.
1084 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
1085 Mark unused parameters.
1086
1087 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
1088 (executable-interpret): Mark unused parameter.
1089
1090 * progmodes/flymake.el (flymake-process-sentinel)
1091 (flymake-after-change-function)
1092 (flymake-create-temp-with-folder-structure)
1093 (flymake-get-include-dirs-dot): Mark unused parameters.
1094 (flymake-safe-delete-directory): Remove unused variable `err'.
1095
1096 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
1097 (speedbar-timer-fn, speedbar-line-text)
1098 (speedbar-change-expand-button-char, speedbar-delete-subblock)
1099 (speedbar-center-buffer-smartly): Declare functions.
1100 (gdb-find-watch-expression): Remove unused variable `array'.
1101 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
1102 (gdb-starting): Mark unused parameters.
1103 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
1104 (gdb-table-string): Remove unused variable `res'.
1105 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
1106 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
1107 (gdb-display-buffer): Remove unused variable `cur-size'.
1108
1109 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
1110 allow lexical-binding compilation.
1111 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
1112 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
1113 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
1114 Mark unused parameters.
1115 (gud-gdb-marker-filter): Remove unused variable `match'.
1116 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
1117 lambda expressions and funcall them, instead of using `fset'.
1118
1119 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
1120 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
1121
1122 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
1123 variable `header-beg'; use `let'.
1124
1125 * progmodes/icon.el (indent-icon-exp): Remove unused variables
1126 `restart', `last-sexp' and `at-do'.
1127
1128 * progmodes/js.el (js--debug): Mark unused parameter.
1129 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
1130 (js--splice-into-items): Remove unused variable `item'.
1131 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
1132
1133 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
1134 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
1135 (makefile-complete): Remove unused variable `try'.
1136 (makefile-fill-paragraph, makefile-match-function-end):
1137 Mark unused parameters.
1138
1139 * progmodes/octave-inf.el (inferior-octave-complete):
1140 Remove unused variable `proc'.
1141 (inferior-octave-output-digest): Mark unused parameter.
1142
1143 * progmodes/perl-mode.el (perl-calculate-indent):
1144 Remove unused variable `err'.
1145
1146 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
1147 (prolog-indent-line): Mark unused parameters.
1148 (prolog-indent-line): Remove unused variable `beg'.
1149
1150 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
1151 (reporter-dont-compact-list): Declare.
1152
1153 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
1154 Remove unused variable `char'.
1155 (sh-debug): Mark unused parameter.
1156 (sh-get-indent-info): Remove unused variable `start'.
1157 (sh-calculate-indent): Remove unused variable `var'.
1158
1159 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
1160 (simula-electric-keyword): Remove unused variable `null'.
1161 (simula-search-backward, simula-search-forward): Remove unused
1162 variables `begin' and `end'.
1163
1164 * progmodes/vera-mode.el (vera-guess-basic-syntax):
1165 Remove unused variable `pos'.
1166 (vera-electric-tab, vera-comment-uncomment-region):
1167 Mark unused parameters.
1168 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
1169
7ede3b65
CY
11702011-04-22 Chong Yidong <cyd@stupidchicken.com>
1171
1172 * emacs-lisp/package.el (package--builtins, package-alist)
1173 (package-load-descriptor, package-built-in-p, package-activate)
1174 (define-package, package-installed-p)
1175 (package-compute-transaction, package-buffer-info)
1176 (package--push): Doc fix. Distinguish more clearly between
1177 version strings and version lists.
1178
121656e9
JB
11792011-04-21 Juanma Barranquero <lekktu@gmail.com>
1180
1181 Lexical-binding cleanup.
1182
1183 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
1184 (5x5-make-mutate-best):
1185 * play/fortune.el (fortune-in-buffer):
1186 * play/gomoku.el (gomoku-init-display):
1187 * play/solitaire.el (solitaire, solitaire-do-check):
1188 * play/tetris.el (tetris-default-update-speed-function):
1189 Mark unused parameters.
1190
1191 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
1192 (bubbles--shift): Remove unused variable `char-org'.
1193 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
1194 (bubbles--show-images): Remove unused variable `char'.
1195
1196 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
1197 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
1198 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
1199 (decipher-analyze-buffer): Use ?\s.
1200 (decipher-make-checkpoint): Remove unused variable `mapping'.
1201
1202 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
1203
1204 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1205 Remove unused variable `result'; use `let'.
1206
1207 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
1208 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
1209 (gametree-children-shown-p, gametree-compute-reduced-score):
1210 Use `ignore-errors'.
1211
1212 * play/handwrite.el (ps-lpr-switches): Declare.
1213 (handwrite): Remove unused variables `pmin' and `lastp'.
1214
1215 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
1216
1217 * play/landmark.el (landmark-init-display)
1218 (landmark-update-naught-weights): Mark unused parameters.
1219 (landmark-y): Remove unused variable `noise'. Simplify.
1220 (landmark-human-plays): Remove unused variable `score'.
1221
1222 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
1223 (mpuz-try-proposal): Remove unused variable `game'.
1224
1225 * play/zone.el (life-patterns): Declare.
1226
80f499c7
JB
12272011-04-20 Juanma Barranquero <lekktu@gmail.com>
1228
1229 * vc/vc.el (ediff-vc-internal): Declare function.
1230
024ff170
SM
12312011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1232
c0a193ea
SM
1233 * shell.el: Use lexical-binding and std completion UI.
1234 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
1235 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
1236 comint-preoutput-filter-functions rather than on
1237 comint-output-filter-functions.
1238 (shell-command-completion, shell--command-completion-data)
1239 (shell-filename-completion, shell-environment-variable-completion)
1240 (shell-c-a-p-replace-by-expanded-directory): New functions.
1241 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
1242 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
1243 (shell-dynamic-complete-environment-variable): Use them.
1244 (shell-dynamic-complete-as-environment-variable)
1245 (shell-dynamic-complete-as-command): Remove.
1246 (shell-match-partial-variable): Match past point.
1247 * comint.el: Clean up use of completion-at-point-functions.
1248 (comint-completion-at-point): New function.
1249 (comint-mode): Use it completion-at-point-functions.
1250 (comint-dynamic-complete): Make it obsolete.
1251 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
1252 (comint-c-a-p-replace-by-expanded-history): New function.
1253 (comint-dynamic-complete-functions)
1254 (comint-replace-by-expanded-history): Use it.
1255 * minibuffer.el (completion-table-with-terminator): Allow dynamic
1256 termination strings. Try harder to avoid second try-completion.
1257 (completion-in-region-mode-map): Disable bindings that don't work yet.
1258
2dbaa080
SM
1259 * comint.el: Use lexical-binding. Require CL.
1260 (comint-dynamic-complete-functions): Use comint-filename-completion.
1261 (comint-completion-addsuffix): Tweak custom type.
1262 (comint-filename-completion, comint--common-suffix)
1263 (comint--common-quoted-suffix, comint--table-subvert)
1264 (comint--complete-file-name-data): New functions.
1265 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
1266 (comint-dynamic-list-filename-completions): Use them.
1267 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 1268
2dbaa080
SM
1269 * minibuffer.el (completion-in-region-mode):
1270 Keep completion-in-region-mode--predicate global.
1271 (completion-in-region--postch):
1272 Assume completion-in-region-mode--predicate is not null.
1273
c79a6f38
SM
1274 * progmodes/flymake.el (flymake-start-syntax-check-process):
1275 Obey `dir'. Simplify.
1276
024ff170
SM
1277 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
1278 we're in VC after all.
1279
1c6c854e
CS
12802011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
1281
1282 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 1283 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
1284 (vc-version-diff): Use vc-diff-build-argument-list-internal.
1285
bed7f140
SM
12862011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1287
332e62ab
SM
1288 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
1289 add sanity check.
1290
bed7f140
SM
1291 * obsolete/erc-hecomplete.el: Make obsolete.
1292 * obsolete/: Standardize obsolescence info in the header.
1293
f195c582
GM
12942011-04-20 Glenn Morris <rgm@gnu.org>
1295
1296 * calendar/solar.el (solar-horizontal-coordinates):
1297 Use the longitude argument rather than `calendar-longitude'.
1298 (solar-date-next-longitude): Remove unused locals.
1299
cb79b8c0
VJL
13002011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1301
1302 * whitespace.el: New version 13.2.1.
1303
13042011-04-20 felix <EmacsWiki> (tiny change)
1305
1306 * whitespace.el (global-whitespace-mode): keep highlight when
1307 switching between major modes on a file.
1308
602ea69d
SM
13092011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1310
1311 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
1312 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
1313 multi-line comments as well.
1314
06b60517
JB
13152011-04-19 Juanma Barranquero <lekktu@gmail.com>
1316
1317 Lexical-binding cleanup.
1318
1319 * arc-mode.el (archive-mode-revert):
1320 * cmuscheme.el (scheme-interactively-start-process):
1321 * custom.el (custom-initialize-delay):
1322 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
1323 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
1324 * emacs-lock.el (emacs-lock-clear-sentinel):
1325 * ezimage.el (defezimage):
1326 * follow.el (follow-avoid-tail-recenter):
1327 * fringe.el (set-fringe-mode-1):
1328 * generic-x.el (bat-generic-mode-compile):
1329 * help-mode.el (help-info-variable, help-do-xref)
1330 (help-mode-revert-buffer):
1331 * help.el (view-emacs-todo):
1332 * iswitchb.el (iswitchb-completion-help):
1333 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
1334 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
1335 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
1336 * locate.el (locate-update):
1337 * longlines.el (longlines-encode-region)
1338 (longlines-after-change-function):
1339 * outline.el (outline-isearch-open-invisible):
1340 * ps-def.el (declare-function, charset-dimension, char-width)
1341 (encode-char):
1342 * ps-mule.el (ps-mule-plot-string):
1343 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
1344 (recentf-edit-list-select, recentf-edit-list-validate)
1345 (recentf-open-files-action):
1346 * rect.el (delete-whitespace-rectangle-line)
1347 (rectangle-number-line-callback):
1348 * register.el (window-configuration-to-register)
1349 (frame-configuration-to-register):
1350 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
1351 * select.el (xselect-convert-to-string, xselect-convert-to-length)
1352 (xselect-convert-to-targets, xselect-convert-to-delete)
1353 (xselect-convert-to-filename, xselect-convert-to-charpos)
1354 (xselect-convert-to-lineno, xselect-convert-to-colno)
1355 (xselect-convert-to-os, xselect-convert-to-host)
1356 (xselect-convert-to-user, xselect-convert-to-class)
1357 (xselect-convert-to-name, xselect-convert-to-integer)
1358 (xselect-convert-to-atom, xselect-convert-to-identity):
1359 * subr.el (declare, ignore, process-kill-without-query)
1360 (text-clone-maintain):
1361 * terminal.el (te-get-char, te-tic-sentinel):
1362 * tool-bar.el (tool-bar-make-keymap):
1363 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
1364 * type-break.el (type-break-mode, type-break-noninteractive-query):
1365 * view.el (View-back-to-mark):
1366 * wid-browse.el (widget-browse-action, widget-browse-widget)
1367 (widget-browse-widgets, widget-browse-sexp):
1368 * widget.el (define-widget-keywords):
1369 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
1370 Mark unused parameters.
1371
1372 * align.el (align-adjust-col-for-rule): Mark unused parameter.
1373 (align-areas): Remove unused variable `look'.
1374 (align-region): Remove unused variables `real-end' and `pos-list'.
1375
1376 * apropos.el (apropos-score-doc): Remove unused variable `i'.
1377
1378 * bindings.el (mode-line-modified, mode-line-remote):
1379 Mark unused parameters.
1380 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
1381
1382 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
1383 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
1384
1385 * comint.el (comint-history-isearch-pop-state)
1386 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
1387 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
1388 (comint-substitute-in-file-name): Doc fix.
1389
1390 * completion.el (cmpl-statistics-block): Mark unused parameter.
1391 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
1392 (save-completions-to-file, load-completions-from-file):
1393 Remove unused local variable `e'.
1394
1395 * composite.el (compose-chars): Remove unused variable `len'.
1396 (lgstring-insert-glyph): Remove unused variable `g'.
1397 (compose-glyph-string): Remove unused variables `ascent',
1398 `descent', `lbearing' and `rbearing'.
1399 (compose-glyph-string-relative): Remove unused variables
1400 `lbearing', `rbearing' and `wadjust'.
1401 (compose-gstring-for-graphic): Remove unused variables `header',
1402 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
1403 (compose-gstring-for-terminal): Remove unused variables `header'
1404 and `nchars'. Use `let', not `let*'.
1405
1406 * cus-edit.el (Custom-set, Custom-save, custom-reset)
1407 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
1408 (Custom-buffer-done, custom-buffer-create-internal)
1409 (custom-browse-visibility-action, custom-browse-group-tag-action)
1410 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
1411 (widget-magic-mouse-down-action, custom-toggle-parent)
1412 (custom-add-parent-links, custom-toggle-hide-variable)
1413 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
1414 (custom-toggle-hide-face, face, hook, custom-group-link-action)
1415 (custom-face-menu-create, custom-variable-menu-create, get)
1416 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
1417 (custom-reset-standard-save-and-update): Remove unused variable `value'.
1418 (customize-apropos): Remove unused variable `tests'.
1419 (custom-group-value-create): Remove unused variable `hidden-p'.
1420 (sort-fold-case): Declare.
1421
1422 * cus-theme.el (custom-reset-standard-faces-list)
1423 (custom-reset-standard-variables-list): Declare.
1424 (customize-create-theme, custom-theme-revert, custom-theme-write)
1425 (custom-theme-choose-mode, customize-themes, custom-theme-save):
1426 Mark unused parameters.
1427
1428 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
1429
1430 * delim-col.el (delimit-columns-max): Move defvar before first use.
1431
1432 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 1433 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
1434
1435 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
1436 (auto-insert): Declare.
1437 (desktop-restore-file-buffer): Rename desktop-* parameters;
1438 mark unused ones.
1439 (desktop-create-buffer): Rename desktop-* parameters and bind them.
1440 (desktop-buffer): Rename desktop-* parameters.
1441
1442 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1443 (dframe-reposition-frame-xemacs, dframe-help-echo)
1444 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
1445 Mark unused parameters.
1446
1447 * dired-aux.el (backup-extract-version-start, overwrite-query)
1448 (overwrite-backup-query, rename-regexp-query)
1449 (rename-non-directory-query): Declare.
1450 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
1451 (dired-add-entry): Remove unused variable `orig-file-name'.
1452 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
1453 Use parameter PRESERVE-TIME instead of accessing dynamic variable
1454 `dired-copy-preserve-time' directly.
1455 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
1456 (dired-insert-subdir-newpos): Rename unused variable `pos'.
1457
1458 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
1459 (dired-virtual-revert, dired-make-relative-symlink):
1460 Mark unused parameters.
1461 (manual-program): Declare.
1462 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
1463 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
1464 wrapped in `with-no-warnings' to avoid replacing one warning by another.
1465
1466 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
1467
1468 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
1469
1470 * echistory.el (electric-history-in-progress, Helper-return-blurb):
1471 Declare.
1472
1473 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
1474
1475 * electric.el (Electric-command-loop): Rename parameter
1476 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
1477
1478 * expand.el (expand-in-literal): Remove unused variable `here'.
1479
1480 * facemenu.el (facemenu-add-new-color):
1481 Remove unused variable `docstring'.
1482
1483 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
1484 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
1485 (face-attr-construct): Mark unused parameter. Doc fix.
1486 (read-color): Remove unused variable `hex-string'.
1487
1488 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
1489 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
1490 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
1491 (display-buffer-other-frame): Remove unused variable `old-window'.
1492 (kill-buffer-hook): Declare.
1493 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
1494 Mark unused parameters.
1495 (after-find-file): Pass 1 to `auto-save-mode', not t.
1496
1497 * files-x.el (auto-insert): Declare.
1498 (modify-file-local-variable-prop-line): Remove unused variable `val'.
1499
1500 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 1501 variable `buf'. Mark unused parameter.
06b60517
JB
1502 (find-lisp-insert-directory): Mark unused parameter.
1503
1504 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
1505 (format-encode-region): Remove unused variables `cur-buf' and `result'.
1506 (format-common-tail): Remove, unused.
1507 (format-deannotate-region): Remove unused variable `loc'.
1508 (format-annotate-region): Remove unused variable `p'.
1509 (format-annotate-single-property-change): Remove unused variables
1510 `default' and `tail'.
1511
1512 * forms.el (read-file-filter): Declare.
1513 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
1514
1515 * frame.el (frame-creation-function-alist): Mark unused parameter.
1516 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
1517
1518 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
1519 Remove unused parameters.
1520 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
1521 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
1522
1523 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
1524 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
1525 (hfy-prepare-tag-map): Mark unused parameters.
1526 (htmlfontify-buffer): Use `called-interactively-p'.
1527
1528 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
1529 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
1530 (ibuffer-do-occur): Mark unused parameters.
1531 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
1532 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
1533
1534 * ibuffer.el: Don't quote `lambda'.
1535 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
1536 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
1537 Mark unused parameters.
1538
1539 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
1540 (ido-completing-read): Mark unused parameters.
1541 (ido-copy-current-word): Mark unused parameters;
1542 remove unused variable `name'.
1543 (ido-sort-merged-list): Remove unused parameter `dirs'.
1544
1545 * ielm.el (ielm-input-sender): Mark unused parameter.
1546 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
1547 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
1548 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
1549 `ielm-string' as a dynamic variable accessible from the IELM prompt.
1550 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
1551
1552 * image-dired.el (image-dired-display-thumbs): Remove unused
1553 variables `curr-file' and `count'.
1554 (image-dired-remove-tag): Remove unused variable `start'.
1555 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
1556 variable `curr-file'
1557 (image-dired-rotate-original): Remove unused variable `temp-file'.
1558 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
1559 Remove unused variable `file'.
1560 (image-dired-gallery-generate): Remove unused variable `curr'.
1561 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
1562
1563 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
1564
1565 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
1566
1567 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
1568
1569 * isearch.el (minibuffer-history-symbol): Declare.
1570 (isearch-edit-string): Remove unused variable `err'.
1571 (isearch-message-prefix, isearch-message-suffix):
1572 Mark unused parameters.
1573
1574 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
1575
1576 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
1577
1578 * makesum.el (double-column): Remove unused variable `cnt'.
1579
1580 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
1581 (ido-ignore-item-temp-list): Declare.
1582
1583 * mouse-drag.el (mouse-drag-throw): Remove unused variables
1584 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
1585 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
1586 (mouse-drag-drag): Remove unused variables `mouse-delta' and
1587 `mouse-col-delta'.
1588
1589 * mouse-sel.el (mouse-extend-internal):
1590 Remove unused variable `orig-window-frame'.
1591
1592 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
1593 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
1594 Move declarations before first use.
1595 (pcomplete-opt): Mark unused parameters; doc fix.
1596
1597 * proced.el (proced-revert): Mark unused parameter.
1598 (proced-send-signal): Remove unused variable `err'.
1599
1600 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
1601 Rename parameter PREFIX-ARG to ARG.
1602 (ps-basic-plot-string, ps-basic-plot-whitespace):
1603 Mark unused parameters.
1604
1605 * replace.el (replace-count): Define.
1606 (occur-revert-function): Mark unused parameters.
1607 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
1608 (isearch-case-fold-search, isearch-string): Declare.
1609 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
1610 bind `case-fold-search'. Remove unused variables `beg' and `end',
1611 and simplify.
1612 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
1613 COUNT and bind `replace-count'.
1614 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
1615 to COUNT.
1616
1617 * savehist.el (print-readably, print-string-length): Declare.
1618
1619 * shadowfile.el (shadow-expand-cluster-in-file-name):
1620 Remove unused variable `cluster'.
1621 (shadow-copy-file): Remove unused variable `i'.
1622 (shadow-noquery, shadow-clusters, shadow-site-cluster)
1623 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
1624 (shadow-define-literal-group, shadow-define-regexp-group)
1625 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
1626
1627 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
1628 (shell): Use `called-interactively-p'.
1629 (shell-directory-tracker): Remove unused variable `chdir-failure'.
1630
1631 * simple.el (compilation-context-lines, comint-file-name-quote-list)
1632 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
1633 (delete-backward-char): Remove unused variable `ocol'.
1634 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
1635 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
1636 (event-apply-hyper-modifier, event-apply-shift-modifier)
1637 (event-apply-control-modifier, event-apply-meta-modifier):
1638 Mark unused parameters.
1639 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
1640 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
1641
1642 * speedbar.el (speedbar-ignored-directory-expressions)
1643 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
1644 (speedbar-find-file, speedbar-dir-follow)
1645 (speedbar-directory-buttons-follow, speedbar-tag-find)
1646 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
1647 (speedbar-buffers-line-directory, speedbar-buffer-click):
1648 Mark unused parameters.
1649 (speedbar-tag-file): Remove unused variable `mode'.
1650 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
1651
1652 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
1653
1654 * talk.el (talk): Remove unused variable `display'.
1655
1656 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
1657 (tar-write-region-annotate): Mark unused parameter.
1658
1659 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
1660 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
1661 Declare them, wrapped in `with-no-warnings' to avoid replacing one
1662 warning by another.
1663
1664 * time-stamp.el (time-stamp-string-preprocess):
1665 Remove unused variable `require-padding'.
1666
1667 * tree-widget.el (widget-glyph-enable): Declare.
1668 (tree-widget-action): Mark unused parameter.
1669
1670 * w32-fns.el (x-get-selection): Mark unused parameter.
1671 (autoload-make-program, generated-autoload-file): Declare.
1672
1673 * wdired.el (wdired-revert): Mark unused parameters.
1674 (wdired-xcase-word): Remove unused variable `err'.
1675
1676 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
1677 (whitespace-help-scroll): Remove unused variable `data-help'.
1678
1679 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
1680 (widget-image-insert, widget-after-change, default)
1681 (widget-default-format-handler, widget-default-notify)
1682 (widget-default-prompt-value, widget-info-link-action)
1683 (widget-url-link-action, widget-function-link-action)
1684 (widget-variable-link-action, widget-file-link-action)
1685 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
1686 (widget-field-prompt-internal, widget-field-action, widget-field-match)
1687 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
1688 (widget-insert-button-action, widget-delete-button-action, visibility)
1689 (widget-documentation-link-action, widget-documentation-string-action)
1690 (widget-const-prompt-value, widget-regexp-match, symbol)
1691 (widget-coding-system-prompt-value)
1692 (widget-key-sequence-value-to-external, sexp)
1693 (widget-sexp-value-to-internal, character, vector, cons)
1694 (widget-choice-prompt-value, widget-boolean-prompt-value)
1695 (widget-color--choose-action): Mark unused parameters.
1696 (widget-item-match-inline, widget-choice-match-inline)
1697 (widget-checklist-match, widget-checklist-match-inline)
1698 (widget-group-match): Rename parameter VALUES to VALS.
1699 (widget-field-value-set): Remove unused variable `size'.
1700 (widget-color-action): Remove unused variables `value' and `start'.
1701
1702 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 1703 variable `dir'. Doc fix.
06b60517
JB
1704 (windmove-find-other-window): Don't pass it.
1705
1706 * window.el (count-windows): Mark unused parameter.
1707 (bw-adjust-window): Remove unused variable `err'.
1708
1709 * woman.el (woman-file-name): Remove unused variable `default'.
1710 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
1711 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
1712 (global-font-lock-mode): Declare.
1713 (woman-decode-region): Mark unused parameter.
1714 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
1715
1716 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
1717 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
1718 (x-dnd-handle-moz-url): Remove unused variable `title'.
1719 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
1720
1721 * xml.el (xml-parse-tag, xml-parse-attlist):
1722 Remove unused variable `pos'.
1723
bc4f7f3d
GM
17242011-04-19 Glenn Morris <rgm@gnu.org>
1725
1726 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
1727 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1728 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
1729 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
1730 * calendar/cal-html.el (cal-html-insert-minical):
1731 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
1732 (calendar-mark-date-pattern):
1733 Prefix "unused" locals.
1734
1735 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
1736 optional argument `style'.
1737
1738 * calendar/appt.el (appt-make-list):
1739 * calendar/cal-china.el (calendar-chinese-date-string):
1740 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
1741 (diary-hebrew-yahrzeit):
1742 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
1743 * calendar/calendar.el (calendar-generate-window):
1744 * calendar/time-date.el (time-to-days):
1745 Remove unused local variables.
1746
16a43933
CY
17472011-04-18 Chong Yidong <cyd@stupidchicken.com>
1748
1749 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
1750 glyphless-char-display table.
1751 (tabulated-list-glyphless-char-display): New var.
1752
7eed1860
SS
17532011-04-18 Sam Steingold <sds@gnu.org>
1754
1755 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
1756 to acknowledgments.
1757
4d2d1ccd
GM
17582011-04-17 Glenn Morris <rgm@gnu.org>
1759
1760 * calendar/diary-lib.el (diary-sexp-entry):
1761 * calendar/holidays.el (holiday-sexp):
1762 Set debug-on-error rather than the removed stack-trace-on-error.
1763
239da61d
GM
17642011-04-16 Glenn Morris <rgm@gnu.org>
1765
1766 * progmodes/f90.el: Use lexical-binding.
1767 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
1768
8b05752a
SM
17692011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
1770
daca8ba5
SM
1771 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
1772 (mail-mode): Setup mailalias completion here instead.
1773 * mail/mailalias.el: Use lexical-binding.
1774 (pattern, mailalias-done): Declare dynamic.
1775 (mail-completion-at-point-function): New function, from mail-complete.
1776 (mail-complete): Use it.
1777 (mail-completion-expand): New function.
1778 (mail-get-names): Use it.
1779 (mail-directory, mail-directory-process, mail-directory-stream):
1780 Don't use `pattern' for lexically bound arg.
1781
6f542485
SM
1782 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
1783
037e7c3f
SM
1784 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
1785 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
1786 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
1787
8b05752a
SM
1788 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
1789 (byte-save-window-excursion, byte-temp-output-buffer-setup)
1790 (byte-interactive-p): Define them again, for use when inlining
1791 old code.
1792
49093f60
JB
17932011-04-15 Juanma Barranquero <lekktu@gmail.com>
1794
1795 * loadup.el: Use `string-to-number', not `string-to-int'.
1796
b5b8e7de
SM
17972011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
1798
1799 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
1800 gud-gdb-complete-command.
1801 (gud-gdb-completions): New function, from gud-gdb-complete-command.
1802 (gud-gdb-completion-at-point): New function.
1803 (gud-gdb-completions): Remove.
1804
f42efeb5
MA
18052011-04-14 Michael Albinus <michael.albinus@gmx.de>
1806
49093f60
JB
1807 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
1808 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
1809 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
1810 whether `executable-find' is bound.
f42efeb5
MA
1811
1812 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
1813
e240cc21
SM
18142011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1815
1816 * minibuffer.el (completion-in-region-mode-predicate)
1817 (completion-in-region-mode--predicate): New vars.
1818 (completion-in-region, completion-in-region--postch)
1819 (completion-in-region-mode): Use them.
1820 (completion--capf-wrapper): Also return the hook function.
1821 (completion-at-point, completion-help-at-point):
1822 Adjust and provide a predicate.
c2bd2ab0
SM
1823
1824 Preserve arg names for advice of subr and lexical functions (bug#8457).
1825 * help-fns.el (help-function-arglist): Consolidate the subr and
1826 new-byte-code cases. Add argument `preserve-names' to extract names
1827 from the docstring when needed.
1828 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
1829 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
1830 (ad-arglist): Use help-function-arglist's new arg.
1831 (ad-definition-type): Use cond.
1832
c183f693
JB
18332011-04-13 Juanma Barranquero <lekktu@gmail.com>
1834
06641a47
JB
1835 * autorevert.el (auto-revert-handler):
1836 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
1837 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
1838 Don't quote lambda.
1839
c183f693
JB
1840 * image-mode.el (image-transform-set-scale):
1841 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
1842
1e3b6001
G
18432011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1844
1845 * net/network-stream.el (network-stream-open-starttls): Only do
1846 opportunistic STARTTLS upgrades if we have built-in gnutls support.
1847 Upgrades via gnutls-cli are too slow to be done opportunistically.
1848
2d6af8dd
JB
18492011-04-12 Juanma Barranquero <lekktu@gmail.com>
1850
1851 * dframe.el (dframe-current-frame): Remove spurious quote.
1852
c0749a51
GM
18532011-04-12 Glenn Morris <rgm@gnu.org>
1854
088d0d61
GM
1855 * calendar/cal-tex.el (cal-tex-end-document):
1856 Try to automatically use latin1 input if needed.
1857
c0749a51
GM
1858 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
1859 Don't try to cons a mark onto an empty element.
1860
5c90fde0
LL
18612011-04-11 Leo Liu <sdl.web@gmail.com>
1862
1863 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
1864 buffers.
1865 (ido-kill-buffer-at-head): Support killing virtual buffers.
1866
369e974d
CY
18672011-04-10 Chong Yidong <cyd@stupidchicken.com>
1868
1869 * minibuffer.el (completion-show-inline-help): New var.
1870 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
1871 (minibuffer-force-complete, minibuffer-complete-word):
1872 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
1873
1874 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
1875 to avoid interference from inline help (Bug#5849).
1876
37f1c930
LL
18772011-04-10 Leo Liu <sdl.web@gmail.com>
1878
099c39a4
JB
1879 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
1880 Fix typo.
37f1c930 1881
a32d4040
CY
18822011-04-09 Chong Yidong <cyd@stupidchicken.com>
1883
1884 * image-mode.el (image-toggle-display-image): Signal an error if
1885 not in Image mode.
1886 (image-transform-mode, image-transform-resize)
1887 (image-transform-set-rotation): Doc fix.
daca8ba5 1888 (image-transform-set-resize): Delete.
a32d4040
CY
1889 (image-transform-set-scale, image-transform-fit-to-height)
1890 (image-transform-fit-to-width): Handle image-toggle-display-image
1891 and image-transform-resize directly.
1892
099c39a4 18932011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
1894
1895 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
1896 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
1897 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
1898 (doc-view-mode-map): Add bindings for the new functions.
1899
099c39a4 19002011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb
JB
1901
1902 * vc-annotate.el (vc-annotate-show-log-revision-at-line):
1903 Fix typo in docstring.
1904
3726838a
EZ
19052011-04-08 Eli Zaretskii <eliz@gnu.org>
1906
04f33f1e
EZ
1907 * files.el (file-size-human-readable): Produce one digit after
1908 decimal, like "ls -lh" does.
1909
1910 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
1911 the file size representation.
1912
3726838a
EZ
1913 * simple.el (list-processes): If async subprocesses are not
1914 available, error out with a clear error message.
1915
cbb59342
CY
19162011-04-08 Chong Yidong <cyd@stupidchicken.com>
1917
1918 * help.el (help-form-show): New function, to be called from C.
1919 Put help-form output in a buffer named differently than *Help*.
1920
e3971c44
EZ
19212011-04-08 Eli Zaretskii <eliz@gnu.org>
1922
1923 * files.el (file-size-human-readable): New function.
1924
1925 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
1926 computing the representation inline. Don't require `cl'.
1927
12544bbe
GM
19282011-04-08 Glenn Morris <rgm@gnu.org>
1929
a1de6c6a
GM
1930 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
1931
3c4671f4
GM
1932 * net/browse-url.el (browse-url-firefox):
1933 Test system-type, not system-configuration.
1934
b605679c
GM
1935 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
1936 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
1937 Use log-edit-empty-buffer-p. (Bug#7598)
1938
56442f0c
GM
1939 * net/rlogin.el (rlogin-process-connection-type): Simplify.
1940 (rlogin-mode-map): Initialize in the defvar.
1941 (rlogin): Use ignore-errors.
1942
12544bbe
GM
1943 * replace.el (occur-mode-map): Some fixes for menu items.
1944
eb237b0f
AH
19452011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1946
1947 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
1948
7d668f2c
CY
19492011-04-06 Chong Yidong <cyd@stupidchicken.com>
1950
e67a13ab
CY
1951 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
1952 issuing unused warnings.
1953
1954 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
1955 macro directly.
1956
7d668f2c
CY
1957 * simple.el: Lisp reimplement of list-processes. Based on an
1958 earlier reimplementation by Leo Liu, but using tabulated-list.el.
1959 (process-menu-mode): New major mode.
1960 (list-processes--refresh, list-processes):
1961 (process-menu-visit-buffer): New functions.
1962
1963 * files.el (save-buffers-kill-emacs): Don't assume any return
1964 value of list-processes, which is undocumented anyway.
1965
a83ec3c9
CY
19662011-04-06 Chong Yidong <cyd@stupidchicken.com>
1967
1968 * emacs-lisp/tabulated-list.el: New file.
1969
e91a96fe
CY
1970 * emacs-lisp/package.el: Use Tabulated List mode.
1971 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
1972 (package-menu-mode): Derive from tabulated-list-mode. Set up the
1973 table format using Tabulated List mode variables.
1974 (package--push): New macro, replacing package-list-maybe-add.
1975 (package-menu--generate): Use package--push. Renamed from
1976 package--generate-package-list.
1977 (package-menu-refresh, list-packages): Use it.
daca8ba5 1978 (package-menu--print-info): Rename from package-print-package.
e91a96fe 1979 Return insertion data instead of inserting it directly.
099c39a4
JB
1980 (package-menu-describe-package, package-menu-execute):
1981 Use tabulated-list-get-id.
e91a96fe
CY
1982 (package-menu-mark-delete, package-menu-mark-install)
1983 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
1984 (package-menu-mark-obsolete-for-deletion):
1985 Use tabulated-list-put-tag.
e91a96fe
CY
1986 (package--list-packages, package-menu-revert)
1987 (package-menu-get-package, package-menu-get-version)
1988 (package-menu-sort-by-column): Functions deleted.
1989 (package-menu-package-list, package-menu-sort-key): Vars deleted.
1990 (package-menu--status-predicate, package-menu--version-predicate)
1991 (package-menu--name-predicate)
1992 (package-menu--description-predicate): Handle arguments in the
1993 Tabulated List format.
1994 (package-list-packages-no-fetch): Call list-packages.
1995
3e214b50
JB
19962011-04-06 Juanma Barranquero <lekktu@gmail.com>
1997
1998 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 1999 (after-find-file): Don't bind it.
3e214b50
JB
2000 (revert-buffer-in-progress-p): New variable.
2001 (revert-buffer): Bind it.
2002 Pass nil for `after-find-file-from-revert-buffer'.
2003
2004 * saveplace.el (save-place-find-file-hook): Use new variable
2005 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
2006
3f0f1700
GM
20072011-04-06 Glenn Morris <rgm@gnu.org>
2008
c0274801
GM
2009 * Makefile.in (AUTOGEN_VCS): New variable.
2010 (autoloads): Use $AUTOGEN_VCS.
2011
3f0f1700
GM
2012 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
2013 * calendar/calendar.el (calendar-mode-map):
2014 Check for toolkit scroll bars. (Bug#8305)
2015
41ea9e48
CY
20162011-04-05 Chong Yidong <cyd@stupidchicken.com>
2017
2018 * minibuffer.el (completion-in-region--postch)
2019 (completion-in-region-mode): Remove unnecessary messages.
2020
6194c800
JB
20212011-04-05 Juanma Barranquero <lekktu@gmail.com>
2022
33256f14
JB
2023 * font-lock.el (font-lock-refresh-defaults):
2024 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
2025 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
2026
6194c800
JB
2027 * info.el (Info-directory-list, Info-read-node-name-2)
2028 (Info-split-parameter-string): Doc fixes.
2029 (Info-virtual-nodes): Reflow docstring.
2030 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
2031 (Info-apropos-toc-nodes, info-finder, Info-get-token)
2032 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
2033 Fix typos in docstrings.
2034 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
2035 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
2036 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
2037 (Info-restore-desktop-buffer): Mark unused parameters.
2038 (Info-directory-find-file, Info-directory-find-node)
2039 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
2040 (Info-virtual-index-find-node, Info-apropos-find-file)
2041 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 2042 Mark unused parameters; fix typos in docstrings.
6194c800
JB
2043 (Info-virtual-index): Remove unused local variable `nodename'.
2044
b87a8200 20452011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 2046
b87a8200
DD
2047 * net/rcirc.el: Update my e-mail address.
2048 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 2049
3b2ff876
CY
20502011-04-05 Chong Yidong <cyd@stupidchicken.com>
2051
2052 * startup.el (command-line): Save the cursor's theme-face
2053 directly, instead of using face-override-spec.
2054
2055 * custom.el (load-theme): Minor optimization in assigning faces.
2056
8d17e7ca
JB
20572011-04-04 Juanma Barranquero <lekktu@gmail.com>
2058
2059 * help-fns.el (describe-variable): Complete all variables having
2060 documentation, including keywords.
2061 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
2062
2fbc1934
JB
20632011-04-04 Juanma Barranquero <lekktu@gmail.com>
2064
2065 Convert to lexical-binding.
2066
2067 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
2068 (bs--get-marked-string, bs--get-modified-string)
2069 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
2070 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
2071 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
2072
2073 * ehelp.el (electric-help-execute-extended)
2074 (electric-help-ctrl-x-prefix):
2075 * hexl.el (hexl-revert-buffer-function):
2076 * linum.el (linum-after-change, linum-after-scroll):
2077 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
2078
2079 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
2080
74f50695
DU
20812011-04-04 Daiki Ueno <ueno@unixuser.org>
2082
2083 * epa-dired.el:
2084 * epa-mail.el:
2085 * epa-hook.el:
2086 * epa-file.el:
2087 * epa.el:
2088 * epg.el: Use lexical binding.
2089
c11325f7
CY
20902011-04-03 Chong Yidong <cyd@stupidchicken.com>
2091
0d9e9a12
CY
2092 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
2093
c11325f7 2094 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
2095 dictionary case for flyspell-mark-duplications-exceptions.
2096 Use regexp matching for languages.
c11325f7
CY
2097 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
2098 default dictionary (Bug#7926).
2099
da91b5f2
CY
21002011-04-02 Chong Yidong <cyd@stupidchicken.com>
2101
099c39a4
JB
2102 * emacs-lisp/package.el (package--with-work-buffer):
2103 Recognize https URLs.
da91b5f2 2104
099c39a4
JB
2105 * net/network-stream.el: Move from gnus/proto-stream.el.
2106 Change prefix to network-stream throughout.
da91b5f2
CY
2107 (open-protocol-stream): Merge into open-network-stream, leaving
2108 open-protocol-stream as an alias. Handle nil BUFFER args.
2109
2110 * subr.el (open-network-stream): Move to net/network-stream.el.
2111
afa8e9f6
GM
21122011-04-02 Glenn Morris <rgm@gnu.org>
2113
1d2e369d
GM
2114 * find-dired.el (find-exec-terminator): New option.
2115 (find-ls-option): Test for -ls support.
2116 (find-ls-subdir-switches): Test for -b in find-ls-option.
2117 (find-dired, find-grep-dired): Doc fixes.
2118 (find-dired): Use find-exec-terminator.
2119
8abb7da8 2120 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
2121 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
2122 (find-name-arg): Remove purecopy.
8abb7da8 2123
f3ca7378
GM
2124 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
2125 (grep-compute-defaults): Check for `-exec COMMAND +' support.
2126 Set grep-find-use-xargs, grep-find-command, and grep-find-template
2127 accordingly. Don't add the null-device if not needed.
2128
afa8e9f6
GM
2129 * files.el (save-some-buffers): Doc fix.
2130
35eae264
EZ
21312011-04-02 Eli Zaretskii <eliz@gnu.org>
2132
2133 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
2134
26b51db5
JB
21352011-04-01 Juanma Barranquero <lekktu@gmail.com>
2136
2137 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
2138 Use `dolist' rather than `mapcar'.
2139
7200d79c
SM
21402011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
2141
03408648 2142 Add lexical binding.
7200d79c 2143
03408648
SM
2144 * subr.el (apply-partially): Use new closures rather than CL.
2145 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
2146 (dolist, dotimes): Use slightly different expansion for lexical code.
2147 (functionp): Move to C.
2148 (letrec): New macro.
2149 (with-wrapper-hook): Use it and apply-partially instead of CL.
2150 (eval-after-load): Preserve lexical-binding.
2151 (save-window-excursion, with-output-to-temp-buffer): Turn them
2152 into macros.
7200d79c 2153
03408648
SM
2154 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
2155
2156 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
2157 than the arglist.
2158 (help-add-fundoc-usage): Don't add `Not documented'.
2159 (help-function-arglist): Handle closures, subroutines, and new
2160 byte-code-functions.
2161 (help-make-usage): Remove leading underscores.
2162 (describe-function-1): Handle closures.
2163 (describe-variable): Use special-variable-p for completion.
2164
2165 * files.el (lexical-binding): Declare safe.
f488fb65 2166
03408648
SM
2167 * emacs-lisp/pcase.el: Don't use destructuring-bind.
2168 (pcase--memoize): Rename from pcase-memoize. Change weakness.
2169 (pcase): Add `let' pattern.
2170 Change memoization so it actually works.
2171 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
2172 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
2173 <let>: New case.
f488fb65 2174
03408648
SM
2175 * emacs-lisp/macroexp.el: Use lexical binding.
2176 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
2177 Don't convert ' to #' without checking that it's indeed quoting
2178 a lambda.
2179
2180 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 2181 Use eval-sexp-add-defvars.
03408648
SM
2182 (eval-sexp-add-defvars): New fun.
2183
2184 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
2185
2186 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
2187 Don't autoload.
2188 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
2189 than the internal `byte-compile-lambda'.
2190 (defmethod): Don't hide code under quotes.
2191 (eieio-defmethod): New `code' argument.
2192
2193 * emacs-lisp/eieio-comp.el: Remove.
2194
2195 * emacs-lisp/edebug.el (edebug-eval-defun)
2196 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
2197 (edebug-toggle): Avoid `eval'.
2198
2199 * emacs-lisp/disass.el (disassemble-internal): Handle new
2200 `closure' objects.
2201 (disassemble-1): Handle new byte codes.
2202
2203 * emacs-lisp/cl.el (pushnew): Silence warning.
2204
2205 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
2206 (cl-byte-compile-throw): Remove.
2207 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
2208
2209 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
2210 closures.
2211
2212 * emacs-lisp/cconv.el: New file.
2213
2214 * emacs-lisp/bytecomp.el: Use lexical binding instead of
2215 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
2216 (byte-compile-initial-macro-environment):
2217 Handle declare-function here.
2218 (byte-compile--lexical-environment): New var.
2219 (byte-stack-ref, byte-stack-set, byte-discardN)
2220 (byte-discardN-preserve-tos): New lap codes.
2221 (byte-interactive-p): Don't use any more.
2222 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
2223 New macros.
2224 (byte-compile-lapcode): Use them and handle new lap codes.
2225 (byte-compile-obsolete): Remove.
2226 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
2227 (byte-compile-arglist-warn): Check late def of inlinable funs.
2228 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
2229 since they should have been expanded by now.
2230 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
2231 (byte-compile-from-buffer): Remove unused second arg.
2232 (byte-compile-preprocess): New function.
2233 (byte-compile-toplevel-file-form): New function to distinguish
2234 file-form calls from outside from file-form calls from hunk-handlers.
2235 (byte-compile-file-form): Simplify.
2236 (byte-compile-file-form-defsubst): Remove.
2237 (byte-compile-file-form-defmumble): Simplify now that
2238 byte-compile-lambda always returns a byte-code-function.
2239 (byte-compile): Preprocess.
2240 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
2241 Remove, not used any more.
2242 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
2243 (byte-compile-make-args-desc): New funs.
2244 (byte-compile-lambda): Handle lexical functions. Always return
2245 a byte-code-function.
2246 (byte-compile-reserved-constants): New var, to make up room for
2247 closed-over variables.
2248 (byte-compile-constants-vector): Obey it.
2249 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
2250 (byte-compile-macroexpand-declare-function): New function.
2251 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
2252 byte-code-functions.
2253 (byte-compile-form): Check obsolescence here.
2254 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
2255 (byte-compile-variable-ref): Remove.
2256 (byte-compile-dynamic-variable-op): New fun.
2257 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
2258 (byte-compile-variable-set): New funs.
2259 (byte-compile-discard): Add 2 args.
2260 (byte-compile-stack-ref, byte-compile-stack-set)
2261 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
2262 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
2263 macroexpand-all instead.
2264 (byte-compile-quote-form): Remove.
2265 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
2266 (byte-compile-bind, byte-compile-unbind): New funs.
2267 (byte-compile-let): Handle let* and lexical binding.
2268 (byte-compile-let*): Remove.
2269 (byte-compile-catch, byte-compile-unwind-protect)
2270 (byte-compile-track-mouse, byte-compile-condition-case):
2271 Handle a new :fun-body form, used for lexical scoping.
2272 (byte-compile-save-window-excursion)
2273 (byte-compile-with-output-to-temp-buffer): Remove.
2274 (byte-compile-defun): Simplify.
2275 (byte-compile-stack-adjustment): New fun.
2276 (byte-compile-out): Use it.
2277 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
2278
2279 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
2280 handler any more.
2281
2282 * emacs-lisp/byte-opt.el: Use lexical binding.
2283 (byte-inline-lapcode): Remove (to bytecomp).
2284 (byte-compile-inline-expand): Pay attention to inlining to/from
2285 lexically bound code.
2286 (byte-compile-unfold-lambda): Don't handle byte-code-functions
2287 any more.
2288 (byte-optimize-form-code-walker): Don't handle save-window-excursion
2289 any more and don't call compiler-macros.
2290 (byte-compile-splice-in-already-compiled-code): Remove.
2291 (byte-code): Don't inline any more.
2292 (disassemble-offset): Receive `bytes' as argument rather than via
2293 dynamic scoping.
2294 (byte-compile-tag-number): Declare before first use.
2295 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
2296 `return' even if make-spliceable.
2297 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
2298 obsolete interactive-p.
2299 (byte-optimize-lapcode): Optimize new lap-codes.
2300 Don't trip up on new form of `byte-constant' lap code.
2301
2302 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
2303
2304 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
2305
2306 * custom.el (custom-initialize-default, custom-declare-variable):
2307 Use `defvar'.
2308
2309 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
2310 New variables.
2311 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
2312 (COMPILE_FIRST): Add macroexp and cconv.
2313 * makefile.w32-in: Mirror changes in Makefile.in.
2314
2315 * vc/cvs-status.el:
2316 * vc/diff-mode.el:
2317 * vc/log-edit.el:
2318 * vc/log-view.el:
2319 * vc/smerge-mode.el:
2320 * textmodes/bibtex-style.el:
2321 * textmodes/css.el:
2322 * startup.el:
2323 * uniquify.el:
da91b5f2
CY
2324 * minibuffer.el:
2325 * newcomment.el:
2326 * reveal.el:
2327 * server.el:
2328 * mpc.el:
2329 * emacs-lisp/smie.el:
2330 * doc-view.el:
2331 * dired.el:
03408648
SM
2332 * abbrev.el: Use lexical binding.
2333
0f0c1f27
EZ
23342011-04-01 Eli Zaretskii <eliz@gnu.org>
2335
2336 * info.el (info-display-manual): New function.
2337
c82b2579
SM
23382011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2339
2340 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
2341
221ddf68
TH
23422011-03-31 Tassilo Horn <tassilo@member.fsf.org>
2343
2344 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 2345 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 2346
cba6e77e
GM
23472011-03-31 Glenn Morris <rgm@gnu.org>
2348
e040639f
GM
2349 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
2350
cba6e77e
GM
2351 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
2352
6d0f1c9e
CS
23532011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
2354
2355 * progmodes/python.el (python-default-interpreter)
2356 (python-python-command-args, python-jython-command-args)
2357 (python-which-shell, python-which-args, python-which-bufname)
2358 (python-file-queue, python-comint-output-filter-function)
2359 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
2360 variables and functions.
2361
3e2d70fd
SM
23622011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
2363
2364 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
2365 (completion-in-region-mode): New minor mode.
2366 (completion-in-region): Use it.
2367 (completion-in-region--data, completion-in-region-mode-map): New vars.
2368 (completion-in-region--postch): New function.
2369 (completion--capf-misbehave-funs, completion--capf-safe-funs):
2370 New vars.
2371 (completion--capf-wrapper): New function.
2372 (completion-at-point): Use it to track well-behavedness of
2373 hook functions.
2374 (completion-help-at-point): New command.
2375
f3e4086c
JM
23762011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
2377
2378 * vc/add-log.el (add-change-log-entry): Don't use whitespace
2379 syntax class to search for whitespace on a single line
2380 (Message-ID: <4D938140.4030905@redhat.com>).
2381
eb7ffc14
LL
23822011-03-30 Leo Liu <sdl.web@gmail.com>
2383
2384 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
2385 New commands.
2386 (edit-abbrevs-map): Bind them here.
2387 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
2388
d806ab68
KM
23892011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
2390
2391 * allout.el (allout-hide-by-annotation, allout-flag-region):
2392 Reduce possibility of overlay leakage by making them volatile.
2393
2394 * allout-widgets.el (allout-widgets-tally): Define as nil so the
2395 hash is not shared between buffers. Mode initialization is
2396 responsible for giving it a useful starting value.
2397 (allout-item-span): Reduce possibility of overlay leakage by
2398 making them volatile.
2399 (allout-widgets-count-buttons-in-region): Add diagnostic function
2400 for tracking down button overlay leaks.
2401
ea622834
LL
24022011-03-29 Leo Liu <sdl.web@gmail.com>
2403
2404 * ido.el (ido-read-internal): Use the default history var
2405 minibuffer-history if no HISTORY is specified.
2406
b62f8267
G
24072011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
2408
03408648
SM
2409 * net/imap.el (imap-shell-open, imap-process-connection-type):
2410 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
2411 Kerberos, SSL, other subprocesses.
2412
947b6566
LL
24132011-03-28 Leo Liu <sdl.web@gmail.com>
2414
2415 * abbrev.el (abbrev-table-empty-p): New function.
2416 (prepare-abbrev-list-buffer): Place empty abbrev tables after
2417 nonempty ones. (Bug#5937)
2418
5ffb62aa
JD
24192011-03-27 Jan Djärv <jan.h.d@swipnet.se>
2420
2421 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
2422
7a097943
LL
24232011-03-27 Leo Liu <sdl.web@gmail.com>
2424
2425 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
2426 for foreground and background colors.
2427 (ansi-color-make-color-map): Adapt.
2428
c5b40130
LL
24292011-03-25 Leo Liu <sdl.web@gmail.com>
2430
1f48f7d2
LL
2431 * midnight.el (midnight-time-float): Remove. Note it calculates
2432 the microsecond component incorrectly and seconds-to-time does the
2433 same job.
625897ec 2434 Remove redundant (require 'timer).
1f48f7d2 2435
c5b40130
LL
2436 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
2437 (ido-completions): Remove unused arguments. (Bug#8329)
2438
d86d2721
SM
24392011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2440
2441 * minibuffer.el (completion--flush-all-sorted-completions):
2442 Remove itself from hook.
2443 (completion-at-point): Let the functions perform the completion
2444 immediately and return nil or t.
2445 * comint.el (comint-dynamic-complete-functions): Now identical to
2446 completion-at-point-functions.
2447 (comint-dynamic-list-input-ring): Remove unused var `index'.
2448 (comint--match-partial-filename, comint--unquote&expand-filename):
2449 New funs, split from comint-match-partial-filename.
2450 (comint-dynamic-complete): Use completion-at-point.
2451 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
2452
e8974c48
DA
24532011-03-24 Drew Adams <drew.adams@oracle.com>
2454
2455 * thingatpt.el: Support `defun'.
2456
def71b5e
LL
24572011-03-23 Leo Liu <sdl.web@gmail.com>
2458
cb5af48e
LL
2459 * abbrevlist.el: Move to obsolete/abbrevlist.el.
2460
def71b5e
LL
2461 * help-mode.el (help-mode-finish): Tweak regexp.
2462
927c53e7
GM
24632011-03-23 Glenn Morris <rgm@gnu.org>
2464
18d05bed
GM
2465 * eshell/esh-opt.el (eshell-eval-using-options):
2466 Do not bind unused local variable `eshell-option-stub'.
2467
927c53e7
GM
2468 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
2469
9d0da923
JB
24702011-03-22 Juanma Barranquero <lekktu@gmail.com>
2471
2472 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
2473 keymap variable in `with-no-warnings' to avoid a warning when the
2474 keymap has been already `defconst'ed.
2475
4b978a67
LL
24762011-03-22 Leo Liu <sdl.web@gmail.com>
2477
2478 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
2479 encode all chars in abbrevs; otherwise use emacs-mule or
2480 utf-8-emacs. (Bug#8308)
2481
5fd62452
JB
24822011-03-22 Juanma Barranquero <lekktu@gmail.com>
2483
0b1596c6
JB
2484 * simple.el (backward-delete-char-untabify):
2485 Avoid warning about using `delete-backward-char'.
2486
5fd62452
JB
2487 * image.el (image-type-file-name-regexps): Make it variable.
2488 `imagemagick-register-types' modifies it, and the user may want
2489 to add new extensions for known image types.
2490 (imagemagick-register-types): Throw error if not using ImageMagick.
2491
0b4e93f1
LL
24922011-03-22 Leo Liu <sdl.web@gmail.com>
2493
2494 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
2495 located before rcirc-prompt-end-marker.
2496 (rcirc-complete): Error if point is not after rcirc prompt.
2497 Handle the case when table is nil.
9882e214 2498 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 2499
fccee4ab
CY
25002011-03-22 Chong Yidong <cyd@stupidchicken.com>
2501
2502 * custom.el (custom--inhibit-theme-enable): Make it affect only
2503 custom-theme-set-variables and custom-theme-set-faces.
2504 (provide-theme): Ignore custom--inhibit-theme-enable.
2505 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
2506 (custom-enabling-themes): Delete variable.
d86d2721
SM
2507 (enable-theme): Accept only loaded themes as arguments.
2508 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
2509 (custom-enabled-themes): Forbid themes from setting this.
2510 Eliminate use of custom-enabling-themes.
2511 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 2512
af896da6
LL
25132011-03-21 Leo Liu <sdl.web@gmail.com>
2514
2515 * ido.el (ido-read-internal): Add ido-selected to history instead
2516 of user input.
2517
78f64af0
SM
25182011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2519
2520 * subr.el (deferred-action-list, deferred-action-function):
2521 Mark obsolete.
2522
b16ac1ec
LL
25232011-03-21 Leo Liu <sdl.web@gmail.com>
2524
810f7698
LL
2525 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
2526 change on 2011-02-13 (bug#8309).
2527
b16ac1ec
LL
2528 * minibuffer.el (read-file-name-function): Change default value.
2529 (read-file-name--defaults): Rename from read-file-name-defaults.
2530 (read-file-name-default): Rename from read-file-name.
2531 (read-file-name): Call read-file-name-function.
2532
4e05e67e
GM
25332011-03-21 Glenn Morris <rgm@gnu.org>
2534
2535 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
2536 Doc fixes.
2537
4359915b
CY
25382011-03-21 Chong Yidong <cyd@stupidchicken.com>
2539
2540 * cus-theme.el: Add missing provide statement.
2541 (customize-create-theme): Extract theme value correctly.
2542 (custom-theme-visit-theme): Autoload.
2543 (customize-create-theme): Prompt before inserting default faces.
2544
1fe275ee
JB
25452011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
2546
2547 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
2548 units and musical notes.
2549
3ec03f7e
LL
25502011-03-20 Leo <sdl.web@gmail.com>
2551
2552 * ido.el (ido-read-internal): Use completing-read-default.
2553 (ido-completing-read): Fix compatibility with completing-read.
2554
7d476bde
CO
25552011-03-20 Christian Ohler <ohler@gnu.org>
2556
2557 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
2558 (ert-delete-all-tests): Use `called-interactively-p' rather than
2559 `interactive-p'.
2560 (ert--make-xrefs-region): Respect END.
2561
fe0fb33e
CY
25622011-03-19 Chong Yidong <cyd@stupidchicken.com>
2563
ff854b0b
CY
2564 * dired-aux.el (dired-create-directory): Signal an error if the
2565 directory already exists (Bug#8246).
2566
fe0fb33e
CY
2567 * facemenu.el (list-colors-display): Call list-faces-display
2568 inside with-help-window.
2569 (list-colors-print): Use display property to align the final
2570 column, instead of checking window-width.
2571
576bce32
EZ
25722011-03-19 Eli Zaretskii <eliz@gnu.org>
2573
2574 * emerge.el (emerge-metachars): Separate value for ms-dos and
2575 windows-nt systems.
2576 (emerge-protect-metachars): Quote correctly for ms-dos and
2577 windows-nt systems.
2578
89c41d68 25792011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
2580
2581 * info.el (info-initialize): Replace all uses of `:' with
2582 path-separator for compatibility with non-Unix systems.
2583 Cache quoting of path-separator. (Bug#8258)
2584
b14e3e21 25852011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
2586
2587 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
2588 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
2589 (mouse-avoidance-mode): Fix typos in docstrings.
2590
4525ce3e
CY
25912011-03-19 Chong Yidong <cyd@stupidchicken.com>
2592
2593 * startup.el (package-subdirectory-regexp): Move from package.el.
2594 Omit \\` and \\', and let callers add them.
2595
2596 * emacs-lisp/package.el (package-strip-version)
2597 (package-load-all-descriptors): Add \\` and \\' to
2598 package-subdirectory-regexp before using it.
2599 (package-untar-buffer): New arg DIR; ensure that file untars only
2600 into this expected directory. Remove superfluous delete-region.
2601 (package-unpack): Caller changed.
2602 (package-tar-file-info): Use package-subdirectory-regexp.
2603
a904a09a 26042011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 2605
a904a09a
SM
2606 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
2607 diff-mode-shared-map (bug#8284).
2608 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
2609
26102011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
2611
2612 * calendar/time-date.el (format-seconds): Use assoc instead of
2613 assoc-string, since assoc-string doesn't exist in XEmacs.
2614
171fc304
JB
26152011-03-17 Juanma Barranquero <lekktu@gmail.com>
2616
2617 * custom.el (custom-known-themes): Reflow docstring.
2618 (custom-theme-load-path): Fix typo in docstring.
2619 (load-theme): Fix typo in error message.
2620 (custom-available-themes, custom-variable-theme-value):
2621 Use `let', not `let*'.
2622
d71990a1
JB
26232011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
2624
2625 * calc/README: Mention inclusion of musical notes.
2626
2627 * calc/calc-units.el (calc-lu-quant): Rename from
2628 `calc-logunits-quantity'.
2629 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
2630 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
2631 (calc-db): Rename from `calc-dblevel'.
2632 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
2633 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
2634 (calc-np): Rename from `calc-nplevel'.
2635 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
2636 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
2637 (calc-lu-plus): Rename from `calc-logunits-add'.
2638 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
2639 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
2640 (calc-lu-minus): Rename from `calc-logunits-sub'.
2641 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
2642 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
2643 (calc-lu-times): Rename from `calc-logunits-mul'.
2644 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
2645 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
2646 (calc-lu-divide): Rename from `calc-logunits-div'.
2647 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
2648 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
2649
2650 * calc/calc-ext.el (calc-init-extensions): Update the names of the
2651 functions being autoloaded.
2652
2653 * calc/calc.el (calc-lu-power-reference): Rename from
2654 `calc-logunits-power-reference'.
2655 (calc-lu-field-reference): Rename from
2656 `calc-logunits-field-reference'.
2657
2658 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
2659
40c2934b
SM
26602011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2661
2662 * minibuffer.el (completion-all-sorted-completions):
2663 Use :completion-cycle-penalty text property if present.
2664
b0911414
KM
26652011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
2666
2667 * allout.el (allout-yank-processing): Adjust for new rebulleting
2668 regime so bullet being yanked is used without prompting the user
2669 for a choice.
2670
8a05b668
JB
26712011-03-16 Juanma Barranquero <lekktu@gmail.com>
2672
2673 * startup.el (command-line): Warn the user that _emacs is deprecated.
2674
5ba5fb81
JB
26752011-03-16 Juanma Barranquero <lekktu@gmail.com>
2676
2677 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
2678 (delphi-verbose, delphi-comment-face, delphi-string-face)
2679 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
2680 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
2681 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
2682 (delphi-new-comment-line, delphi-font-lock-defaults)
2683 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
2684 Fix typos in docstrings.
2685
2dab465b
KM
26862011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
2687
5ba5fb81 2688 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
2689 Invert the roles of character and string values for INSTEAD, so a
2690 string is used for the more common case of a defaulting prompt.
2691
0adf5618
SM
26922011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2693
2694 * progmodes/ruby-mode.el (ruby-backward-sexp):
2695 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
2696 * play/gamegrid.el (gamegrid-make-face):
2697 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
2698 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
2699 * notifications.el (notifications-notify):
2700 * net/xesam.el (xesam-search-engines):
2701 * net/quickurl.el (quickurl-list-insert):
2702 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
2703
d72700e5
CY
27042011-03-15 Chong Yidong <cyd@stupidchicken.com>
2705
2706 * startup.el (command-line): Update package subdirectory regexp.
2707
49c5410a
SM
27082011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2709
c6eee9aa
SM
2710 * allout.el (allout-abbreviate-flattened-numbering)
2711 (allout-mode-deactivate-hook): Fix up obsolescence "date".
2712
49c5410a
SM
2713 * subr.el (read-char-choice): Only show the cursor after the prompt,
2714 not after the answer.
2715
047b2bb9
KR
27162011-03-15 Kevin Ryde <user42@zip.com.au>
2717
2718 * help-fns.el (variable-at-point): Skip leading quotes, if any
2719 (bug#8253).
2720
0a57d256
SM
27212011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2722
2723 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
2724 warning message.
2725
77c992bc
MA
27262011-03-14 Michael Albinus <michael.albinus@gmx.de>
2727
2728 * shell.el (shell): When called interactively, offer to change the
2729 shell file name on remote hosts.
2730
eebc475d
TZ
27312011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
2732
2733 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
2734 integration for LDAP parameters. The host, base, user or binddn,
2735 and secret tokens can be specified in a netrc file, for instance.
2736 This is optional because an `auth-source' parameter must be
2737 specified in the search attributes.
2738
9d05d1ba
JB
27392011-03-13 Juanma Barranquero <lekktu@gmail.com>
2740
2741 * help.el (describe-mode): Link to the mode's definition (bug#8185).
2742
09d9db2c
GM
27432011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2744
2745 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
2746 into declaration. Remove redundant and harmful binding.
2747
27482011-03-12 Eli Zaretskii <eliz@gnu.org>
2749
2750 * files.el (file-ownership-preserved-p): Pass `integer' as an
2751 explicit 2nd argument to `file-attributes'. If the file's owner
2752 is the Administrators group on Windows, and the current user is
2753 Administrator, consider that a match.
2754
2755 * server.el (server-ensure-safe-dir): Consider server directory
2756 safe on MS-Windows if its owner is the Administrators group while
2757 the current Emacs user is Administrator. Use `=' to compare
2758 numerical UIDs, since they could be integers or floats.
2759
219bd536
JB
27602011-03-12 Juanma Barranquero <lekktu@gmail.com>
2761
2762 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
2763
f3afd36b
MA
27642011-03-12 Michael Albinus <michael.albinus@gmx.de>
2765
2766 Sync with Tramp 2.2.1.
2767
2768 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
2769
2770 * net/trampver.el: Update release number.
2771
3aaaa6f1
SM
27722011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2773
94642599
SM
2774 * progmodes/compile.el (compilation--previous-directory): Fix up
2775 various nil/dead-marker mismatches (bug#8014).
2776 (compilation-directory-properties, compilation-error-properties):
2777 Don't call it at a position past the one we're about to change.
2778
3aaaa6f1
SM
2779 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
2780 Disable obsolescence warnings in the file that declares it.
2781
14239447
KM
27822011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
2783
099c39a4
JB
2784 * allout-widgets.el (allout-widgets-tally):
2785 Initialize allout-widgets-tally as a hash table rather than nil to
2786 prevent mode-line redisplay warnings. Also, clarify the module
2787 description and fix a comment typo.
14239447 2788
135e287c
JB
27892011-03-11 Juanma Barranquero <lekktu@gmail.com>
2790
2791 * help-fns.el (describe-variable): Don't complete keywords.
2792 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
2793
ffbf300e
CY
27942011-03-10 Chong Yidong <cyd@stupidchicken.com>
2795
ba08b241
CY
2796 * emacs-lisp/package.el (package-version-join): Impose a standard
2797 string representation for pre/alpha/beta version lists.
2798 (package-unpack-single): Standardize the directory name by passing
2799 it through package-version-join.
2800 (package-strip-rcs-id): Accept any version string that does not
2801 signal an error in version-to-list.
ffbf300e 2802
f346fd6b
MA
28032011-03-10 Michael Albinus <michael.albinus@gmx.de>
2804
2805 * simple.el (delete-trailing-whitespace): Return nil for the
2806 benefit of `write-file-functions'.
2807
ccb55d27
GM
28082011-03-10 Glenn Morris <rgm@gnu.org>
2809
5ceaac0c
GM
2810 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
2811
02da65ff
GM
2812 * vc/vc-git.el (vc-git-program): New option.
2813 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
2814 (vc-git--call): Use it.
2815
b2f603cc
GM
2816 * eshell/esh-util.el (eshell-condition-case): Doc fix.
2817
5772caab
GM
2818 * cus-edit.el (Custom-newline): If no button at point, look
2819 for a subgroup button at start-of-line. (Bug#2298)
2820
ccb55d27
GM
2821 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
2822
ec6ecaed
JD
28232011-03-10 Julien Danjou <julien@danjou.info>
2824
2825 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
2826 `cursor-type' is nil.
2827
9d5aa01d
JB
28282011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
2829
2830 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
2831
b6a5875b
KM
28322011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
2833
2834 * allout.el Summary: Change so yank of distinctive-bullet items
2835 preserves the existing header prefix, rebulleting it if necessary,
2836 rather than replacing it. This is necessary for proper operation
2837 of cooperative addons like allout-widgets.
219bd536 2838 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
2839 SOLICIT arg to INSTEAD, and interpret additionally a string value
2840 as alternate bullet to be used, instead of prompting the user for
2841 a bullet character.
2842
ee545c35
MA
28432011-03-09 Michael Albinus <michael.albinus@gmx.de>
2844
d86d2721
SM
2845 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2846 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
2847 `tramp-default-port'.
2848
c47971d7
DD
28492011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2850
2851 * net/rcirc.el (rcirc-handler-001): Remove useless
2852 with-rcirc-process-buffer.
2853 (rcirc-check-auth-status): Swap arguments to string-match.
2854
13522cb4
GM
28552011-03-09 Glenn Morris <rgm@gnu.org>
2856
0be6f4f1
GM
2857 * shell.el (shell-mode):
2858 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
2859
13522cb4
GM
2860 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
2861 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
2862
515de2e3
CY
28632011-03-08 Chong Yidong <cyd@stupidchicken.com>
2864
2865 * emacs-lisp/package.el (package-refresh-contents)
2866 (package-menu-execute): Use condition-case-no-debug.
2867
b511b994
MA
28682011-03-08 Michael Albinus <michael.albinus@gmx.de>
2869
2870 * simple.el (shell-command-to-string): Use `process-file'.
2871
2872 * emacs-lisp/package.el (package-tar-file-info): Handle also
2873 remote files.
2874
d86d2721
SM
2875 * emacs-lisp/package-x.el (package-upload-buffer-internal):
2876 Use `equal' for upload base check.
b511b994 2877
25bbfb31
AM
28782011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
2879
2880 * textmodes/texinfo.el (texinfo-environments):
2881 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
2882
be996521
GM
28832011-03-08 Glenn Morris <rgm@gnu.org>
2884
e9c8529f
GM
2885 * cus-start.el (cursor-in-non-selected-windows):
2886 Fix :set quoting oddness. (Bug#8192)
2887
be996521
GM
2888 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
2889 in some setf expressions. (Bug#2159)
2890
2bb5649e
CY
28912011-03-08 Chong Yidong <cyd@stupidchicken.com>
2892
2893 * custom.el (custom-available-themes): Return themes in
2894 alphabetical order.
2895
33383987 2896See ChangeLog.15 for earlier changes.
e3d51b27
MR
2897
2898;; Local Variables:
2899;; coding: utf-8
e3d51b27
MR
2900;; End:
2901
33383987 2902 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
2903
2904 This file is part of GNU Emacs.
2905
2906 GNU Emacs is free software: you can redistribute it and/or modify
2907 it under the terms of the GNU General Public License as published by
2908 the Free Software Foundation, either version 3 of the License, or
2909 (at your option) any later version.
2910
2911 GNU Emacs is distributed in the hope that it will be useful,
2912 but WITHOUT ANY WARRANTY; without even the implied warranty of
2913 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2914 GNU General Public License for more details.
2915
2916 You should have received a copy of the GNU General Public License
2917 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.