Fix some em-hist custom types.
[bpt/emacs.git] / lisp / ChangeLog
1 2011-12-01 Glenn Morris <rgm@gnu.org>
2
3 * eshell/em-hist.el (eshell-hist-initialize):
4 Handle eshell-history-size nil and HISTSIZE set or unset.
5 (eshell-history-file-name, eshell-history-size): Fix custom type.
6
7 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8
9 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
10
11 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12
13 * progmodes/verilog-mode.el (verilog-pretty-expr):
14 Rework verilog-pretty-expr to handle new assignment operators in system
15 verilog, such as += *= and the like.
16 (verilog-assignment-operator-re): Regular expression to find the
17 assigment operator in a verilog assignment.
18 (verilog-assignment-operation-re): Regular expression to find an
19 assignment statement for pretty-expr.
20 (verilog-in-attribute-p): Query returns true if point is in an
21 attribute context; used to skip these for expression line up from
22 pretty-expr.
23 (verilog-in-parameter-p): Query returns true if point is in an
24 parameter definition context; used to skip these for expression
25 line up from pretty-expr.
26 (verilog-in-parenthesis-p): Query returns true if point is in a
27 parenthetical expression, specifically ( ) but not [ ] or { };
28 used by pretty-expr.
29 (verilog-just-one-space): If there is no space, don't add one.
30 (verilog-get-lineup-indent-2): Specifically skip just attribute
31 contexts for expression lineup, rather than skipping all
32 parenthetical expressions.
33 (verilog-calculate-indent): Fix comment, and fix indent.
34 (verilog-do-indent): Indent declarations in lists (suggested by
35 Joachim Lechner).
36 (verilog-mode-abbrev-table): Populate abbrev mode with the various
37 skeleton items.
38 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
39 by Alain Mellan).
40
41 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
42
43 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
44 parameters with embedded comments. Reported by Ray Stevens.
45 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
46 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
47 Reported by Tim Holt.
48 (verilog-auto): Fix AUTOing a upper module then AUTOing module
49 instantiated by upper module causing wrong expansion until AUTOed a
50 second time. Reported by K C Buckenmaier.
51 (verilog-diff-auto): Fix showing .* as a difference when
52 `verilog-auto-star-save' off. Reported by Dan Dever.
53 (verilog-auto-reset, verilog-read-always-signals)
54 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
55 temporary signals in reset list if
56 verilog-auto-reset-blocking-in-non is nil, and match assignment
57 style to each signal's assignment type, bug381.
58 Reported by Thomas Esposito.
59 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
60 (verilog-uvm-statement-re): Support UVM indentation and
61 highlighting, with old OVM keywords only.
62 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
63 Support AUTOTIEOFF creating non-wire data types. Suggested by Jonathan
64 Greenlaw.
65 (verilog-auto-insert-lisp, verilog-delete-to-paren)
66 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
67 (verilog-inject-sense, verilog-read-inst-pins)
68 (verilog-read-sub-decls, verilog-read-sub-decls-line):
69 Fix mismatching parenthesis inside commented out code when deleting
70 AUTOINST, bug383. Reported by Jonathan Greenlaw.
71 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
72 non-numeric vector width. Reported by Alex Reed.
73 (verilog-auto-ascii-enum): Add "onehot" option to work around not
74 detecting signals with parameter widths. Reported by Alex Reed.
75 (verilog-auto-delete-trailing-whitespace):
76 With `verilog-auto-delete-trailing-whitespace' remove trailing
77 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
78 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
79 Fix verilog-scan-cache corruption when running user AUTO expansion
80 hooks that call indentation routines.
81 (verilog-simplify-range-expression): Fix typo ignoring lower case
82 identifiers.
83 (verilog-delete-auto): Fix delete-autos to also remove user created
84 automatics, as long as they start with AUTO.
85 (verilog-batch-diff-auto, verilog-diff-auto)
86 (verilog-diff-function): Add `verilog-diff-auto' and bind to
87 "C-c?" to report differences in AUTO expansion, ignoring spaces.
88 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
89 (verilog-in-paren-quick, verilog-re-search-backward-quick)
90 (verilog-re-search-forward-quick, verilog-syntax-ppss):
91 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
92 is disabled and its cache will get corrupt, causing AUTOS not to
93 expand. Instead use only -quick functions.
94 (verilog-scan-region): Fix scanning over escaped quotes.
95 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
96 (verilog-re-search-backward-quick)
97 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
98 related functions now ignore strings, to fix misparsing of strings
99 with magic comments embedded in them.
100 (verilog-read-auto-template):
101 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
102 Reported by Brad Dobbie.
103 (verilog-read-auto-template):
104 Fix 'verilog-auto-inst-template-numbers' with comments.
105 Reported by Brad Dobbie.
106 (verilog-auto-inst, verilog-auto-inst-param)
107 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
108 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
109 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
110 debugging templates without merge conflicts, bug357.
111 Reported by Brad Dobbie.
112 (verilog-read-auto-template):
113 Fix verilog-auto-inst-template-numbers with multiple templates.
114 Reported by Brad Dobbie.
115 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
116 abbrevs so user won't be asked to save.
117 (verilog-read-auto-lisp-present): Fix to start at beginning of
118 buffer in case called outside of verilog-auto.
119 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
120 to "X-2". Reported by Matthew Myers.
121 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
122 all inputs from module templates. Reported by Leith Johnson.
123 (verilog-module-inside-filename-p): Fix locating programs as with
124 modules.
125 (verilog-auto-inst-port): Fix vl-width expressions when using
126 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
127 (verilog-decls-get-regs, verilog-decls-get-signals,
128 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
129 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
130 verilog-read-decls): Combine reg and wire structures into one var
131 structure to represent SystemVerilog concepts.
132 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
133 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
134 (verilog-auto-wire-type, verilog-insert-definition):
135 Add verilog-auto-wire-type and AUTOLOGIC to support using
136 SystemVerilog "logic" keyword instead of "wire"/"reg".
137 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
138 to declares outputs that also have assignments (presumably in an
139 ifdef or generate if so there's not a driver conflict).
140 Reported by Matthew Myers.
141 (verilog-auto-declare-nettype, verilog-insert-definition):
142 Add verilog-auto-declare-nettype to fix declarations using
143 `default_nettype none. Reported by Julian Gorfajn.
144 (verilog-read-always-signals-recurse, verilog-read-decls)
145 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
146 malformed end statement, bug325. Reported by Joshua Wise and
147 Andrew Drake.
148 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
149 (verilog-inst-comment-re): Fix not deleting Interfaced comment
150 when expanding .* in interfaces, bug320. Reported by Pierre-David
151 Pfister.
152 (verilog-read-module-name): Fix import statements between module
153 name and open parenthesis, bug317. Reported by Pierre-David
154 Pfister.
155 (verilog-simplify-range-expression): Fix simplification of
156 multiplications inside AUTOWIRE connections, bug303.
157 (verilog-auto-inst-port): Support parameter expansion in
158 multidimensional arrays.
159 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
160 after "assert property". Reported by Julian Gorfajn.
161 (verilog-simplify-range-expression): Fix "couldn't merge" errors
162 with multiplication, bug303.
163 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
164 Reported by Jan Frode Lonnum.
165
166 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
167
168 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
169 (hfy-shell-file-name, hfy-shell):
170 * international/fontset.el (x-decompose-font-name): Fix typos.
171
172 2011-11-29 Ken Brown <kbrown@cornell.edu>
173
174 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
175 (gdb-version): Remove defvar.
176 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
177 (gdb-gud-context-command, gdb-non-stop-handler)
178 (gdb-current-context-command, gdb-stopped): Use it.
179 (gdb-init-1): Enable pretty printing here.
180 (gdb-non-stop-handler): Don't enable pretty-printing here. Check
181 to see if the target supports non-stop mode; if not, turn off
182 non-stop mode. Use the following.
183 (gdb-check-target-async): New defun.
184 (gud-watch, gdb-stopped): Fix whitespace.
185 (gdb-get-source-file): Don't try to display the source file if
186 `gdb-main-file' is nil.
187
188 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
189
190 * align.el: Try to generate fewer markers (bug#10047).
191 (align--set-marker): New macro.
192 (align-region): Use it.
193
194 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
195
196 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
197
198 2011-11-29 Chong Yidong <cyd@gnu.org>
199
200 * indent.el (indent-for-tab-command, indent-according-to-mode):
201 Doc fix.
202 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
203
204 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
205
206 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
207 aware of remote file names. (Bug#10124)
208
209 2011-11-29 Chong Yidong <cyd@gnu.org>
210
211 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
212
213 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
214
215 * files.el (find-file): Don't use force-same-window (bug#10144).
216 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
217 use pop-to-buffer if the selected window can't be used.
218 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
219
220 2011-11-28 Eli Zaretskii <eliz@gnu.org>
221
222 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
223 special-mode-map.
224
225 2011-11-28 Chong Yidong <cyd@gnu.org>
226
227 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
228
229 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
230
231 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
232 gdb-get-source-file-list on gdb-create-source-file-list.
233
234 2011-11-26 Eli Zaretskii <eliz@gnu.org>
235
236 * whitespace.el (whitespace-newline): Use a different foreground
237 color for 16-color light-background displays.
238
239 2011-11-24 Chong Yidong <cyd@gnu.org>
240
241 * window.el (display-buffer--special-action): Doc fix.
242
243 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
244
245 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
246 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
247 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
248 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
249 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
250 (avl-tree-stack-first):
251 * emacs-lisp/cconv.el (cconv--analyse-use):
252 * net/gnutls.el (gnutls-negotiate): Fix typos.
253
254 2011-11-24 Glenn Morris <rgm@gnu.org>
255
256 * lpr.el (lpr-windows-system, lpr-lp-system):
257 * mail/binhex.el (binhex-begin-line):
258 * progmodes/grep.el (grep-history, grep-find-history):
259 * textmodes/flyspell.el:
260 * vc/pcvs-defs.el (cvs-global-menu):
261 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
262 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
263 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
264
265 * net/tls.el: Fix case of "GnuTLS".
266
267 * paths.el (rmail-file-name): Format doc-string for make-docfile.
268
269 * version.el (emacs-build-system): Give it a doc-string.
270
271 2011-11-24 Juri Linkov <juri@jurta.org>
272
273 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
274
275 2011-11-24 Glenn Morris <rgm@gnu.org>
276
277 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
278 if called on a non-mime message just toggle the headers. (Bug#8006)
279
280 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
281
282 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
283 (allout-lead-with-comment-string, allout-structure-deleted-hook)
284 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
285 (allout-rebullet-heading, allout-open-sibtopic)
286 (allout-toggle-current-subtree-encryption)
287 (allout-toggle-subtree-encryption, allout-encrypt-string)
288 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
289 (allout-distinctive-bullets-string, allout-auto-activation):
290 * window.el (window-normalize-buffer-to-display):
291 * progmodes/verilog-mode.el (verilog-batch-indent):
292 * textmodes/bibtex.el (bibtex-field-braces-opt)
293 (bibtex-field-strings-opt):
294 * vc/cvs-status.el (cvs-tree-merge):
295 Fix typos.
296
297 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
298
299 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
300 `non-essential' to t, in order to avoid remote connections.
301
302 2011-11-23 Eli Zaretskii <eliz@gnu.org>
303
304 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
305 On MS-DOS and MS-Windows, compare with loaddefs.el
306 case-insensitively.
307
308 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
309
310 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
311
312 2011-11-23 Glenn Morris <rgm@gnu.org>
313
314 * paths.el (rmail-file-name): Reformat the doc-string so that it
315 is picked up.
316
317 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
318 (rmail-auto-file): Ignore case in the "special" field names,
319 as mail-fetch-field does for all others.
320
321 * mail/rmail.el (rmail-forward):
322 * mail/rmailkwd.el (rmail-set-label):
323 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
324 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
325
326 * mail/rmail.el (rmail-current-message): Doc fix.
327
328 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
329
330 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
331
332 * server.el (server-eval-and-print): Allow C-g (bug#6585).
333
334 2011-11-22 Glenn Morris <rgm@gnu.org>
335
336 * mail/rmailmm.el (test-rmail-mime-handler)
337 (test-rmail-mime-bulk-handler)
338 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
339
340 2011-11-21 Juri Linkov <juri@jurta.org>
341
342 * calc/calc.el (calc-read-key-sequence): Let-bind `input-method-function'
343 to nil. (Bug#10018)
344
345 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
346
347 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
348 Tell the caller that the next line needs recomputation, even
349 though it doesn't start a sexp (bug#10094).
350
351 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
352
353 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
354
355 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
356
357 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
358 Use force-same-window.
359
360 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
361
362 * descr-text.el (describe-char-unicode-data):
363 * json.el (json-string-escape):
364 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
365 (Footnote-unicode, Footnote-style-p):
366 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
367
368 2011-11-20 Chong Yidong <cyd@gnu.org>
369
370 * window.el (replace-buffer-in-windows): Restore interactive spec.
371
372 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 * electric.el (electric-indent-mode): Fix last change (too optimistic).
375
376 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
377 (byte-compile-global-not-obsolete-vars): New var.
378 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
379 Use it.
380 (byte-compile-warn-obsolete): Align text with the one in *Help*.
381
382 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
383
384 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
385 * progmodes/pascal.el (electric-pascal-equal):
386 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
387 * xml.el (xml-substitute-special): Fix typos.
388
389 2011-11-20 Glenn Morris <rgm@gnu.org>
390
391 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
392 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
393 Doc fixes.
394 (rmail-decode-mime-charset): Mark as obsolete.
395
396 * mail/rmailsum.el (rmail-message-regexp-p-1):
397 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
398 Before using mime functions, check they are set. (Bug#10077)
399
400 2011-11-19 Juri Linkov <juri@jurta.org>
401
402 * info.el (Info-finder-find-node): Use `package--builtins' instead
403 of `package-alist'. Use node names formed by the pattern "Keyword "
404 and the keyword name.
405
406 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
407
408 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for
409 bash.
410
411 2011-11-19 Juri Linkov <juri@jurta.org>
412
413 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
414 that calls `revert-buffer' on all Info buffers. (Bug#9915)
415 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
416 `old-history', `old-history-forward'. Add let-binding
417 `window-selected'. Remove calls to `kill-buffer',
418 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
419 before calling `Info-find-node', so `Info-find-node-2' will reread
420 the Info file. Restore window positions only when `window-selected'
421 is non-nil.
422
423 2011-11-19 Juri Linkov <juri@jurta.org>
424
425 * isearch.el (isearch-lazy-highlight-new-loop):
426 Remove condition `(not isearch-error)'. (Bug#9918)
427
428 * misearch.el (multi-isearch-search-fun): Add condition
429 `(not bound)' to ignore lazy-highlighting search.
430 Add the search-failed message "end of multi" when the end of
431 multi-sequence is reached. Uncapitalize the search-failed
432 message "Repeat for next buffer".
433
434 * info.el (Info-search): Add the search-failed message
435 "end of the manual" when the end of the manual is reached
436 in Isearch mode.
437
438 2011-11-19 Juri Linkov <juri@jurta.org>
439
440 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
441 Use non-destructive `remove' instead of `delete' because
442 `Info-history-list' stored to `Info-isearch-initial-history-list' in
443 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
444
445 2011-11-19 Juri Linkov <juri@jurta.org>
446
447 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
448 to nil instead of binding `search-ring' and `regexp-search-ring'.
449 (Bug#9185)
450
451 2011-11-19 Eli Zaretskii <eliz@gnu.org>
452
453 * simple.el (line-move): Force movement by logical lines for any
454 hscrolled window, not only when auto-hscroll-mode is on.
455 (line-move-visual): Update doc string to that effect. (Bug#10076)
456
457 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
458
459 * language/european.el (macintosh): Define as alias for mac-roman.
460
461 2011-11-19 Eli Zaretskii <eliz@gnu.org>
462
463 * mail/rmailmm.el (rmail-mime-display-header)
464 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
465 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
466 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
467 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
468 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
469 of a raw aref.
470 (rmail-mime-entity-segment): To get past the tagline, move forward
471 2 more lines, to account for the 2 empty lines that precede and
472 follow the line with the buttons.
473 (rmail-mime-update-tagline): Move one more line, to get past the
474 empty line that follows the buttons in the tagline. (Bug#9520)
475
476 2011-11-19 Martin Rudalics <rudalics@gmx.at>
477
478 * window.el (window-max-delta-1, window-min-delta-1)
479 (window-min-size-1, window-state-get-1, window-state-put-1)
480 (window-state-put-2): Use "window--" prefix.
481
482 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
483
484 * emacs-lisp/smie.el: Improve warnings and conflict detection.
485 (smie-warning-count): New var.
486 (smie-set-prec2tab): Use it.
487 (smie-bnf->prec2): Improve warnings. Add docstring.
488 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
489 (smie-bnf--set-class): New function.
490 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
491 corner case.
492
493 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
494 (compilation-error-properties, compilation-move-to-column):
495 Handle compilation-first-column while in the target buffer.
496
497 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
498 Don't hardcode point-min==1.
499
500 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
501 (eshell-rewrite-for-command): Remove workaround.
502 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
503 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
504 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
505
506 * files-x.el (modify-file-local-variable): Obey commenting conventions.
507
508 2011-11-17 Glenn Morris <rgm@gnu.org>
509
510 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
511 Ignore buffer-local generated-autoload-file if it is the same
512 as the global value. (Bug#10049)
513
514 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
515
516 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
517 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
518 (reftex-toc-previous-heading, reftex-toc-max-level)
519 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
520 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
521 (reftex-toc-do-promote, reftex-toc-promote-prepare)
522 (reftex-toc-promote-action, reftex-toc-extract-section-number)
523 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
524 (reftex-toc-rename-label, reftex-toc-visit-location)
525 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
526 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
527 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
528 leaving "*toc*" only for references to the buffer.
529
530 2011-11-17 Martin Rudalics <rudalics@gmx.at>
531
532 * window.el (window-resize, delete-window, split-window):
533 Replace window-splits by window-combination-resize.
534 * cus-start.el (window-splits): Replace by
535 window-combination-resize.
536
537 2011-11-17 Glenn Morris <rgm@gnu.org>
538
539 * progmodes/sh-script.el (sh-font-lock-keywords-var):
540 Make bash entry derive from sh entry, not shell entry.
541
542 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
543
544 * net/tramp-cache.el (tramp-flush-file-property): Flush also
545 properties of linked files. (Bug#9879)
546
547 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
548 local file name.
549
550 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
551
552 * menu-bar.el (menu-bar-file-menu):
553 * printing.el (pr-ps-utility):
554 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
555 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
556 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
557 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
558 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
559 (icalendar--convert-cyclic-to-ical)
560 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
561 (icalendar--convert-ical-to-diary)
562 (icalendar--convert-recurring-to-diary)
563 (icalendar--convert-non-recurring-all-day-to-diary)
564 (icalendar-import-format-sample):
565 * progmodes/idlw-shell.el (idlwave-shell-mode):
566 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
567 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
568 (vhdl-ps-print-init): Fix typos.
569
570 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
571
572 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
573 FSF and collapse date sequence, obscure author/maintainer email address
574 better, remove extra version line, track relocation of author's webpage.
575
576 * progmodes/python.el (python-pdbtrack-input-prompt)
577 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
578 regular python pdb prompts. Adjustments shamelessly taken exactly as
579 suggested in EmacsWiki page (tiny change):
580 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
581
582 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
583
584 * expand.el (expand-pos, expand-index, expand-point):
585 Remove redundant info from docstring.
586 (expand-add-abbrevs): Doc fix.
587 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
588 (expand-sample-perl-mode-expand-list): Fix typos.
589
590 * net/dbus.el (dbus-event-member-name):
591 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
592 * term/pc-win.el (msdos-create-frame-with-faces):
593 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
594
595 2011-11-16 Martin Rudalics <rudalics@gmx.at>
596
597 * window.el (split-window, window-state-get-1)
598 (window-state-put-1, window-state-put-2): Rename occurrences of
599 window-nest to window-combination-limit.
600 * cus-start.el (window-nest): Rename to
601 window-combination-limit.
602
603 2011-11-16 Chong Yidong <cyd@gnu.org>
604
605 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
606 regexp (Bug#10033).
607
608 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
609
610 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
611 `completing-read' will remove *Completions* and will preserve
612 current-buffer for us.
613 (tmm-add-prompt): Users of *Completions* will always (re)set its
614 major mode.
615 (tmm-old-comp-map): Remove.
616
617 2011-11-16 Glenn Morris <rgm@gnu.org>
618
619 * mail/rmailedit.el: Require rmailmm when compiling.
620 (rmail-old-mime-state): New declaration.
621 (rmail-edit-current-message): If editing a mime message,
622 edit the "raw" message from the mbox buffer.
623 (rmail-cease-edit): Handle mime messages. (Bug#9840)
624
625 2011-11-15 Glenn Morris <rgm@gnu.org>
626
627 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
628 which wasn't being used. Add optional arg to force given state.
629 (rmail-mime): Add optional arg to force given state.
630
631 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
632
633 * allout.el (allout-encryption-plaintext-sanitization-regexps):
634 * frame.el (display-mm-dimensions-alist):
635 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
636 (outline-move-subtree-down):
637 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
638 (newsticker--treeview-do-get-node):
639 * net/quickurl.el (quickurl-list-buffer-name):
640 * progmodes/dcl-mode.el (dcl-mode):
641 * progmodes/gdb-mi.el (gdb-mapcar*):
642 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
643
644 2011-11-15 Glenn Morris <rgm@gnu.org>
645
646 * mail/rmail.el (rmail-file-coding-system): It's only ever used
647 in a boolean sense, so just make it a boolean, and fix the doc.
648 (rmail-show-mime-function, rmail-mime-feature)
649 (rmail-require-mime-maybe): Doc fixes.
650 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
651
652 * mail/rmailmm.el (rmail-show-mime): Doc fix.
653
654 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
655
656 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
657 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
658 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
659 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
660
661 2011-11-15 Glenn Morris <rgm@gnu.org>
662
663 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
664 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
665 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
666 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
667 (rmail-mime, rmail-show-mime): Doc fixes.
668
669 * term/ns-win.el (mode-line-frame-identification):
670 Leave it alone. (Bug#10051)
671
672 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
673
674 * mail/rmailout.el (rmail-output-to-rmail-buffer):
675 Handle empty buffers. (Bug#9978)
676
677 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
678
679 * international/mule.el (define-charset):
680 * mail/rmailmm.el (rmail-mime-find-header-encoding):
681 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
682 * progmodes/verilog-mode.el (verilog-backward-token):
683 * textmodes/ispell.el (lookup-words):
684 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
685
686 2011-11-14 Glenn Morris <rgm@gnu.org>
687
688 * progmodes/executable.el
689 (executable-make-buffer-file-executable-if-script-p):
690 Handle file-modes returning nil.
691
692 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
693 message - not necessary, and causes problems. (Bug#9831)
694
695 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
696
697 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
698
699 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
700 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
701 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
702
703 2011-11-12 Martin Rudalics <rudalics@gmx.at>
704
705 * window.el (window-resize, delete-window): Use window-splits
706 variable instead of function.
707 (window-state-get-1, window-state-put-2, window-state-put):
708 Don't deal with windows' splits status.
709
710 2011-11-12 Glenn Morris <rgm@gnu.org>
711
712 * apropos.el (apropos-do-all, apropos-library, apropos-value)
713 (apropos-documentation): Doc fixes.
714
715 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
716
717 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
718 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
719
720 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
721
722 * electric.el (electric-indent-post-self-insert-function): Make it
723 possible for a char to only indent in some circumstances.
724 (electric-indent-mode): Simplify.
725
726 2011-11-11 Martin Rudalics <rudalics@gmx.at>
727
728 * window.el (windows-with-parameter): Remove unused function.
729 (windows-at-side): Rename to window-at-side-list.
730 (window-check, window-atom-check, window-atom-check-1)
731 (window-side-check, window-size-ignore, window-size-fixed-1)
732 (window-in-direction-2): Prefix with "window--".
733 (window-tree-1): Rename to window--subtree, fix doc-string.
734
735 2011-11-11 Glenn Morris <rgm@gnu.org>
736
737 * subr.el (eval-after-load): If FILE is already loaded,
738 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
739
740 2011-11-10 Glenn Morris <rgm@gnu.org>
741
742 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
743 Call svn via vc-svn-command rather than vc-do-command.
744 (vc-svn-command): Add --non-interactive. (Bug#9993)
745 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
746
747 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
748 Add toggle-read-only. (Bug#7292)
749 * files.el (toggle-read-only): Mention that it should only
750 be used interactively. (Bug#10006)
751
752 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
753
754 * progmodes/compile.el (compilation-error-regexp-alist-alist):
755 Adjust regexp for OCaml warnings.
756
757 * electric.el (electric-pair-post-self-insert-function): Let user
758 turn it off buffer-locally (bug#9932).
759
760 * progmodes/python.el (python-beginning-of-statement):
761 Rewrite (bug#2703).
762
763 * progmodes/compile.el: Better handle TABs (bug#9749).
764 (compilation-internal-error-properties)
765 (compilation-next-error-function): Obey the target buffer's
766 compilation-error-screen-columns.
767
768 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
769
770 * progmodes/meta-mode.el: Remove obsolete comments.
771 (meta-right-comment-regexp, meta-ignore-comment-regexp):
772 Fix typos in docstrings.
773
774 2011-11-09 Martin Rudalics <rudalics@gmx.at>
775
776 * window.el (window-size-fixed-p): Rewrite doc-string.
777 (window-resizable-p): Rename to window--resizable-p. Update callers.
778 (window--resizable): New function. Make all callers of
779 window-resizable call window--resizable instead.
780 (window-resizable): Rewrite in terms of window--resizable.
781
782 2011-11-08 Glenn Morris <rgm@gnu.org>
783
784 * progmodes/delphi.el (delphi-mode-syntax-table):
785 Let define-derived-mode define a proper syntax table. (Bug#9994)
786
787 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * window.el: Stay away from defsubst.
790 (window-list-no-nils): Remove.
791 (window-state-get-1, window-state-get): Use backquote instead.
792
793 2011-11-08 thierry <thierry.volpiatto@gmail.com>
794
795 * emacs-lisp/find-func.el (find-function-read):
796 Fix incorrect use of default argument in `completing-read'.
797
798 2011-11-08 Martin Rudalics <rudalics@gmx.at>
799
800 * window.el (display-buffer-function, special-display-function):
801 Mention display-buffer-record-window but do not mention
802 help-setup parameter in doc-strings.
803 (window-min-delta): Fix doc-string typo.
804
805 2011-11-08 Chong Yidong <cyd@gnu.org>
806
807 * window.el (window-total-height, window-total-width): Doc fix.
808 (window-body-size): Move from C.
809 (window-body-height, window-body-width): Move to C.
810
811 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
812
813 * window.el: Make special-display like display-buffer-alist (bug#9532).
814 (display-buffer--special-action): New function, morphed
815 from display-buffer--special.
816 (display-buffer): Use it to handle special-display-buffers at higher
817 priority (just after display-buffer-alist).
818 (display-buffer-fallback-action, display-buffer--other-frame-action)
819 (pop-to-buffer-same-window): Remove display-buffer--special.
820
821 2011-11-07 Glenn Morris <rgm@gnu.org>
822
823 * calendar/cal-menu.el (cal-menu-set-date-title):
824 Do nothing if not in a calendar. (Bug#9976)
825
826 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
827
828 * files.el (find-file): Always use selected-window.
829
830 2011-11-07 Martin Rudalics <rudalics@gmx.at>
831
832 * window.el (window-combinations): Make WINDOW argument
833 mandatory. Rewrite doc-string.
834 (walk-window-subtree, window-atom-check, window-min-delta)
835 (window-max-delta, window--resize-this-window)
836 (window--resize-root-window-vertically, window-tree)
837 (balance-windows, window-state-put): Rewrite doc-strings as to
838 not mention the term "subwindow".
839 (window--resize-subwindows-skip-p): Rename to
840 window--resize-child-windows-skip-p.
841 (window--resize-subwindows-normal): Rename to
842 window--resize-child-windows-normal.
843 (window--resize-subwindows): Rename to
844 window--resize-child-windows.
845 (window-or-subwindow-p): Rename to window--in-subtree-p.
846
847 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
848
849 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
850 Ensure that mbox format messages end in two newlines (Bug#9974).
851
852 2011-11-06 Chong Yidong <cyd@gnu.org>
853
854 * window.el (window-combination-p): Function deleted; its
855 side-effect is not used in any existing code.
856 (window-combinations, window-combined-p): Call window-*-child
857 directly.
858
859 2011-11-05 Chong Yidong <cyd@gnu.org>
860
861 * window.el (window-valid-p): Rename from window-any-p.
862 (window-size-ignore, window-state-get): Callers changed.
863 (window-normalize-window): Rename from window-normalize-any-window.
864 New arg LIVE-ONLY, replacing window-normalize-live-window.
865 (window-normalize-live-window): Delete.
866 (window-combination-p, window-combined-p, window-combinations)
867 (walk-window-subtree, window-atom-root, window-min-size)
868 (window-sizable, window-sizable-p, window-size-fixed-p)
869 (window-min-delta, window-max-delta, window-resizable)
870 (window-resizable-p, window-full-height-p, window-full-width-p)
871 (window-current-scroll-bars, window-point-1, set-window-point-1)
872 (window-at-side-p, window-in-direction, window-resize)
873 (adjust-window-trailing-edge, maximize-window, minimize-window)
874 (window-deletable-p, delete-window, delete-other-windows)
875 (record-window-buffer, unrecord-window-buffer)
876 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
877 (quit-window, split-window, window-state-put)
878 (set-window-text-height, fit-window-to-buffer)
879 (shrink-window-if-larger-than-buffer): Callers changed.
880
881 2011-11-04 Eli Zaretskii <eliz@gnu.org>
882
883 * mail/rmail.el (rmail-simplified-subject): Decode subject with
884 rfc2047-decode-string.
885 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
886 warnings.
887
888 * window.el (window-body-height, window-body-width): Mention in
889 the doc string that the return values are in frame's canonical
890 units. (Bug#9949)
891
892 2011-11-03 Alan Mackenzie <acm@muc.de>
893
894 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
895 change in cc-engine.el.
896
897 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
898
899 * window.el (switch-to-buffer): Use `force-same-window' interactively.
900
901 2011-11-02 Martin Rudalics <rudalics@gmx.at>
902
903 * window.el (quit-window): Call unrecord-window-buffer after
904 showing another buffer in the window. (Bug#9937)
905 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
906
907 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
908
909 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
910 Accept status with more than 9 shelves. (Bug#9935)
911 Reported by Colin D Bennett <colin@gibibit.com>.
912
913 2011-11-01 Martin Rudalics <rudalics@gmx.at>
914
915 * help.el (with-help-window): Don't reference
916 temp-buffer-show-specifiers in doc-string.
917
918 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
919
920 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
921 menu-item.
922
923 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
924
925 * whitespace.el: New version 13.2.2.
926 (whitespace-newline-mode): Disable properly. Reported by Sarah
927 <EmacsWiki>.
928
929 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
930
931 * net/newst-treeview.el: Remove "Time-stamp".
932 (newsticker--group-manage-orphan-feeds): Do not call
933 newsticker--treeview-tree-update.
934 (newsticker-treeview-update, newsticker-treeview):
935 Call newsticker--treeview-tree-update if necessary.
936
937 2011-10-30 Martin Rudalics <rudalics@gmx.at>
938
939 * window.el (window-iso-combination-p, window-iso-combined-p)
940 (window-iso-combinations): Remove "iso-" infix.
941 Suggested by Chong Yidong.
942 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
943 (window-max-delta-1, window-resize, window--resize-siblings)
944 (window--resize-this-window, adjust-window-trailing-edge)
945 (split-window, balance-windows-1)
946 (shrink-window-if-larger-than-buffer):
947 * calendar/calendar.el (calendar-generate-window):
948 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
949
950 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
951
952 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
953 in place (bug#9907).
954 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
955 (eshell-rewrite-if-command, eshell-rewrite-for-command)
956 (eshell-structure-basic-command, eshell-rewrite-while-command)
957 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
958 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
959 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
960 (eshell-do-pipelines-synchronously, eshell-eval-command):
961 Use backquotes and prefer setq to set.
962 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
963 (eshell-macrop): Use functionp.
964 (eshell-do-eval): Handle multiple expressions in `while' body.
965
966 2011-10-30 Chong Yidong <cyd@gnu.org>
967
968 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
969 instead of set-mark (Bug#9810).
970
971 2011-10-30 Chong Yidong <cyd@gnu.org>
972
973 * window.el (split-window-below, split-window-right): Rename from
974 split-window-above-each-other and split-window-side-by-side
975 respectively. All callers changed.
976 (split-window-sensibly, split-window-sensibly): Use them.
977 (split-window-keep-point): Doc fix.
978
979 * isearch.el: Add isearch-scroll property to split-window-below
980 and split-window-right.
981
982 * follow.el (follow-mode):
983 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
984 * progmodes/ada-xref.el (ada-gdb-application):
985 * emulation/vip.el (vip-buffer-in-two-windows):
986 * image-dired.el (image-dired-dired-with-window-configuration):
987 * dired-x.el (dired-do-find-marked-files):
988 * dired.el (dired-pop-to-buffer):
989 * bs.el (bs--show-with-configuration):
990 * vc/emerge.el (emerge-setup-windows):
991 * textmodes/two-column.el (2C-two-columns):
992 * textmodes/reftex-toc.el (reftex-toc):
993 * progmodes/gdb-mi.el (gdb-setup-windows):
994 * progmodes/fortran.el (fortran-window-create):
995 * net/newst-treeview.el (newsticker--treeview-window-init):
996 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
997 * emulation/tpu-edt.el (tpu-gold-map):
998 * emulation/crisp.el (crisp-mode-map):
999 * calendar/calendar.el (calendar-basic-setup): Callers changed.
1000
1001 2011-10-29 Chong Yidong <cyd@gnu.org>
1002
1003 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
1004
1005 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
1006
1007 * textmodes/flyspell.el (flyspell-word): Fix char offset for
1008 forged Ispell output (Bug#7904).
1009
1010 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
1011
1012 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1013
1014 * doc-view.el: Avoid ugly errors about not finding nil.
1015 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
1016 (doc-view-dvipdf-program, doc-view-unoconv-program)
1017 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
1018 Avoid nil or absolute file name as default value.
1019 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
1020
1021 2011-10-28 Alan Mackenzie <acm@muc.de>
1022
1023 * progmodes/cc-defs.el (c-version): -> 5.32.2.
1024
1025 2011-10-28 Alan Mackenzie <acm@muc.de>
1026
1027 Amend the handling of c-beginning/end-of-defun in nested declaration
1028 scopes.
1029
1030 * progmodes/cc-vars.el (c-defun-tactic): Move here from
1031 cc-langs.el. Change it to a defcustom.
1032
1033 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
1034 cc-vars.el.
1035
1036 * progmodes/cc-engine.el (c-beginning-of-statement-1):
1037 Prevent "class foo : bar" being spuriously recognized as a label.
1038
1039 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
1040 Add parameter `inclusive' (to include enclosing braces in the region).
1041 (c-widen-to-enclosing-decl-scope): New function.
1042 (c-while-widening-to-decl-block): New macro.
1043 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
1044 outward for defun boundaries, and correspondingly change symbol
1045 `respect-enclosure' to `go-outward'.
1046 (c-declaration-limits): Change algorithm to report only the "innermost"
1047 defun's boundaries.
1048
1049 2011-10-28 Deniz Dogan <deniz@dogan.se>
1050
1051 * net/rcirc.el (rcirc-mode): Use hard newlines.
1052
1053 2011-10-28 Alan Mackenzie <acm@muc.de>
1054
1055 Amend to indent and fontify macros "which include their own semicolon"
1056 correctly, using the "virtual semicolon" mechanism.
1057
1058 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
1059
1060 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
1061 Recode to scan one line at a time rather than having \n and \r
1062 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
1063 (c-forward-label): Amend for virtual semicolons.
1064 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
1065
1066 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
1067 of the new C macros.
1068
1069 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
1070 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
1071 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
1072 (c-opt-cpp-macro-define): Make into a full language variable.
1073 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
1074 AWK Mode (including \n, \r) removed, no longer needed.
1075
1076 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
1077 Invoke c-make-macro-with-semi-re.
1078
1079 * progmodes/cc-vars.el (c-macro-with-semi-re):
1080 (c-macro-names-with-semicolon): New variables.
1081 (c-make-macro-with-semi-re): New function.
1082
1083 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1084
1085 * vc/log-edit.el: Fill empty field rather than adding new one.
1086 (log-edit-add-field): New function.
1087 (log-edit-insert-changelog): Use it.
1088
1089 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1090
1091 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
1092
1093 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1094
1095 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
1096 (gdb--check-interpreter): New function.
1097 (gdb): Use it.
1098
1099 2011-10-27 Glenn Morris <rgm@gnu.org>
1100
1101 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
1102 (least-positive-float, least-negative-float)
1103 (least-positive-normalized-float, least-negative-normalized-float)
1104 (float-epsilon, float-negative-epsilon):
1105 Remove unnecessary declarations.
1106
1107 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
1108 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
1109 (least-positive-float, least-negative-float)
1110 (least-positive-normalized-float, least-negative-normalized-float)
1111 (float-epsilon, float-negative-epsilon): Add doc-strings,
1112 based on those in cl.texi.
1113
1114 * files.el (set-visited-file-name): If the major-mode changed,
1115 reload the local variables. (Bug#9796)
1116
1117 2011-10-27 Chong Yidong <cyd@gnu.org>
1118
1119 * subr.el (change-major-mode-after-body-hook): New hook.
1120 (run-mode-hooks): Run it.
1121
1122 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1123 Use change-major-mode-before-body-hook.
1124
1125 * simple.el (fundamental-mode):
1126 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
1127 change introducing fundamental-mode-hook.
1128
1129 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
1130
1131 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
1132
1133 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
1134
1135 * ido.el (ido-file-name-all-completions-1): Do not require
1136 tramp.el explicitly. (Bug#7583)
1137
1138 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1139
1140 * progmodes/octave-mod.el:
1141 * progmodes/octave-inf.el: Update maintainer.
1142
1143 2011-10-26 Chong Yidong <cyd@gnu.org>
1144
1145 * subr.el (with-wrapper-hook): Rewrite doc.
1146
1147 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
1148
1149 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
1150 filenames "/method:foo:". (Bug#9793)
1151
1152 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1153
1154 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
1155 (bug#9865).
1156
1157 2011-10-24 Glenn Morris <rgm@gnu.org>
1158
1159 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
1160
1161 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
1162
1163 * notifications.el: Add the requirement of a running D-Bus session
1164 bus to the Commentary.
1165
1166 2011-10-24 Juri Linkov <juri@jurta.org>
1167
1168 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
1169 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
1170 (Bug#9364)
1171
1172 2011-10-24 Juri Linkov <juri@jurta.org>
1173
1174 * info.el (Info-following-node-name-re): Add newline to the list
1175 of allowed characters for leading space. (Bug#9824)
1176
1177 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1178
1179 * progmodes/octave-inf.el (inferior-octave-mode-map):
1180 Fix C-c C-h binding.
1181 * progmodes/octave-mod.el (octave-help): Remove.
1182
1183 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
1184
1185 Sync with Tramp 2.2.3.
1186
1187 * net/tramp-cache.el (top): Pacify byte-compiler using
1188 `init-file-user' and `site-run-file'.
1189
1190 * net/trampver.el: Update release number.
1191
1192 2011-10-23 Chong Yidong <cyd@gnu.org>
1193
1194 * files.el (toggle-read-only): Remove obsolete comment about
1195 version control.
1196
1197 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
1198 for toggle-read-only. Note that this hasn't called vc-next-action
1199 since 2008-05-02, though it wasn't documented at the time.
1200
1201 * vc/ediff-init.el (ediff-toggle-read-only-function):
1202 Use toggle-read-only.
1203
1204 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
1205
1206 Fix bug #9560, sporadic wrong indentation; improve instrumentation
1207 of c-parse-state.
1208
1209 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
1210 correct faulty logical expression.
1211 (c-parse-state-state, c-record-parse-state-state):
1212 (c-replay-parse-state-state): New defvar/defuns.
1213 (c-debug-parse-state): Use new functions.
1214
1215 2011-10-22 Martin Rudalics <rudalics@gmx.at>
1216
1217 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
1218 last fix. Use window-in-direction correctly.
1219
1220 2011-10-21 Chong Yidong <cyd@gnu.org>
1221
1222 * progmodes/idlwave.el (idlwave-mode):
1223 * progmodes/vera-mode.el (vera-mode): No need to set
1224 require-final-newline; that's done in prog-mode.
1225 Suggested by Stefan Monnier.
1226
1227 2011-10-21 Martin Rudalics <rudalics@gmx.at>
1228
1229 * mouse.el (mouse-drag-window-above)
1230 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
1231 (mouse-drag-mode-line-1, mouse-drag-header-line)
1232 (mouse-drag-vertical-line-rightward-window): Remove.
1233 (mouse-drag-line): New function.
1234 (mouse-drag-mode-line, mouse-drag-header-line)
1235 (mouse-drag-vertical-line): Call mouse-drag-line.
1236 * window.el (window-at-side-p, windows-at-side): New functions.
1237
1238 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
1239
1240 * tar-mode.el (tar-grind-file-mode):
1241 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
1242
1243 2011-10-21 Chong Yidong <cyd@gnu.org>
1244
1245 * progmodes/idlwave.el (idlwave-mode):
1246 * progmodes/vera-mode.el (vera-mode):
1247 Use mode-require-final-newline.
1248
1249 2011-10-20 Glenn Morris <rgm@gnu.org>
1250
1251 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
1252
1253 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
1254
1255 * emulation/cua-base.el (cua-set-mark): Fix case of string.
1256
1257 2011-10-20 Chong Yidong <cyd@gnu.org>
1258
1259 * emulation/cua-base.el (cua-mode):
1260 * mail/footnote.el (footnote-mode):
1261 * mail/mailabbrev.el (mail-abbrevs-mode):
1262 * net/xesam.el (xesam-minor-mode):
1263 * progmodes/bug-reference.el (bug-reference-mode):
1264 * progmodes/cap-words.el (capitalized-words-mode):
1265 * progmodes/compile.el (compilation-minor-mode)
1266 (compilation-shell-minor-mode):
1267 * progmodes/gud.el (gud-tooltip-mode):
1268 * progmodes/hideif.el (hide-ifdef-mode):
1269 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1270 * progmodes/subword.el (subword-mode):
1271 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1272 * progmodes/which-func.el (which-function-mode):
1273 * term/tvi970.el (tvi970-set-keypad-mode):
1274 * term/vt100.el (vt100-wide-mode):
1275 * textmodes/flyspell.el (flyspell-mode):
1276 * textmodes/ispell.el (ispell-minor-mode):
1277 * textmodes/nroff-mode.el (nroff-electric-mode):
1278 * textmodes/paragraphs.el (use-hard-newlines):
1279 * textmodes/refill.el (refill-mode):
1280 * textmodes/reftex.el (reftex-mode):
1281 * textmodes/rst.el (rst-minor-mode):
1282 * textmodes/sgml-mode.el (html-autoview-mode)
1283 (sgml-electric-tag-pair-mode):
1284 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
1285 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
1286 * emulation/crisp.el (crisp-mode):
1287 * emacs-lisp/eldoc.el (eldoc-mode):
1288 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
1289 minor mode behavior.
1290
1291 2011-10-19 Juri Linkov <juri@jurta.org>
1292
1293 * descr-text.el (describe-char): Add #x2010 and #x2011 to
1294 the list of hard-coded chars with escape-glyph face.
1295
1296 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1297
1298 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
1299
1300 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
1301
1302 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
1303 running process.
1304
1305 2011-10-19 Glenn Morris <rgm@gnu.org>
1306
1307 * vc/vc-bzr.el (vc-bzr-after-dir-status):
1308 Ignore ignored files. (Bug#9726)
1309
1310 2011-10-19 Chong Yidong <cyd@gnu.org>
1311
1312 Doc fix for minor modes, stating that an omitted argument enables
1313 the mode unconditionally when called from Lisp.
1314
1315 * abbrev.el (abbrev-mode):
1316 * allout.el (allout-mode):
1317 * autoinsert.el (auto-insert-mode):
1318 * autoarg.el (autoarg-mode, autoarg-kp-mode):
1319 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1320 (global-auto-revert-mode):
1321 * battery.el (display-battery-mode):
1322 * composite.el (global-auto-composition-mode)
1323 (auto-composition-mode):
1324 * delsel.el (delete-selection-mode):
1325 * desktop.el (desktop-save-mode):
1326 * dired-x.el (dired-omit-mode):
1327 * dirtrack.el (dirtrack-mode):
1328 * doc-view.el (doc-view-minor-mode):
1329 * double.el (double-mode):
1330 * electric.el (electric-indent-mode, electric-pair-mode):
1331 * emacs-lock.el (emacs-lock-mode):
1332 * epa-hook.el (auto-encryption-mode):
1333 * follow.el (follow-mode):
1334 * font-core.el (font-lock-mode):
1335 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
1336 * help.el (temp-buffer-resize-mode):
1337 * hilit-chg.el (highlight-changes-mode)
1338 (highlight-changes-visible-mode):
1339 * hi-lock.el (hi-lock-mode):
1340 * hl-line.el (hl-line-mode, global-hl-line-mode):
1341 * icomplete.el (icomplete-mode):
1342 * ido.el (ido-everywhere):
1343 * image-file.el (auto-image-file-mode):
1344 * image-mode.el (image-minor-mode):
1345 * iswitchb.el (iswitchb-mode):
1346 * jka-cmpr-hook.el (auto-compression-mode):
1347 * linum.el (linum-mode):
1348 * longlines.el (longlines-mode):
1349 * master.el (master-mode):
1350 * mb-depth.el (minibuffer-depth-indicate-mode):
1351 * menu-bar.el (menu-bar-mode):
1352 * minibuf-eldef.el (minibuffer-electric-default-mode):
1353 * mouse-sel.el (mouse-sel-mode):
1354 * msb.el (msb-mode):
1355 * mwheel.el (mouse-wheel-mode):
1356 * outline.el (outline-minor-mode):
1357 * paren.el (show-paren-mode):
1358 * recentf.el (recentf-mode):
1359 * reveal.el (reveal-mode, global-reveal-mode):
1360 * rfn-eshadow.el (file-name-shadow-mode):
1361 * ruler-mode.el (ruler-mode):
1362 * savehist.el (savehist-mode):
1363 * scroll-all.el (scroll-all-mode):
1364 * scroll-bar.el (scroll-bar-mode):
1365 * server.el (server-mode):
1366 * shell.el (shell-dirtrack-mode):
1367 * simple.el (auto-fill-mode, transient-mark-mode)
1368 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
1369 (line-number-mode, column-number-mode, size-indication-mode)
1370 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
1371 * strokes.el (strokes-mode):
1372 * time.el (display-time-mode):
1373 * t-mouse.el (gpm-mouse-mode):
1374 * tool-bar.el (tool-bar-mode):
1375 * tooltip.el (tooltip-mode):
1376 * type-break.el (type-break-mode-line-message-mode)
1377 (type-break-query-mode):
1378 * view.el (view-mode):
1379 * whitespace.el (whitespace-mode, whitespace-newline-mode)
1380 (global-whitespace-mode, global-whitespace-newline-mode):
1381 * xt-mouse.el (xterm-mouse-mode): Doc fix.
1382
1383 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1384 Fix autogenerated docstring.
1385
1386 2011-10-19 Juri Linkov <juri@jurta.org>
1387
1388 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
1389 by checking environment variables "DESKTOP_SESSION" and
1390 "XDG_CURRENT_DESKTOP". (Bug#9779)
1391
1392 2011-10-19 Juri Linkov <juri@jurta.org>
1393
1394 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
1395 (browse-url-chromium-program, browse-url-chromium-arguments):
1396 New defcustoms.
1397 (browse-url-default-browser): Check for `browse-url-chromium' and
1398 call `browse-url-chromium-program'.
1399 (browse-url-chromium): New command. (Bug#9779)
1400
1401 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
1402
1403 * facemenu.el (list-colors-duplicates): On Windows, detect more
1404 duplicates by assuming that only colors matching "^System" are
1405 special "system colors". (Bug#9722)
1406
1407 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1408
1409 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
1410 to distinguish the author from the committer.
1411
1412 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
1413
1414 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
1415
1416 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
1417
1418 * international/mule.el (sgml-html-meta-auto-coding-function):
1419 Add support for detecting encoding in HTML5 specified only as
1420 <meta charset="UTF-8">. Implementation just makes http-equiv and
1421 content-type parts from HTML4 encoding string optional. (Bug#9716)
1422
1423 2011-10-18 Glenn Morris <rgm@gnu.org>
1424
1425 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
1426
1427 2011-10-18 Chong Yidong <cyd@gnu.org>
1428
1429 * faces.el (cursor): Doc fix.
1430
1431 2011-10-17 Chong Yidong <cyd@gnu.org>
1432
1433 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
1434
1435 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
1436
1437 * dirtrack.el (dirtrack): Support shell buffers with path
1438 prefixes, e.g. tramp-based remote shells. (Bug#9647)
1439
1440 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
1441
1442 * json.el: Bump version to 1.3 and note change in History.
1443 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
1444
1445 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
1446
1447 * comint.el (comint-insert-input, comint-send-input)
1448 (comint-get-old-input-default, comint-backward-matching-input)
1449 (comint-next-prompt): Use nil instead of `input' for field property of
1450 past user input (bug#114).
1451
1452 * minibuffer.el (completion--replace): Inherit surrounding properties
1453 (bug#114).
1454 (minibuffer-complete-and-exit): Use it.
1455
1456 * comint.el (comint--table-subvert): Quote the all-completions output
1457 (bug#9160).
1458
1459 2011-10-17 Martin Rudalics <rudalics@gmx.at>
1460
1461 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
1462
1463 * menu-bar.el (menu-bar-file-menu): Add entry for making new
1464 window on right of selected. (Bug#9350) Reword other window
1465 entries and separate them from frame entries.
1466
1467 2011-10-15 Glenn Morris <rgm@gnu.org>
1468
1469 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
1470 Doc fixes.
1471
1472 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
1473
1474 * net/network-stream.el (network-stream-open-starttls):
1475 Improve detection of failure due to lack of TLS support.
1476
1477 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
1478 putting the input text in front and in bold.
1479
1480 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1481
1482 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
1483
1484 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
1485 empty buffer.
1486
1487 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
1488 unread-command-events rather than pushing yet-another event.
1489
1490 2011-10-14 Eli Zaretskii <eliz@gnu.org>
1491
1492 * mail/sendmail.el (sendmail-query-once): Improve the wording of
1493 the explanation of the possible choices. Make the options passed
1494 to completing-read shorter.
1495
1496 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1497
1498 * textmodes/flyspell.el (flyspell-large-region): Make sure
1499 extended character mode is used if defined (Bug#1339).
1500
1501 2011-10-13 Eli Zaretskii <eliz@gnu.org>
1502
1503 * simple.el (what-cursor-position): Fix the display of the
1504 character info for LRE, LRO, RLE, and RLO characters by appending
1505 an invisible PDF.
1506
1507 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
1508
1509 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
1510 even in case of error; add debug spec; simplify data flow.
1511 (with-timeout-handler): Remove.
1512
1513 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
1514
1515 Fix Bug#6019, Bug#9315.
1516
1517 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
1518 complete `buffer-file-name', the local file name part could look
1519 remotely (for example on VMS).
1520
1521 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
1522 `tramp-run-real-handler'.
1523 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
1524 already quoted by '"'.
1525
1526 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
1527 Let `file-name-handler-alist' be nil, the local file name part
1528 could look remotely (for example on VMS).
1529
1530 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1531
1532 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
1533 from here...
1534 (flyspell-post-command-hook): ...to here.
1535
1536 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
1539 if not needed.
1540 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
1541 using completion. Protect against "slow" callers.
1542 Remove the "message hack".
1543
1544 2011-10-11 Juri Linkov <juri@jurta.org>
1545
1546 * isearch.el (isearch-lazy-highlight-word): New variable.
1547 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1548 Use it. (Bug#9727)
1549
1550 2011-10-11 Glenn Morris <rgm@gnu.org>
1551
1552 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
1553 like f90-previous-statement does.
1554
1555 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1556
1557 * eshell/eshell.el (eshell-command): History should be saved
1558 only in interactive use, to avoid error.
1559
1560 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1561
1562 * minibuffer.el (completion-file-name-table): Fix last change,
1563 i.e. ignore normal errors but not the other ones.
1564
1565 2011-10-10 Martin Rudalics <rudalics@gmx.at>
1566
1567 * window.el (special-display-buffer-names)
1568 (special-display-regexps): Remove some remnants of earlier
1569 changes from doc-strings.
1570 (quit-windows-on): New function.
1571
1572 * vc/vc.el (vc-revert, vc-rollback):
1573 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
1574 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
1575 (Bug#6183) (Bug#7074) (Bug#7447)
1576
1577 2011-10-09 Martin Rudalics <rudalics@gmx.at>
1578
1579 * window.el (frame-auto-hide-function): Add version tag.
1580 (Bug#9699)
1581
1582 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
1583
1584 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
1585 condition.
1586
1587 2011-10-09 Leo Liu <sdl.web@gmail.com>
1588
1589 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
1590 (Bug#9701)
1591
1592 2011-10-08 Glenn Morris <rgm@gnu.org>
1593
1594 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
1595 before the first code statement zero indent. (Bug#9690)
1596
1597 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
1598
1599 * simple.el (count-words-region): Always count in the region.
1600 Report the number of lines and characters too.
1601 (count-words): New command, which counts in the buffer if the
1602 region is inactive, as count-words-region used to.
1603 (count-words--message): New function. Handle plurals.
1604 (count-lines-region): Make it an alias for count-words-region.
1605
1606 * bindings.el (esc-map): Replace count-lines-region with
1607 count-words-region.
1608
1609 2011-10-08 Martin Rudalics <rudalics@gmx.at>
1610
1611 * window.el (window--delete): Delete dedicated frame
1612 unconditionally when argument KILL is non-nil. (Bug#9699)
1613 (switch-to-buffer): Fix doc-string typo.
1614
1615 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1616
1617 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
1618
1619 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
1620
1621 * bindings.el ([M-left],[M-right]): Bind to left-word and
1622 right-word respectively.
1623
1624 2011-10-07 Glenn Morris <rgm@gnu.org>
1625
1626 * cus-start.el (debug-on-quit): Fix custom type.
1627
1628 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1629
1630 * subr.el (define-key-after): Clarify that the function is not
1631 useful for non-menu keymaps.
1632
1633 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
1634
1635 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1636
1637 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
1638 in current minibuffer (Fix bug with recursive minibuffers).
1639
1640 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
1641
1642 * progmodes/gdb-mi.el (gdb): Doc fix.
1643
1644 2011-10-05 Martin Rudalics <rudalics@gmx.at>
1645
1646 * window.el (frame-auto-hide-function): New option replacing
1647 frame-auto-delete. Suggested by Stefan Monnier.
1648 (window--delete): Call frame-auto-hide-function instead of
1649 investigating frame-auto-delete.
1650 (window-point-1, set-window-point-1): New functions.
1651 (window-in-direction, record-window-buffer, window-state-get-1)
1652 (display-buffer-record-window): Use window-point-1 instead of
1653 window-point.
1654 (set-window-buffer-start-and-point): Use set-window-point-1.
1655
1656 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1657
1658 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
1659
1660 2011-10-05 Glenn Morris <rgm@gnu.org>
1661
1662 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
1663 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
1664
1665 2011-10-05 Leo Liu <sdl.web@gmail.com>
1666
1667 * subr.el (read-char-choice): Fix argument to buffer-live-p which
1668 works with buffer object.
1669
1670 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1671
1672 * mpc.el (mpc-tool-bar-map): Add labels.
1673
1674 2011-10-04 Glenn Morris <rgm@gnu.org>
1675
1676 * calendar/holidays.el (calendar-check-holidays): Doc fix.
1677
1678 2011-10-04 Martin Rudalics <rudalics@gmx.at>
1679
1680 * window.el (window--delete): New function.
1681 (frame-auto-delete): Resuscitate option.
1682 (bury-buffer, replace-buffer-in-windows)
1683 (quit-window): Rewrite using window--delete.
1684 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1685 Pass display-buffer-mark-dedicated to window--display-buffer-2
1686 (Bug#9639).
1687
1688 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1689
1690 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
1691 returns a list (bug#9554). Add remote file name completion.
1692 * comint.el (comint--table-subvert): Curry and get quote&unquote
1693 functions as arguments.
1694 (comint--complete-file-name-data): Adjust call accordingly.
1695 * pcomplete.el (pcomplete--table-subvert): Remove.
1696 (pcomplete-completions-at-point): Use comint--table-subvert instead.
1697
1698 * minibuffer.el (completion-table-case-fold): Use currying.
1699 (completion--styles-type, completion--cycling-threshold-type):
1700 New constants.
1701 (completion-styles, completion-category-overrides)
1702 (completion-cycle-threshold): Use them.
1703 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
1704 completion-table-case-fold.
1705
1706 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
1707
1708 * minibuffer.el (completion-category-overrides): Fix type of styles
1709 and add more user friendly tags (bug#9660).
1710
1711 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1712
1713 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
1714 (mule-input-method-string): New widget.
1715 (default-input-method, language-info-custom-alist): Use it.
1716
1717 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1718
1719 * pcomplete.el: Require comint.
1720 (pcomplete--common-suffix): Remove.
1721 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
1722 (pcomplete--table-subvert): Sync with comint--table-subvert.
1723 (pcomplete--entries): Use comint-completion-file-name-table.
1724 * comint.el (comint-unquote-filename): Simplify.
1725 (comint-completion-file-name-table): New function (bug#9616).
1726 (comint--complete-file-name-data): Use it.
1727
1728 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
1729 (pcmpl-gnu-tar-buffer): Remove.
1730 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
1731 around. Make sure pcomplete-suffix-list is only changed temporarily.
1732 Don't look inside the tar's file if it's too large.
1733
1734 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
1735
1736 * cus-edit.el (custom-mode-map):
1737 * epa.el (epa-key-list-mode-map):
1738 * man.el (Man-mode-map):
1739 * startup.el (splash-screen-keymap):
1740 * simple.el (special-mode-map): Use scroll-up-command and
1741 scroll-down-command.
1742
1743 * progmodes/idlw-help.el (idlwave-help-mode-map):
1744 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
1745 * net/newst-plainview.el (newsticker-mode-map):
1746 * emulation/ws-mode.el (wordstar-mode-map):
1747 * emulation/vi.el (vi-com-map):
1748 * calc/calc-graph.el (calc-graph-show-dumb):
1749 * term/sun.el (terminal-init-sun):
1750 * term/ns-win.el (global-map):
1751 * progmodes/grep.el (grep-mode-map):
1752 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
1753 * mail/rmail.el (rmail-mode-map):
1754 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
1755
1756 * custom.el (custom-safe-themes, load-theme): Treat value of t for
1757 custom-safe-themes as special.
1758
1759 2011-10-01 Julien Danjou <julien@danjou.info>
1760
1761 * notifications.el (notifications-notify): Fix docstring.
1762
1763 2011-10-01 Per Starbäck <per@starback.se>
1764
1765 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
1766
1767 2011-09-30 Martin Rudalics <rudalics@gmx.at>
1768
1769 * startup.el (command-line-1): Fix last fix by inserting
1770 initial-scratch-message into *scratch* before displaying it.
1771 (Bug#9605) and (Bug#9636)
1772
1773 2011-09-29 Eli Zaretskii <eliz@gnu.org>
1774
1775 * simple.el (line-move): If auto-hscroll-mode is disabled and the
1776 window is hscrolled, move by logical lines. (Bug#9607)
1777 (line-move-visual): Update the doc string to the above effect.
1778
1779 2011-09-29 Martin Rudalics <rudalics@gmx.at>
1780
1781 * window.el (display-buffer-record-window): When WINDOW is the
1782 selected window use `point' instead of `window-point'. (Bug#9626)
1783
1784 * startup.el (command-line-1): Use insert-before-markers when
1785 inserting initial-scratch-message. (Bug#9605)
1786
1787 * help.el (help-window): Remove variable.
1788
1789 2011-09-29 Glenn Morris <rgm@gnu.org>
1790
1791 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
1792
1793 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
1794
1795 * descr-text.el (describe-char-categories): Accept category
1796 descriptions more than one line long.
1797
1798 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1799
1800 * simple.el (delete-trailing-whitespace): Fix last change.
1801
1802 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1803 Don't confuse "y => 3" as the beginning of a `y' operation.
1804
1805 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
1806 object has more than 4 slots (bug#9613).
1807
1808 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
1809
1810 * subr.el (with-output-to-temp-buffer):
1811 * net/quickurl.el (quickurl, quickurl-browse-url):
1812 Fix typos in docstrings.
1813
1814 2011-09-27 Eli Zaretskii <eliz@gnu.org>
1815
1816 * minibuffer.el (completion-styles)
1817 (completion-category-overrides): Cross reference each other in doc
1818 strings.
1819
1820 2011-09-27 Glenn Morris <rgm@gnu.org>
1821
1822 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
1823 to split-string. (Bug#9606)
1824
1825 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1826
1827 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
1828 (bug#9615).
1829
1830 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
1831
1832 * emacs-lisp/package.el (list-packages): Fix echo area message.
1833
1834 2011-09-27 Leo Liu <sdl.web@gmail.com>
1835
1836 * ido.el (ido-read-internal): Accept cons cell HIST arg.
1837
1838 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
1839
1840 * net/dbus.el (dbus-unregister-object): Don't release services for
1841 registered signals. (Bug#9581)
1842
1843 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1844
1845 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
1846 function that picks between cfengine 2 and 3 support
1847 automatically. Update docs accordingly.
1848
1849 2011-09-22 Kenichi Handa <handa@m17n.org>
1850
1851 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
1852 ZERO.
1853 (indian-itrans-v5-table-for-tamil): New variable.
1854 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
1855
1856 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
1857
1858 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
1859 that's true if the current command involved collapsing of text.
1860 It's reset to false at the beginning of the next command.
1861 (allout-post-command-business): Move the cursor to the beginning
1862 of entry if the cursor is hidden and collapsing activity just
1863 happened.
1864
1865 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
1866
1867 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
1868 tracking (Bug#9541).
1869
1870 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
1871
1872 * net/newst-reader.el (newsticker-html-renderer)
1873 (newsticker-show-news): Automatically
1874 load html rendering package if newsticker-html-renderer is set.
1875 Fixes "Warning: defvar ignored because w3m-fill-column is
1876 let-bound" and the error "Symbol's value as variable is void:
1877 w3m-fill-column".
1878
1879 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
1880
1881 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
1882 Release services only if they are defined. (Bug#9581)
1883
1884 2011-09-23 Richard Stallman <rms@gnu.org>
1885
1886 * textmodes/paragraphs.el (forward-sentence): For backwards case,
1887 distinguish start of paragraph from start of its text.
1888
1889 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
1890
1891 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
1892 (rmail-generate-viewer-buffer): Put that hook on view buffer.
1893 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
1894
1895 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
1896
1897 * international/mule-diag.el (mule-diag): Insert a newline after
1898 each fontset description.
1899
1900 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1901
1902 * simple.el (delete-trailing-whitespace):
1903 Document last change; simplify.
1904
1905 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
1906
1907 * simple.el (delete-trailing-whitespace): Also delete
1908 extra newlines at the end of the buffer.
1909
1910 * textmodes/picture.el: Make motion commands obey shift-select-mode.
1911 (picture-newline): Use forward-line so as to ignore fields.
1912
1913 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1914
1915 * subr.el (with-wrapper-hook): Fix edebug spec.
1916
1917 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
1918
1919 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
1920 (bug#4538).
1921
1922 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
1923
1924 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1925 Fix nasty bug using wrong cached values.
1926
1927 2011-09-23 Alan Mackenzie <acm@muc.de>
1928
1929 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
1930
1931 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
1932
1933 * window.el (pop-to-buffer): Ensure right window is selected if we
1934 chose another frame.
1935
1936 2011-09-22 Eli Zaretskii <eliz@gnu.org>
1937
1938 * simple.el (what-cursor-position): Use get-char-property-change
1939 and next-single-char-property-change, to be able to show display
1940 properties that come from overlays as well as text properties.
1941
1942 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
1943
1944 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
1945
1946 * cmuscheme.el (run-scheme, switch-to-scheme):
1947 * cus-edit.el (customize-group, custom-buffer-create)
1948 (customize-browse):
1949 * info.el (info):
1950 * shell.el (shell):
1951 * mail/sendmail.el (mail):
1952 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
1953
1954 2011-09-22 Richard Stallman <rms@gnu.org>
1955
1956 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
1957 move back only to line beg, don't move back over blank lines.
1958
1959 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
1960
1961 * files.el (copy-directory): Set directory attributes only in case
1962 they could be retrieved from the source directory. (Bug#9565)
1963
1964 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
1965
1966 * progmodes/hideshow.el (hs-looking-at-block-start-p)
1967 (hs-find-block-beginning, hs-hide-level-recursive):
1968 Ignore strings as well as comments. (Bug#9502)
1969
1970 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
1971
1972 * progmodes/sql.el (sql-comint-postgres):
1973 Convert port number to a string. (Bug#9566)
1974
1975 2011-09-22 Martin Rudalics <rudalics@gmx.at>
1976
1977 * window.el (quit-window): Undedicate window when switching to
1978 previous buffer. Reported by Thierry Volpiatto
1979 <thierry.volpiatto@gmail.com>.
1980 (special-display-popup-frame): When popping up a new frame reset
1981 its previous buffers to nil. Simplify code.
1982
1983 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
1984
1985 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
1986 and process filter, as done also in `shell-command'.
1987
1988 2011-09-21 Martin Rudalics <rudalics@gmx.at>
1989
1990 * window.el (set-window-buffer-start-and-point):
1991 Call set-window-start with NOFORCE argument t. Suggested by Thierry
1992 Volpiatto <thierry.volpiatto@gmail.com>.
1993 (quit-window): Reword doc-string. Handle new format of
1994 quit-restore parameter. Don't delete window if it has a
1995 previous buffer we can show instead of the present one.
1996 (display-buffer-record-window): Rewrite using a new format for
1997 the quit-restore window parameter
1998 (special-display-popup-frame, display-buffer-same-window)
1999 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2000 (display-buffer-pop-up-window, display-buffer-use-some-window):
2001 Adapt symbol passed to display-buffer-record-window.
2002 * help.el (help-window-setup): Handle new format of quit-restore
2003 parameter.
2004
2005 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2006
2007 * faces.el (face-list): Fix docstring (bug#9564).
2008
2009 * window.el (display-buffer--action-function-custom-type):
2010 Don't include internal functions in the Custom interface.
2011
2012 2011-09-20 Juri Linkov <juri@jurta.org>
2013
2014 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
2015 (Info-forward-node, Info-backward-node, Info-next-preorder)
2016 (Info-last-preorder): Use it. (Bug#9528)
2017
2018 2011-09-20 Juri Linkov <juri@jurta.org>
2019
2020 * info.el (Info-last-preorder): Visit last menu item only when
2021 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
2022
2023 2011-09-20 Julien Danjou <julien@danjou.info>
2024
2025 * password-cache.el (password-cache-remove): Remove entries even if the
2026 value is nil, so that password with a nil value (negative caching) is
2027 possible to invalidate.
2028
2029 2011-09-20 Lawrence Mitchell <wence@gmx.li>
2030
2031 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
2032 all whitespace around breakpoint. (Bug#9553)
2033 (f90-find-breakpoint): Only break at whitespace inside a comment.
2034
2035 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2036
2037 * minibuffer.el (completion-file-name-table): Keep track of errors.
2038 (completion-table-with-predicate): Handle the case where pred1 is nil.
2039 * pcomplete.el (pcomplete-completions-at-point): Simplify.
2040
2041 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2042
2043 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
2044 (debugger-return-value): Signal an error if the debugging context does
2045 not await any return value.
2046
2047 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
2048 * image-mode.el (image-toggle-display-text)
2049 (image-toggle-display-image): Stay away from evil `intangible'.
2050
2051 2011-09-19 Leo Liu <sdl.web@gmail.com>
2052
2053 * replace.el (occur-revert-arguments): Make it permanent-local.
2054 (occur-mode): Don't call font-lock-defontify.
2055
2056 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
2057
2058 * net/ldap.el (ldap-search-internal): Don't push empty search
2059 result (Bug#9508).
2060
2061 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2062
2063 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
2064
2065 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
2066
2067 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
2068 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
2069
2070 2011-09-18 Juri Linkov <juri@jurta.org>
2071
2072 * buff-menu.el (Buffer-menu-mode-map):
2073 * dired.el (dired-mode-map):
2074 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
2075 (lisp-interaction-mode-map):
2076 * emacs-lisp/package.el (package-menu-mode-map):
2077 * epa.el (epa-key-list-mode-map):
2078 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
2079 (menu-bar-options-menu):
2080 * outline.el (outline-mode-menu-bar-map):
2081 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
2082 * vc/vc-dir.el (vc-dir-menu-map):
2083 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
2084 Capitalize non-function content words in menu item strings.
2085
2086 * dired.el (dired-mode-map): Add menu item for
2087 `image-dired-dired-toggle-marked-thumbs'.
2088
2089 2011-09-18 Juri Linkov <juri@jurta.org>
2090
2091 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
2092 to `isearch-case-fold-search' and restore its original value
2093 after the `isearch-mode' call.
2094
2095 2011-09-18 Juri Linkov <juri@jurta.org>
2096
2097 * progmodes/grep.el (grep-process-setup): Don't check code for 1
2098 because `zgrep' returns 1 for successful matches (bug#9226).
2099
2100 2011-09-18 Juri Linkov <juri@jurta.org>
2101
2102 * info.el (Info-extract-menu-node-name): Check the second match
2103 for empty string (second test-case of bug#9528).
2104 (Info-last-preorder): Let-bind `Info-history' to nil to not add
2105 intermediate nodes to the history (first test-case of bug#9528).
2106
2107 2011-09-18 Juri Linkov <juri@jurta.org>
2108
2109 * info.el (Info-mode-syntax-table): New variable.
2110 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table'. (Bug#3312)
2111
2112 2011-09-18 Juri Linkov <juri@jurta.org>
2113
2114 * info.el (Info-file-supports-index-cookies): Increment
2115 line-beginning-position's arg from 3 to 4 because makeinfo outputs
2116 one more line for long file names (bug#4142).
2117
2118 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2119
2120 * newcomment.el (comment-normalize-vars): If prompting for
2121 comment-start, set comment-start-skip too (Bug#8424).
2122
2123 2011-09-18 Johan Bockgård <bojohan@gnu.org>
2124
2125 * icomplete.el: Fix previous fix of Bug#5849.
2126 (icomplete-mode): Don't set completion-show-inline-help.
2127 (icomplete-minibuffer-setup): Set completion-show-inline-help
2128 locally during icompletion.
2129
2130 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2131
2132 * woman.el (woman2-process-escapes): Don't delete unrecognized
2133 escapes (Bug#7843).
2134
2135 * files.el (inhibit-first-line-modes-regexps): Add image files.
2136 (hack-local-variables-prop-line): Return nil for malformed
2137 prop-lines (Bug#9044).
2138
2139 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
2140
2141 * net/tramp.el (top): Don't require 'shell.
2142 (tramp-methods): Fix docstring.
2143 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
2144 Return complete remote file name. Handle "smb" case.
2145 Use `tramp-tmpdir', if defined for the respective method.
2146 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
2147
2148 * net/tramp-compat.el (top): Require 'shell.
2149
2150 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2151 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
2152 `tramp-current-host'.
2153 (tramp-get-remote-tmpdir): Remove.
2154
2155 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
2156 `tramp-tmpdir' entries.
2157 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
2158 (tramp-smb-handle-file-attributes): Ignore errors.
2159 (tramp-smb-wait-for-output): Check also for process end.
2160
2161 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2162
2163 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
2164 when sending QUIT (bug#9312).
2165
2166 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
2167
2168 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
2169 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
2170 occur-mode-display-occurrence.
2171 (occur-edit-mode): Add usage message.
2172 (occur-cease-edit): New command.
2173 (occur-after-change-function): Use text properties to find the
2174 position of the prefix text.
2175 (occur-engine): Set stickiness of prefix text properties.
2176
2177 2011-09-17 Glenn Morris <rgm@gnu.org>
2178
2179 * progmodes/etags.el (complete-tag):
2180 Fix call to completion-in-region. (Bug#9526)
2181
2182 2011-09-17 Juri Linkov <juri@jurta.org>
2183
2184 * textmodes/ispell.el (ispell-word): Add to the error message
2185 the word, ispell program name and current dictionary (bug#9121).
2186 (ispell-tex-arg-end): Capitalize "error" in the error message.
2187
2188 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
2189
2190 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
2191 check. (Bug#4251)
2192
2193 2011-09-17 Juri Linkov <juri@jurta.org>
2194
2195 * window.el (window-safe-min-height, window-safe-min-width):
2196 Fix typos (followup to bug#9522).
2197
2198 2011-09-17 Sven Joachim <svenjoac@gmx.de>
2199
2200 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
2201
2202 2011-09-16 Eli Zaretskii <eliz@gnu.org>
2203
2204 * simple.el (line-move): If goal-column is set, move by logical
2205 lines, not by display lines. (Bug#971)
2206 (next-line, previous-line, goal-column, line-move-visual): Doc fix
2207 to reflect the above change.
2208
2209 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2210
2211 * image.el (imagemagick-register-types): Use regexp-opt.
2212
2213 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2214
2215 * window.el (display-buffer-base-action): Rename from
2216 display-buffer-default-action. Make default value empty.
2217 (display-buffer-overriding-action): Convert to defvar.
2218 (display-buffer-fallback-action): New var.
2219
2220 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2221
2222 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
2223 declaration.
2224 (package--add-to-archive-contents): If there is a duplicate entry
2225 with an older version, remove it.
2226 (package-menu-mark-delete, package-menu-mark-install)
2227 (package-menu-mark-unmark): Make unused args optional.
2228 (package-menu-mark-obsolete-for-deletion):
2229 Use package-menu-get-status instead of a regexp search.
2230 (package-menu-get-status): Use tabulated-list-entry.
2231 (package-menu-mark-upgrades): New command.
2232 (package-menu-mode-map): Bind it to U. Add it to menu bar.
2233 (package-menu-execute): Do installation before deletion.
2234 (package-menu-refresh, package-menu-execute): Use derived-mode-p
2235 instead of checking major-mode.
2236 (package-menu--find-upgrades): New function.
2237
2238 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2239
2240 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
2241 passwords in the log buffer.
2242 (smtpmail-process-filter): Update the process marker so that the
2243 "broken by peer" status message is inserted in the right place.
2244
2245 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2246
2247 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
2248 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
2249 bibtex-completion-at-point-function.
2250 (bibtex-completion-at-point-function): Use them.
2251
2252 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
2253
2254 * mpc.el (mpc-constraints-tag-lookup): New function.
2255 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
2256 also to browser "album|playlist".
2257
2258 2011-09-14 Juri Linkov <juri@jurta.org>
2259
2260 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
2261 (isearch-edit-string): Use length of `isearch-string' when
2262 `isearch-fail-pos' returns nil.
2263 (isearch-message): Remove duplicate code and call
2264 `isearch-fail-pos' with arg `t'.
2265
2266 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
2267
2268 * replace.el (occur-mode-goto-occurrence): Don't force using other
2269 window (Bug#9499).
2270
2271 * dired-aux.el (dired-do-chmod): Don't provide initial input.
2272
2273 2011-09-14 Martin Rudalics <rudalics@gmx.at>
2274
2275 * window.el (display-buffer-window): Remove.
2276 (display-buffer-record-window): Use help-setup window parameter
2277 instead of variable display-buffer-window.
2278 (display-buffer-function, special-display-buffer-names)
2279 (special-display-function): Mention help-setup parameter instead
2280 of display-buffer-window in doc-string.
2281 * help.el (help-window-setup): New argument help-window.
2282 Use help-window-setup parameter instead of display-buffer-window.
2283 Reword some messages.
2284 (with-help-window): Pass window used for displaying the buffer
2285 to help-window-setup. Don't set display-buffer-window.
2286
2287 2011-09-13 Glenn Morris <rgm@gnu.org>
2288
2289 * emacs-lisp/debug.el (debugger-make-xrefs):
2290 Preserve point. (Bug#9462)
2291
2292 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
2293
2294 * window.el (window-deletable-p): Use next-frame.
2295
2296 2011-09-13 Martin Rudalics <rudalics@gmx.at>
2297
2298 * window.el (window-auto-delete): Remove.
2299 (window-deletable-p): Remove argument FORCE. Don't deal with
2300 dedication and previous buffers.
2301 (switch-to-prev-buffer): Don't delete window.
2302 (delete-windows-on): Delete a window's frame if and only if the
2303 window is dedicated.
2304 (replace-buffer-in-windows): Delete buffer's window or frame if
2305 and only if window is dedicated.
2306 (quit-window): Handle quit-restore as before last change.
2307 (bury-buffer): Delete window only if window-deletable-p returns t.
2308
2309 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
2310
2311 * window.el (window-deletable-p): Never delete the last frame on a
2312 given terminal.
2313
2314 2011-09-13 Glenn Morris <rgm@gnu.org>
2315
2316 * help.el (describe-key-briefly): Copy previous standard-output change.
2317
2318 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
2319
2320 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
2321
2322 2011-09-13 Glenn Morris <rgm@gnu.org>
2323
2324 * emacs-lisp/lisp-mode.el (lisp-indent-function):
2325 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
2326
2327 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
2328
2329 * dired-aux.el (dired-mark-read-string): Don't return default
2330 value on empty input (Bug#9361).
2331 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
2332 Omit initial minibuffer contents.
2333 (dired-do-chmod): Signal an error on empty input.
2334 (dired-mark-read-string): Don't return default on empty input.
2335
2336 * files.el (file-modes-symbolic-to-number): Doc fix.
2337
2338 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2339
2340 * international/mule-cmds.el (ucs-completions): Remove.
2341 (read-char-by-name): Use complete-with-action instead; add metadata.
2342
2343 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
2344
2345 * window.el (display-buffer--action-function-custom-type)
2346 (display-buffer--action-custom-type): New vars.
2347 (display-buffer-alist, display-buffer-default-action)
2348 (display-buffer-overriding-action): Add defcustom types.
2349
2350 * frame.el (delete-other-frames): Doc fix (Bug#276).
2351
2352 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2353
2354 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
2355
2356 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
2357
2358 Change modes that used same-window-* vars to use switch-to-buffer.
2359
2360 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
2361 Use switch-to-buffer.
2362
2363 * cus-edit.el (customize-group, custom-buffer-create)
2364 (customize-browse, custom-buffer-create-other-window):
2365 Use switch-to-buffer or switch-to-buffer-other-window.
2366
2367 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
2368 (Info-prev, Info-up, Info-speedbar-goto-node)
2369 (info-display-manual): Use switch-to-buffer.
2370 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
2371
2372 * mail/sendmail.el (mail): Use switch-to-buffer.
2373 (mail-recover): Use switch-to-buffer-other-window.
2374
2375 * cmuscheme.el (run-scheme, switch-to-scheme):
2376 * ielm.el (ielm):
2377 * shell.el (shell):
2378 * net/rlogin.el (rlogin):
2379 * net/telnet.el (telnet, rsh):
2380 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
2381
2382 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
2383
2384 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
2385
2386 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2387
2388 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
2389 so don't mention it (bug#9301).
2390 (dired-sort-toggle-or-edit): Clarify string further.
2391
2392 * faces.el (face-spec-set-match-display): Make `(type graphic)'
2393 match `x', `w32' and `ns', like the manual says (bug#9029).
2394
2395 * subr.el (eval-after-load): Doc string clarification (bug#9125).
2396 (process-kill-buffer-query-function): Mention the buffer name in
2397 the query.
2398
2399 * image-mode.el (image-next-line): The line parameter is mandatory
2400 (bug#9258).
2401
2402 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
2403 which can be useful (bug#9301).
2404
2405 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
2406
2407 * subr.el (match-string): Mention that the current buffer should
2408 be the same as the search was done in (bug#9282).
2409
2410 * facemenu.el: Disable the remove-* commands if the mark isn't
2411 active (bug#9162).
2412
2413 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
2414
2415 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
2416 of display-buffer.
2417 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
2418
2419 * replace.el (occur-mode-goto-occurrence)
2420 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
2421 and display-buffer.
2422
2423 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
2424 display-buffer.
2425
2426 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
2427 special-display and same-window variables.
2428 (mail-other-window): Use switch-to-buffer-other-window.
2429 (mail-other-frame): USe switch-to-buffer-other-frame.
2430
2431 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
2432 Use display-buffer-other-frame.
2433 (gdb-display-gdb-buffer): Use pop-to-buffer.
2434
2435 * progmodes/gud.el (gud-goto-info): Use info-other-window.
2436
2437 * progmodes/python.el: Don't set same-window-buffer-names.
2438
2439 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
2440
2441 * window.el (display-buffer-alist): Add *Python*.
2442
2443 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
2444
2445 * window.el (display-buffer-alist): Add entry for buffers
2446 previously handled same-window-*.
2447 (display-buffer-alist, display-buffer-default-action)
2448 (display-buffer-overriding-action): Mark as risky.
2449 (display-buffer-alist): Document action function changes.
2450 (display-buffer--same-window-action)
2451 (display-buffer--other-frame-action): New variables.
2452 (switch-to-buffer, display-buffer-other-frame): Use them.
2453 (display-buffer): Rename reuse-frame entry to reusable-frames.
2454 (display-buffer-reuse-selected-window): Function deleted.
2455 (display-buffer-reuse-window): Handle reusable-frames alist entry.
2456 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
2457 (display-buffer-special): New function.
2458 (display-buffer--maybe-pop-up-frame-or-window): Rename from
2459 display-buffer-reuse-or-pop-window. Split off special-display
2460 part into display-buffer-special.
2461 (display-buffer-use-some-window): Don't perform any special
2462 pop-up-frames handling.
2463 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
2464 (display-buffer--maybe-same-window): Rename from
2465 display-buffer-maybe-same-window.
2466
2467 * info.el: Don't set same-window-regexps.
2468 (info-setup): New function.
2469 (info-other-window, info): Call it.
2470
2471 * cus-edit.el: Don't set same-window-regexps.
2472 (customize-group): New argument.
2473 (customize-group-other-window): Use it.
2474 (customize-face, customize-face-other-window): Likewise.
2475 (custom-buffer-create-other-window): Use pop-to-buffer directly.
2476
2477 * net/rlogin.el:
2478 * net/telnet.el:
2479 * progmodes/gud.el: Don't set same-window-regexps.
2480
2481 * cmuscheme.el:
2482 * ielm.el:
2483 * shell.el:
2484 * mail/sendmail.el:
2485 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
2486
2487 2011-09-10 Juri Linkov <juri@jurta.org>
2488
2489 * isearch.el (isearch-edit-string): Remove obsolete mention of
2490 `C-w' (`isearch-yank-word-or-char') from docstring.
2491 (isearch-query-replace): Fix typo in docstring (bug#9466).
2492
2493 2011-09-10 Juri Linkov <juri@jurta.org>
2494
2495 * paren.el (show-paren-function): Don't show escaped parens.
2496 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
2497
2498 2011-09-10 Eli Zaretskii <eliz@gnu.org>
2499
2500 * mail/sendmail.el (mml-to-mime, mml-attach-file)
2501 (mm-default-file-encoding): Remove autoload forms, they are
2502 replaced with autoload cookies in mml.el and mm-encode.el.
2503 (mail-add-attachment): New command.
2504 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
2505 (mail-mode): Mention mail-insert-file and mail-add-attachment in
2506 the doc string.
2507 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
2508
2509 2011-09-10 Reuben Thomas <rrt@sc3d.org>
2510
2511 * simple.el (count-words-region): Use buffer if there's no region
2512 (bug#9429).
2513
2514 2011-09-09 Juri Linkov <juri@jurta.org>
2515
2516 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
2517 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
2518 (wdired-isearch-filter-read-only): New function. (Bug#6362)
2519
2520 2011-09-09 Alan Mackenzie <acm@muc.de>
2521
2522 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
2523 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
2524
2525 2011-09-09 Eli Zaretskii <eliz@gnu.org>
2526
2527 Fix for Savannah bug#9392.
2528 * simple.el (mail-encode-mml): New defvar.
2529
2530 * mail/rmail.el (mail-encode-mml): Add a defvar.
2531 (rmail-enable-mime-composing): Default to t.
2532 (rmail-forward): Use MIME method of forwarding only if both
2533 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
2534 Set mail-encode-mml non-nil if the MIME method was used.
2535
2536 * mail/sendmail.el (mml-to-mime): Add autoload form.
2537 (mail-encode-mml): Add a defvar.
2538 (mail-mode): Make mail-encode-mml buffer-local and initialize it
2539 to nil.
2540 (mail-send): If mail-encode-mml is non-nil, run the outgoing
2541 message through mml-to-mime, and reset mail-encode-mml to nil.
2542
2543 2011-09-09 Glenn Morris <rgm@gnu.org>
2544
2545 * woman.el (woman-if-body): When processing an .el block,
2546 do not delete the next .el block as well. (Bug#9447)
2547 (woman-special-characters): Add oq, cq, and hy characters.
2548
2549 2011-09-08 Martin Rudalics <rudalics@gmx.at>
2550
2551 * window.el (window-deletable-p): Make sure window is live before
2552 invoking window-prev-buffers.
2553
2554 2011-09-08 Leo Liu <sdl.web@gmail.com>
2555
2556 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
2557
2558 2011-09-08 Juri Linkov <juri@jurta.org>
2559
2560 * progmodes/compile.el (compilation-environment): Make it
2561 a defcustom (bug#8340).
2562
2563 2011-09-08 Martin Rudalics <rudalics@gmx.at>
2564
2565 * window.el (frame-auto-delete): Rename to window-auto-delete.
2566 Make it control auto-deletion of windows and/or frames.
2567 (window-deletable-p): New argument FORCE. Rewrite conditions
2568 for deleting window/frame. (Bug#9419)
2569 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
2570 Rewrite handling of case when window/frame can be deleted.
2571 (delete-windows-on): Call window-deletable-p with new FORCE
2572 argument t. (Bug#9456)
2573
2574 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
2575
2576 * help-mode.el (help-mode): Restore autoload.
2577
2578 2011-09-07 Juri Linkov <juri@jurta.org>
2579
2580 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
2581 `compilation-environment'. Set buffer-local
2582 `compilation-environment' to `thisenv' later after (funcall mode).
2583 (Bug#8340)
2584
2585 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
2586 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
2587 instead of replacing its value. (Bug#8340)
2588
2589 2011-09-07 Juri Linkov <juri@jurta.org>
2590
2591 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
2592 based on text properties put by `grep-filter' instead of matching
2593 escape sequences.
2594 (grep-mode): Set buffer-local `compilation-error-screen-columns'
2595 to the value of `grep-error-screen-columns' (bug#9438).
2596
2597 2011-09-07 Juri Linkov <juri@jurta.org>
2598
2599 * simple.el (next-error-highlight, next-error-highlight-no-select):
2600 Doc fix (bug#9432).
2601
2602 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2603
2604 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2605 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
2606
2607 2011-09-07 Leo Liu <sdl.web@gmail.com>
2608
2609 * net/rcirc.el (rcirc-mode): Conditionally initialize
2610 rcirc-input-ring.
2611
2612 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2613
2614 * emacs-lisp/find-func.el (find-function-C-source): Only set
2615 find-function-C-source-directory after checking that we found a source
2616 file there (bug#9440).
2617
2618 2011-09-06 Alan Mackenzie <acm@muc.de>
2619
2620 * isearch.el (isearch-other-meta-char): Wherever a key list is
2621 unread, "unread" the prefix arg, too. This fixes bug #8901.
2622
2623 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
2624
2625 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
2626
2627 2011-09-05 Juri Linkov <juri@jurta.org>
2628
2629 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
2630
2631 2011-09-05 Juri Linkov <juri@jurta.org>
2632
2633 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
2634 keeping point where processing of grep matches begins, and
2635 continue to delete remaining escape sequences from the same point.
2636 (grep-filter): Make leading zero optional in "0?1;31m" because
2637 git-grep emits "\033[1;31m" escape sequences unlike expected
2638 "\033[01;31m" as GNU Grep does (bug#9408).
2639 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
2640
2641 2011-09-05 Juri Linkov <juri@jurta.org>
2642
2643 * subr.el (y-or-n-p): Capitalize "yes".
2644
2645 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
2646
2647 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
2648 `tramp-cache-unload-hook' where appropriate.
2649 (tramp-methods): Rename `tramp-remote-sh' to
2650 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
2651 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
2652
2653 * net/tramp-sh.el (top): Don't require 'shell.
2654 (tramp-methods): Add `tramp-remote-shell' and
2655 `tramp-remote-shell-args' entries.
2656 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
2657 (tramp-sh-handle-shell-command): Remove.
2658 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2659 Use `tramp-remote-shell'.
2660
2661 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
2662
2663 * mail/sendmail.el (sendmail-query-once-function): Delete.
2664 (sendmail-query-once): Save directly to send-mail-function.
2665 Update message-send-mail-function too.
2666
2667 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
2668
2669 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2670
2671 * progmodes/python.el (python-mode-map): Use correct function to
2672 start python interpreter from menu-bar (as reported by Geert
2673 Kloosterman).
2674 (inferior-python-mode-map): Fix typo.
2675 (python-shell-map): Remove.
2676
2677 2011-09-03 Deniz Dogan <deniz@dogan.se>
2678
2679 * net/rcirc.el (rcirc-print): Simplify code for
2680 rcirc-scroll-show-maximum-output. There is no need to walk
2681 through all windows to find the right one.
2682
2683 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2684
2685 * help.el (help-return-method): Doc fix.
2686
2687 2011-09-03 Martin Rudalics <rudalics@gmx.at>
2688
2689 * window.el (window-deletable-p): Don't return a non-nil value
2690 when there's a buffer that was shown in the window before.
2691 (Bug#9419)
2692 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2693 Set window's previous buffers to nil.
2694
2695 2011-09-03 Eli Zaretskii <eliz@gnu.org>
2696
2697 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
2698 newline before and after the tag line, so it doesn't interfere
2699 with determining the paragraph direction of bidirectional text.
2700
2701 2011-09-03 Leo Liu <sdl.web@gmail.com>
2702
2703 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
2704
2705 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
2706
2707 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
2708 (pop-to-buffer): Change interactive spec. Pass second argument
2709 directly to display-buffer.
2710 (display-buffer): Fix interactive spec. Use functionp to
2711 distinguish between a function and a list of functions.
2712
2713 * abbrev.el (edit-abbrevs):
2714 * arc-mode.el (archive-extract):
2715 * autoinsert.el (auto-insert):
2716 * bookmark.el (bookmark-bmenu-list):
2717 * files.el (find-file):
2718 * view.el (view-buffer):
2719 * progmodes/compile.el (compilation-goto-locus):
2720 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
2721
2722 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
2723
2724 * window.el (display-buffer-alist): Doc fix.
2725 (display-buffer): Add docstring. Don't treat
2726 display-buffer-default specially.
2727 (display-buffer-reuse-selected-window)
2728 (display-buffer-same-window, display-buffer-maybe-same-window)
2729 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2730 (display-buffer-pop-up-window)
2731 (display-buffer-reuse-or-pop-window)
2732 (display-buffer-use-some-window): New functions.
2733 (display-buffer-default-action): Use them.
2734 (display-buffer-default): Delete.
2735 (pop-to-buffer-1): Fix choice of actions.
2736
2737 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2738
2739 * minibuffer.el (completion--insert-strings): Don't get confused by
2740 completion entries that end with an LF char.
2741
2742 2011-09-01 Eli Zaretskii <eliz@gnu.org>
2743
2744 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
2745
2746 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
2747
2748 * window.el (display-buffer): Restore interactive spec.
2749 (display-buffer-same-window, display-buffer-other-window):
2750 New functions.
2751 (pop-to-buffer-1): New function. Use the above.
2752 (pop-to-buffer, pop-to-buffer-same-window): Use it.
2753 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
2754
2755 * view.el (view-buffer-other-window, view-buffer-other-frame):
2756 Just use pop-to-buffer.
2757
2758 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2759
2760 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
2761
2762 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
2763
2764 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
2765
2766 2011-08-31 Richard Stallman <rms@gnu.org>
2767
2768 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
2769 of the separation of rmail-view-buffer from rmail-buffer.
2770 If you say no to "replace original", the decrypt is in the
2771 view buffer. If you say yes, the decrypt goes into the
2772 rmail buffer also.
2773
2774 2011-08-31 Martin Rudalics <rudalics@gmx.at>
2775
2776 * window.el (display-buffer-window): Rewrite doc-string.
2777 (display-buffer-record-window): New function.
2778 (display-buffer-macro-specifiers)
2779 (display-buffer-even-window-sizes, display-buffer-set-height)
2780 (display-buffer-set-width, display-buffer-in-window)
2781 (display-buffer-reuse-window, display-buffer-split-specifiers)
2782 (display-buffer-side-specifiers, display-buffer-split-window-1)
2783 (display-buffer-split-window, display-buffer-split-atom-window)
2784 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
2785 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
2786 (display-buffer-other-window-means-other-frame)
2787 (display-buffer-normalize-special)
2788 (display-buffer-normalize-default)
2789 (display-buffer-normalize-argument)
2790 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
2791 (display-buffer-normalize-specifiers, display-buffer-frame)
2792 (display-buffer-same-window, display-buffer-same-frame)
2793 (display-buffer-other-window)
2794 (display-buffer-same-frame-other-window)
2795 (display-buffer-other-frame, pop-to-buffer-same-window)
2796 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
2797 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
2798 (switch-to-buffer-same-frame)
2799 (switch-to-buffer-other-window-same-frame)
2800 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
2801 (display-buffer-alist-set-1, display-buffer-alist-set-2)
2802 (display-buffer-alist-set): Remove.
2803 (display-buffer-function, special-display-buffer-names)
2804 (special-display-regexps, special-display-function):
2805 In doc-string refer to display-buffer-window and quit-restore
2806 parameter.
2807 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
2808 (special-display-frame-alist, special-display-popup-frame)
2809 (same-window-buffer-names, same-window-regexps, same-window-p)
2810 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
2811 (split-window-preferred-function, split-height-threshold)
2812 (split-width-threshold, window-splittable-p)
2813 (split-window-sensibly, window--try-to-split-window)
2814 (window--frame-usable-p, even-window-heights)
2815 (window--even-window-heights, window--display-buffer-1)
2816 (window--display-buffer-2, display-buffer-other-frame):
2817 Restore old Emacs 23 code, order and doc-strings where applicable.
2818 (display-buffer-default, display-buffer-assq-regexp): New functions.
2819 (display-buffer-alist): Rewrite doc-string.
2820 (display-buffer-default-action)
2821 (display-buffer-overriding-action): New variables.
2822 (display-buffer, switch-to-buffer): Rewrite.
2823 (pop-to-buffer): Restore Emacs 23 behavior but use
2824 window-normalize-buffer-to-display.
2825 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
2826 Restore Emacs 23 behavior but use
2827 window-normalize-buffer-to-switch-to.
2828 (pop-to-buffer-same-window): Rewrite.
2829 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
2830 Rewrite using Emacs 23 options.
2831
2832 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
2833
2834 * net/tramp.el (tramp-root-regexp): Remove.
2835 (tramp-completion-file-name-regexp-unified)
2836 (tramp-completion-file-name-regexp-separate)
2837 (tramp-completion-file-name-regexp-url): Don't use leading volume
2838 letter on win32 systems. (Bug#5303, Bug#9311)
2839 (tramp-drop-volume-letter): Simplify definition.
2840 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2841
2842 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2843
2844 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
2845 (bug#9356).
2846
2847 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
2848
2849 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
2850
2851 2011-08-29 Juri Linkov <juri@jurta.org>
2852
2853 * isearch.el (isearch-done): Don't display message "Mark saved"
2854 when arg `edit' is non-nil to prevent its flicker in the echo area.
2855
2856 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
2857
2858 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
2859 obsolete packages for deletion.
2860
2861 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
2862
2863 * help-mode.el (help-mode-map): Add special-mode-map to parent.
2864 (help-mode): Derive help-mode from special-mode. Don't invoke
2865 view-mode from help-mode.
2866 (help-xref-override-view-map): Remove.
2867 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
2868 view-mode is not used anymore.
2869
2870 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
2871
2872 * server.el (server-port): Doc fix.
2873
2874 * cus-theme.el (custom-theme-choose-mode): Inherit from
2875 special-mode (Bug#9124).
2876 (custom-theme-choose-mode-map): Add special-mode to parent.
2877
2878 2011-08-28 Alan Mackenzie <acm@muc.de>
2879
2880 * progmodes/cc-fonts.el
2881 (c-make-font-lock-BO-decl-search-function): New function.
2882 (c-basic-matchers-after - "Fontify the clauses after various
2883 keywords"): Extract the three keyword lists for the 3 erroneous
2884 constructs from the list of four, and use the new function above
2885 in place of an old one.
2886
2887 2011-08-28 Deniz Dogan <deniz@dogan.se>
2888
2889 * net/rcirc.el (rcirc-insert-prev-input)
2890 (rcirc-insert-next-input): Remove unused argument.
2891
2892 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2893
2894 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
2895
2896 2011-08-27 Alan Mackenzie <acm@muc.de>
2897
2898 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
2899 handle function pointer parameters properly.
2900
2901 2011-08-27 Martin Rudalics <rudalics@gmx.at>
2902
2903 * window.el (display-buffer-reuse-window): Fix case where
2904 selected window was reused with non-nil OTHER-WINDOW argument.
2905 (Bug#9381)
2906
2907 2011-08-27 Deniz Dogan <deniz@dogan.se>
2908
2909 * net/rcirc.el (rcirc-check-auth-status): Adding support for
2910 oftc's NickServ messages.
2911
2912 2011-08-27 Glenn Morris <rgm@gnu.org>
2913
2914 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
2915
2916 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
2917
2918 * emacs-lisp/package.el (package-install): Call package-initialize
2919 if called interactively.
2920
2921 2011-08-26 Leo Liu <sdl.web@gmail.com>
2922
2923 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
2924
2925 2011-08-25 Juri Linkov <juri@jurta.org>
2926
2927 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
2928 `search-whitespace-regexp' (bug#9364).
2929
2930 2011-08-25 Juri Linkov <juri@jurta.org>
2931
2932 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
2933 `regexp-search-ring' to their global values to protect from
2934 updating by `read-from-minibuffer' (bug#9185).
2935
2936 2011-08-25 Juri Linkov <juri@jurta.org>
2937
2938 * textmodes/ispell.el (ispell-command-loop): Add newline
2939 at the end of the "Use option `i'..." line.
2940
2941 2011-08-25 Juri Linkov <juri@jurta.org>
2942
2943 * battery.el (display-battery-mode): If `battery-status-function'
2944 or `battery-mode-line-format' is nil, display the message and set
2945 `display-battery-mode' to nil (bug#9363).
2946
2947 2011-08-25 Eli Zaretskii <eliz@gnu.org>
2948
2949 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
2950 bidi-string-mark-left-to-right; they are unnecessary now.
2951
2952 2011-08-25 Deniz Dogan <deniz@dogan.se>
2953
2954 * net/quickurl.el: Documentation typo fixes.
2955
2956 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
2957
2958 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
2959
2960 2011-08-25 Glenn Morris <rgm@gnu.org>
2961
2962 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
2963
2964 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
2965 (smtpmail-via-smtp): Handle nil response from smtp.
2966
2967 2011-08-24 Juri Linkov <juri@jurta.org>
2968
2969 * proced.el (proced-marked): Inherit from `error' instead of
2970 `font-lock-warning-face'.
2971
2972 * ibuffer.el (ibuffer-marked-face): Change default face from
2973 `font-lock-warning-face' to `warning'.
2974 (ibuffer-deletion-face): Change default face from
2975 `font-lock-type-face' to `error'.
2976
2977 * battery.el (battery-update): Use the face `error' instead of
2978 `font-lock-warning-face' (bug#6117).
2979
2980 2011-08-24 Juri Linkov <juri@jurta.org>
2981
2982 * faces.el (success): Change face color from "Green3" to
2983 "ForestGreen" on light background (bug#9353).
2984
2985 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
2986
2987 * window.el (quit-window): Rename from quit-restore-window.
2988 Use same arglist as old quit-window.
2989 (frame-auto-delete): Doc fix.
2990
2991 * view.el (view-mode-exit): Use quit-window.
2992
2993 2011-08-24 Juri Linkov <juri@jurta.org>
2994
2995 * isearch.el (isearch-ring-adjust1): Start visiting previous
2996 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
2997 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
2998 for empty search string (when the last search string is reused
2999 automatically) to adjust the isearch ring to the last element and
3000 prepare the correct index for further M-p commands (bug#9185).
3001
3002 2011-08-24 Kenichi Handa <handa@m17n.org>
3003
3004 * international/ucs-normalize.el: If decomposition property of
3005 CHAR is the default one (i.e. a list of CHAR itself), treat it as
3006 nil.
3007 (nfd, nfkd): Likewise.
3008
3009 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3010
3011 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
3012 from process filters aren't reliably transmitted to the surrounding
3013 accept-process-output.
3014 (mpc-proc-check): New function.
3015 (mpc-proc-sync): Use it (bug#8293)
3016
3017 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3018
3019 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
3020 Add compatibility functions (bug#9313).
3021
3022 2011-08-23 Eli Zaretskii <eliz@gnu.org>
3023
3024 * cus-start.el (all): Add entry for bidi-paragraph-direction.
3025
3026 * international/uni-bidi.el: Regenerated.
3027
3028 2011-08-23 Kenichi Handa <handa@m17n.org>
3029
3030 * international/charprop.el:
3031 * international/uni-bidi.el:
3032 * international/uni-category.el:
3033 * international/uni-combining.el:
3034 * international/uni-comment.el:
3035 * international/uni-decimal.el:
3036 * international/uni-decomposition.el:
3037 * international/uni-digit.el:
3038 * international/uni-lowercase.el:
3039 * international/uni-mirrored.el:
3040 * international/uni-name.el:
3041 * international/uni-numeric.el:
3042 * international/uni-old-name.el:
3043 * international/uni-titlecase.el:
3044 * international/uni-uppercase.el: Regenerate.
3045
3046 2011-08-23 Martin Rudalics <rudalics@gmx.at>
3047
3048 * help.el (help-window-setup): Fix message displayed when other
3049 window is reused. (Bug#9341)
3050
3051 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3052
3053 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
3054 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
3055
3056 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
3057 Mark obsolete.
3058 * shell.el (shell-parse-pcomplete-arguments): New function.
3059 (shell-completion-vars): Use it instead (bug#9160).
3060
3061 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3062
3063 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
3064 strings and comments (bug#9333).
3065
3066 * emacs-lisp/debug.el (debug-arglist): New function.
3067 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
3068 (debug-on-entry-1): Handle interpreted closures (bug#9120).
3069
3070 2011-08-22 Juri Linkov <juri@jurta.org>
3071
3072 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3073 Revert regexp that highlights output switches to its old
3074 pre-2010-10-28 value and remove one `?' from it (bug#9319).
3075
3076 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
3077 to check for empty output (bug#9226).
3078
3079 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
3080
3081 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
3082 symbol-constituent as the default, as that stops font-lock from
3083 working properly (Bug#8843).
3084
3085 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3086
3087 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
3088 `coding-system-for-*' around the process open call to avoid
3089 auth-source side effects.
3090 (smtpmail-try-auth-methods): Expand the secret password.
3091 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
3092 probe hangs.
3093
3094 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3095
3096 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
3097
3098 * emacs-lisp/find-func.el (find-function-noselect): New arg
3099 lisp-only.
3100
3101 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
3102 signal an error for built-in functions (Bug#6664).
3103
3104 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3105
3106 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
3107 (smtpmail-try-auth-methods): Use it.
3108
3109 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3110
3111 * font-lock.el (font-lock-fontify-region)
3112 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
3113 (font-lock-default-unfontify-buffer)
3114 (font-lock-default-fontify-region)
3115 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
3116
3117 * progmodes/compile.el (compilation-error-properties):
3118 Fix confusion between file struct and message struct (Bug#9319).
3119 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
3120 `ant' regexp.
3121
3122 * net/browse-url.el (browse-url-firefox): Don't call
3123 browse-url-firefox-sentinel unless using -remote (Bug#9328).
3124
3125 2011-08-20 Glenn Morris <rgm@gnu.org>
3126
3127 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
3128
3129 * tutorial.el (tutorial--default-keys): Update some default bindings.
3130
3131 * files.el (hack-local-variables): Fully ignore case for "mode:".
3132
3133 2011-08-20 Alan Mackenzie <acm@muc.de>
3134
3135 Resolve invalid use of a regexp in regexp-opt.
3136
3137 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
3138 detection for a java annotation.
3139
3140 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
3141 detection for a java annotation.
3142
3143 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
3144 handling for java.
3145 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
3146
3147 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
3148
3149 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
3150 (Bug#9274).
3151
3152 2011-08-20 Alan Mackenzie <acm@muc.de>
3153
3154 Fontify CPP expressions correctly when starting in the middle of
3155 such a construct. Mainly for when jit-lock etc. starts a chunk
3156 here.
3157
3158 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
3159 variable.
3160 (c-make-font-lock-search-form): New function, extracted from
3161 c-make-font-lock-search-function.
3162 (c-make-font-lock-search-function): Use the above function.
3163 (c-make-font-lock-context-search-function): New function.
3164 (c-cpp-matchers): Enhance the preprocessor expression case with
3165 the above function
3166 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
3167 which takes an expression.
3168
3169 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
3170
3171 2011-08-20 Martin Rudalics <rudalics@gmx.at>
3172
3173 * window.el (display-buffer-reuse-window)
3174 (display-buffer-pop-up-window): Don't reuse or split a side
3175 window.
3176
3177 2011-08-19 Glenn Morris <rgm@gnu.org>
3178
3179 * files.el (hack-local-variables-prop-line, hack-local-variables):
3180 Downcase "Mode:". (Bug#9331)
3181
3182 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
3183
3184 * international/characters.el: Add L and R categories.
3185
3186 * subr.el (bidi-string-mark-left-to-right): Rename from
3187 string-mark-left-to-right. Use category search.
3188
3189 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
3190
3191 2011-08-18 Juri Linkov <juri@jurta.org>
3192
3193 * faces.el (error, warning, success): New faces with definitions
3194 copied from old default values of `font-lock-warning-face',
3195 `compilation-warning', `compilation-info' (bug#6117).
3196
3197 * font-lock.el (font-lock-warning-face): Inherit from `error'.
3198
3199 * progmodes/compile.el (compilation-error): Inherit from `error'.
3200 (compilation-warning): Inherit from `warning'.
3201 (compilation-info): Inherit from `success'.
3202
3203 * dired.el (dired-marked): Inherit from `warning'.
3204 (dired-flagged): Inherit from `error'.
3205
3206 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3207
3208 * mail/smtpmail.el (auth-source): Require to avoid problems with
3209 binding variables (bug#9298). Also clean up some unused
3210 autoloads.
3211
3212 * net/network-stream.el (network-stream-open-starttls):
3213 Support using starttls.el without using gnutls-cli.
3214
3215 2011-08-17 Juri Linkov <juri@jurta.org>
3216
3217 * progmodes/grep.el (rgrep): Handle the case when
3218 `grep-find-command' is a cons cell (bug#9278).
3219
3220 2011-08-17 Martin Rudalics <rudalics@gmx.at>
3221
3222 * window.el (display-buffer-pop-up-frame): Run frame creation
3223 function with BUFFER current (as special-display-popup-frame
3224 does). Reported by Drew Adams.
3225
3226 2011-08-17 Daiki Ueno <ueno@unixuser.org>
3227
3228 * epa-mail.el: Simplify GnuPG group expansion using
3229 epg-expand-group.
3230 (epa-mail-group-alist, epa-mail-group-modtime)
3231 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
3232 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
3233 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
3234 Remove.
3235
3236 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
3237
3238 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
3239
3240 2011-08-16 Alan Mackenzie <acm@muc.de>
3241
3242 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
3243 Correct, to avoid the inside of macros.
3244
3245 2011-08-16 Richard Stallman <rms@gnu.org>
3246
3247 * epa-mail.el: Handle GnuPG group definitions.
3248 (epa-mail-group-alist, epa-mail-group-modtime)
3249 (epa-mail-gnupg-conf-file): New variables.
3250 (epa-mail-parse-groups, epa-mail-sync-groups)
3251 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
3252 (epa-mail-expand-recipients): New functions.
3253 (epa-mail-encrypt): Call epa-mail-expand-recipients.
3254
3255 * mail/rmail.el (rmail-epa-decrypt): New command.
3256
3257 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
3258 Don't bind buffer-read-only, just inhibit-read-only.
3259 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
3260 (epa-decrypt-armor-in-region): Make error message clearer.
3261
3262 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3263
3264 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
3265 and "a2b" to "ab" for `prefix'.
3266
3267 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
3268
3269 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
3270 filter groups.
3271 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
3272 Fourquet (Bug#8804).
3273
3274 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
3275
3276 * startup.el (argi): Declare as global variable (bug#9275).
3277
3278 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
3279
3280 * subr.el (string-mark-left-to-right): Search the entire string
3281 for RTL script, not just the terminating character. Doc fix.
3282
3283 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3284
3285 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
3286 New function.
3287 (js--regexp-literal, js-syntax-propertize-function): Remove.
3288 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
3289 (js-mode-map): Don't rebind electric keys.
3290 (js-insert-and-indent): Remove.
3291 (js-mode): Setup electric-layout and electric-indent instead.
3292
3293 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
3294
3295 2011-08-12 Daiki Ueno <ueno@unixuser.org>
3296
3297 * epa.el (epa-progress-callback-function): Fix the logic of
3298 displaying progress.
3299 * epa-file.el (epa-file-insert-file-contents): Make progress
3300 display more user-friendly.
3301 (epa-file-write-region): Ditto.
3302
3303 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
3304
3305 * subr.el (string-mark-left-to-right): New function.
3306
3307 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
3308 Use string-mark-left-to-right.
3309 (list-buffers-noselect): Caller changed.
3310
3311 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3312 Use string-mark-left-to-right.
3313 (tabulated-list-print): Recenter after moving point.
3314
3315 2011-08-10 Juri Linkov <juri@jurta.org>
3316
3317 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
3318 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
3319 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
3320
3321 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
3322
3323 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
3324 (Bug#7554).
3325
3326 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
3327
3328 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
3329 character. (Bug#6594)
3330
3331 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
3332
3333 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
3334 (image-dired--with-db-file): New macro.
3335 (image-dired-write-tags, image-dired-remove-tag)
3336 (image-dired-create-gallery-lists, image-dired-write-comments)
3337 (image-dired-get-comment, image-dired-mark-tagged-files)
3338 (image-dired-list-tags, image-dired-gallery-generate): Use it.
3339 (image-dired-gallery-generate): Use insert-file-contents.
3340
3341 * time.el (display-time-world-list, display-time-world-display):
3342 * time-stamp.el (time-stamp-string):
3343 * vc/add-log.el (add-change-log-entry): Use setenv instead of
3344 set-time-zone-rule (Bug#7337).
3345
3346 2011-08-08 Daiki Ueno <ueno@unixuser.org>
3347
3348 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
3349 (epg-error-to-string, epg-errors-to-string): New function.
3350 (epg-wait-for-completion): Reverse errors list.
3351 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
3352 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
3353 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
3354 (epg-sign-keys, epg-generate-key-from-file)
3355 (epg-generate-key-from-string): Format errors by using
3356 epg-errors-to-string (bug#9255).
3357 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
3358
3359 2011-08-07 Juri Linkov <juri@jurta.org>
3360
3361 * faces.el (list-faces-display): Remove extra angle bracket
3362 from `help-mode-map'.
3363
3364 * info.el (Info-history-toc-nodes): Doc fix.
3365
3366 * longlines.el (longlines-mode): Doc fix.
3367
3368 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3369
3370 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
3371 of statements and in a few more cases (bug#9183).
3372
3373 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
3374 New functions.
3375 (cl-transform-lambda): Use them (bug#9239).
3376
3377 2011-08-05 Martin Rudalics <rudalics@gmx.at>
3378
3379 * window.el (display-buffer-same-window)
3380 (display-buffer-same-frame, display-buffer-other-window)
3381 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
3382 (pop-to-buffer-other-window)
3383 (pop-to-buffer-same-frame-other-window)
3384 (pop-to-buffer-other-frame): Make them defuns.
3385 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
3386
3387 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3388
3389 * subr.el (make-composed-keymap): Move from C. Change calling
3390 convention, and improve docstring to bring attention to a subtle point.
3391 * minibuffer.el (completing-read-default): Adjust accordingly.
3392
3393 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
3394
3395 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
3396 (tramp-open-shell): Use `tramp-shell-quote-argument'.
3397
3398 * net/trampver.el: Update release number.
3399
3400 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3401
3402 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
3403 "in" (bug#9190).
3404
3405 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3406
3407 * mail/sendmail.el (sendmail-query-once): Restore the current
3408 buffer after querying (bug#9074).
3409
3410 * dired.el (dired-flagged): Use different faces for marked and
3411 flagged files (bug#6117).
3412
3413 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
3414 (bug#4433).
3415
3416 * ido.el (ido-mode): Switch off the message if called
3417 non-interactively.
3418
3419 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
3420 before 587, since it appears that that's more likely to work for
3421 more people.
3422
3423 * cus-edit.el (custom-file): When running under emacs -q, always
3424 refuse to save the customizations, even if the .emacs file doesn't
3425 exist.
3426
3427 * info.el: Remove the `Info-beginning-of-buffer' function
3428 (bug#8325).
3429
3430 * net/network-stream.el (network-stream-open-starttls):
3431 Use `starttls-available-p' to see whether starttls.el can be used.
3432
3433 2011-08-01 Martin Rudalics <rudalics@gmx.at>
3434
3435 * window.el (display-buffer-in-window): Don't set dedicated status
3436 of window here (Bug#9215).
3437 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3438 (display-buffer-pop-up-side-window)
3439 (display-buffer-in-side-window): Set dedicated status of window here.
3440
3441 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3442
3443 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
3444 before binding generated-autoload-file.
3445
3446 2011-08-01 Deniz Dogan <deniz@dogan.se>
3447
3448 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
3449
3450 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
3451
3452 Sync with Tramp 2.2.2.
3453
3454 * net/trampver.el: Update release number.
3455
3456 2011-07-30 Juri Linkov <juri@jurta.org>
3457
3458 * dired-aux.el (dired-touch-initial): Remove function.
3459 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
3460 current time, and `default' to the last modification time of the
3461 current marked file (bug#6887).
3462
3463 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
3464
3465 * simple.el (goto-line): Use string-to-number to provide a
3466 numeric argument to read-number (bug#9163).
3467
3468 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
3469
3470 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
3471 connection process, it could be nil.
3472
3473 2011-07-27 Leo Liu <sdl.web@gmail.com>
3474
3475 Simplify url handling in rcirc-mode.
3476
3477 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
3478 (rcirc-browse-url-at-mouse): Remove.
3479 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
3480
3481 2011-07-26 Alan Mackenzie <acm@muc.de>
3482
3483 Fontify bitfield declarations properly.
3484
3485 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
3486 (c-symbol-chars): Now exported as a lang variable.
3487 (c-not-primitive-type-keywords): New lang variable.
3488
3489 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
3490 QT keyword "more" to prevent "more slots: ...." being spuriously
3491 parsed as a bitfield declaration.
3492
3493 * progmodes/cc-engine.el (c-beginning-of-statement-1):
3494 Refactor and enhance to handle bitfield declarations.
3495 (c-punctuation-in): New function.
3496 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
3497 declarations properly.
3498
3499 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
3500
3501 * calendar/icalendar.el (icalendar--all-events): Take care of
3502 multiple vcalendars in a single file.
3503 (icalendar--convert-float-to-ical): Checkdoc fixes.
3504
3505 2011-07-25 Deniz Dogan <deniz@dogan.se>
3506
3507 * image.el (insert-image): Clarifying docstring.
3508
3509 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
3510
3511 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
3512 `tramp-send-command-and-check' if there is no error.
3513 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
3514
3515 2011-07-22 Alan Mackenzie <acm@muc.de>
3516
3517 Prevent cc-langs.elc being loaded at run time.
3518
3519 * progmodes/cc-mode.el: Remove two autoload forms which loaded
3520 cc-langs.
3521
3522 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
3523 "(require 'cc-langs)". Quote a form so it will evaluate at
3524 (cc-mode's) compilation time.
3525
3526 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
3527
3528 * net/tramp.el (tramp-file-name-handler): Avoid recursive
3529 loading. (Bug#9114)
3530
3531 2011-07-21 Martin Rudalics <rudalics@gmx.at>
3532
3533 * window.el (display-buffer-pop-up-window)
3534 (display-buffer-pop-up-side-window)
3535 (display-buffer-in-side-window): Call display-buffer-set-height
3536 and display-buffer-set-width after setting the new window's
3537 buffer so `fit-window-to-buffer' and friends work on the right buffer.
3538
3539 2011-07-20 Sam Steingold <sds@gnu.org>
3540
3541 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
3542 (etags-tags-included-tables): Call `convert-standard-filename' on
3543 the file names contained in TAGS so that windows Emacs can handle
3544 TAGS files created by cygwin ctags.
3545
3546 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
3547
3548 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
3549 which apparently didn't work.
3550
3551 2011-07-19 Roland Winkler <winkler@gnu.org>
3552
3553 * proced.el (proced-send-signal): For *Marked Processes* buffer
3554 put point at beginning of buffer.
3555
3556 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
3557
3558 * proced.el (proced-format): Make header lines align with the text
3559 (bug#1779).
3560
3561 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3562
3563 * view.el (view-buffer): Allow running in `special' modes if we're
3564 visiting a file (bug#8615).
3565
3566 2011-07-19 Martin Rudalics <rudalics@gmx.at>
3567
3568 * window.el (display-buffer-alist-of-strings-p)
3569 (display-buffer-alist-set-1, display-buffer-alist-set-2):
3570 New functions.
3571 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
3572 more accurately.
3573
3574 2011-07-18 Alan Mackenzie <acm@muc.de>
3575
3576 Fontify declarators properly when, e.g., a jit-lock chunk begins
3577 inside a declaration.
3578
3579 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
3580
3581 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3582 New function.
3583 (c-complex-decl-matchers): Insert reference to
3584 c-font-lock-enclosing-decls.
3585
3586 * progmodes/cc-engine.el (c-backward-single-comment):
3587 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
3588 to nil around calls to (forward-comment -1).
3589
3590 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3591
3592 * image.el (put-image): Doc typo fix.
3593
3594 * progmodes/etags.el (tags-search): Doc typo fix.
3595
3596 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
3597 password if we get errors 550 to 554.
3598
3599 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3600
3601 * net/gnutls.el (gnutls-log-level): Remove.
3602
3603 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
3604 indentation character (bug#6380).
3605
3606 * files.el (buffer-offer-save): Made permanently local (bug#6241).
3607
3608 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
3609 to clarify what the problem is (bug#4291).
3610
3611 * simple.el (current-kill): Clarify what
3612 `interprogram-paste-function' does (bug#7500).
3613 (auto-fill-mode): Document `auto-fill-function' in relation to
3614 `auto-fill-mode' (bug#2470).
3615
3616 2011-07-16 Lawrence Mitchell <wence@gmx.li>
3617
3618 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
3619 method if slot is read-only (bug#9035).
3620
3621 2011-07-16 Martin Rudalics <rudalics@gmx.at>
3622
3623 * frame.el (select-frame-set-input-focus): New argument NORECORD.
3624 * window.el (pop-to-buffer): Select window used even if it was
3625 selected before, see discussion of (Bug#8615), (Bug#6954).
3626 Pass argument NORECORD on to select-frame-set-input-focus.
3627
3628 2011-07-15 Glenn Morris <rgm@gnu.org>
3629
3630 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
3631 Respect help-form.
3632
3633 2011-07-09 Lawrence Mitchell <wence@gmx.li>
3634
3635 * net/gnutls.el (gnutls-min-prime-bits): New variable.
3636 (gnutls-negotiate): Use it.
3637
3638 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3639
3640 * net/gnutls.el (gnutls-negotiate):
3641 Upcase `gnutls-algorithm-priority'.
3642
3643 2011-07-15 Glenn Morris <rgm@gnu.org>
3644
3645 * jka-compr.el (jka-compr-verbose): Move from here...
3646 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
3647 Add missing :version tag.
3648 * info.el: No need to require jka-compr when compiling.
3649
3650 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3651
3652 * net/gnutls.el (gnutls-algorithm-priority): New variable.
3653 (gnutls-negotiate): Use it.
3654
3655 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
3656
3657 * info.el (Info-beginning-of-buffer): New command.
3658 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
3659 announcing `b' as the key (bug#8325).
3660 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
3661
3662 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
3663
3664 * international/mule-cmds.el
3665 (describe-specified-language-support): Make the error message
3666 clearer (bug#8905).
3667
3668 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
3669
3670 * isearch.el (isearch-barrier): Add a doc string, since it's
3671 mentioned in a function doc string (bug#8678).
3672
3673 2011-07-15 Martin Rudalics <rudalics@gmx.at>
3674
3675 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
3676 buffer argument (Bug#9083) and self-identifying label argument.
3677
3678 2011-07-15 Glenn Morris <rgm@gnu.org>
3679
3680 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
3681
3682 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3683
3684 * man.el (Man-fontify-manpage): Fix message when formatting the
3685 man page (bug#7929).
3686
3687 2011-07-14 Eli Zaretskii <eliz@gnu.org>
3688
3689 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
3690 argument LRM; if non-nil, append an invisible LRM character to the
3691 buffer name.
3692 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
3693 last argument non-nil, when formatting buffer names.
3694 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
3695 paragraph direction.
3696
3697 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3698
3699 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
3700 the man page name (bug#7929).
3701
3702 * image.el (put-image): Mention the `put-image' overlay property
3703 (bug#7834).
3704
3705 * scroll-bar.el (set-scroll-bar-mode): Mention that
3706 `scroll-bar-mode' lists the values (bug#7772).
3707
3708 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
3709 command (bug#7729).
3710
3711 * rect.el (apply-on-rectangle): Return the point after the last
3712 operation.
3713 (string-rectangle): Go to the point after the last operation
3714 (bug#7522).
3715
3716 * printing.el (pr-toggle-region): Clarify the documentation
3717 slightly (bug#7493).
3718
3719 * time.el (display-time-update):
3720 Allow `display-time-mail-function' to return nil (bug#7158).
3721 Fix suggested by Detlev Zundel.
3722
3723 * vc/diff.el (diff): Clarify the order the file names are read
3724 (bug#7111).
3725
3726 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
3727 the doc string (bug#7015).
3728
3729 * font-lock.el (font-lock-maximum-decoration): Mention what
3730 numeric levels mean (bug#6935).
3731
3732 * startup.el (initial-buffer-choice): Don't mention the `none'
3733 selection, which is against policy.
3734
3735 2011-07-14 Martin Rudalics <rudalics@gmx.at>
3736
3737 * window.el (display-buffer-normalize-special):
3738 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
3739
3740 2011-07-14 Eli Zaretskii <eliz@gnu.org>
3741
3742 * subr.el (version<, version<=, version=): Mention "-CVS" and
3743 "-12345" alpha version numbers.
3744
3745 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
3746
3747 * bindings.el: Add advertised binding for set-mark-command
3748 (Bug#5772).
3749
3750 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
3751
3752 * bindings.el (mode-line-other-buffer):
3753 * bookmark.el (bookmark-bmenu-2-window):
3754 * bs.el (bs-cycle-next, bs-cycle-previous):
3755 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
3756 switch-to-buffer.
3757
3758 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
3759 Delete.
3760
3761 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
3762
3763 * follow.el (follow-debug-message, follow-redisplay):
3764 * jka-cmpr-hook.el (with-auto-compression-mode):
3765 Fix typos in docstrings.
3766
3767 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3768
3769 * subr.el (with-silent-modifications): Clarify somewhat what the
3770 macro inhibits (bug#6525).
3771
3772 * simple.el (eval-expression): Note what it does if called
3773 interactively (bug#6495).
3774
3775 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
3776
3777 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
3778 Use pop-to-buffer buffer-or-name if it is nil.
3779
3780 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3781 Remove switch-to-buffer.
3782
3783 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3784
3785 * files.el (make-directory): Clarify that an error will be raised
3786 if there's an error (bug#6397).
3787
3788 * startup.el (initial-buffer-choice): Add `none' as a choice
3789 (bug#6234).
3790
3791 * subr.el (add-hook): Clarify section about buffer-local hooks
3792 (bug#6218).
3793
3794 * dired.el (dired-flagged): Clarify doc string (bug#6117).
3795
3796 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
3797
3798 * tabify.el (untabify): Preserve the current column so that point
3799 doesn't move (bug#6032).
3800
3801 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3802
3803 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
3804 Rewrite to avoid awkward possessive "s" (bug#5986).
3805
3806 2011-07-13 Glenn Morris <rgm@gnu.org>
3807
3808 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
3809 (dired-insert-directory): Give a message the first time
3810 if ls is found not to support --dired.
3811
3812 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3813
3814 * simple.el (toggle-truncate-lines): Clarify what is toggled
3815 (bug#5580). Text by Drew Adams.
3816
3817 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
3818
3819 * simple.el (blink-matching-open): Make the error message from the
3820 last change less verbose.
3821
3822 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3823
3824 * font-lock.el (font-lock-comment-face): Use the high contrast
3825 "yellow" color for font-lock-comment-face on low color terminals
3826 using a dark background color (bug#4221).
3827
3828 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3829
3830 * dired.el (dired-insert-set-properties): Make the doc string
3831 reflect what it does now (bug#5325).
3832
3833 * simple.el (blink-matching-open): Say that we were unable to find
3834 the match within the limit, if we're limited (bug#5122).
3835
3836 * international/mule-cmds.el (prefer-coding-system): Add an
3837 example (bug#4869).
3838
3839 * progmodes/etags.el (tags-search): Document `file-list-form'
3840 (bug#4731).
3841
3842 2011-07-13 Lawrence Mitchell <wence@gmx.li>
3843
3844 * net/browse-url.el (browse-url-default-browser)
3845 (browse-url-browser-function): Make the default browser choice a
3846 bit more logical (bug#4300). Also clean up the doc string.
3847
3848 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
3849
3850 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
3851 binary endings (bug#4440).
3852
3853 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3854
3855 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
3856 which can be pretty annoying (bug#8971).
3857
3858 * jka-compr.el (jka-compr-verbose): New variable, and use
3859 throughout (bug#8971).
3860
3861 * info.el (Info-find-file): Fall back on the installation
3862 directory if we can't find the info node anywhere else.
3863
3864 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
3865
3866 * vc/vc.el (vc-revert-file):
3867 Don't set file time-stamp in the past. (Bug#5181)
3868
3869 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3870
3871 * files.el (after-find-file): Give a better error message when
3872 trying to find a symlink that points to a file that doesn't exist
3873 (bug#4398).
3874
3875 * progmodes/cc-vars.el: Remove (probably) misleading comment
3876 (bug#4396).
3877
3878 2011-07-12 Johan Bockgård <bojohan@gnu.org>
3879
3880 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
3881
3882 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
3883
3884 * mouse-sel.el: Hack restoring functionality, while keeping
3885 compatibility with 2010-07-03 changes to mouse selection.
3886 (mouse-sel-primary-overlay): New var.
3887 (mouse-sel-selection-alist): Use it.
3888 (mouse-sel-mode): Doc fix; remove points that are default features
3889 of mouse.el.
3890
3891 2011-07-12 Johan Bockgård <bojohan@gnu.org>
3892
3893 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3894 Fix previous fix (bug#2490).
3895
3896 2011-07-12 Roland Winkler <winkler@gnu.org>
3897
3898 * textmodes/bibtex.el (bibtex-initialize):
3899 Use pop-to-buffer-same-window.
3900 (bibtex-search-entries): Fix interactive call.
3901
3902 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3903
3904 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3905 Fontise bytecomp Error lines more correctly (bug#2490).
3906 Fix suggested by Johan Bockgård.
3907
3908 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
3909
3910 * dired-x.el (dired-guess-default): Use `delete-dups'.
3911
3912 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
3913
3914 * dired.el (dired-mark-prompt):
3915 * dired-aux.el (dired-read-shell-command): Doc fix.
3916
3917 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3918
3919 * mail/sendmail.el (sendmail-query-once):
3920 Use `customize-save-variable' unconditionally, now that it works under
3921 emacs -Q.
3922
3923 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
3924
3925 * cus-edit.el (custom-file): Take an optional no-error variable.
3926 (customize-save-variable): Set the variable, and give a warning if
3927 running under "emacs -q".
3928
3929 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
3930
3931 * loadhist.el (unload-feature-special-hooks):
3932 Add `auto-coding-functions', `fill-nobreak-predicate' and
3933 `find-directory-functions' (bug#5327).
3934
3935 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3936
3937 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
3938
3939 * cus-edit.el (custom-guess-name-alist): -alist variables should
3940 use the `alist' type (bug#3120). Suggested by Drew Adams.
3941
3942 * printing.el: Add documentation to all the `pr-toggle-' commands.
3943
3944 2011-07-11 Leo <sdl.web@gmail.com> (tiny change)
3945
3946 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
3947 backends where it makes sense (bug#2623).
3948
3949 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3950
3951 * dired-x.el (dired-guess-default): Remove duplicate shell command
3952 entries (bug#2028).
3953 (dired-guess-default): Fix grammar in doc string (bug#2028).
3954 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
3955
3956 * subr.el (remove-duplicates): New conveniency function.
3957
3958 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3959
3960 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
3961 (bug#1526).
3962
3963 2011-07-10 Martin Rudalics <rudalics@gmx.at>
3964
3965 * window.el (display-buffer-normalize-default): Don't invert
3966 meaning of even-window-heights. Reported by Eli Zaretskii
3967 <eliz@gnu.org>.
3968
3969 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
3970
3971 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
3972
3973 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
3974
3975 * window.el (display-buffer): Fix arguments to
3976 display-buffer-reuse-window in last change.
3977
3978 * faces.el (link): Use a less saturated blue on light backgrounds.
3979
3980 * startup.el (fancy-startup-text, fancy-about-text)
3981 (fancy-startup-tail): Use font-lock faces, for background safety.
3982
3983 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
3984
3985 * emulation/viper-cmd.el (viper-change-state-to-vi):
3986 Limit triggering of abbrev expansion (Bug#9038).
3987
3988 2011-07-09 Martin Rudalics <rudalics@gmx.at>
3989
3990 * window.el (display-buffer-default-specifiers): Remove.
3991 (display-buffer-macro-specifiers): Remove default specifiers.
3992 (display-buffer-alist): Default to nil.
3993 (display-buffer-reuse-window): New optional argument other-window.
3994 (display-buffer-pop-up-window): Allow splitting internal
3995 windows. Check whether a live window was created.
3996 (display-buffer-other-window-means-other-frame)
3997 (display-buffer-normalize-arguments): Rename to
3998 display-buffer-normalize-argument and rewrite. Set the
3999 other-window specifier.
4000 (display-buffer-normalize-special): New function.
4001 (display-buffer-normalize-options): Rename to
4002 display-buffer-normalize-default and rewrite.
4003 (display-buffer-normalize-options-inhibit): Remove.
4004 (display-buffer-normalize-specifiers): Rewrite.
4005 (display-buffer): Process other-window specifier and call
4006 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
4007 more faithfully.
4008 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4009 (display-buffer-alist-set): Don't handle 'unset default values.
4010 (display-buffer-in-window, display-buffer-alist-set):
4011 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4012 <tassilo@member.fsf.org>.
4013
4014 2011-07-09 Leo Liu <sdl.web@gmail.com>
4015
4016 * register.el (insert-register): Restore accidental change on
4017 2011-06-26. (Bug#9028)
4018
4019 2011-07-09 Glenn Morris <rgm@gnu.org>
4020
4021 * subr.el (remq): Handle the empty list. (Bug#9024)
4022
4023 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
4024
4025 * mail/sendmail.el (send-mail-function): No longer delay custom
4026 initialization.
4027 * custom.el (custom-initialize-delay): Doc fix.
4028
4029 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4030
4031 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
4032
4033 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
4034
4035 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
4036 human-friendly prompt.
4037
4038 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4039
4040 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
4041 provided by a particular plugin.
4042
4043 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4044
4045 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
4046 save customizations (with "emacs -Q"), just set the variable
4047 instead of erroring out.
4048
4049 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4050
4051 2011-07-08 Juri Linkov <juri@jurta.org>
4052
4053 * arc-mode.el (archive-zip-expunge, archive-zip-update)
4054 (archive-zip-update-case): Use 7z if found by `executable-find'.
4055 The order of searching the available programs is the same as in
4056 `archive-zip-extract' (bug#8968).
4057
4058 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4059
4060 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
4061 (menu-bar-options-menu): Tweak descriptions.
4062
4063 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4064
4065 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
4066 menu items into verb phrases (bug#1421). Also refill to fit under
4067 80 columns.
4068
4069 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4070
4071 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
4072 (Info-read-node-name): Doc fix (Bug#1084).
4073
4074 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
4075 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
4076 (end-of-sexp, beginning-of-sexp)
4077 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
4078 (forward-symbol, forward-same-syntax, word-at-point)
4079 (sentence-at-point): Doc fix (Bug#1144).
4080
4081 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4082
4083 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
4084 should cover it (bug#1281).
4085
4086 * cus-edit.el (custom-show): Mark as obsolete.
4087
4088 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
4089 negotiation fails, then possibly try again with a non-encrypted
4090 connection (bug#9017).
4091
4092 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
4093 be used.
4094
4095 2011-07-07 Richard Stallman <rms@gnu.org>
4096
4097 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
4098 property, and handle its changed format.
4099 Look for the correct line number.
4100 Use file's line contents (but not past first =) to find
4101 correct line in message.
4102
4103 2011-07-07 Kenichi Handa <handa@m17n.org>
4104
4105 * international/characters.el (build-unicode-category-table):
4106 Delete it.
4107 (unicode-category-table): Set it by unicode-property-table-internal.
4108
4109 * international/mule-cmds.el (char-code-property-alist): Move to
4110 to src/chartab.c.
4111 (get-char-code-property): Call unicode-property-table-internal to
4112 load a file. Call get-unicode-property-internal where necessary.
4113 (put-char-code-property): Call unicode-property-table-internal to
4114 load a file. Call put-unicode-property-internal where necessary.
4115 put-unicode-property-internal where necessary.
4116 (char-code-property-description):
4117 Call unicode-property-table-internal to load a file.
4118
4119 * international/charprop.el:
4120 * international/uni-bidi.el:
4121 * international/uni-category.el:
4122 * international/uni-combining.el:
4123 * international/uni-comment.el:
4124 * international/uni-decimal.el:
4125 * international/uni-decomposition.el:
4126 * international/uni-digit.el:
4127 * international/uni-lowercase.el:
4128 * international/uni-mirrored.el:
4129 * international/uni-name.el:
4130 * international/uni-numeric.el:
4131 * international/uni-old-name.el:
4132 * international/uni-titlecase.el:
4133 * international/uni-uppercase.el: Regenerate.
4134
4135 * loadup.el: Load international/charprop.el before
4136 international/characters.
4137
4138 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4139
4140 * window.el (next-buffer, previous-buffer): Signal an error if
4141 called from a minibuffer window.
4142
4143 * bindings.el: Revert 2011-07-04 change.
4144
4145 2011-07-06 Richard Stallman <rms@gnu.org>
4146
4147 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
4148 (rmail-mime-insert-bulk, rmail-mime-insert-text):
4149 Treat markers like ints.
4150 (rmail-mime-entity): Doc fix.
4151
4152 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4153
4154 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
4155 defcustom again for backwards compatibility.
4156
4157 * simple.el (shell-command-on-region): Fill.
4158
4159 * dired-aux.el (dired-kill-line): Add a doc string.
4160
4161 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
4162 to "\\sw\\|\\s_" (bug#358).
4163
4164 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
4165 (dired-unmark-backward): Ditto.
4166 (dired-flag-backup-files): Ditto.
4167
4168 * dired-x.el (dired-mark-sexp): Ditto.
4169
4170 2011-07-06 Richard Stallman <rms@gnu.org>
4171
4172 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
4173 (rmail-mime-entity): New arg TRUNCATED.
4174 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
4175 New functions.
4176 (rmail-mime-save): Warn if entity is truncated.
4177 (rmail-mime-toggle-hidden): Likewise, for showing.
4178 (rmail-mime-process-multipart): Record when an entity is truncated.
4179
4180 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
4181 if ENTITY is a string.
4182
4183 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4184
4185 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
4186 of faces when `M-C-x'-ing their definitions (bug#8378).
4187 Also clean up the code slightly.
4188
4189 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
4190 because that makes the colors go away.
4191
4192 * mail/sendmail.el (send-mail-function): Change the default to
4193 `sendmail-query-once'.
4194 (sendmail-query-once): Add an autoload cookie.
4195
4196 * net/network-stream.el (network-stream-open-starttls): Try using
4197 a plain connection even if the server offered STARTTLS, and we
4198 kinda wanted to use it, if Emacs doesn't have any STARTTLS
4199 capability. This should make smtpmail.el work in slightly more
4200 configurations.
4201
4202 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
4203
4204 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4205 New defun.
4206 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
4207
4208 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
4209
4210 * progmodes/sql.el: Version 3.0
4211 (sql-product-alist): Add product :completion-object,
4212 :completion-column, and :statement attributes.
4213 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
4214 (sql-mode-syntax-table): Mark all punctuation.
4215 (sql-font-lock-keywords-builder): Temporarily remove fallback on
4216 ansi keywords.
4217 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
4218 (sql-mode-oracle-font-lock-keywords): Improve.
4219 (sql-oracle-show-reserved-words): New function for development.
4220 (sql-product-font-lock): Simplify for source code buffers.
4221 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
4222 New functions.
4223 (sql-highlight-product): Set product specific syntax table.
4224 (sql-mode-map): Add statement movement functions.
4225 (sql-ansi-statement-starters, sql-oracle-statement-starters):
4226 New variable.
4227 (sql-statement-regexp, sql-beginning-of-statement)
4228 (sql-end-of-statement, sql-signum): New functions.
4229 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
4230 (sql-show-sqli-buffer): Bug fix.
4231 (sql-interactive-mode): Store connection data as buffer local.
4232 (sql-connect): Add NEW-NAME parameter. Redesign interaction
4233 with sql-interactive-mode.
4234 (sql-save-connection): Save buffer local settings.
4235 (sql-connection-menu-filter): Change menu entry name.
4236 (sql-product-interactive): Bug fix.
4237 (sql-preoutput-hold): New variable.
4238 (sql-interactive-remove-continuation-prompt): Bug fixes.
4239 (sql-debug-redirect): New variable.
4240 (sql-str-literal): New function.
4241 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
4242 Redesign.
4243 (sql-oracle-save-settings, sql-oracle-restore-settings)
4244 (sql-oracle-list-all, sql-oracle-list-table): New functions.
4245 (sql-completion-object, sql-completion-column)
4246 (sql-completion-sqlbuf): New variables.
4247 (sql-build-completions-1, sql-build-completions)
4248 (sql-try-completion): New functions.
4249 (sql-read-table-name): Use them.
4250 (sql-contains-names): New buffer local variable.
4251 (sql-list-all, sql-list-table): Use it.
4252 (sql-oracle-completion-types): New variable.
4253 (sql-oracle-completion-object, sql-sqlite-completion-object)
4254 (sql-postgres-completion-object): New functions.
4255
4256 2011-07-06 Glenn Morris <rgm@gnu.org>
4257
4258 * window.el (pop-to-buffer): Doc fix.
4259
4260 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
4261
4262 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
4263
4264 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
4265
4266 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4267
4268 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
4269
4270 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
4271
4272 * button.el (button): Inherit from link face. Suggested by Dan
4273 Nicolaescu.
4274
4275 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4276
4277 * progmodes/gdb-mi.el: Fit in 80 columns.
4278 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
4279 switch-to-buffer.
4280
4281 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
4282 if imenu is simply not configured (bug#8941).
4283
4284 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
4285
4286 * allout.el (allout-post-undo-hook): New allout outline-change
4287 event hook to signal undo activity.
4288 (allout-post-command-business): Run allout-post-undo-hook if an
4289 undo just occurred.
4290 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
4291 * allout-widgets.el (allout-widgets-after-undo-function):
4292 Ensure the integrity of the current item's decoration after it has been
4293 in the vicinity of an undo.
4294 (allout-widgets-mode): Include allout-widgets-after-undo-function
4295 on the new allout-post-undo-hook.
4296
4297 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4298
4299 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
4300 Let define-derived-mode define it.
4301 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
4302 cycles of abbrev-table inheritance (bug#8998).
4303
4304 2011-07-05 Roland Winkler <winkler@gnu.org>
4305
4306 * textmodes/bibtex.el: Add support for biblatex.
4307 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
4308 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
4309 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
4310 (bibtex-entry-alist, bibtex-field-alist): New variables.
4311 (bibtex-entry-field-alist): Obsolete alias for
4312 bibtex-BibTeX-entry-alist.
4313 (bibtex-entry-alist, bibtex-field-alist): New widgets.
4314 (bibtex-set-dialect): New command.
4315 (bibtex-entry-type, bibtex-entry-head)
4316 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
4317 Bind via bibtex-set-dialect.
4318 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
4319 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
4320 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
4321 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
4322 Define via bibtex-set-dialect.
4323 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
4324 Obey bibtex-no-opt-remove-re.
4325 (bibtex-vec-push, bibtex-vec-incr): New functions.
4326 (bibtex-format-entry, bibtex-field-list)
4327 (bibtex-print-help-message, bibtex-validate)
4328 (bibtex-search-entries): Use new format of bibtex-entry-alist.
4329
4330 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4331
4332 * progmodes/compile.el (compilation-goto-locus):
4333 * net/tramp-cmds.el (tramp-append-tramp-buffers):
4334 * bs.el (bs-cycle-next, bs-cycle-previous):
4335 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
4336 * bindings.el (mode-line-other-buffer):
4337 * autoinsert.el (auto-insert):
4338 * arc-mode.el (archive-extract):
4339 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
4340
4341 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4342
4343 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
4344 Fix check of `emacs-lock-unlockable-modes'.
4345 Coerce true values of `emacs-lock--try-unlocking' to t.
4346
4347 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4348
4349 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
4350 * emacs-lock.el: New file.
4351
4352 2011-07-05 Julien Danjou <julien@danjou.info>
4353
4354 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
4355 than `boundp' to check if face is set.
4356
4357 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4358
4359 * register.el (registerv-make):
4360 * window.el (window-min-height): Fix typos in docstrings.
4361
4362 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
4363
4364 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
4365 Update doc string.
4366
4367 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
4368
4369 * server.el (server-execute): Catch quit and call
4370 `server-return-error' to pass the error back to emacsclient and
4371 close the connection (bug#8942).
4372
4373 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
4374
4375 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
4376 insecure exception for current topic. Also note that auto-saves
4377 are handled differently.
4378
4379 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
4380 State variables for tracking auto-save inhibition situation.
4381
4382 (allout-write-contents-hook-handler): Rename from
4383 'allout-write-file-hook-handler', and describe how it depends on
4384 write-contents-functions sensitivity to non-nil value to prevent
4385 file write.
4386
4387 (allout-auto-save-hook-handler): Remove. auto-save does not check
4388 this in individual buffers, only in the starting buffer, so this
4389 is not the right way for us to inhibit auto-save in a buffer
4390 according to its condition.
4391
4392 (allout-mode): Use new allout-write-contents-hook-handler, and
4393 only with write-contents-functions. Remove auto-save provisions -
4394 they're implemented elsewhere.
4395
4396 (allout-before-change-handler): If undo is in progress, note that
4397 for attention of allout-post-command-business.
4398
4399 (allout-post-command-business): If the command we're following was
4400 an undo, check for change in the status of encrypted items and
4401 adjust auto-save inhibitions accordingly.
4402
4403 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
4404 according to whether there are or aren't any plain-text topics
4405 pending encryption.
4406
4407 (allout-inhibit-auto-save-info-for-decryption):
4408 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
4409 there are plain-text topics pending encryption.
4410
4411 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
4412 buffer-saved-size and some allout state to not inhibit auto-saves
4413 if there are no longer any plain-text topics pending encryption.
4414
4415 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
4416 No longer provide for exemption of the current topic.
4417
4418 2011-07-04 Juri Linkov <juri@jurta.org>
4419
4420 Add 7z operations to delete and save changed members (bug#8968).
4421 * arc-mode.el (archive-7z-expunge, archive-7z-update):
4422 New defcustoms.
4423 (archive-7z-write-file-member): New function.
4424 (archive-7z-summarize): Fix the number of dashes in the
4425 listing output.
4426
4427 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4428
4429 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
4430 (bug#8958).
4431
4432 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
4433
4434 * bindings.el: Ignore next-buffer and previous-buffer in
4435 minibuffer-local-map.
4436
4437 * font-lock.el (font-lock-builtin-face): Change light background
4438 color to dark slate blue (Bug#6693).
4439
4440 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
4441
4442 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
4443
4444 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4445
4446 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
4447 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4448 Add switch-to-buffer.
4449
4450 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4451
4452 * isearch.el (isearch-search-fun-function): Clarify further the
4453 meaning of the function returned.
4454
4455 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
4456
4457 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
4458
4459 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
4460 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
4461 Use it.
4462 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
4463 `tramp-default-remote-path' does not exist.
4464 (tramp-send-command-and-read): New optional argument NOERROR.
4465 (tramp-open-connection-setup-interactive-shell)
4466 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
4467 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
4468 (tramp-process-sentinel): Flush also process' connection property.
4469 (tramp-sh-handle-start-file-process): Do not set process
4470 sentinel. It is done now ...
4471 (tramp-maybe-open-connection): ... here. (Bug#8929)
4472
4473 2011-07-04 MON KEY <monkey@sandpframing.com>
4474
4475 * play/animate.el (animate-string): Doc fixes and allow changing
4476 the buffer name (bug#5417).
4477
4478 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4479
4480 * play/animate.el (animation-buffer-name): Rename from *animate*.
4481
4482 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
4483
4484 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
4485 This is simpler and helps future-proof the code.
4486 (timer-until): Use time-subtract and float-time.
4487 (timer--time-less-p): Use time-less-p.
4488
4489 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
4490
4491 * type-break.el (timep): Use the value of `float-time' to avoid a
4492 byte-compiler warning.
4493
4494 * server.el (server-eval-and-print): Return any result, even nil.
4495
4496 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
4497
4498 * type-break.el: Accept time formats that the builtins accept.
4499 (timep, type-break-time-difference): Accept any format that
4500 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
4501 This is simpler and helps future-proof the code.
4502 (type-break-time-difference): Round rather than ignoring
4503 subseconds components.
4504
4505 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4506
4507 * info.el (Info-apropos-matches): Make non-interactive, since it
4508 doesn't seem to do anything useful as a command (bug#8829).
4509
4510 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
4511
4512 * frame.el (frame-background-mode, frame-set-background-mode):
4513 Move from faces.el.
4514 (frame-default-terminal-background): New function.
4515
4516 * custom.el (custom-push-theme): Don't record faces in `changed'
4517 theme; this doesn't work correctly for per-frame face settings.
4518 (disable-theme): Use face-set-after-frame-default to reset faces.
4519 (custom--frame-color-default): New function.
4520
4521 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4522
4523 * dired.el (dired-flagging-regexp): Remove unused variable
4524 (bug#8769).
4525
4526 2011-03-29 Kevin Ryde <user42@zip.com.au>
4527
4528 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4529 `perl-Test2' extend to match possible "fail #N" rep count
4530 (bug#8377).
4531
4532 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4533
4534 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
4535 `smtpmail-via-smtp' now returns the error instead of nil.
4536
4537 * isearch.el (isearch-search-fun-function): Clarify the doc string
4538 (bug#8101).
4539
4540 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
4541
4542 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
4543 unnecessary spaces (bug#8987).
4544
4545 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4546
4547 * net/network-stream.el (open-network-stream): Use the
4548 :end-of-capability command thoughout.
4549
4550 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4551
4552 * net/network-stream.el (open-network-stream): Add the
4553 :end-of-capability command parameter, used by pop3.el.
4554
4555 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4556
4557 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
4558
4559 * fringe.el (fringe-query-style): Remove redundant text " (type ?
4560 for list)" (bug#6475).
4561
4562 * files.el (file-expand-wildcards): Ignore non-readable
4563 sub-directories while trying to find matches instead of signaling
4564 an error (bug#6297).
4565
4566 * man.el (Man-reference-regexp): Allow matching possible
4567 word-wrapped references (bug#6289).
4568
4569 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
4570 for consistency with the other vc buffers (bug#6197).
4571 (vc-checkin): Ditto.
4572
4573 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
4574
4575 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
4576
4577 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4578
4579 * custom.el (defcustom): Clarify that :set is only used in the
4580 Customize user interface (bug#6089).
4581
4582 * progmodes/flymake.el (flymake-mode): If the buffer isn't
4583 associated with a file, refuse to run instead of erroring out
4584 (bug#6084).
4585
4586 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
4587 the doc string, since it appears that using `fill-column' always
4588 controls the width (bug#7845).
4589
4590 * simple.el (shell-command-on-region): Say where the error output
4591 went if `shell-command-default-error-buffer' is set (bug#6857).
4592
4593 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
4594
4595 * allout.el (allout-yank-processing): Adjust cursor position for
4596 backwards-deleted space.
4597
4598 (allout-rebullet-heading): Register changes with
4599 allout-exposure-changed-hook, so the modified topic is properly
4600 decorated.
4601
4602 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4603
4604 * minibuffer.el (completion-in-region): Document PREDICATE
4605 (bug#7136).
4606
4607 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
4608 of keyword/argument pairs (bug#6904).
4609
4610 * replace.el (multi-occur):
4611 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
4612
4613 2011-07-02 Drew Adams <drew.adams@oracle.com>
4614
4615 * dired.el (dired-mark-if): Make the message about whether it's
4616 marking or unmarking clearer (bug#8523).
4617
4618 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4619
4620 * disp-table.el (display-table-print-array): New function.
4621 (describe-display-table): Use it to print the vectors more pretty
4622 (Bug#8859).
4623
4624 2011-07-02 Martin Rudalics <rudalics@gmx.at>
4625
4626 * window.el (window-state-get-1): Don't assign clone numbers.
4627 Add clone-of item to list of window parameters.
4628 (window-state-put-2): Don't process clone numbers.
4629 (display-buffer-alist): Fix doc-string.
4630
4631 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
4632
4633 * subr.el (remq): Don't allocate if it's not needed.
4634 (keymap--menu-item-binding, keymap--menu-item-with-binding)
4635 (keymap--merge-bindings): New functions.
4636 (keymap-canonicalize): Use them to refine the canonicalization.
4637 * minibuffer.el (minibuffer-local-completion-map)
4638 (minibuffer-local-must-match-map): Move initialization from C.
4639 (minibuffer-local-filename-completion-map): Move initialization from C;
4640 don't inherit from anything here.
4641 (minibuffer-local-filename-must-match-map): Make obsolete.
4642 (completing-read-default): Use make-composed-keymap to combine
4643 minibuffer-local-filename-completion-map with either
4644 minibuffer-local-must-match-map or
4645 minibuffer-local-filename-completion-map.
4646
4647 2011-07-01 Glenn Morris <rgm@gnu.org>
4648
4649 * type-break.el (type-break-time-sum): Use dolist.
4650
4651 * textmodes/flyspell.el (flyspell-word-search-backward):
4652 Replace CL function.
4653
4654 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4655
4656 * mouse.el (mouse--strip-first-event): New function.
4657 (function-key-map): Use it to map fringe clicks to normal clicks
4658 by default.
4659
4660 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
4661 (vc-bzr-revision-completion-table): Add support for annotate and date.
4662
4663 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
4664 inherit from parent.
4665
4666 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4667
4668 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
4669 (dired-show-file-type): Doc fixup (bug#8818).
4670
4671 * dired.el (dired-mode): Fix up the doc string as suggested by
4672 Drew Adams (bug#8817).
4673
4674 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
4675 cookie, since the manual says that it should be possible to add
4676 this function to `find-file-hook' (bug#8709).
4677
4678 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4679
4680 * progmodes/cfengine.el: Moved all cfengine3.el functionality
4681 here. Noted Ted Zlatanov as the maintainer.
4682 (cfengine-common-settings, cfengine-common-syntax): New functions
4683 to set up common things between `cfengine-mode' and
4684 `cfengine3-mode'.
4685 (cfengine3-mode): New mode.
4686 (cfengine3-defuns cfengine3-defuns-regex
4687 (cfengine3-class-selector-regex cfengine3-category-regex)
4688 (cfengine3-vartypes cfengine3-font-lock-keywords)
4689 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
4690 (cfengine3-indent-line): Add from cfengine3.el.
4691
4692 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
4693
4694 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
4695
4696 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4697
4698 2011-07-01 Martin Rudalics <rudalics@gmx.at>
4699
4700 * window.el (same-window-buffer-names, same-window-regexps)
4701 (same-window-p, special-display-frame-alist)
4702 (special-display-popup-frame, special-display-function)
4703 (special-display-buffer-names, special-display-regexps)
4704 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
4705 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
4706 (split-window-preferred-function, split-height-threshold)
4707 (split-width-threshold, even-window-heights)
4708 (display-buffer-mark-dedicated, window-splittable-p)
4709 (split-window-sensibly, window-safely-shrinkable-p):
4710 Un-obsolete.
4711 (display-buffer): Don't spread args with function specifier
4712 because special-display-popup-frame won't like it.
4713
4714 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
4715
4716 Time-stamp simplifications and fixes.
4717 These improve accuracy slightly, and future-proof the code
4718 against some potential changes to current-time format.
4719
4720 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
4721 by using time-since and float-time.
4722
4723 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
4724 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
4725 + NNN microseconds".
4726
4727 * type-break.el (type-break-time-sum): Rewrite using time-add.
4728
4729 * play/hanoi.el (hanoi-current-time-float): Remove.
4730 All uses replaced by float-time.
4731
4732 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
4733 This yields a more-accurate answer.
4734 (rng-time-to-float): Remove; no longer needed.
4735
4736 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
4737
4738 * calendar/timeclock.el (timeclock-seconds-to-time):
4739 Defalias to seconds-to-time, since they're the same thing.
4740
4741 * emacs-lisp/elp.el (elp-elapsed-time):
4742 * emacs-lisp/benchmark.el (benchmark-elapse):
4743 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
4744
4745 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4746
4747 * window.el (bury-buffer): Don't iconify the only frame.
4748 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
4749 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
4750
4751 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
4752
4753 * eshell/em-smart.el (eshell-smart-display-navigate-list):
4754 Add mouse-yank-primary.
4755
4756 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4757
4758 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
4759
4760 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4761
4762 * emacs-lisp/find-func.el (find-library--load-name): New fun.
4763 (find-library-name): Use it to find relative load names when provided
4764 absolute file name (bug#8803).
4765
4766 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4767
4768 * textmodes/flyspell.el (flyspell-word): Consider words that
4769 differ only in case as potential doublons (bug#5687).
4770
4771 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
4772 Remove two rather uninteresting debugging-like messages to make
4773 debbugs.el more silent.
4774
4775 * comint.el (comint-password-prompt-regexp): Accept "Response" as
4776 a password-like phrase.
4777
4778 2011-06-30 Mastake YAMATO <yamato@redhat.com>
4779
4780 * progmodes/cc-guess.el: New file.
4781
4782 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
4783
4784 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
4785 derived from `c-basic-common-init'.
4786
4787 * progmodes/cc-mode.el (top-level): Require cc-guess.
4788 (c-basic-common-init): Use `cc-choose-style-for-mode'.
4789
4790 2011-06-30 Lawrence Mitchell <wence@gmx.li>
4791
4792 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
4793
4794 2011-06-30 Alan Mackenzie <acm@muc.de>
4795
4796 * progmodes/cc-engine.el (c-guess-continued-construct):
4797 Correct the handling of template-args-cont, particularly for when font
4798 lock is disabled. Name this case as "CASE G".
4799
4800 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
4801
4802 * allout.el (allout-yank-processing): Fix injection of extra space
4803 between bullet and non-whitespace character in first topic when
4804 pasting, ensuring that the actual spacing in the pasted topic
4805 following the bullet char is preserved. This extra space was
4806 causing pasted encrypted topics to get a decrypted status even
4807 when the content was actually still encrypted. Now the decryption
4808 status from before the paste is preserved.
4809
4810 (allout-flag-region): Set all allout overlays so they evaporate
4811 when reduced to zero length (evanescent), to prevent overlay
4812 leakage.
4813
4814 2011-06-30 Glenn Morris <rgm@gnu.org>
4815
4816 * w32-fns.el (w32-charset-info-alist): Declare.
4817
4818 * find-dired.el (find-grep-options): Simplify.
4819
4820 * term/ns-win.el (ns-set-resource): Declare.
4821
4822 * ses.el (row, col): Declare dynamic variables honestly.
4823
4824 * textmodes/reftex-parse.el (index-tags): Declare.
4825
4826 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
4827
4828 * cus-edit.el (customize-push-and-save): New function.
4829
4830 * files.el (hack-local-variables-confirm): Use it.
4831
4832 * custom.el (load-theme): New arg NO-CONFIRM.
4833 Use customize-push-and-save (Bug#8720).
4834 (custom-enabled-themes): Doc fix.
4835
4836 * cus-theme.el (customize-create-theme)
4837 (custom-theme-merge-theme): Callers to load-theme changed.
4838
4839 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4840
4841 * thingatpt.el (thing-at-point-short-url-regexp): Require that
4842 short URLs have at least one dot in them (bug #7614).
4843
4844 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
4845 nil, because using a pty is apparently too slow (bug #895).
4846
4847 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4848
4849 * mail/sendmail.el (sendmail-query-once): New function.
4850 (sendmail-query-once-function): New variable.
4851
4852 2011-06-29 Glenn Morris <rgm@gnu.org>
4853
4854 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
4855
4856 * ses.el (top-level): Require cl when compiling.
4857 (ses-set-localvars): Fix error statement.
4858 Call it at compile time to silence a storm of warnings.
4859
4860 2011-06-29 Martin Rudalics <rudalics@gmx.at>
4861
4862 * window.el (normalize-live-buffer): Rename to
4863 window-normalize-buffer.
4864 (normalize-live-frame): Rename to window-normalize-frame.
4865 (normalize-any-window): Rename to window-normalize-any-window.
4866 (normalize-live-window): Rename to window-normalize-live-window.
4867 (make-window-atom): Rename to window-make-atom.
4868 (window-resize-reset): Rename to window--resize-reset.
4869 (window-resize-reset-1): Rename to window--resize-reset-1.
4870 (resize-mini-window): Rename to window--resize-mini-window.
4871 (resize-subwindows-skip-p): Rename to
4872 window--resize-subwindows-skip-p.
4873 (resize-subwindows-normal): Rename to
4874 window--resize-subwindows-normal.
4875 (resize-subwindows): Rename to window--resize-subwindows.
4876 (resize-other-windows): Rename to window--resize-siblings.
4877 (resize-this-window): Rename to window--resize-this-window.
4878 (resize-root-window): Rename to window--resize-root-window.
4879 (resize-root-window-vertically): Rename to
4880 window--resize-root-window-vertically.
4881 (normalize-buffer-to-display): Rename to
4882 window-normalize-buffer-to-display.
4883 (normalize-buffer-to-switch-to): Rename to
4884 window-normalize-buffer-to-switch-to.
4885 Correspondingly update all callers of the functions listed
4886 above.
4887 (display-buffer-alist, display-buffer-normalize-arguments)
4888 (display-buffer-normalize-options, display-buffer)
4889 (display-buffer-alist-set): Use "function" instead of
4890 "fun-with-args".
4891
4892 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
4893
4894 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
4895 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
4896 debbugs.gnu.org. Mention acknowledgment email.
4897
4898 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
4899
4900 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
4901 buffer multibyteness, since it shouldn't matter.
4902
4903 2011-06-28 Martin Rudalics <rudalics@gmx.at>
4904
4905 * window.el (display-buffer-in-side-window): Handle dedicated
4906 windows as in display-buffer-reuse-window.
4907 (display-buffer-normalize-alist): Use value of override
4908 specifier.
4909 (display-buffer-normalize-specifiers): Use value of
4910 other-window-means-other-frame specifier.
4911 (display-buffer-alist): Rewrite some texts in widgets.
4912 (display-buffer): Spread arguments when calling function
4913 specified by fun-with-args.
4914
4915 2011-06-28 Deniz Dogan <deniz@dogan.se>
4916
4917 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4918 Unnest `let'.
4919
4920 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
4921 selectors (Bug#5732).
4922 (css-proprietary-nmstart-re): Use `regexp-opt'.
4923
4924 2011-06-27 Jari Aalto <jari.aalto@cante.net>
4925
4926 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
4927 (eshell-ls-date-format): New defcustom.
4928 (eshell-ls-file): Use it.
4929
4930 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4931
4932 * help-fns.el (describe-variable): Fix message for terminal-local vars.
4933
4934 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
4935
4936 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
4937 (ange-ftp-make-tmp-name): New arg.
4938 (ange-ftp-file-local-copy): Use it.
4939
4940 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
4941
4942 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
4943 no-conversion (Bug#8870).
4944
4945 2011-06-27 Martin Rudalics <rudalics@gmx.at>
4946
4947 * window.el (window-right, window-left, window-child)
4948 (window-child-count, window-last-child)
4949 (window-iso-combination-p, walk-window-tree-1)
4950 (window-atom-check-1, window-tree-1, delete-window)
4951 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
4952 new naming conventions - window-vchild, window-hchild,
4953 window-next and window-prev are now called window-top-child,
4954 window-left-child, window-next-sibling and window-prev-sibling
4955 respectively.
4956 (resize-window-reset): Rename to window-resize-reset.
4957 (resize-window-reset-1): Rename to window-resize-reset-1.
4958 (resize-window): Rename to window-resize.
4959 (window-min-height, window-min-width)
4960 (resize-mini-window, resize-this-window, resize-root-window)
4961 (resize-root-window-vertically, adjust-window-trailing-edge)
4962 (enlarge-window, shrink-window, maximize-window)
4963 (minimize-window, delete-window, quit-restore-window)
4964 (split-window, balance-windows, balance-windows-area-adjust)
4965 (balance-windows-area, window-state-put-2)
4966 (display-buffer-even-window-sizes, display-buffer-set-height)
4967 (display-buffer-set-width, set-window-text-height)
4968 (fit-window-to-buffer): Rename all "resize-window" prefixed
4969 calls to use the "window-resize" prefix convention.
4970 (display-buffer-alist): Fix symbol for label specifier.
4971 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
4972 corresponding specifier.
4973 Reported by Juanma Barranquero <lekktu@gmail.com>.
4974
4975 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
4976
4977 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
4978 convention.
4979 (ses-call-printer): Does not pass an empty string to formatter when the
4980 cell is empty to keep from barking printer Calc math-format-value.
4981
4982 2011-06-27 Richard Stallman <rms@gnu.org>
4983
4984 * battery.el (battery-mode-line-limit): New variable.
4985 (battery-update): Handle it.
4986
4987 * mail/rmailmm.el (rmail-mime-process-multipart):
4988 Handle truncated messages.
4989
4990 2011-06-27 Glenn Morris <rgm@gnu.org>
4991
4992 * progmodes/flymake.el (flymake-err-line-patterns):
4993 Allow for column numbers in the ant/javac pattern. (Bug#8866)
4994
4995 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
4996
4997 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
4998 (ses--clean-!, ses--clean-_): New functions.
4999 (ses-range): Add configurability of readout order, and conversion
5000 to Calc vector.
5001
5002 * ses.el (ses-repair-cell-reference-all): New function.
5003 (ses-cell-symbol): Set macro as safe, so that it can be used in
5004 formulas.
5005
5006 * ses.el: Update cycle detection algorithm.
5007 (ses-localvars): Add ses--Dijkstra-attempt-nb and
5008 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
5009 (ses-set-localvars): New function.
5010 (ses-make-cell): Add property-list as a cell element.
5011 (ses-cell-property-get-fun, ses-cell-property-get)
5012 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
5013 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
5014 New functions.
5015 (ses-cell-property-set, ses-cell-property-pop)
5016 (ses-cell-property-get-handle): New macro.
5017 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
5018 New aliases, used for code readability.
5019 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
5020 cycle detection.
5021 (ses-self-reference-early-detection): New defcustom.
5022 (ses-formula-references): Robustify against self-refering cells.
5023 (ses-mode): Use ses-set-localvars.
5024 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
5025 before lauching the update processing.
5026 (ses-initialize-Dijkstra-attempt): New function.
5027 (ses-recalculate-cell): Update for cycle detection based on
5028 Dijkstra algorithm.
5029
5030 * ses.el: Fix commenting and indenting convention.
5031
5032 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * bs.el (bs-cycle-next): Complete last change.
5035
5036 2011-06-27 Drew Adams <drew.adams@oracle.com>
5037
5038 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
5039
5040 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5041
5042 * net/network-stream.el (network-stream-open-starttls):
5043 Don't re-get capabilities unless we've reestablished connection.
5044 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
5045
5046 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
5047 to binary to possibly avoid line encoding issues on Windows (among
5048 other things).
5049
5050 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5051
5052 * net/network-stream.el (open-network-stream): Return an :error
5053 saying what the problem was, if possible.
5054
5055 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
5056 server.
5057
5058 * net/network-stream.el (network-stream-open-starttls): If we
5059 wanted to use STARTTLS, and the server offered it, but we weren't
5060 able to because we had no STARTTLS support, then close the connection.
5061 (open-network-stream): Return an :error element, if present.
5062
5063 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5064
5065 * hl-line.el (hl-line-sticky-flag): Doc fix.
5066 (global-hl-line-sticky-flag): New option (Bug#8323).
5067 (global-hl-line-highlight): Obey it.
5068
5069 * vc/vc.el (vc-revert-show-diff): Default to t.
5070
5071 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
5072
5073 * allout-widgets.el (allout-widgets-post-command-business):
5074 Stop decorating intermediate isearch matches. They're not being
5075 undecorated when an isearch is continued past, and isearch
5076 automatically collapses them. This leads to "widget leaks", where
5077 decorated items accumulate in collapsed areas. Lines with lots of
5078 hidden widgets can slow down cursor travel, substantially.
5079 Too much complicated machinery would be needed to ensure undecoration,
5080 so we're doing without this nicety.
5081
5082 (allout-widgets-tally-string): Don't try to do a hash-table-count
5083 of allout-widgets-tally when it's nil. This eliminates spurious "Error
5084 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
5085 *Messages* when allout-widgets-maintain-tally is t.
5086
5087 2011-06-26 Martin Rudalics <rudalics@gmx.at>
5088
5089 * window.el (display-buffer-normalize-argument): Rename to
5090 display-buffer-normalize-arguments. Handle special meaning of
5091 LABEL argument. Respect special-display-function when popping up
5092 a new frame. Fix code searching for a window showing the buffer
5093 on another frame.
5094 (display-buffer-normalize-specifiers):
5095 Call display-buffer-normalize-arguments.
5096 (display-buffer-in-window): Don't undedicate the window if its
5097 buffer remains the same.
5098 Reported by Drew Adams <drew.adams@oracle.com>.
5099 (display-buffer-alist): Add choice for same-window macro
5100 specfier.
5101 (display-buffer): Mention special meaning of LABEL argument in
5102 doc-string. Fix quoting. Don't pop up a new frame even as
5103 fallback.
5104
5105 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
5106
5107 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
5108 avoid deleting the current window in some cases (bug#8911).
5109
5110 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
5111
5112 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
5113 (Bug#8934)
5114
5115 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5116
5117 * net/network-stream.el (network-stream-open-starttls):
5118 Use built-in TLS support if `gnutls-available-p' is true.
5119 (network-stream-open-tls): Ditto.
5120
5121 2011-06-26 Leo Liu <sdl.web@gmail.com>
5122
5123 * register.el (registerv): New struct.
5124 (registerv-make): New function.
5125 (jump-to-register, describe-register-1, insert-register):
5126 Support the jump-func, print-func and insert-func slot of a registerv
5127 struct. (Bug#8415)
5128
5129 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5130
5131 * vc/vc.el (vc-revert-show-diff): New defcustom.
5132 (vc-diff-internal): New arg specifying diff buffer.
5133 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
5134 reuse an existing *vc-diff* buffer (Bug#8927).
5135
5136 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
5137
5138 2011-06-26 Glenn Morris <rgm@gnu.org>
5139
5140 * progmodes/f90.el (f90-critical-indent): New option.
5141 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
5142 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
5143 (f90-mode): Doc fix.
5144 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
5145 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
5146 (f90-beginning-of-block, f90-next-block, f90-indent-region)
5147 (f90-match-end): Handle block, critical.
5148
5149 2011-06-25 Glenn Morris <rgm@gnu.org>
5150
5151 * calendar/diary-lib.el (diary-included-files): Doc fix.
5152 (diary-include-files): New function, extracted from
5153 diary-include-other-diary-files and diary-mark-included-diary-files.
5154 (diary-include-other-diary-files, diary-mark-included-diary-files):
5155 Just call diary-include-files.
5156 (diary-mark-entries): Reset diary-included-files on first call.
5157
5158 * calendar/diary-lib.el (diary-mark-entries)
5159 (diary-mark-included-diary-files):
5160 Visit included diary-files in temp buffers.
5161
5162 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
5163 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
5164 (f90-start-block-re, f90-imenu-generic-expression)
5165 (f90-looking-at-program-block-start, f90-no-block-limit):
5166 Add support for submodules.
5167
5168 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5169 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
5170
5171 2011-06-25 Eli Zaretskii <eliz@gnu.org>
5172
5173 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
5174 buffer-file-type before setting its value, to avoid disastrous
5175 global effects on decoding files for DOS/Windows systems. (Bug#8780)
5176
5177 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5178
5179 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
5180
5181 * ses.el (ses-unload-function):
5182 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
5183
5184 * proced.el (proced-unload-function):
5185 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
5186
5187 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
5188
5189 * server.el (server-create-window-system-frame): Add parameters arg.
5190 (server-process-filter): Doc fix. Handle frame-parameters.
5191
5192 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5193
5194 Fix bug#8730, bug#8781.
5195
5196 * loadhist.el (unload--set-major-mode): New function.
5197 (unload-feature): Use it.
5198
5199 * progmodes/python.el (python-after-info-look): Add autoload cookie.
5200 (python-unload-function): New function.
5201
5202 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5203
5204 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
5205
5206 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
5207
5208 * net/browse-url.el (browse-url-firefox-program): Add icecat to
5209 the candidates list.
5210
5211 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
5212
5213 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
5214
5215 2011-06-23 Richard Stallman <rms@gnu.org>
5216
5217 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
5218 (rmail-variables): Set next-error-move-function.
5219 (rmail-what-message): Take argument POS.
5220 (rmail-next-error-move): New function.
5221
5222 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5223
5224 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
5225 messages for adjacent non-terminals.
5226
5227 2011-06-23 Richard Stallman <rms@gnu.org>
5228
5229 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
5230 (rmail-show-message-1): Preserve buffer modified flag.
5231 (rmail-start-mail): Don't specify use of rmail-mail-return;
5232 that's done by mail-bury now.
5233 (rmail-mail-return): Handle arg NEWBUF.
5234
5235 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
5236
5237 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
5238 SIZE is a number.
5239
5240 2011-06-23 Martin Rudalics <rudalics@gmx.at>
5241
5242 * window.el (get-lru-window, get-mru-window)
5243 (get-largest-window): Never return a minibuffer window.
5244 (display-buffer-pop-up-window): Fix a bug that could lead to
5245 reusing the minibuffer window.
5246 (display-buffer): Pass original specifier argument to
5247 display-buffer-function instead of the normalized one.
5248 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
5249
5250 2011-06-22 Leo Liu <sdl.web@gmail.com>
5251
5252 * minibuffer.el (completing-read-function)
5253 (completing-read-default): Move from minibuf.c
5254
5255 2011-06-22 Richard Stallman <rms@gnu.org>
5256
5257 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
5258 to Rmail even if not started by a special Rmail command.
5259
5260 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5261 Copy the buffer currently showing just one message.
5262
5263 2011-06-22 Roland Winkler <winkler@gnu.org>
5264
5265 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
5266 (bibtex-clean-entry): First delete the old key so that a
5267 customized algorithm for generating the new key does not get
5268 confused by the old key.
5269 (bibtex-url): Obey regexp of first step.
5270 (bibtex-search-entries): Do not use add-to-list with local
5271 list-var.
5272
5273 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5274
5275 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
5276 stored a user name, then query for the password first, instead of
5277 waiting for SMTP to give an error message and the trying again.
5278
5279 2011-06-22 Lawrence Mitchell <wence@gmx.li>
5280
5281 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
5282 BUFFER in call-process.
5283
5284 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5285
5286 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
5287 QUIT twice.
5288 (smtpmail-try-auth-methods): Require user name and password from
5289 auth-source.
5290
5291 2011-06-22 Martin Rudalics <rudalics@gmx.at>
5292
5293 * window.el (display-buffer-default-specifiers)
5294 (display-buffer-alist): Remove entries for pop-up-frame-alist.
5295 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
5296 (split-window): Normalize SIDE argument (Bug#8916).
5297
5298 * frame.el (pop-up-frame-alist, pop-up-frame-function)
5299 (special-display-frame-alist, special-display-popup-frame):
5300 Remove duplicate declarations. These are now in window.el.
5301
5302 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5303
5304 * mail/smtpmail.el (smtpmail-via-smtp):
5305 Set :use-starttls-if-possible so that we always use STARTTLS if the
5306 server supports it. SMTP servers that support STARTTLS commonly
5307 require it.
5308
5309 * net/network-stream.el (network-stream-open-starttls): Support
5310 upgrading to STARTTLS always, even if we don't have built-in support.
5311 (open-network-stream): Add the :always-query-capabilies keyword.
5312
5313 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
5314 upgrades with `open-network-stream', and rely solely on
5315 auth-source for all credentials. Big changes throughout the file,
5316 but in particular:
5317 (smtpmail-auth-credentials): Remove.
5318 (smtpmail-starttls-credentials): Remove.
5319 (smtpmail-via-smtp): Check for servers saying they want AUTH after
5320 MAIL FROM, too.
5321
5322 * net/network-stream.el (network-stream-open-starttls):
5323 Provide support for client certificates both for external and built-in
5324 STARTTLS.
5325 (auth-source): Require.
5326 (open-network-stream): Document the :client-certificate keyword.
5327 (network-stream-certificate): Change cert-cert to cert and
5328 cert-key to key.
5329
5330 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
5331
5332 * net/tramp-cache.el (top): Don't load the persistency file when
5333 "emacs -Q" has been called.
5334
5335 2011-06-21 Tim Harper <timcharper@gmail.com>
5336
5337 * term/ns-win.el (ns-initialize-window-system):
5338 Set application-specific `ApplePressAndHoldEnabled' system
5339 resource to NO as it is not yet supported by the NS port.
5340
5341 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
5342
5343 * misc.el (list-dynamic-libraries--refresh): Compute header here...
5344 (list-dynamic-libraries): ...not here.
5345
5346 2011-06-21 Leo Liu <sdl.web@gmail.com>
5347
5348 * subr.el (sha1): Implement sha1 using secure-hash.
5349
5350 2011-06-21 Martin Rudalics <rudalics@gmx.at>
5351
5352 * window.el (display-buffer-alist): In default value do not
5353 enforce searching a window on any but the selected frame.
5354 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5355 (display-buffer-select-window): Remove function.
5356 (display-buffer-in-window): When a window on another frame gets
5357 reused, do not select it any more but just raise its frame if
5358 necessary (Bug#8851) and (Bug#8856).
5359 (display-buffer-normalize-options): Handle pop-up-frames related
5360 options more faithfully.
5361 (pop-to-buffer): Don't rely on `display-buffer' selecting the
5362 window if it is on another frame.
5363 (display-buffer-alist, display-buffer-default-specifiers):
5364 Don't make new frame unsplittable by default.
5365 (display-buffer-normalize-argument): Fix doc-string typo and use
5366 'same-frame-other-window instead of 'other-window when associating
5367 with display-buffer-macro-specifiers.
5368
5369 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
5370
5371 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
5372 New functions.
5373 (5x5-mode-map, 5x5-mode-menu): Bind them.
5374 (5x5-draw-grid): Tweak the solver's rendering.
5375
5376 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5377
5378 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
5379 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
5380
5381 2011-06-21 Drew Adams <drew.adams@oracle.com>
5382
5383 * menu-bar.el: Use function variable instead of switch-to-buffer.
5384 (menu-bar-select-buffer-function): New variable.
5385 (menu-bar-update-buffers): Use it (bug#8876).
5386
5387 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5388
5389 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
5390 variable's status.
5391
5392 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
5393
5394 * x-dnd.el (x-dnd-version-from-flags)
5395 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
5396 and long as number (Bug#8899).
5397 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
5398
5399 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5400
5401 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
5402 (completion-try-completion, completion-all-completions): Compute the
5403 metadata argument if it's missing; make it optional (bug#8795).
5404
5405 * wid-edit.el: Use lex-bind and move towards completion-at-point.
5406 (widget-complete): Use new :completion-function property.
5407 (widget-completions-at-point): New function.
5408 (default): Use :completion-function instead of :complete.
5409 (widget-default-completions): Rename from widget-default-complete;
5410 Rewrite.
5411 (widget-string-complete, widget-file-complete, widget-color-complete):
5412 Remove functions.
5413 (file, symbol, function, variable, coding-system, color):
5414 * international/mule-cmds.el (default-input-method, charset)
5415 (language-info-custom-alist):
5416 * cus-edit.el (face): Use new property :completions.
5417
5418 * progmodes/pascal.el (pascal-completions-at-point): New function.
5419 (pascal-mode): Use it.
5420 (pascal-mode-map): Use completion-at-point.
5421 (pascal-toggle-completions): Make obsolete.
5422 (pascal-complete-word, pascal-show-completions):
5423 * progmodes/octave-mod.el (octave-complete-symbol):
5424 Redefine as obsolete alias.
5425 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
5426 Signal absence of completion info for old Octave,
5427 (inferior-octave-complete): Redefine as obsolete alias.
5428 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
5429 (meta-completions-at-point): Rename from meta-complete-symbol and
5430 adapt it for use on completion-at-point-functions.
5431 (meta-common-mode): Use it.
5432 (meta-looking-at-backward, meta-match-buffer): Remove.
5433 (meta-complete-symbol): Redefine as obsolete alias.
5434 (meta-common-mode-map): Use completion-at-point.
5435 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
5436 (makefile-mode-map): Use completion-at-point.
5437 (makefile-completions-at-point): Rename from makefile-complete and
5438 adapt it for use on completion-at-point-functions.
5439 (makefile-mode): Use it.
5440 (makefile-complete): Redefine as obsolete alias.
5441
5442 2011-06-20 Deniz Dogan <deniz@dogan.se>
5443
5444 * net/rcirc.el: Delete trailing whitespaces once and for all.
5445
5446 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
5447
5448 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
5449
5450 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
5451
5452 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
5453
5454 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
5455
5456 2011-06-19 Martin Rudalics <rudalics@gmx.at>
5457
5458 * window.el (display-buffer-other-window-means-other-frame):
5459 Call display-buffer-normalize-alist.
5460 (display-buffer-normalize-specifiers-1): Rename to
5461 display-buffer-normalize-argument. New argument other-frame.
5462 Rewrite.
5463 (display-buffer-normalize-specifiers-2): Rename to
5464 display-buffer-normalize-options.
5465 (display-buffer-normalize-alist-1): New function.
5466 (display-buffer-normalize-specifiers-3): Rename to
5467 display-buffer-normalize-alist.
5468 Call display-buffer-normalize-alist-1.
5469 (display-buffer-normalize-options-inhibit): New variable.
5470 (display-buffer-normalize-specifiers): Rewrite calling
5471 display-buffer-normalize-alist,
5472 display-buffer-normalize-argument, and
5473 display-buffer-normalize-options. Don't call the latter if
5474 display-buffer-normalize-options-inhibit is non-nil.
5475 (frame-auto-delete): New option.
5476 (window-deletable-p): Use frame-auto-delete.
5477 (window-list-no-nils, window-state-ignored-parameters)
5478 (window-state-get-1, window-state-get, window-state-put-list)
5479 (window-state-put-1, window-state-put-2, window-state-put):
5480 New functions.
5481 (display-buffer-normalize-options): Move special-display-p group
5482 after pop-up-frame group (Bug#8851) and (Bug#8856).
5483
5484 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
5485
5486 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
5487 groups (Bug#8776).
5488 (rx-submatch-n): New function.
5489 (rx): Document it.
5490
5491 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
5492 (Bug#8768).
5493
5494 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
5495
5496 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
5497
5498 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
5499 anytime existing face settings are present (Bug#8889).
5500
5501 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
5502 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
5503 Remove unused argument.
5504
5505 2011-06-18 Martin Rudalics <rudalics@gmx.at>
5506
5507 * window.el (display-buffer-default-specifiers):
5508 Remove pop-up-frame. Add pop-up-window-min-height,
5509 pop-up-window-min-width, and another reuse-window specifier
5510 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
5511 (display-buffer-normalize-specifiers-2):
5512 Handle split-height-threshold and split-width-threshold also when
5513 pop-up-windows is unset. Add a reuse-window specifier for the
5514 case popping up a new window fails.
5515 (special-display-popup-frame): Remove double quoting.
5516 (display-buffer-normalize-specifiers-1): Fix thinko.
5517
5518 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5519
5520 * shell.el (shell-completion-vars): Set pcomplete-termination-string
5521 according to comint-completion-addsuffix.
5522
5523 * pcomplete.el: Convert to lexical binding and fix bug#8819.
5524 (pcomplete-suffix-list): Mark as obsolete.
5525 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
5526 pcomplete-seen in the closure.
5527 (pcomplete-comint-setup): Setup completion-at-point as well.
5528 (pcomplete--entries): New function.
5529 (pcomplete--env-regexp): New var.
5530 (pcomplete-entries): Rewrite to work with partial-completion and
5531 without relying on pcomplete-suffix-list.
5532 (pcomplete-pare-list): Remove, unused.
5533
5534 2011-06-17 Martin Rudalics <rudalics@gmx.at>
5535
5536 * window.el (display-buffer-alist): Set pop-up-window-min-height
5537 and pop-up-window-min-width in default value. Reported by
5538 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
5539 other-window-means-other-frame.
5540 (display-buffer-macro-specifiers): Comment out entry for
5541 other-window specifier.
5542 (display-buffer-other-window-means-other-frame): New function.
5543 (display-buffer-normalize-specifiers-1): New arguments
5544 buffer-name and label. Treat other-window case specially.
5545 (display-buffer-normalize-specifiers-2): Treat other-window case
5546 specially.
5547 (display-buffer-normalize-specifiers-3): New function.
5548 (display-buffer-normalize-specifiers):
5549 Call display-buffer-normalize-specifiers-3.
5550
5551 2011-06-17 Martin Rudalics <rudalics@gmx.at>
5552
5553 * window.el (same-window-p): Fix two typos introduced when
5554 adding with-no-warnings.
5555 (display-buffer-normalize-specifiers-1): Don't check
5556 pop-up-frames for 'unset initialization.
5557 (display-buffer-normalize-specifiers-2): Major rewrite using
5558 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
5559 (pop-up-frames, display-buffer-reuse-frames)
5560 (display-buffer-mark-dedicated): Don't initialize to 'unset.
5561 Suggested by David Engster <deng@randomsample.de>.
5562 (even-window-heights): Initialize to 'unset.
5563 (display-buffer-alist-set): Handle new 'unset initializations.
5564 (display-buffer-macro-specifiers): Don't pop up a new frame in the
5565 other window case.
5566
5567 2011-06-16 Martin Rudalics <rudalics@gmx.at>
5568
5569 * window.el (display-buffer-normalize-specifiers-1):
5570 Respect current value of pop-up-frames for most reasonable values of
5571 second argument of display-buffer (Bug#8865).
5572 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
5573 (switch-to-buffer-other-window-same-frame)
5574 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
5575 Adams (Bug#8875).
5576 (display-buffer): Don't check noninteractive when calling
5577 display-buffer-pop-up-frame.
5578 (display-buffer-pop-up-frame): Never pop up a frame in
5579 noninteractive mode (Bug#8857).
5580 (enlarge-window, shrink-window): Don't report an error when the
5581 window can't be resized as requested (Bug#8862).
5582
5583 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5584
5585 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
5586
5587 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
5588
5589 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
5590
5591 2011-06-15 Alan Mackenzie <acm@muc.de>
5592
5593 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
5594 for declarators, disable knr checking to speed up for normal files.
5595 2: Refactor, replacing a sequence of nested if forms by a cond form.
5596
5597 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
5598
5599 * net/network-stream.el (open-network-stream): Add the keyword
5600 :always-query-capabilities for the case where you want to force a
5601 `plain' network connection, but the protocol still requires the
5602 capabilitiy command (i.e., SMTP and EHLO).
5603
5604 * subr.el (process-live-p): Rename from `process-alive-p' for
5605 consistency with other `-live-p' functions.
5606
5607 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * window.el (same-window-buffer-names, same-window-regexps)
5610 (special-display-frame-alist, special-display-popup-frame)
5611 (special-display-function, special-display-buffer-names)
5612 (special-display-regexps, pop-up-frame-alist)
5613 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
5614 (pop-up-windows, split-window-preferred-function)
5615 (split-height-threshold, split-width-threshold, even-window-heights)
5616 (display-buffer-mark-dedicated): Don't encourage the use of
5617 display-buffer-alist from Elisp code.
5618
5619 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5620
5621 * progmodes/python.el (python-mode): Derive from prog-mode.
5622 * progmodes/ps-mode.el (ps-mode):
5623 * progmodes/mixal-mode.el (mixal-mode):
5624 * progmodes/cfengine.el (cfengine-mode):
5625 * progmodes/ld-script.el (ld-script-mode): Likewise.
5626
5627 2011-06-15 Martin Rudalics <rudalics@gmx.at>
5628
5629 * window.el (display-buffer-alist): Trim default value to avoid
5630 popping up a new frame (Bug#8857) or reusing an arbitrary window
5631 on another frame.
5632 (display-buffer): Do not fall back on popping up a new frame in
5633 batch mode (Bug#8857).
5634
5635 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
5636
5637 * cus-theme.el (describe-theme-1): Use custom-theme-p.
5638 (custom-theme-summary): New function.
5639 (customize-themes): Use it.
5640
5641 2011-06-13 Glenn Morris <rgm@gnu.org>
5642
5643 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
5644
5645 2011-06-13 Martin Rudalics <rudalics@gmx.at>
5646
5647 * help.el (help-window): Remove variable.
5648 (help-window-point-marker, temp-buffer-max-height)
5649 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
5650 (help-print-return-message): Don't set help-window.
5651 (resize-temp-buffer-window): Rewrite cod eand doc-string.
5652 (help-window-setup-finish): Remove.
5653 (help-window-display-message, help-window-setup)
5654 (with-help-window): Major rewrite based on new
5655 display-buffer-window variable.
5656
5657 * help-mode.el (help-mode-finish): Remove help-window related
5658 code.
5659
5660 * view.el (view-exits-all-viewing-windows): Remove reference to
5661 view-return-to-alist in doc-string.
5662 (view-return-to-alist): Make obsolete.
5663 (view-buffer): Call pop-to-buffer-same-window and remove
5664 undo-window code.
5665 (view-buffer-other-window): Call pop-to-buffer-other-window and
5666 simplify code. Ignore second argument.
5667 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
5668 simplify code. Ignore second argument.
5669 (view-return-to-alist-update): Make obsolete.
5670 (view-mode-enter): Rename second argument to QUIT-RESTORE.
5671 Rewrite using quit-restore window parameters.
5672 (view-mode-exit): Rename second argument to EXIT-ONLY.
5673 Rewrite using quit-restore-window.
5674 (View-exit, View-exit-and-edit, View-leave, View-quit)
5675 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
5676 appropriate arguments.
5677 (view-end-message): Use quit-restore window parameter.
5678
5679 * window.el (display-buffer-function): Rewrite doc-string.
5680 (display-buffer-window, display-buffer-alist): New variables.
5681 (display-buffer-split-specifiers)
5682 (display-buffer-side-specifiers)
5683 (display-buffer-macro-specifiers): New constants.
5684 (display-buffer-even-window-sizes, display-buffer-set-height)
5685 (display-buffer-set-width, display-buffer-select-window)
5686 (display-buffer-in-window, display-buffer-reuse-window)
5687 (display-buffer-split-window-1, display-buffer-split-window)
5688 (display-buffer-split-atom-window, display-buffer-pop-up-window)
5689 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
5690 (display-buffer-in-side-window, normalize-buffer-to-display)
5691 (display-buffer-normalize-specifiers-1)
5692 (display-buffer-normalize-specifiers-2)
5693 (display-buffer-normalize-specifiers, display-buffer-frame):
5694 New functions.
5695 (display-buffer): Major rewrite.
5696 (display-buffer-other-window, display-buffer-other-frame)
5697 (pop-to-buffer, switch-to-buffer-other-window)
5698 (switch-to-buffer-other-frame): Rewrite.
5699 (display-buffer-same-window, display-buffer-same-frame)
5700 (display-buffer-same-frame-other-window)
5701 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
5702 (pop-to-buffer-other-window)
5703 (pop-to-buffer-same-frame-other-window)
5704 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
5705 (switch-to-buffer-other-window-same-frame): New functions.
5706 (same-window-p, special-display-p): Rewrite disabling warnings.
5707 Make obsolete.
5708 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5709 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
5710 Make obsolete
5711 (same-window-buffer-names, same-window-regexps)
5712 (special-display-frame-alist, special-display-popup-frame)
5713 (special-display-function, special-display-buffer-names)
5714 (special-display-regexps, pop-up-frame-alist)
5715 (pop-up-frame-function, split-window-preferred-function)
5716 (split-height-threshold, split-width-threshold)
5717 (even-window-heights): Make obsolete.
5718
5719 2011-06-12 Glenn Morris <rgm@gnu.org>
5720
5721 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
5722 Misc simplifications.
5723
5724 2011-06-12 Martin Rudalics <rudalics@gmx.at>
5725
5726 * window.el (window-safely-shrinkable-p): Restore function which
5727 was inadvertently removed in change from 2011-06-11. Declare as
5728 obsolete.
5729
5730 * calendar/calendar.el (calendar-generate-window):
5731 Use window-iso-combined-p instead of combination of one-window-p and
5732 window-safely-shrinkable-p.
5733
5734 2011-06-12 Glenn Morris <rgm@gnu.org>
5735
5736 * progmodes/fortran.el (fortran-mode-syntax-table):
5737 * progmodes/f90.el (f90-mode-syntax-table):
5738 Set % to punctuation. (Bug#8820)
5739 (f90-find-tag-default): Remove, no longer needed.
5740
5741 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
5742
5743 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
5744
5745 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
5746
5747 * image.el (image-animated-p): Return animation delay in seconds.
5748 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
5749 (image-animate-timeout): Remove DELAY argument. Don't assume
5750 every subimage has the same delay; get it from image-animated-p.
5751 (image-animate): Caller changed.
5752
5753 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
5754
5755 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
5756 to ignored backtrace functions.
5757
5758 2011-06-11 Glenn Morris <rgm@gnu.org>
5759
5760 * calendar/appt.el (appt-disp-window-function): Doc fix.
5761 (appt-check): Handle overlapping appointments. (Bug#8337)
5762
5763 2011-06-11 Martin Rudalics <rudalics@gmx.at>
5764
5765 * window.el (window-tree-1, window-tree): New functions, moving
5766 the latter to window.el.
5767 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
5768 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
5769 (bw-refresh-edges): Remove.
5770 (balance-windows-1, balance-windows-2): New functions.
5771 (balance-windows): Rewrite in terms of window tree functions,
5772 balance-windows-1 and balance-windows-2.
5773 (bw-adjust-window): Remove.
5774 (balance-windows-area-adjust): New function with functionality of
5775 bw-adjust-window but using resize-window.
5776 (set-window-text-height): Rewrite doc-string.
5777 Use normalize-live-window and resize-window.
5778 (enlarge-window-horizontally, shrink-window-horizontally):
5779 Rename argument to DELTA.
5780 (window-buffer-height): New function.
5781 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
5782 Rewrite using new window resize routines.
5783 (kill-buffer-and-window, mouse-autoselect-window-select):
5784 Use ignore-errors instead of condition-case.
5785 (quit-window): Call delete-frame instead of delete-windows-on
5786 for the only buffer on frame.
5787
5788 2011-06-10 Martin Rudalics <rudalics@gmx.at>
5789
5790 * loadup.el (top-level): Load window before files for the sake
5791 of replace-buffer-in-windows.
5792
5793 * files.el (read-buffer-to-switch)
5794 (switch-to-buffer-other-window)
5795 (switch-to-buffer-other-frame, display-buffer-other-frame):
5796 Move to window.el.
5797
5798 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
5799 (previous-buffer): Move to window.el.
5800
5801 * bindings.el (unbury-buffer): Move to window.el.
5802
5803 * window.el (delete-other-windows-vertically): Move after
5804 definition of delete-other-windows.
5805 (other-window, delete-windows-on, replace-buffer-in-windows):
5806 Move here from window.c.
5807 (record-window-buffer, unrecord-window-buffer)
5808 (set-window-buffer-start-and-point, switch-to-prev-buffer)
5809 (switch-to-next-buffer): New functions.
5810 (get-next-valid-buffer, last-buffer, next-buffer): Move here
5811 from simple.el. Call switch-to-next-buffer.
5812 (previous-buffer): Move here from simple.el.
5813 Call switch-to-prev-buffer.
5814 (bury-buffer): Move here from buffer.c. Switch to previous
5815 buffer when window cannot be deleted.
5816 (unbury-buffer): Move here from bindings.el.
5817 (ctl-x-map): Move binding for other-window from window.c to
5818 here.
5819 (read-buffer-to-switch, switch-to-buffer-other-window)
5820 (switch-to-buffer-other-frame): Move here from files.el.
5821 (normalize-buffer-to-switch-to): New functions.
5822 (switch-to-buffer): Move here from buffer.c.
5823 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
5824
5825 2011-06-10 Martin Rudalics <rudalics@gmx.at>
5826
5827 * window.el (window-min-height, window-min-width): Move here
5828 from window.c. Add defcustoms and rewrite doc-strings.
5829 (resize-mini-window, resize-window): New functions.
5830 (adjust-window-trailing-edge, enlarge-window, shrink-window):
5831 Move here from window.c.
5832 (maximize-window, minimize-window): New functions.
5833 (delete-window, delete-other-windows, split-window): Move here
5834 from window.c.
5835 (window-split-min-size): New function.
5836 (split-window-keep-point): Mention split-window-above-each-other
5837 instead of split-window-vertically.
5838 (split-window-above-each-other, split-window-vertically):
5839 Rename split-window-vertically to split-window-above-each-other and
5840 provide defalias for old definition.
5841 (split-window-side-by-side, split-window-horizontally): Rename
5842 split-window-horizontally to split-window-side-by-side and provide
5843 defalias for the old definition.
5844 (ctl-x-map): Move bindings for delete-window,
5845 delete-other-windows and enlarge-window here from window.c.
5846 Replace bindings for split-window-vertically and
5847 split-window-horizontally by bindings for
5848 split-window-above-each-other and split-window-side-by-side.
5849
5850 * cus-start.el (all): Remove entries for window-min-height and
5851 window-min-width. Add entries for window-splits and
5852 window-nest.
5853
5854 2011-06-09 Glenn Morris <rgm@gnu.org>
5855
5856 * calendar/appt.el (appt-mode-line): New function.
5857 (appt-check, appt-disp-window): Use it.
5858
5859 * files.el (hack-one-local-variable-eval-safep):
5860 Allow minor-modes with explicit +/-1 arguments.
5861
5862 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
5863
5864 * term/xterm.el (xterm): Add defgroup.
5865 (xterm-extra-capabilities): Add defcustom to supply known xterm
5866 capabilities, skip querying them, or query them (default).
5867 (terminal-init-xterm): Use it.
5868 (terminal-init-xterm-modify-other-keys): New function to set up
5869 modifyOtherKeys support to simplify `terminal-init-xterm'.
5870
5871 2011-06-09 Martin Rudalics <rudalics@gmx.at>
5872
5873 * window.el (resize-window-reset, resize-window-reset-1)
5874 (resize-subwindows-skip-p, resize-subwindows-normal)
5875 (resize-subwindows, resize-other-windows, resize-this-window)
5876 (resize-root-window, resize-root-window-vertically)
5877 (window-deletable-p, window-or-subwindow-p)
5878 (frame-root-window-p): New functions.
5879
5880 2011-06-09 Glenn Morris <rgm@gnu.org>
5881
5882 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
5883 (ange-ftp-get-files): Use it.
5884
5885 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5886
5887 * mail/sendmail.el (mail-recover-1, mail-recover):
5888 * files.el (recover-file, recover-session):
5889 Handle dired-listing-switches not being just a single short option.
5890
5891 2011-06-09 Glenn Morris <rgm@gnu.org>
5892
5893 * calendar/appt.el (appt-display-message, appt-disp-window):
5894 Handle lists of appointments.
5895
5896 2011-06-08 Martin Rudalics <rudalics@gmx.at>
5897
5898 * window.el (one-window-p): Move down in code.
5899 Rewrite doc-string.
5900 (window-current-scroll-bars): Rewrite doc-string.
5901 Normalize live window argument.
5902 (walk-windows, get-window-with-predicate, count-windows):
5903 Rewrite doc-string. Use window-list-1.
5904 (window-in-direction-2, window-in-direction, get-mru-window):
5905 New functions.
5906
5907 2011-06-08 Reuben Thomas <rrt@sc3d.org>
5908
5909 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
5910 Doc fix (Bug#8713).
5911
5912 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
5913
5914 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
5915
5916 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
5917
5918 * loadhist.el (unload-feature-special-hooks):
5919 Add `comint-output-filter-functions'.
5920
5921 2011-06-08 Ivan Kanis <gnu@kanis.fr>
5922
5923 * calendar/appt.el (appt-check): Move some initializations into the let.
5924
5925 2011-06-08 Martin Rudalics <rudalics@gmx.at>
5926
5927 * window.el (window-height): Defalias to window-total-height.
5928 (window-width): Defalias to window-body-width.
5929
5930 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
5931
5932 * image-mode.el (image-toggle-animation): New command.
5933 (image-mode-map): Bind it to RET.
5934 (image-mode): Update message.
5935 (image-toggle-display-image): Avoid a spurious cache flush.
5936 (image-transform-rotation): Doc fix.
5937 (image-transform-properties): Return quickly in the normal case.
5938 (image-animate-loop): Rename from image-animate-max-time.
5939
5940 * image.el (image-animate-max-time): Move to image-mode.el.
5941 (create-animated-image): Remove unnecessary function.
5942 (image-animate): Rename from image-animate-start. New arg.
5943 (image-animate-stop): Remove; just use image-animate-timer.
5944 (image-animate-timer): Use car-safe.
5945 (image-animate-timeout): Rename argument.
5946
5947 2011-06-07 Martin Rudalics <rudalics@gmx.at>
5948
5949 * window.el (get-lru-window, get-largest-window): Move here from
5950 window.c. Rename first argument to ALL-FRAMES.
5951 Rephrase doc-strings.
5952 (get-buffer-window-list): Rewrite using window-list-1.
5953 Rephrase doc-string.
5954 (window-safe-min-height, window-safe-min-width): New constants.
5955 (window-size-ignore, window-min-size, window-min-size-1)
5956 (window-sizable, window-sizable-p, window-size-fixed-1)
5957 (window-size-fixed-p, window-min-delta-1, window-min-delta)
5958 (window-max-delta-1, window-max-delta, window-resizable)
5959 (window-resizable-p, window-total-height, window-total-width)
5960 (window-body-width): New functions.
5961 (window-full-height-p, window-full-width-p): Rewrite using
5962 window-total-size.
5963 (window-body-height): Rewrite using window-body-size.
5964
5965 2011-06-06 Martin Rudalics <rudalics@gmx.at>
5966
5967 * window.el (window-right, window-left, window-child)
5968 (window-child-count, window-last-child, window-any-p)
5969 (normalize-live-buffer, normalize-live-frame)
5970 (normalize-any-window, normalize-live-window)
5971 (window-iso-combination-p, window-iso-combined-p)
5972 (window-iso-combinations)
5973 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
5974 (windows-with-parameter, window-with-parameter)
5975 (window-atom-root, make-window-atom, window-atom-check-1)
5976 (window-atom-check, window-side-check, window-check):
5977 New functions.
5978 (ignore-window-parameters, window-sides, window-sides-vertical)
5979 (window-sides-slots): New variables.
5980 (window-size-fixed): Move down in code. Minor doc-string fix.
5981
5982 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
5983
5984 * comint.el (comint-dynamic-complete-as-filename)
5985 (comint-dynamic-complete-filename): Correctly call
5986 completion-in-region.
5987
5988 2011-06-05 Deniz Dogan <deniz@dogan.se>
5989
5990 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
5991 in last change.
5992
5993 2011-06-05 Deniz Dogan <deniz@dogan.se>
5994
5995 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
5996 (rcirc): Use it to prompt for encryption.
5997
5998 2011-06-05 Roland Winkler <winkler@gnu.org>
5999
6000 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
6001 (bibtex-search-entries): New command bound to C-c C-a.
6002 (bibtex-display-entries): New function.
6003
6004 2011-06-05 Roland Winkler <winkler@gnu.org>
6005
6006 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
6007 (bibtex-insert-kill): After yanking insert newline if necessary.
6008 (bibtex-initialize): Call bibtex-string-files-init only once.
6009 (bibtex-mode): Do not call easy-menu-add.
6010 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
6011 (bibtex-yank): Set arg properly if nil.
6012
6013 2011-06-05 Roland Winkler <winkler@gnu.org>
6014
6015 * textmodes/bibtex.el (bibtex-search-entry-globally):
6016 New variable.
6017 (bibtex-search-entry): Use it.
6018
6019 2011-06-05 Roland Winkler <winkler@gnu.org>
6020
6021 * textmodes/bibtex.el (bibtex-entry-format): New option
6022 sort-fields.
6023 (bibtex-format-entry, bibtex-reformat): Honor this option.
6024 (bibtex-parse-entry): Return fields in proper order.
6025
6026 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
6027
6028 * doc-view.el (doc-view-remove-if): Move computation of result out
6029 of `dolist' to silence misleading lexical-binding warning.
6030
6031 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
6032
6033 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
6034 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
6035
6036 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6037
6038 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
6039 "SunOS 5.10".
6040
6041 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6042
6043 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
6044 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
6045 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
6046 (tramp-parse-putty):
6047 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
6048 (tramp-completion-function-alist-ssh)
6049 (tramp-completion-function-alist-telnet)
6050 (tramp-completion-function-alist-su)
6051 (tramp-completion-function-alist-putty): Set `tramp-autoload'
6052 cookie.
6053
6054 * net/tramp-ftp.el:
6055 * net/tramp-sh.el:
6056 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
6057 load "tramp.el" `tramp-set-completion-function'.
6058
6059 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6060
6061 * shell.el: Require and use pcomplete.
6062 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
6063 (shell-completion-vars): Set pcomplete-default-completion-function.
6064
6065 2011-06-04 Deniz Dogan <deniz@dogan.se>
6066
6067 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
6068 `memq' (Bug#8799).
6069
6070 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6071
6072 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
6073
6074 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
6075
6076 * bs.el (bs--mark-unmark, bs--nth-wrapper):
6077 * mpc.el (mpc-select-extend, mpc-songpointer-context):
6078 * vc/log-view.el (log-view-beginning-of-defun):
6079 * vc/smerge-mode.el (smerge-apply-resolution-patch)
6080 (smerge-refine-forward, smerge-refine-chopup-region):
6081 Silence warning for unused `dotimes' counter variables.
6082
6083 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6084
6085 * net/tramp.el (tramp-with-progress-reporter): Rename from
6086 with-progress-reporter. Use `declare'.
6087 * net/tramp-smb.el:
6088 * net/tramp-sh.el:
6089 * net/tramp-gvfs.el: Update all uses.
6090
6091 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
6092
6093 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
6094 buffer isn't killed before making it current.
6095
6096 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6097
6098 Silence various byte-compiler warnings.
6099 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
6100 `access-type' and new obsolescence format.
6101 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
6102 new format.
6103 (byte-compile-check-variable): New `access-type' argument.
6104 Only warn if the access-type is obsolete.
6105 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6106 (byte-compile-variable-set): Adjust callers.
6107 * help-fns.el (describe-variable): Adjust to new obsolescence format.
6108 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
6109 setting it as obsolete.
6110 * simple.el (minibuffer-completing-symbol):
6111 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
6112 access as obsolete.
6113 * minibuffer.el (minibuffer-completing-file-name): Don't make it
6114 obsolete yet.
6115 * international/quail.el (quail-mouse-choose-completion): Remove unused
6116 code referring to obsolete var.
6117 (quail-choose-completion-string): Remove.
6118 * server.el (server-clients-with, server-kill-buffer-query-function)
6119 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
6120 * proced.el (proced-send-signal):
6121 * emacs-lisp/lisp.el (lisp-complete-symbol):
6122 Replace completion-annotate-function with completion-extra-properties.
6123
6124 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6125
6126 * simple.el (goto-line): Use read-number.
6127 (overriding-map-is-bound): Remove.
6128 (saved-overriding-map): Change default.
6129 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
6130 Take the map as argument.
6131 (universal-argument, negative-argument, digit-argument): Use it.
6132 (restore-overriding-map): Adjust.
6133 (do-auto-fill): Use fill-forward-paragraph.
6134 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
6135
6136 * minibuffer.el (minibuffer-inactive-mode-map): New var.
6137 (minibuffer-inactive-mode): New major mode.
6138 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
6139 the *Messages* buffer" hack.
6140 (mouse-popup-menubar): Don't burp if the event is a normal key.
6141
6142 Miscellaneous tweaks.
6143 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
6144 lexical scoping as in subr.el's dolist and dotimes.
6145 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
6146 Silence compiler warning.
6147 * thingatpt.el (forward-whitespace): Trivial coding style fix.
6148 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
6149 * international/ccl.el (ccl-compile): Trivial simplification.
6150 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
6151 * emacs-lisp/testcover.el (testcover-end): Remove spurious
6152 `printflag' argument.
6153 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6154 Purecopy the whole obsolescence data.
6155
6156 2011-06-01 Leo Liu <sdl.web@gmail.com>
6157
6158 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
6159 improve doc-string as suggested by Marco Pessotto
6160 <melmothx@gmail.com>.
6161 (rcirc-print): Fix last change.
6162
6163 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6164
6165 * minibuffer.el (complete-with-action): Return nil for the metadata and
6166 boundaries of non-functional tables.
6167 (completion-table-dynamic): Return nil for the metadata.
6168 (completion-table-with-terminator): Add default case, using
6169 complete-with-action.
6170 (completion--metadata): New function.
6171 (completion-all-sorted-completions, minibuffer-completion-help): Use it
6172 to try and avoid pathological performance problems.
6173 (completion--embedded-envvar-table): Return `category' metadata.
6174
6175 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
6176
6177 * subr.el (process-alive-p): New tiny convenience function.
6178
6179 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6180
6181 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
6182 content but also its previous major mode.
6183
6184 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
6185
6186 * emacs-lisp/debug.el (debug): Restore the previous content of the
6187 *Backtrace* buffer when we exit with C-M-c.
6188
6189 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6190
6191 * minibuffer.el: Add metadata method to completion tables.
6192 (completion-category-overrides): New defcustom.
6193 (completion-metadata, completion--field-metadata)
6194 (completion-metadata-get, completion--styles)
6195 (completion--cycle-threshold): New functions.
6196 (completion-try-completion, completion-all-completions):
6197 Add `metadata' argument to choose completion-styles.
6198 (completion--do-completion): Use metadata to choose cycling.
6199 (completion-all-sorted-completions): Use metadata for sorting.
6200 Remove :completion-cycle-penalty which is not needed any more.
6201 (completion--try-word-completion): Add `metadata' argument.
6202 (minibuffer-completion-help): Check metadata for annotation function
6203 and sorting.
6204 (completion-file-name-table): Return `category' metadata.
6205 (minibuffer-completing-file-name): Make obsolete.
6206 * simple.el (minibuffer-completing-symbol): Make obsolete.
6207 * icomplete.el (icomplete-completions): Pass new `metadata' param to
6208 completion-try-completion.
6209
6210 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6211
6212 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
6213
6214 2011-05-30 Leo Liu <sdl.web@gmail.com>
6215
6216 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
6217 (rcirc-print): Decode all incoming messages (bug#8744).
6218 (rcirc-decode-coding-system): Allow value nil for automatic coding
6219 system detection.
6220
6221 2011-06-01 Glenn Morris <rgm@gnu.org>
6222
6223 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
6224
6225 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6226
6227 * image.el (image-animate-max-time): Allow nil and t values.
6228 Default to nil.
6229 (create-animated-image): Doc fix.
6230 (image-animate-start): Remove second arg; just use
6231 image-animate-max-time.
6232 (image-animate-timeout): Doc fix. Args changed.
6233
6234 * image-mode.el (image-toggle-display-image): Ensure that the
6235 image spec passed to the animate timer is the same object as in
6236 the buffer's display property (Bug#6981).
6237 (image-transform-properties): Doc fix.
6238
6239 * image.el (image-animate-max-time): Default to nil.
6240
6241 2011-05-29 Martin Rudalics <rudalics@gmx.at>
6242
6243 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
6244 entire buffer list (Bug#8184).
6245
6246 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6247
6248 * image.el (imagemagick-types-inhibit)
6249 (imagemagick-register-types): Doc fix.
6250
6251 2011-05-29 Deniz Dogan <deniz@dogan.se>
6252
6253 * net/rcirc.el (rcirc): Use the user's stored encryption method by
6254 default.
6255
6256 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6257
6258 * select.el: Don't perform clipboard-manager saving in hooks;
6259 leave the hooks empty.
6260
6261 2011-05-28 Leo Liu <sdl.web@gmail.com>
6262
6263 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
6264 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
6265 (occur-edit-mode): New major mode (Bug#8463).
6266 (occur-after-change-function): New function.
6267 (occur-engine): Give Occur tags a read-only property.
6268
6269 2011-05-28 Kevin Ryde <user42@zip.com.au>
6270
6271 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
6272
6273 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6274
6275 * bindings.el (help-echo): Make the initial non-indicator dash
6276 empty on graphical terminals (Bug#7295).
6277
6278 * files.el (auto-mode-alist): Move config rule after the
6279 in-stripping one (Bug#8547).
6280
6281 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
6282
6283 * startup.el (normal-splash-screen): Remove gratuitous mode-line
6284 setting (Bug#8740).
6285
6286 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
6287
6288 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
6289 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
6290 (Bug#8539).
6291
6292 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6293
6294 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
6295
6296 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
6297
6298 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
6299 (hs-hide-block-at-point, hs-find-block-beginning)
6300 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
6301 (Bug#8279).
6302
6303 2011-05-28 Glenn Morris <rgm@gnu.org>
6304
6305 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
6306
6307 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6308
6309 * help-fns.el (describe-function-1): If the function is a derived
6310 major mode, print the parent mode.
6311
6312 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
6313 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
6314
6315 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6316
6317 * minibuffer.el (completion--capf-wrapper): Check applicability before
6318 returning non-nil for non-exclusive completion data.
6319 * progmodes/etags.el (tags-completion-at-point-function):
6320 * info-look.el (info-lookup-completions-at-point): Mark as
6321 non-exclusive.
6322 (info-complete): Adjust accordingly.
6323
6324 * info-look.el: Convert to lexical-binding and completion-at-point.
6325 (info-lookup-completions-at-point): New function.
6326 (info-complete): Use it and completion-in-region.
6327
6328 2011-05-28 Drew Adams <drew.adams@oracle.com>
6329
6330 * isearch.el: Let M-e start with point at the first mismatched char.
6331 (isearch-fail-pos): New function.
6332 (isearch-edit-string): Use it.
6333
6334 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6335
6336 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6337
6338 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6339
6340 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
6341 traversal functions for avl-trees.
6342 (avl-tree--stack): New struct.
6343 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
6344 (avl-tree-enter): Add optional `updatefun' arg.
6345 (avl-tree--do-enter): Add optional `updatefun' arg.
6346 Change return value.
6347 (avl-tree-delete): Add optional `test' and `nilflag' args.
6348 (avl-tree--do-delete): Add `test' and `nilflag' args.
6349 Change return value.
6350 (avl-tree-member): Add optional `nilflag'
6351 (avl-tree-member-p): New function.
6352 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
6353 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
6354 (avl-tree-stack-empty-p): New functions.
6355
6356 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6357
6358 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
6359 avl-tree--del-balance1 and make it work both ways.
6360 (avl-tree--del-balance2): Remove.
6361 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
6362 make it work both ways.
6363 (avl-tree--enter-balance2): Remove.
6364 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
6365 New macros.
6366 (avl-tree--mapc, avl-tree-map): Add direction argument.
6367
6368 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
6369
6370 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
6371
6372 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
6373
6374 * select.el: Support clipboard managers with built-in function
6375 x-clipboard-manager-save, via delete-frame-functions and
6376 kill-emacs-hook.
6377 (xselect-convert-to-targets): Add MULTIPLE target to list.
6378 (xselect-convert-to-save-targets): New function.
6379
6380 2011-05-27 Kenichi Handa <handa@m17n.org>
6381
6382 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
6383 let-binding rfc2047-encode-encoded-words to nil.
6384
6385 2011-05-27 Glenn Morris <rgm@gnu.org>
6386
6387 * mail/emacsbug.el: Don't require url-util.
6388
6389 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
6390
6391 * files.el (set-auto-mode):
6392 Also respect mode: entries at the end of the file. (Bug#8586)
6393
6394 2011-05-26 Glenn Morris <rgm@gnu.org>
6395
6396 * files.el (hack-local-variables-prop-line, hack-local-variables):
6397 Downcase mode names, as seems to be traditional.
6398 (hack-local-variables, hack-local-variables-apply): Doc fixes.
6399
6400 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
6401 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
6402
6403 2011-05-25 Julien Danjou <julien@danjou.info>
6404
6405 * textmodes/rst.el (rst-define-level-faces): Do not define face
6406 symbol if it is already defined.
6407
6408 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
6409
6410 * play/5x5.el (5x5-new-game, 5x5-randomize):
6411 Reset 5x5-solver-output to nil when a new grid is cast.
6412 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
6413 these debugging traces, as defmacro breaks the compiled code.
6414
6415 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6416
6417 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6418
6419 2011-05-24 Leo Liu <sdl.web@gmail.com>
6420
6421 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
6422 (vc-bzr-sha1): Adapt.
6423
6424 * sha1.el: Remove. Function `sha1' is now builtin.
6425
6426 * bindings.el: Provide sha1 feature.
6427
6428 2011-05-24 Kenichi Handa <handa@m17n.org>
6429
6430 * mail/sendmail.el: Require `rfc2047'.
6431 (mail-insert-from-field): Do not perform RFC2047 encoding.
6432 (mail-encode-header): New function.
6433 (sendmail-send-it): Set buffer-file-coding-system of the work
6434 buffer to the return value of select-message-coding-system.
6435 Call mail-encode-header.
6436
6437 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
6438
6439 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
6440
6441 * mail/supercite.el (sc-default-cite-frame):
6442 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
6443
6444 2011-05-24 Glenn Morris <rgm@gnu.org>
6445
6446 * progmodes/python.el (brm-menu): Declare.
6447
6448 * emulation/viper.el (viper-set-hooks): Declare.
6449
6450 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
6451 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
6452 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
6453 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
6454 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
6455 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
6456
6457 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6458
6459 Add an :exit-function for completion-at-point.
6460
6461 * minibuffer.el (completion--done): New fun.
6462 (completion--do-completion): Use it. New arg `expect-exact'.
6463 (minibuffer-complete, minibuffer-complete-word): Don't output message,
6464 since completion--do-completion does it for us now.
6465 (minibuffer-force-complete): Use completion--done and
6466 completion--replace. Handle sole-completion case with more care.
6467 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
6468 (completion-extra-properties): New var.
6469 (completion-annotate-function): Make obsolete.
6470 (minibuffer-completion-help): Adjust accordingly.
6471 Use completion-list-insert-choice-function.
6472 (completion-at-point, completion-help-at-point):
6473 Bind completion-extra-properties.
6474 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
6475 * simple.el (completion-list-insert-choice-function): New var.
6476 (completion-setup-function): Preserve it.
6477 (choose-completion): Pay attention to it, shuffle the code a bit.
6478 (choose-completion-string): New arg `insert-function'.
6479
6480 * textmodes/bibtex.el: Convert to lexical binding.
6481 (bibtex-mode-map): Use completion-at-point.
6482 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
6483 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
6484 (bibtex-complete): Define as obsolete alias.
6485 (bibtex-complete-internal): Remove.
6486 (bibtex-format-entry): Remove unused sub-group in regexp.
6487 * shell.el (shell--command-completion-data)
6488 (shell-environment-variable-completion):
6489 * pcomplete.el (pcomplete-completions-at-point):
6490 * comint.el (comint--complete-file-name-data): Use :exit-function
6491 instead of completion-table-with-terminator so it also works for
6492 choose-completion.
6493
6494 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6495
6496 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
6497
6498 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
6499 (bug#8710).
6500
6501 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
6502
6503 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
6504
6505 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
6506 customization variable and implement: If non-nil, auto-fill will
6507 be inhibited while on topic's header line.
6508
6509 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
6510
6511 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
6512 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
6513 always have a solution in grid size = 5 cases.
6514 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
6515 (5x5-solver-output, 5x5-log-buffer): New vars.
6516 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
6517 Make these variables buffer local to achieve 5x5 multi-session-ness.
6518 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
6519 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
6520 (5x5-solve-suggest): New funs.
6521 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
6522 randomize a grid so that we ensure that there is always a solution.
6523 (5x5-make-random-grid): Allow other movement than flipping.
6524
6525 2011-05-23 Kevin Ryde <user42@zip.com.au>
6526
6527 * emacs-lisp/advice.el (ad-read-advised-function):
6528 Use `function-called-at-point' as the default default, if it has
6529 advice and passes PREDICATE.
6530
6531 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6532
6533 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
6534 byte-compile-lambda if it's actually a lambda.
6535
6536 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
6537 Fix function quoting. Use backquote better.
6538
6539 2011-05-22 Yuanle Song <sylecn@gmail.com>
6540
6541 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
6542 matching (Bug#8516).
6543
6544 2011-01-22 Jari Aalto <jari.aalto@cante.net>
6545
6546 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
6547 different face (Bug#8178).
6548
6549 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
6550
6551 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
6552 defface (Bug#8144).
6553
6554 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
6555
6556 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
6557 funcall as well (bug#8712). Warn when performing those conversions.
6558 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
6559
6560 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
6561
6562 2011-05-22 Glenn Morris <rgm@gnu.org>
6563
6564 * files.el (hack-local-variables-prop-line): Small simplifications.
6565 (hack-local-variables, hack-local-variables-prop-line):
6566 If MODE-ONLY, return the mode, rather than just `t'.
6567
6568 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6569
6570 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
6571
6572 2011-05-21 Glenn Morris <rgm@gnu.org>
6573
6574 * files.el (hack-local-variables-prop-line, hack-local-variables):
6575 If only interested in the mode, don't bother doing the other stuff.
6576
6577 * image-mode.el (image-after-revert-hook):
6578 Redraw all frames on which the image is visible. (Bug#8567)
6579
6580 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
6581
6582 * wid-edit.el (widget-checklist-match-inline):
6583 Fix 2011-04-19 change. (Bug#8649)
6584
6585 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
6586
6587 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
6588 Also allow singlespace after single-letter capitals followed by a dot.
6589
6590 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
6591 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
6592
6593 2011-05-20 Nix <nix@esperi.org.uk>
6594
6595 * files.el (basic-save-buffer-2):
6596 Fix handling of break-hardlink-on-save with non-existent files.
6597
6598 2011-05-19 Deniz Dogan <deniz@dogan.se>
6599
6600 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
6601 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
6602
6603 2011-05-19 Glenn Morris <rgm@gnu.org>
6604
6605 * progmodes/f90.el (f90-type-def-re):
6606 Handle "type, bind(c)". (Bug#8691)
6607
6608 * emacs-lisp/autoload.el (batch-update-autoloads):
6609 Set autoload-excludes by parsing loadup.el rather than Makefiles.
6610
6611 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
6612
6613 * net/tramp.el (tramp-process-actions): Set "first-password-request"
6614 property for the correct connection in case of multihops.
6615
6616 2011-05-18 Glenn Morris <rgm@gnu.org>
6617
6618 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
6619 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
6620
6621 Rationalize calendar handling of day and month abbrev-arrays.
6622 * calendar/calendar.el (calendar-customized-p): New function.
6623 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
6624 (calendar-day-name-array, calendar-month-name-array): Doc fix.
6625 Add :set function.
6626 (calendar-abbrev-length, calendar-day-abbrev-array)
6627 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
6628 (calendar-day-abbrev-array, calendar-month-abbrev-array):
6629 Elements may no longer be nil.
6630 (calendar-day-name, calendar-month-name):
6631 Update for changed nature of abbrev arrays.
6632 * calendar/diary-lib.el (diary-name-pattern):
6633 Update for changed nature of abbrev arrays.
6634 (diary-mark-entries-1): Update calendar-make-alist calls.
6635 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
6636 * calendar/cal-html.el (cal-html-day-abbrev-array):
6637 Simply inherit from calendar-day-abbrev-array.
6638
6639 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6640
6641 * progmodes/grep.el (grep-mode): Disable default
6642 compilation-directory-matcher setting (bug#8684).
6643
6644 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
6645
6646 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
6647 instead of "head" and "tail". There were problems with SunOS 5.9,
6648 and it performs better.
6649
6650 2011-05-17 Glenn Morris <rgm@gnu.org>
6651
6652 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
6653
6654 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6655 Replace obsolete function.
6656
6657 * shell.el (pcomplete-parse-arguments-function): Declare.
6658
6659 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
6660 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
6661 (appt-check): Doc fixes.
6662 (appt-disp-window-function, appt-delete-window-function):
6663 Remove needless special case in custom :type.
6664 (appt-display-count): Default to 0, not nil.
6665 (appt-check): Reset appt-display-count to 0, not nil.
6666
6667 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
6668
6669 * progmodes/python.el (python-font-lock-keywords):
6670 Add the Python 3.X keyword "nonlocal" (bug#8639).
6671
6672 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
6673
6674 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
6675
6676 2011-05-16 Kevin Ryde <user42@zip.com.au>
6677
6678 * info-look.el (makefile-automake-mode): New setups, looking in
6679 automake manual, then makefile-mode.
6680 (makefile-mode): Remove automake manual, have it just in
6681 makefile-automake-mode since there's various things different or
6682 not relevant to plain make.
6683 (makefile-mode): Remove "other-modes" non-existent automake-mode,
6684 believe a hypothetical automake-mode would go to makefile-mode,
6685 not the other way around.
6686
6687 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
6688
6689 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
6690 hunk-end tags (Bug#8672).
6691
6692 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
6693 vc-annotate-show-diff-revision-at-line (Bug#8671).
6694
6695 2011-05-14 Glenn Morris <rgm@gnu.org>
6696
6697 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
6698 in the middle of an existing one with multiple authors. (Bug#8645)
6699 (change-log-font-lock-keywords): Also handle multiple author lines
6700 with leading tabs. (Bug#8644)
6701
6702 * calendar/appt.el (appt-check): Rename some local variables.
6703 Some simplification/reordering.
6704
6705 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
6706 (feedmail-sendmail-f-doesnt-sell-me-out)
6707 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6708 (feedmail-debug-sit-for, feedmail-queue-express-hook)
6709 (feedmail-queue-runner-message-sender): Set :version.
6710 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
6711 (bbdb-dwim-net-address, vm-mail): Declare.
6712 (feedmail-binmail-gnulinuxish-template):
6713 Rename from feedmail-binmail-linuxish-template.
6714 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
6715 Use insert-buffer-substring.
6716
6717 2011-05-14 Bill Carpenter <bill@carpenter.org>
6718
6719 * mail/feedmail.el (feedmail-patch-level): Increase.
6720 (feedmail-debug): New custom group.
6721 (feedmail-confirm-outgoing-timeout)
6722 (feedmail-sendmail-f-doesnt-sell-me-out)
6723 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6724 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
6725 (feedmail-sender-line, feedmail-from-line)
6726 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
6727 (feedmail-spray-this-address)
6728 (feedmail-spray-address-fiddle-plex-list)
6729 (feedmail-queue-use-send-time-for-date)
6730 (feedmail-queue-use-send-time-for-message-id)
6731 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
6732 (feedmail-buffer-eating-function):
6733 Doc fixes.
6734 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
6735 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
6736 (feedmail-message-action-scroll-down): New functions.
6737 (feedmail-queue-directory, feedmail-queue-draft-directory):
6738 Use expand-file-name.
6739 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
6740 Remove C-v help entry.
6741 (feedmail-queue-buffer-file-name): New variable.
6742 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
6743 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
6744 (feedmail-message-action-send-strong, feedmail-message-action-edit)
6745 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
6746 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
6747 (feedmail-message-action-toggle-spray)
6748 (feedmail-run-the-queue-no-prompts)
6749 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
6750 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
6751 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
6752 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
6753 (feedmail-envelope-deducer, feedmail-fiddle-from)
6754 (feedmail-fiddle-sender, feedmail-default-date-generator)
6755 (feedmail-fiddle-date, feedmail-fiddle-message-id)
6756 (feedmail-fiddle-spray-address)
6757 (feedmail-fiddle-list-of-spray-fiddle-plexes)
6758 (feedmail-fiddle-list-of-fiddle-plexes)
6759 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
6760 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
6761 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
6762 Change default. Doc fix.
6763 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
6764 (feedmail-binmail-linuxish-template): New constant.
6765 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
6766 Respect feedmail-sendmail-f-doesnt-sell-me-out.
6767 (feedmail-send-it): Add debug call.
6768 Use feedmail-queue-buffer-file-name, and
6769 feedmail-send-it-immediately-wrapper.
6770 (feedmail-message-action-send): Add debug call.
6771 Use feedmail-send-it-immediately-wrapper.
6772 (feedmail-queue-express-to-queue): Add debug call.
6773 Run feedmail-queue-express-hook.
6774 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
6775 (feedmail-message-action-help-blat):
6776 Rename from feedmail-queue-send-edit-prompt-help-first.
6777 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
6778 Check line-endings. Handle errors better.
6779 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
6780 Doc fix. Add debug call.
6781 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
6782 Use feedmail-queue-send-edit-prompt-inner.
6783 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
6784 (feedmail-queue-send-edit-prompt-inner): New function, extracted
6785 from feedmail-queue-send-edit-prompt.
6786 (feedmail-queue-send-edit-prompt-help)
6787 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
6788 (feedmail-tidy-up-slug): Add debug call.
6789 Respect feedmail-queue-slug-suspect-regexp.
6790 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
6791 (feedmail-dump-message-to-queue): Add debug call.
6792 Expand queue-directory.
6793 (feedmail-dump-message-to-queue): Change message slightly.
6794 Use feedmail-say-chatter.
6795 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
6796 (feedmail-send-it-immediately-wrapper): New function.
6797 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
6798 Insert empty string rather than newline. Handle full-frame case.
6799 Use catch/throw. Use feedmail-say-chatter.
6800 (feedmail-fiddle-from): Try mail-host-address.
6801 (feedmail-default-message-id-generator): Doc fix.
6802 Bind system-time-locale. Handle missing end.
6803 (feedmail-fiddle-x-mailer): Add debug call.
6804 Handle feedmail-x-mailer-line being nil.
6805 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
6806 Add debug call. Use buffer-substring-no-properties.
6807 (feedmail-say-debug, feedmail-say-chatter): New functions.
6808 (feedmail-find-eoh): Give an explicit error.
6809
6810 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
6811
6812 * net/newst-treeview.el (newsticker-treeview-face): Change default
6813 family from helvetica to sans.
6814 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
6815 etc/images/newsticker.
6816
6817 * net/newst-reader.el (newsticker-feed-face): Change default
6818 family from helvetica to sans.
6819
6820 * net/newst-plainview.el (newsticker-new-item-face)
6821 (newsticker-old-item-face, newsticker-immortal-item-face)
6822 (newsticker-obsolete-item-face, newsticker-date-face)
6823 (newsticker-statistics-face): Change default family from
6824 helvetica to sans.
6825 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
6826 etc/images/newsticker.
6827
6828 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
6829 (newsticker--process-auto-mark-filter-match): : Tell user about
6830 auto-marking.
6831
6832 2011-05-13 Didier Verna <didier@xemacs.org>
6833
6834 Common Lisp indentation improvements on defmethod and lambda-lists.
6835 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
6836 TODO entries.
6837 (lisp-lambda-list-keyword-parameter-indentation)
6838 (lisp-lambda-list-keyword-parameter-alignment)
6839 (lisp-lambda-list-keyword-alignment): New customizable user options.
6840 (lisp-indent-defun-method): Improve docstring.
6841 (extended-loop-p): Fix comment.
6842 (lisp-indent-lambda-list-keywords-regexp): New variable.
6843 (lisp-indent-lambda-list): New function.
6844 (lisp-indent-259): Use it.
6845 (lisp-indent-defmethod): Support for more than one
6846 method qualifier and properly indent methods lambda-lists.
6847 (defgeneric): Provide a missing common-lisp-indent-function property.
6848
6849 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6850
6851 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
6852 bounds for the empty string (bug#8667).
6853
6854 2011-05-13 Glenn Morris <rgm@gnu.org>
6855
6856 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
6857
6858 * mail/sendmail.el (sendmail-program): Try executable-find first.
6859 (sendmail-send-it): `sendmail-program' cannot be unbound.
6860
6861 * calendar/appt.el (appt-make-list): Simplify.
6862 (appt-time-msg-list): Doc fix.
6863 (appt-check): Change mode-line message at the time of the appointment.
6864
6865 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
6866
6867 * progmodes/ld-script.el (ld-script-keywords)
6868 (ld-script-builtins): Update keywords list.
6869
6870 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6871
6872 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
6873
6874 * shell.el (shell-completion-vars): New function.
6875 (shell-mode):
6876 * simple.el (read-shell-command): Use it.
6877 (blink-matching-open): No need for " [...]" in minibuffer-message.
6878
6879 2011-05-12 Glenn Morris <rgm@gnu.org>
6880
6881 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
6882 (appt-check): Simplify.
6883
6884 2011-05-12 Eli Zaretskii <eliz@gnu.org>
6885
6886 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
6887 literal "/dev/null".
6888
6889 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6890
6891 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
6892 Fix typo.
6893
6894 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6895
6896 * progmodes/which-func.el (which-function):
6897 Use add-log-current-defun instead of add-log-current-defun-function,
6898 which might not be defined (Bug#8260).
6899
6900 2011-05-12 Glenn Morris <rgm@gnu.org>
6901
6902 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
6903 Let byte-compile-initial-macro-environment always take precedence.
6904
6905 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6906
6907 * net/rcirc.el: Add support for SSL/TLS connections.
6908 (rcirc-server-alist): New field `encryption'.
6909 (rcirc): Check `encryption' settings.
6910 (rcirc-connect): New arg `encryption'. Use open-network-stream.
6911 Merge make-local-variable into `set'.
6912 (rcirc--connection-open-p): New function.
6913 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
6914 the process is not a network process (e.g. running gnutls-cli).
6915 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
6916 Make rcirc-(en|de)code-coding-system local here.
6917 (rcirc-mode): Merge make-local-variable into `set'.
6918 (rcirc-parent-buffer): Make permanent buffer-local.
6919 (rcirc-multiline-minor-mode): Don't do it here.
6920 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
6921 there's no server buffer.
6922
6923 2011-05-11 Glenn Morris <rgm@gnu.org>
6924
6925 * newcomment.el (comment-kill): Prefix "unused" local.
6926
6927 * term/w32console.el (get-screen-color): Declare.
6928
6929 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
6930 Handle symbol elements of byte-compile-initial-macro-environment.
6931
6932 2011-05-10 Leo Liu <sdl.web@gmail.com>
6933
6934 * bookmark.el (bookmark-bmenu-mode-map):
6935 Bind bookmark-bmenu-search to `/'.
6936
6937 * mail/footnote.el: Convert to utf-8 encoding.
6938 (footnote-unicode-string, footnote-unicode-regexp): New variable.
6939 (Footnote-unicode): New function.
6940 (footnote-style-alist): Add unicode style to the list.
6941 (footnote-style): Doc fix.
6942
6943 2011-05-10 Jim Meyering <meyering@redhat.com>
6944
6945 Fix doubled-word typos.
6946 * international/quail.el (quail-insert-kbd-layout): and and -> and
6947 * kermit.el: and and -> and
6948 * net/ldap.el (ldap-search-internal): to to -> to
6949 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
6950 * progmodes/js.el (js-mode): and and -> and
6951 * textmodes/artist.el (artist-move-to-xy): at at -> at
6952 (artist-draw-region-trim-line-endings): if if -> if
6953 And Safetyc -> Safety.
6954 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
6955
6956 2011-05-10 Glenn Morris <rgm@gnu.org>
6957 Stefan Monnier <monnier@iro.umontreal.ca>
6958
6959 * files.el (hack-one-local-variable-eval-safep):
6960 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
6961
6962 2011-05-10 Glenn Morris <rgm@gnu.org>
6963
6964 * calendar/diary-lib.el (diary-list-entries-hook)
6965 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
6966 (diary-nongregorian-marking-hook, diary-list-entries)
6967 (diary-include-other-diary-files, diary-mark-entries)
6968 (diary-mark-included-diary-files): Doc fixes.
6969
6970 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
6971
6972 * misc.el: Require tabulated-list.el during compilation.
6973
6974 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
6975
6976 * progmodes/compile.el (compilation-start):
6977 Run compilation-filter-hook for the async case too.
6978 (compilation-filter-hook): Doc fix.
6979
6980 2011-05-09 Deniz Dogan <deniz@dogan.se>
6981
6982 * wdired.el: Remove outdated installation comment. Fix usage
6983 comment.
6984
6985 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
6986
6987 * misc.el: Implement new command `list-dynamic-libraries'.
6988 (list-dynamic-libraries--loaded-only-p): New variable.
6989 (list-dynamic-libraries--refresh): New function.
6990 (list-dynamic-libraries): New command.
6991
6992 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
6993
6994 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6995 Fix the ant regexp to handle end-line and end-column info from jikes.
6996 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
6997 higher priority to avoid clobbering by gnu.
6998
6999 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7000
7001 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
7002 if the face has existing theme settings (Bug#8454).
7003
7004 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
7005
7006 * progmodes/perl-mode.el (perl-imenu-generic-expression):
7007 Only match variables declared via `my' or `our' (Bug#8261).
7008
7009 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
7010 special file names `.' and `..' (Bug#8259).
7011
7012 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7013
7014 * progmodes/grep.el (grep-mode-font-lock-keywords):
7015 Remove buffer-changing entries.
7016 (grep-filter): New function.
7017 (grep-mode): Add it to compilation-filter-hook.
7018
7019 * progmodes/compile.el (compilation-filter-hook)
7020 (compilation-filter-start): New defvars.
7021 (compilation-filter): Call compilation-filter-hook prior to
7022 updating the process mark.
7023
7024 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7025
7026 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
7027
7028 2011-05-07 Eli Zaretskii <eliz@gnu.org>
7029
7030 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
7031 mailclient-send-it even if window-system is nil. (Bug#8595)
7032
7033 * term/w32console.el (terminal-init-w32console):
7034 Call get-screen-color and use its output to set the frame
7035 background-mode. (Bug#8597)
7036
7037 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7038
7039 Make bytecomp.el understand that defmethod defines funs (bug#8631).
7040 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
7041 New functions.
7042 (defgeneric, eieio--defmethod): Use them.
7043 (eieio-defgeneric): Remove.
7044 (defmethod): Call defgeneric in a way visible to the byte-compiler.
7045
7046 2011-05-07 Glenn Morris <rgm@gnu.org>
7047
7048 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
7049 Use let rather than let*.
7050 (timeclock-find-discrep): Remove unused local.
7051
7052 * calendar/diary-lib.el (diary-comment-start): Doc fix.
7053
7054 * calendar/appt.el (appt-time-msg-list): Doc fix.
7055
7056 2011-05-06 Noah Friedman <friedman@splode.com>
7057
7058 * apropos.el (apropos-print-doc): Only use
7059 emacs-lisp-docstring-fill-column when it is bound to an integer,
7060 per that variable's documentation.
7061
7062 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7063
7064 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
7065 and warnings are not silently discarded (e.g. use -d instead of -P).
7066
7067 2011-05-06 Glenn Morris <rgm@gnu.org>
7068
7069 * calendar/appt.el (appt-message-warning-time): Doc fix.
7070 (appt-warning-time-regexp): New option.
7071 (appt-make-list): Respect appt-message-warning-time.
7072
7073 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
7074 New options.
7075 (diary-add-to-list): Strip comments from the displayed string.
7076 (diary-mode): Set comment-start and comment-end.
7077
7078 * vc/diff-mode.el (smerge-refine-subst): Declare.
7079 (diff-refine-hunk): Don't require smerge-mode when compiling.
7080
7081 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
7082
7083 * simple.el (list-processes): Return nil as the docstring says.
7084
7085 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7086
7087 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
7088 to "".
7089 (ange-ftp-write-region, ange-ftp-insert-file-contents)
7090 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
7091 determining of binary transfer. (Bug#7383)
7092
7093 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7094
7095 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7096 Fix port computation bug. (Bug#8618)
7097
7098 2011-05-05 Glenn Morris <rgm@gnu.org>
7099
7100 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
7101
7102 * simple.el (shell-dynamic-complete-functions)
7103 (comint-dynamic-complete-functions): Declare.
7104
7105 * net/network-stream.el (gnutls-negotiate):
7106 * simple.el (tabulated-list-print): Fix declarations.
7107
7108 * progmodes/gud.el (syntax-symbol, syntax-point):
7109 Remove unnecessary and incorrect declarations.
7110
7111 * emacs-lisp/check-declare.el (check-declare-scan):
7112 Handle byte-compile-initial-macro-environment in bytecomp.el
7113
7114 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7115
7116 Fix earlier half-done eieio-defmethod change (bug#8338).
7117 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
7118 Streamline and change calling convention.
7119 (defmethod): Adjust accordingly and simplify.
7120 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
7121 new eieio--defmethod.
7122 (slot-boundp): Minor CSE simplification.
7123
7124 2011-05-05 Milan Zamazal <pdm@zamazal.org>
7125
7126 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
7127 (glasses-make-readable): Use glasses-separate-capital-groups.
7128
7129 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
7130
7131 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
7132 (warning-series): Doc fix.
7133 (display-warning): Don't try to create the buffer if we just found it.
7134
7135 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
7136
7137 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
7138 (autoload-find-generated-file): New function.
7139 (generate-file-autoloads): Bind generated-autoload-file to
7140 buffer-file-name.
7141 (update-file-autoloads, update-directory-autoloads):
7142 Use autoload-find-generated-file. If called interactively, prompt for
7143 output file (Bug#7989).
7144 (batch-update-autoloads): Doc fix.
7145
7146 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
7147
7148 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
7149
7150 2011-05-04 Glenn Morris <rgm@gnu.org>
7151
7152 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
7153 function, so it follows changes in calendar-date-style.
7154 (diary-fancy-date-matcher): New function.
7155 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
7156 (diary-fancy-font-lock-fontify-region-function):
7157 Use diary-fancy-date-pattern as a function.
7158
7159 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
7160 non-numbers for `year' etc pseudo-variables. (Bug#8583)
7161
7162 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
7163
7164 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
7165 instead of positional arguments. Allow :keylist and :crlfiles
7166 arguments.
7167 (open-gnutls-stream): Call it.
7168
7169 * net/network-stream.el (network-stream-open-starttls): Adjust to
7170 call `gnutls-negotiate' with :process and :hostname arguments.
7171
7172 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7173
7174 * minibuffer.el (completion--message): New function.
7175 (completion--do-completion, minibuffer-complete)
7176 (minibuffer-force-complete, minibuffer-complete-word): Use it.
7177 (completion--do-completion): Don't ignore completion-auto-help when in
7178 icomplete-mode.
7179
7180 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
7181 internal encoding (e.g. tibetan zero is not whitespace).
7182 (global-whitespace-mode): Prefer save-current-buffer.
7183 (whitespace-trailing-regexp): Remove useless save-match-data.
7184 (whitespace-empty-at-bob-regexp): Minor simplification.
7185
7186 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
7187
7188 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
7189
7190 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7191
7192 * textmodes/ispell.el (ispell-add-per-file-word-list):
7193 Use `concat' to create string for insertion.
7194
7195 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7196
7197 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
7198 Avoid open-line which runs post-self-insert-hook.
7199 (bibtex-fill-entry): Remove unused `end' var.
7200
7201 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
7202
7203 * textmodes/ispell.el (ispell-add-per-file-word-list):
7204 Protect against `nil' value of `comment-start' (Bug#8579).
7205
7206 2011-05-03 Leo Liu <sdl.web@gmail.com>
7207
7208 * isearch.el (isearch-yank-pop): New command.
7209 (isearch-mode-map): Bind it to `M-y'.
7210 (isearch-forward): Mention it.
7211
7212 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7213
7214 * simple.el (minibuffer-complete-shell-command): Remove.
7215 (minibuffer-local-shell-command-map): Use completion-at-point.
7216 (read-shell-command): Setup completion vars here instead.
7217 (read-expression-map): Bind TAB to symbol completion.
7218
7219 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
7220 error directly rather via storing it into `results'.
7221
7222 2011-05-02 Leo Liu <sdl.web@gmail.com>
7223
7224 * vc/diff.el: Fix description.
7225
7226 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7227
7228 * server.el (server-eval-at): New function.
7229
7230 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7231
7232 * net/network-stream.el (open-network-stream): Take a :nowait
7233 parameter and pass it on to `make-network-process'.
7234 (network-stream-open-plain): Ditto.
7235
7236 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
7237
7238 * faces.el (face-spec-set-match-display): Don't match toolkit
7239 options on terminal frames.
7240
7241 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7242
7243 * progmodes/pascal.el: Use lexical binding.
7244 (pascal-mode-map): Remove author preferences.
7245
7246 * pcomplete.el (pcomplete-std-complete): Don't abuse
7247 completion-at-point.
7248
7249 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7250
7251 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
7252 removing code that has been dead since 1991 or so.
7253
7254 * startup.el (command-line): When warning about "_emacs", use a
7255 delayed warning to allow the user to filter it out.
7256
7257 2011-04-28 Deniz Dogan <deniz@dogan.se>
7258
7259 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
7260 user has not joined.
7261
7262 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7263
7264 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
7265 aren't any completions at point.
7266
7267 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7268
7269 * subr.el (display-delayed-warnings): New function.
7270 (delayed-warnings-hook): New variable.
7271
7272 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7273
7274 * minibuffer.el (completion-at-point, completion-help-at-point):
7275 Don't presume that a given completion-at-point-function will always
7276 use the same calling convention.
7277
7278 * pcomplete.el (pcomplete-completions-at-point):
7279 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
7280 pcomplete-seen is non-nil.
7281 (pcomplete-comint-setup): Also recognize the new comint/shell
7282 completion functions.
7283 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
7284 pcomplete-seen is non-nil.
7285
7286 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
7287
7288 * calendar/icalendar.el (diary-lib): Add require statement.
7289 (icalendar--create-uid): Read out a uid from a text-property on
7290 the first character in the entry. This allows for code to add its
7291 own uid to the entry.
7292 (icalendar--convert-float-to-ical): Add export of
7293 `diary-float'-entries save for those with the optional DAY
7294 argument.
7295
7296 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
7297
7298 * subr.el (shell-quote-argument): Use alternate escaping strategy
7299 when we spot a variable reference in a string.
7300
7301 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7302
7303 * cus-start.el (all): Define customization for debug-on-event.
7304
7305 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7306
7307 * subr.el (shell-quote-argument): Escape correctly under Windows.
7308
7309 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7310
7311 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
7312
7313 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
7314
7315 * net/tramp.el (tramp-process-actions): Add POS argument.
7316 Delete region between POS and (pos).
7317
7318 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7319 Use `nil' position in `tramp-process-actions' call.
7320 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
7321
7322 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
7323 position in `tramp-process-actions' call.
7324
7325 * net/trampver.el: Update release number.
7326
7327 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7328
7329 * custom.el (defcustom): Obey lexical-binding.
7330
7331 Fix octave-inf completion problems reported by Alexander Klimov.
7332 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
7333 Inherit from octave-mode-syntax-table.
7334 (inferior-octave-mode): Set info-lookup-mode.
7335 (inferior-octave-completion-at-point): New function.
7336 (inferior-octave-complete): Use it and completion-in-region.
7337 (inferior-octave-dynamic-complete-functions): Use it as well, and use
7338 comint-filename-completion.
7339 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
7340 symbol elements which shouldn't be word elements.
7341 (octave-font-lock-keywords, octave-beginning-of-defun)
7342 (octave-function-header-regexp): Adjust regexps accordingly.
7343 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
7344
7345 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
7346
7347 * net/gnutls.el (gnutls-errorp): Declare before first use.
7348
7349 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
7350
7351 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
7352 verify-error, and verify-hostname-error parameters. Check whether
7353 default trustfile exists before going to use it. Add missing
7354 argument to gnutls-message-maybe call. Return return value.
7355 Reported by Claudio Bley <claudio.bley@gmail.com>.
7356 (open-gnutls-stream): Add usage example.
7357
7358 * net/network-stream.el (network-stream-open-starttls): Give host
7359 parameter to `gnutls-negotiate'.
7360 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
7361 * subr.el (shell-quote-argument): Escape correctly under Windows.
7362
7363 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
7364
7365 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
7366 Use correct match group (bug#8438).
7367
7368 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
7369
7370 * emacs-lisp/package.el (package-built-in-p): Fix typo.
7371 (package-menu--generate): New arg specifying packages to show.
7372 (package-menu-refresh, package-menu-execute, list-packages):
7373 Callers changed.
7374 (package-show-package-list): New function, replacing deleted
7375 package--list-packages (renamed because it is non-internal).
7376
7377 * finder.el (finder-list-matches): Use package-show-package-list
7378 instead of deleted package--list-packages.
7379
7380 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
7381 Based on a previous implementation by Juanma Barranquero (Bug#8366).
7382 (vc-annotate-mode-map): Bind it to RET.
7383
7384 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
7385
7386 * progmodes/etags.el (next-file): Don't use set-buffer to change
7387 buffers (Bug#8478).
7388
7389 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
7390
7391 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
7392
7393 * apropos.el (apropos-label-face): Avoid variable-pitch face.
7394 (apropos-accumulator): Doc fix.
7395 (apropos-function, apropos-macro, apropos-command)
7396 (apropos-variable, apropos-face, apropos-group, apropos-widget)
7397 (apropos-plist): Add face property.
7398 (apropos-symbols-internal): Fix indentation.
7399 (apropos-print): Simplify help, and recognize apropos-multi-type.
7400 (apropos-print-doc): Use button-type-get to extract the button's
7401 face property. Fill docstring (Bug#8352).
7402
7403 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
7404
7405 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
7406
7407 * play/mpuz.el (mpuz-silent): Doc fix.
7408 (mpuz-mode-map): Use mapc.
7409 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
7410 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
7411 Fix typos in docstrings.
7412
7413 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
7414 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
7415
7416 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
7417
7418 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
7419
7420 * minibuffer.el (completion--do-completion): Avoid the "Next char
7421 not unique" prompt if icomplete-mode is enabled (Bug#5849).
7422
7423 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
7424 mouse-2 into unread-command-events, it is interpreted correctly.
7425
7426 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
7427 (image-toggle-display): Doc fix.
7428
7429 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
7430
7431 * textmodes/page.el (what-page): Use line-number-at-pos to
7432 calculate line number (Bug#6825).
7433
7434 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
7435
7436 * eshell/esh-mode.el (find-tag-interactive): Declare function.
7437 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
7438 Pass argument NO-DEFAULT to `find-tag-interactive'.
7439
7440 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
7441
7442 Lexical-binding cleanup.
7443
7444 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
7445 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
7446 * progmodes/ada-prj.el (ada-prj-initialize-values)
7447 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
7448 (ada-prj-show-value):
7449 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
7450 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
7451 (antlr-invalidate-context-cache, antlr-options-menu-filter)
7452 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
7453 * progmodes/bug-reference.el (bug-reference-push-button):
7454 * progmodes/fortran.el (fortran-line-length):
7455 * progmodes/glasses.el (glasses-change):
7456 * progmodes/octave-mod.el (octave-fill-paragraph):
7457 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
7458 (python-pdbtrack-grub-for-buffer, python-sentinel):
7459 * progmodes/sql.el (sql-save-connection):
7460 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
7461 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
7462 Mark unused parameters.
7463
7464 * progmodes/compile.el (compilation--flush-directory-cache)
7465 (compilation--flush-parse, compile-internal): Mark unused parameters.
7466 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
7467 (compilation-next-error-function): Remove unused variable `timestamp'.
7468
7469 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
7470 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
7471
7472 * progmodes/dcl-mode.el (dcl-end-of-command):
7473 Remove unused variable `start'.
7474 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
7475 (dcl-option-value-basic, dcl-option-value-offset)
7476 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
7477 Mark unused parameters.
7478 (dcl-save-local-variable): Remove unused variable `val'.
7479 (mode): Declare.
7480
7481 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
7482 Mark unused parameters.
7483 (delphi-ignore-changes): Move before first use.
7484 (delphi-charset-token-at): Remove unused variable `start'.
7485 (delphi-else-start): Remove unused variable `if-count'.
7486 (delphi-comment-block-start, delphi-comment-block-end):
7487 Remove unused variable `kind'.
7488 (delphi-indent-line): Remove unused variable `new-point'.
7489
7490 * progmodes/ebrowse.el (ebrowse-files-list)
7491 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
7492 Mark unused parameters. Don't quote `lambda'.
7493 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
7494 Don't quote `lambda'.
7495 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
7496 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
7497 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
7498 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
7499 Use `ignore-errors'.
7500 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
7501 (ebrowse-view/find-file-and-search-pattern)
7502 (ebrowse-view/find-member-declaration/definition):
7503 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
7504 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
7505 Rename parameter PREFIX-ARG to PREFIX.
7506 (ebrowse-tags-read-name): Remove unused variables `start' and
7507 `member-info'.
7508 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
7509 to `tags-file'.
7510
7511 * progmodes/etags.el (local-find-tag-hook): Declare.
7512 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
7513 Mark unused parameters.
7514
7515 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
7516 (executable-interpret): Mark unused parameter.
7517
7518 * progmodes/flymake.el (flymake-process-sentinel)
7519 (flymake-after-change-function)
7520 (flymake-create-temp-with-folder-structure)
7521 (flymake-get-include-dirs-dot): Mark unused parameters.
7522 (flymake-safe-delete-directory): Remove unused variable `err'.
7523
7524 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
7525 (speedbar-timer-fn, speedbar-line-text)
7526 (speedbar-change-expand-button-char, speedbar-delete-subblock)
7527 (speedbar-center-buffer-smartly): Declare functions.
7528 (gdb-find-watch-expression): Remove unused variable `array'.
7529 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
7530 (gdb-starting): Mark unused parameters.
7531 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
7532 (gdb-table-string): Remove unused variable `res'.
7533 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
7534 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
7535 (gdb-display-buffer): Remove unused variable `cur-size'.
7536
7537 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
7538 allow lexical-binding compilation.
7539 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
7540 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
7541 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
7542 Mark unused parameters.
7543 (gud-gdb-marker-filter): Remove unused variable `match'.
7544 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
7545 lambda expressions and funcall them, instead of using `fset'.
7546
7547 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
7548 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
7549
7550 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
7551 variable `header-beg'; use `let'.
7552
7553 * progmodes/icon.el (indent-icon-exp): Remove unused variables
7554 `restart', `last-sexp' and `at-do'.
7555
7556 * progmodes/js.el (js--debug): Mark unused parameter.
7557 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
7558 (js--splice-into-items): Remove unused variable `item'.
7559 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
7560
7561 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
7562 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
7563 (makefile-complete): Remove unused variable `try'.
7564 (makefile-fill-paragraph, makefile-match-function-end):
7565 Mark unused parameters.
7566
7567 * progmodes/octave-inf.el (inferior-octave-complete):
7568 Remove unused variable `proc'.
7569 (inferior-octave-output-digest): Mark unused parameter.
7570
7571 * progmodes/perl-mode.el (perl-calculate-indent):
7572 Remove unused variable `err'.
7573
7574 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
7575 (prolog-indent-line): Mark unused parameters.
7576 (prolog-indent-line): Remove unused variable `beg'.
7577
7578 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
7579 (reporter-dont-compact-list): Declare.
7580
7581 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
7582 Remove unused variable `char'.
7583 (sh-debug): Mark unused parameter.
7584 (sh-get-indent-info): Remove unused variable `start'.
7585 (sh-calculate-indent): Remove unused variable `var'.
7586
7587 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
7588 (simula-electric-keyword): Remove unused variable `null'.
7589 (simula-search-backward, simula-search-forward): Remove unused
7590 variables `begin' and `end'.
7591
7592 * progmodes/vera-mode.el (vera-guess-basic-syntax):
7593 Remove unused variable `pos'.
7594 (vera-electric-tab, vera-comment-uncomment-region):
7595 Mark unused parameters.
7596 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
7597
7598 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
7599
7600 * emacs-lisp/package.el (package--builtins, package-alist)
7601 (package-load-descriptor, package-built-in-p, package-activate)
7602 (define-package, package-installed-p)
7603 (package-compute-transaction, package-buffer-info)
7604 (package--push): Doc fix. Distinguish more clearly between
7605 version strings and version lists.
7606
7607 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
7608
7609 Lexical-binding cleanup.
7610
7611 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
7612 (5x5-make-mutate-best):
7613 * play/fortune.el (fortune-in-buffer):
7614 * play/gomoku.el (gomoku-init-display):
7615 * play/solitaire.el (solitaire, solitaire-do-check):
7616 * play/tetris.el (tetris-default-update-speed-function):
7617 Mark unused parameters.
7618
7619 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
7620 (bubbles--shift): Remove unused variable `char-org'.
7621 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
7622 (bubbles--show-images): Remove unused variable `char'.
7623
7624 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
7625 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
7626 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
7627 (decipher-analyze-buffer): Use ?\s.
7628 (decipher-make-checkpoint): Remove unused variable `mapping'.
7629
7630 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
7631
7632 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
7633 Remove unused variable `result'; use `let'.
7634
7635 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
7636 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
7637 (gametree-children-shown-p, gametree-compute-reduced-score):
7638 Use `ignore-errors'.
7639
7640 * play/handwrite.el (ps-lpr-switches): Declare.
7641 (handwrite): Remove unused variables `pmin' and `lastp'.
7642
7643 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
7644
7645 * play/landmark.el (landmark-init-display)
7646 (landmark-update-naught-weights): Mark unused parameters.
7647 (landmark-y): Remove unused variable `noise'. Simplify.
7648 (landmark-human-plays): Remove unused variable `score'.
7649
7650 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
7651 (mpuz-try-proposal): Remove unused variable `game'.
7652
7653 * play/zone.el (life-patterns): Declare.
7654
7655 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
7656
7657 * vc/vc.el (ediff-vc-internal): Declare function.
7658
7659 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7660
7661 * shell.el: Use lexical-binding and std completion UI.
7662 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
7663 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
7664 comint-preoutput-filter-functions rather than on
7665 comint-output-filter-functions.
7666 (shell-command-completion, shell--command-completion-data)
7667 (shell-filename-completion, shell-environment-variable-completion)
7668 (shell-c-a-p-replace-by-expanded-directory): New functions.
7669 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
7670 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
7671 (shell-dynamic-complete-environment-variable): Use them.
7672 (shell-dynamic-complete-as-environment-variable)
7673 (shell-dynamic-complete-as-command): Remove.
7674 (shell-match-partial-variable): Match past point.
7675 * comint.el: Clean up use of completion-at-point-functions.
7676 (comint-completion-at-point): New function.
7677 (comint-mode): Use it completion-at-point-functions.
7678 (comint-dynamic-complete): Make it obsolete.
7679 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
7680 (comint-c-a-p-replace-by-expanded-history): New function.
7681 (comint-dynamic-complete-functions)
7682 (comint-replace-by-expanded-history): Use it.
7683 * minibuffer.el (completion-table-with-terminator): Allow dynamic
7684 termination strings. Try harder to avoid second try-completion.
7685 (completion-in-region-mode-map): Disable bindings that don't work yet.
7686
7687 * comint.el: Use lexical-binding. Require CL.
7688 (comint-dynamic-complete-functions): Use comint-filename-completion.
7689 (comint-completion-addsuffix): Tweak custom type.
7690 (comint-filename-completion, comint--common-suffix)
7691 (comint--common-quoted-suffix, comint--table-subvert)
7692 (comint--complete-file-name-data): New functions.
7693 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
7694 (comint-dynamic-list-filename-completions): Use them.
7695 (comint-dynamic-simple-complete): Make obsolete.
7696
7697 * minibuffer.el (completion-in-region-mode):
7698 Keep completion-in-region-mode--predicate global.
7699 (completion-in-region--postch):
7700 Assume completion-in-region-mode--predicate is not null.
7701
7702 * progmodes/flymake.el (flymake-start-syntax-check-process):
7703 Obey `dir'. Simplify.
7704
7705 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
7706 we're in VC after all.
7707
7708 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
7709
7710 * vc/vc.el (vc-diff-build-argument-list-internal)
7711 (vc-version-ediff, vc-ediff): New commands.
7712 (vc-version-diff): Use vc-diff-build-argument-list-internal.
7713
7714 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7715
7716 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
7717 add sanity check.
7718
7719 * obsolete/erc-hecomplete.el: Make obsolete.
7720 * obsolete/: Standardize obsolescence info in the header.
7721
7722 2011-04-20 Glenn Morris <rgm@gnu.org>
7723
7724 * calendar/solar.el (solar-horizontal-coordinates):
7725 Use the longitude argument rather than `calendar-longitude'.
7726 (solar-date-next-longitude): Remove unused locals.
7727
7728 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7729
7730 * whitespace.el: New version 13.2.1.
7731
7732 2011-04-20 felix <EmacsWiki> (tiny change)
7733
7734 * whitespace.el (global-whitespace-mode): Keep highlight when
7735 switching between major modes on a file.
7736
7737 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7738
7739 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
7740 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
7741 multi-line comments as well.
7742
7743 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
7744
7745 Lexical-binding cleanup.
7746
7747 * arc-mode.el (archive-mode-revert):
7748 * cmuscheme.el (scheme-interactively-start-process):
7749 * custom.el (custom-initialize-delay):
7750 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
7751 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
7752 * emacs-lock.el (emacs-lock-clear-sentinel):
7753 * ezimage.el (defezimage):
7754 * follow.el (follow-avoid-tail-recenter):
7755 * fringe.el (set-fringe-mode-1):
7756 * generic-x.el (bat-generic-mode-compile):
7757 * help-mode.el (help-info-variable, help-do-xref)
7758 (help-mode-revert-buffer):
7759 * help.el (view-emacs-todo):
7760 * iswitchb.el (iswitchb-completion-help):
7761 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
7762 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
7763 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
7764 * locate.el (locate-update):
7765 * longlines.el (longlines-encode-region)
7766 (longlines-after-change-function):
7767 * outline.el (outline-isearch-open-invisible):
7768 * ps-def.el (declare-function, charset-dimension, char-width)
7769 (encode-char):
7770 * ps-mule.el (ps-mule-plot-string):
7771 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
7772 (recentf-edit-list-select, recentf-edit-list-validate)
7773 (recentf-open-files-action):
7774 * rect.el (delete-whitespace-rectangle-line)
7775 (rectangle-number-line-callback):
7776 * register.el (window-configuration-to-register)
7777 (frame-configuration-to-register):
7778 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
7779 * select.el (xselect-convert-to-string, xselect-convert-to-length)
7780 (xselect-convert-to-targets, xselect-convert-to-delete)
7781 (xselect-convert-to-filename, xselect-convert-to-charpos)
7782 (xselect-convert-to-lineno, xselect-convert-to-colno)
7783 (xselect-convert-to-os, xselect-convert-to-host)
7784 (xselect-convert-to-user, xselect-convert-to-class)
7785 (xselect-convert-to-name, xselect-convert-to-integer)
7786 (xselect-convert-to-atom, xselect-convert-to-identity):
7787 * subr.el (declare, ignore, process-kill-without-query)
7788 (text-clone-maintain):
7789 * terminal.el (te-get-char, te-tic-sentinel):
7790 * tool-bar.el (tool-bar-make-keymap):
7791 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
7792 * type-break.el (type-break-mode, type-break-noninteractive-query):
7793 * view.el (View-back-to-mark):
7794 * wid-browse.el (widget-browse-action, widget-browse-widget)
7795 (widget-browse-widgets, widget-browse-sexp):
7796 * widget.el (define-widget-keywords):
7797 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
7798 Mark unused parameters.
7799
7800 * align.el (align-adjust-col-for-rule): Mark unused parameter.
7801 (align-areas): Remove unused variable `look'.
7802 (align-region): Remove unused variables `real-end' and `pos-list'.
7803
7804 * apropos.el (apropos-score-doc): Remove unused variable `i'.
7805
7806 * bindings.el (mode-line-modified, mode-line-remote):
7807 Mark unused parameters.
7808 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
7809
7810 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
7811 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
7812
7813 * comint.el (comint-history-isearch-pop-state)
7814 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
7815 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
7816 (comint-substitute-in-file-name): Doc fix.
7817
7818 * completion.el (cmpl-statistics-block): Mark unused parameter.
7819 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
7820 (save-completions-to-file, load-completions-from-file):
7821 Remove unused local variable `e'.
7822
7823 * composite.el (compose-chars): Remove unused variable `len'.
7824 (lgstring-insert-glyph): Remove unused variable `g'.
7825 (compose-glyph-string): Remove unused variables `ascent',
7826 `descent', `lbearing' and `rbearing'.
7827 (compose-glyph-string-relative): Remove unused variables
7828 `lbearing', `rbearing' and `wadjust'.
7829 (compose-gstring-for-graphic): Remove unused variables `header',
7830 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
7831 (compose-gstring-for-terminal): Remove unused variables `header'
7832 and `nchars'. Use `let', not `let*'.
7833
7834 * cus-edit.el (Custom-set, Custom-save, custom-reset)
7835 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
7836 (Custom-buffer-done, custom-buffer-create-internal)
7837 (custom-browse-visibility-action, custom-browse-group-tag-action)
7838 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
7839 (widget-magic-mouse-down-action, custom-toggle-parent)
7840 (custom-add-parent-links, custom-toggle-hide-variable)
7841 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
7842 (custom-toggle-hide-face, face, hook, custom-group-link-action)
7843 (custom-face-menu-create, custom-variable-menu-create, get)
7844 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
7845 (custom-reset-standard-save-and-update): Remove unused variable `value'.
7846 (customize-apropos): Remove unused variable `tests'.
7847 (custom-group-value-create): Remove unused variable `hidden-p'.
7848 (sort-fold-case): Declare.
7849
7850 * cus-theme.el (custom-reset-standard-faces-list)
7851 (custom-reset-standard-variables-list): Declare.
7852 (customize-create-theme, custom-theme-revert, custom-theme-write)
7853 (custom-theme-choose-mode, customize-themes, custom-theme-save):
7854 Mark unused parameters.
7855
7856 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
7857
7858 * delim-col.el (delimit-columns-max): Move defvar before first use.
7859
7860 * descr-text.el (describe-char-categories): Don't quote `lambda'.
7861 (describe-char): Don't quote `lambda'. Mark unused parameter.
7862
7863 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
7864 (auto-insert): Declare.
7865 (desktop-restore-file-buffer): Rename desktop-* parameters;
7866 mark unused ones.
7867 (desktop-create-buffer): Rename desktop-* parameters and bind them.
7868 (desktop-buffer): Rename desktop-* parameters.
7869
7870 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
7871 (dframe-reposition-frame-xemacs, dframe-help-echo)
7872 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
7873 Mark unused parameters.
7874
7875 * dired-aux.el (backup-extract-version-start, overwrite-query)
7876 (overwrite-backup-query, rename-regexp-query)
7877 (rename-non-directory-query): Declare.
7878 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
7879 (dired-add-entry): Remove unused variable `orig-file-name'.
7880 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
7881 Use parameter PRESERVE-TIME instead of accessing dynamic variable
7882 `dired-copy-preserve-time' directly.
7883 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
7884 (dired-insert-subdir-newpos): Rename unused variable `pos'.
7885
7886 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
7887 (dired-virtual-revert, dired-make-relative-symlink):
7888 Mark unused parameters.
7889 (manual-program): Declare.
7890 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
7891 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
7892 wrapped in `with-no-warnings' to avoid replacing one warning by another.
7893
7894 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
7895
7896 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
7897
7898 * echistory.el (electric-history-in-progress, Helper-return-blurb):
7899 Declare.
7900
7901 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
7902
7903 * electric.el (Electric-command-loop): Rename parameter
7904 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
7905
7906 * expand.el (expand-in-literal): Remove unused variable `here'.
7907
7908 * facemenu.el (facemenu-add-new-color):
7909 Remove unused variable `docstring'.
7910
7911 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
7912 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
7913 (face-attr-construct): Mark unused parameter. Doc fix.
7914 (read-color): Remove unused variable `hex-string'.
7915
7916 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
7917 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
7918 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
7919 (display-buffer-other-frame): Remove unused variable `old-window'.
7920 (kill-buffer-hook): Declare.
7921 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
7922 Mark unused parameters.
7923 (after-find-file): Pass 1 to `auto-save-mode', not t.
7924
7925 * files-x.el (auto-insert): Declare.
7926 (modify-file-local-variable-prop-line): Remove unused variable `val'.
7927
7928 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
7929 variable `buf'. Mark unused parameter.
7930 (find-lisp-insert-directory): Mark unused parameter.
7931
7932 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
7933 (format-encode-region): Remove unused variables `cur-buf' and `result'.
7934 (format-common-tail): Remove, unused.
7935 (format-deannotate-region): Remove unused variable `loc'.
7936 (format-annotate-region): Remove unused variable `p'.
7937 (format-annotate-single-property-change): Remove unused variables
7938 `default' and `tail'.
7939
7940 * forms.el (read-file-filter): Declare.
7941 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
7942
7943 * frame.el (frame-creation-function-alist): Mark unused parameter.
7944 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
7945
7946 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
7947 Remove unused parameters.
7948 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
7949 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
7950
7951 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
7952 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
7953 (hfy-prepare-tag-map): Mark unused parameters.
7954 (htmlfontify-buffer): Use `called-interactively-p'.
7955
7956 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
7957 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
7958 (ibuffer-do-occur): Mark unused parameters.
7959 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
7960 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
7961
7962 * ibuffer.el: Don't quote `lambda'.
7963 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
7964 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
7965 Mark unused parameters.
7966
7967 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
7968 (ido-completing-read): Mark unused parameters.
7969 (ido-copy-current-word): Mark unused parameters;
7970 remove unused variable `name'.
7971 (ido-sort-merged-list): Remove unused parameter `dirs'.
7972
7973 * ielm.el (ielm-input-sender): Mark unused parameter.
7974 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
7975 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
7976 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
7977 `ielm-string' as a dynamic variable accessible from the IELM prompt.
7978 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
7979
7980 * image-dired.el (image-dired-display-thumbs): Remove unused
7981 variables `curr-file' and `count'.
7982 (image-dired-remove-tag): Remove unused variable `start'.
7983 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
7984 variable `curr-file'
7985 (image-dired-rotate-original): Remove unused variable `temp-file'.
7986 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
7987 Remove unused variable `file'.
7988 (image-dired-gallery-generate): Remove unused variable `curr'.
7989 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
7990
7991 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
7992
7993 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
7994
7995 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
7996
7997 * isearch.el (minibuffer-history-symbol): Declare.
7998 (isearch-edit-string): Remove unused variable `err'.
7999 (isearch-message-prefix, isearch-message-suffix):
8000 Mark unused parameters.
8001
8002 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
8003
8004 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
8005
8006 * makesum.el (double-column): Remove unused variable `cnt'.
8007
8008 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
8009 (ido-ignore-item-temp-list): Declare.
8010
8011 * mouse-drag.el (mouse-drag-throw): Remove unused variables
8012 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
8013 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
8014 (mouse-drag-drag): Remove unused variables `mouse-delta' and
8015 `mouse-col-delta'.
8016
8017 * mouse-sel.el (mouse-extend-internal):
8018 Remove unused variable `orig-window-frame'.
8019
8020 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
8021 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
8022 Move declarations before first use.
8023 (pcomplete-opt): Mark unused parameters; doc fix.
8024
8025 * proced.el (proced-revert): Mark unused parameter.
8026 (proced-send-signal): Remove unused variable `err'.
8027
8028 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
8029 Rename parameter PREFIX-ARG to ARG.
8030 (ps-basic-plot-string, ps-basic-plot-whitespace):
8031 Mark unused parameters.
8032
8033 * replace.el (replace-count): Define.
8034 (occur-revert-function): Mark unused parameters.
8035 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
8036 (isearch-case-fold-search, isearch-string): Declare.
8037 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
8038 bind `case-fold-search'. Remove unused variables `beg' and `end',
8039 and simplify.
8040 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
8041 COUNT and bind `replace-count'.
8042 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
8043 to COUNT.
8044
8045 * savehist.el (print-readably, print-string-length): Declare.
8046
8047 * shadowfile.el (shadow-expand-cluster-in-file-name):
8048 Remove unused variable `cluster'.
8049 (shadow-copy-file): Remove unused variable `i'.
8050 (shadow-noquery, shadow-clusters, shadow-site-cluster)
8051 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
8052 (shadow-define-literal-group, shadow-define-regexp-group)
8053 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
8054
8055 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
8056 (shell): Use `called-interactively-p'.
8057 (shell-directory-tracker): Remove unused variable `chdir-failure'.
8058
8059 * simple.el (compilation-context-lines, comint-file-name-quote-list)
8060 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
8061 (delete-backward-char): Remove unused variable `ocol'.
8062 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
8063 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
8064 (event-apply-hyper-modifier, event-apply-shift-modifier)
8065 (event-apply-control-modifier, event-apply-meta-modifier):
8066 Mark unused parameters.
8067 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
8068 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
8069
8070 * speedbar.el (speedbar-ignored-directory-expressions)
8071 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
8072 (speedbar-find-file, speedbar-dir-follow)
8073 (speedbar-directory-buttons-follow, speedbar-tag-find)
8074 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
8075 (speedbar-buffers-line-directory, speedbar-buffer-click):
8076 Mark unused parameters.
8077 (speedbar-tag-file): Remove unused variable `mode'.
8078 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
8079
8080 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
8081
8082 * talk.el (talk): Remove unused variable `display'.
8083
8084 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
8085 (tar-write-region-annotate): Mark unused parameter.
8086
8087 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
8088 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
8089 Declare them, wrapped in `with-no-warnings' to avoid replacing one
8090 warning by another.
8091
8092 * time-stamp.el (time-stamp-string-preprocess):
8093 Remove unused variable `require-padding'.
8094
8095 * tree-widget.el (widget-glyph-enable): Declare.
8096 (tree-widget-action): Mark unused parameter.
8097
8098 * w32-fns.el (x-get-selection): Mark unused parameter.
8099 (autoload-make-program, generated-autoload-file): Declare.
8100
8101 * wdired.el (wdired-revert): Mark unused parameters.
8102 (wdired-xcase-word): Remove unused variable `err'.
8103
8104 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
8105 (whitespace-help-scroll): Remove unused variable `data-help'.
8106
8107 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
8108 (widget-image-insert, widget-after-change, default)
8109 (widget-default-format-handler, widget-default-notify)
8110 (widget-default-prompt-value, widget-info-link-action)
8111 (widget-url-link-action, widget-function-link-action)
8112 (widget-variable-link-action, widget-file-link-action)
8113 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
8114 (widget-field-prompt-internal, widget-field-action, widget-field-match)
8115 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
8116 (widget-insert-button-action, widget-delete-button-action, visibility)
8117 (widget-documentation-link-action, widget-documentation-string-action)
8118 (widget-const-prompt-value, widget-regexp-match, symbol)
8119 (widget-coding-system-prompt-value)
8120 (widget-key-sequence-value-to-external, sexp)
8121 (widget-sexp-value-to-internal, character, vector, cons)
8122 (widget-choice-prompt-value, widget-boolean-prompt-value)
8123 (widget-color--choose-action): Mark unused parameters.
8124 (widget-item-match-inline, widget-choice-match-inline)
8125 (widget-checklist-match, widget-checklist-match-inline)
8126 (widget-group-match): Rename parameter VALUES to VALS.
8127 (widget-field-value-set): Remove unused variable `size'.
8128 (widget-color-action): Remove unused variables `value' and `start'.
8129
8130 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
8131 variable `dir'. Doc fix.
8132 (windmove-find-other-window): Don't pass it.
8133
8134 * window.el (count-windows): Mark unused parameter.
8135 (bw-adjust-window): Remove unused variable `err'.
8136
8137 * woman.el (woman-file-name): Remove unused variable `default'.
8138 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
8139 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
8140 (global-font-lock-mode): Declare.
8141 (woman-decode-region): Mark unused parameter.
8142 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
8143
8144 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
8145 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
8146 (x-dnd-handle-moz-url): Remove unused variable `title'.
8147 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
8148
8149 * xml.el (xml-parse-tag, xml-parse-attlist):
8150 Remove unused variable `pos'.
8151
8152 2011-04-19 Glenn Morris <rgm@gnu.org>
8153
8154 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
8155 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8156 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8157 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
8158 * calendar/cal-html.el (cal-html-insert-minical):
8159 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
8160 (calendar-mark-date-pattern):
8161 Prefix "unused" locals.
8162
8163 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
8164 optional argument `style'.
8165
8166 * calendar/appt.el (appt-make-list):
8167 * calendar/cal-china.el (calendar-chinese-date-string):
8168 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
8169 (diary-hebrew-yahrzeit):
8170 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
8171 * calendar/calendar.el (calendar-generate-window):
8172 * calendar/time-date.el (time-to-days):
8173 Remove unused local variables.
8174
8175 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
8176
8177 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
8178 glyphless-char-display table.
8179 (tabulated-list-glyphless-char-display): New var.
8180
8181 2011-04-18 Sam Steingold <sds@gnu.org>
8182
8183 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
8184 to acknowledgments.
8185
8186 2011-04-17 Glenn Morris <rgm@gnu.org>
8187
8188 * calendar/diary-lib.el (diary-sexp-entry):
8189 * calendar/holidays.el (holiday-sexp):
8190 Set debug-on-error rather than the removed stack-trace-on-error.
8191
8192 2011-04-16 Glenn Morris <rgm@gnu.org>
8193
8194 * progmodes/f90.el: Use lexical-binding.
8195 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
8196
8197 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8198
8199 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
8200 (mail-mode): Setup mailalias completion here instead.
8201 * mail/mailalias.el: Use lexical-binding.
8202 (pattern, mailalias-done): Declare dynamic.
8203 (mail-completion-at-point-function): New function, from mail-complete.
8204 (mail-complete): Use it.
8205 (mail-completion-expand): New function.
8206 (mail-get-names): Use it.
8207 (mail-directory, mail-directory-process, mail-directory-stream):
8208 Don't use `pattern' for lexically bound arg.
8209
8210 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
8211
8212 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
8213 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
8214 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
8215
8216 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
8217 (byte-save-window-excursion, byte-temp-output-buffer-setup)
8218 (byte-interactive-p): Define them again, for use when inlining
8219 old code.
8220
8221 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
8222
8223 * loadup.el: Use `string-to-number', not `string-to-int'.
8224
8225 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8226
8227 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
8228 gud-gdb-complete-command.
8229 (gud-gdb-completions): New function, from gud-gdb-complete-command.
8230 (gud-gdb-completion-at-point): New function.
8231 (gud-gdb-completions): Remove.
8232
8233 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
8234
8235 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
8236 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
8237 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
8238 whether `executable-find' is bound.
8239
8240 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
8241
8242 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8243
8244 * minibuffer.el (completion-in-region-mode-predicate)
8245 (completion-in-region-mode--predicate): New vars.
8246 (completion-in-region, completion-in-region--postch)
8247 (completion-in-region-mode): Use them.
8248 (completion--capf-wrapper): Also return the hook function.
8249 (completion-at-point, completion-help-at-point):
8250 Adjust and provide a predicate.
8251
8252 Preserve arg names for advice of subr and lexical functions (bug#8457).
8253 * help-fns.el (help-function-arglist): Consolidate the subr and
8254 new-byte-code cases. Add argument `preserve-names' to extract names
8255 from the docstring when needed.
8256 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
8257 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
8258 (ad-arglist): Use help-function-arglist's new arg.
8259 (ad-definition-type): Use cond.
8260
8261 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
8262
8263 * autorevert.el (auto-revert-handler):
8264 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
8265 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
8266 Don't quote lambda.
8267
8268 * image-mode.el (image-transform-set-scale):
8269 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
8270
8271 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8272
8273 * net/network-stream.el (network-stream-open-starttls): Only do
8274 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
8275 Upgrades via gnutls-cli are too slow to be done opportunistically.
8276
8277 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
8278
8279 * dframe.el (dframe-current-frame): Remove spurious quote.
8280
8281 2011-04-12 Glenn Morris <rgm@gnu.org>
8282
8283 * calendar/cal-tex.el (cal-tex-end-document):
8284 Try to automatically use latin1 input if needed.
8285
8286 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
8287 Don't try to cons a mark onto an empty element.
8288
8289 2011-04-11 Leo Liu <sdl.web@gmail.com>
8290
8291 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
8292 buffers.
8293 (ido-kill-buffer-at-head): Support killing virtual buffers.
8294
8295 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
8296
8297 * minibuffer.el (completion-show-inline-help): New var.
8298 (completion--do-completion, minibuffer-complete)
8299 (minibuffer-force-complete, minibuffer-complete-word):
8300 Inhibit minibuffer messages if completion-show-inline-help is nil.
8301
8302 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
8303 to avoid interference from inline help (Bug#5849).
8304
8305 2011-04-10 Leo Liu <sdl.web@gmail.com>
8306
8307 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
8308 Fix typo.
8309
8310 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
8311
8312 * image-mode.el (image-toggle-display-image): Signal an error if
8313 not in Image mode.
8314 (image-transform-mode, image-transform-resize)
8315 (image-transform-set-rotation): Doc fix.
8316 (image-transform-set-resize): Delete.
8317 (image-transform-set-scale, image-transform-fit-to-height)
8318 (image-transform-fit-to-width): Handle image-toggle-display-image
8319 and image-transform-resize directly.
8320
8321 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
8322
8323 * doc-view.el (doc-view-fit-width-to-window)
8324 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
8325 New functions for fitting the shown image to the Emacs window size.
8326 (doc-view-mode-map): Add bindings for the new functions.
8327
8328 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
8329
8330 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
8331 Fix typo in docstring.
8332
8333 2011-04-08 Eli Zaretskii <eliz@gnu.org>
8334
8335 * files.el (file-size-human-readable): Produce one digit after
8336 decimal, like "ls -lh" does.
8337
8338 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
8339 the file size representation.
8340
8341 * simple.el (list-processes): If async subprocesses are not
8342 available, error out with a clear error message.
8343
8344 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
8345
8346 * help.el (help-form-show): New function, to be called from C.
8347 Put help-form output in a buffer named differently than *Help*.
8348
8349 2011-04-08 Eli Zaretskii <eliz@gnu.org>
8350
8351 * files.el (file-size-human-readable): New function.
8352
8353 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
8354 computing the representation inline. Don't require `cl'.
8355
8356 2011-04-08 Glenn Morris <rgm@gnu.org>
8357
8358 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
8359
8360 * net/browse-url.el (browse-url-firefox):
8361 Test system-type, not system-configuration.
8362
8363 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
8364 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
8365 Use log-edit-empty-buffer-p. (Bug#7598)
8366
8367 * net/rlogin.el (rlogin-process-connection-type): Simplify.
8368 (rlogin-mode-map): Initialize in the defvar.
8369 (rlogin): Use ignore-errors.
8370
8371 * replace.el (occur-mode-map): Some fixes for menu items.
8372
8373 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8374
8375 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
8376
8377 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
8378
8379 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
8380 issuing unused warnings.
8381
8382 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
8383 macro directly.
8384
8385 * simple.el: Lisp reimplement of list-processes. Based on an
8386 earlier reimplementation by Leo Liu, but using tabulated-list.el.
8387 (process-menu-mode): New major mode.
8388 (list-processes--refresh, list-processes):
8389 (process-menu-visit-buffer): New functions.
8390
8391 * files.el (save-buffers-kill-emacs): Don't assume any return
8392 value of list-processes, which is undocumented anyway.
8393
8394 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
8395
8396 * emacs-lisp/tabulated-list.el: New file.
8397
8398 * emacs-lisp/package.el: Use Tabulated List mode.
8399 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
8400 (package-menu-mode): Derive from tabulated-list-mode. Set up the
8401 table format using Tabulated List mode variables.
8402 (package--push): New macro, replacing package-list-maybe-add.
8403 (package-menu--generate): Use package--push. Renamed from
8404 package--generate-package-list.
8405 (package-menu-refresh, list-packages): Use it.
8406 (package-menu--print-info): Rename from package-print-package.
8407 Return insertion data instead of inserting it directly.
8408 (package-menu-describe-package, package-menu-execute):
8409 Use tabulated-list-get-id.
8410 (package-menu-mark-delete, package-menu-mark-install)
8411 (package-menu-mark-unmark, package-menu-backup-unmark)
8412 (package-menu-mark-obsolete-for-deletion):
8413 Use tabulated-list-put-tag.
8414 (package--list-packages, package-menu-revert)
8415 (package-menu-get-package, package-menu-get-version)
8416 (package-menu-sort-by-column): Functions deleted.
8417 (package-menu-package-list, package-menu-sort-key): Vars deleted.
8418 (package-menu--status-predicate, package-menu--version-predicate)
8419 (package-menu--name-predicate)
8420 (package-menu--description-predicate): Handle arguments in the
8421 Tabulated List format.
8422 (package-list-packages-no-fetch): Call list-packages.
8423
8424 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
8425
8426 * files.el (after-find-file-from-revert-buffer): Remove variable.
8427 (after-find-file): Don't bind it.
8428 (revert-buffer-in-progress-p): New variable.
8429 (revert-buffer): Bind it.
8430 Pass nil for `after-find-file-from-revert-buffer'.
8431
8432 * saveplace.el (save-place-find-file-hook): Use new variable
8433 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
8434
8435 2011-04-06 Glenn Morris <rgm@gnu.org>
8436
8437 * Makefile.in (AUTOGEN_VCS): New variable.
8438 (autoloads): Use $AUTOGEN_VCS.
8439
8440 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
8441 * calendar/calendar.el (calendar-mode-map):
8442 Check for toolkit scroll bars. (Bug#8305)
8443
8444 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
8445
8446 * minibuffer.el (completion-in-region--postch)
8447 (completion-in-region-mode): Remove unnecessary messages.
8448
8449 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
8450
8451 * font-lock.el (font-lock-refresh-defaults):
8452 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
8453 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
8454
8455 * info.el (Info-directory-list, Info-read-node-name-2)
8456 (Info-split-parameter-string): Doc fixes.
8457 (Info-virtual-nodes): Reflow docstring.
8458 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
8459 (Info-apropos-toc-nodes, info-finder, Info-get-token)
8460 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
8461 Fix typos in docstrings.
8462 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
8463 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
8464 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
8465 (Info-restore-desktop-buffer): Mark unused parameters.
8466 (Info-directory-find-file, Info-directory-find-node)
8467 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
8468 (Info-virtual-index-find-node, Info-apropos-find-file)
8469 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
8470 Mark unused parameters; fix typos in docstrings.
8471 (Info-virtual-index): Remove unused local variable `nodename'.
8472
8473 2011-04-05 Deniz Dogan <deniz@dogan.se>
8474
8475 * net/rcirc.el: Update my e-mail address.
8476 (rcirc-mode-map): Remove M-o binding.
8477
8478 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
8479
8480 * startup.el (command-line): Save the cursor's theme-face
8481 directly, instead of using face-override-spec.
8482
8483 * custom.el (load-theme): Minor optimization in assigning faces.
8484
8485 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
8486
8487 * help-fns.el (describe-variable): Complete all variables having
8488 documentation, including keywords.
8489 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
8490
8491 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
8492
8493 Convert to lexical-binding.
8494
8495 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
8496 (bs--get-marked-string, bs--get-modified-string)
8497 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
8498 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
8499 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
8500
8501 * ehelp.el (electric-help-execute-extended)
8502 (electric-help-ctrl-x-prefix):
8503 * hexl.el (hexl-revert-buffer-function):
8504 * linum.el (linum-after-change, linum-after-scroll):
8505 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
8506
8507 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
8508
8509 2011-04-04 Daiki Ueno <ueno@unixuser.org>
8510
8511 * epa-dired.el:
8512 * epa-mail.el:
8513 * epa-hook.el:
8514 * epa-file.el:
8515 * epa.el:
8516 * epg.el: Use lexical binding.
8517
8518 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
8519
8520 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
8521
8522 * textmodes/flyspell.el (flyspell-word): Recognize default
8523 dictionary case for flyspell-mark-duplications-exceptions.
8524 Use regexp matching for languages.
8525 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
8526 default dictionary (Bug#7926).
8527
8528 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
8529
8530 * emacs-lisp/package.el (package--with-work-buffer):
8531 Recognize https URLs.
8532
8533 * net/network-stream.el: Move from gnus/proto-stream.el.
8534 Change prefix to network-stream throughout.
8535 (open-protocol-stream): Merge into open-network-stream, leaving
8536 open-protocol-stream as an alias. Handle nil BUFFER args.
8537
8538 * subr.el (open-network-stream): Move to net/network-stream.el.
8539
8540 2011-04-02 Glenn Morris <rgm@gnu.org>
8541
8542 * find-dired.el (find-exec-terminator): New option.
8543 (find-ls-option): Test for -ls support.
8544 (find-ls-subdir-switches): Test for -b in find-ls-option.
8545 (find-dired, find-grep-dired): Doc fixes.
8546 (find-dired): Use find-exec-terminator.
8547
8548 * find-dired.el (find-ls-option, find-ls-subdir-switches)
8549 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
8550 (find-name-arg): Remove purecopy.
8551
8552 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
8553 (grep-compute-defaults): Check for `-exec COMMAND +' support.
8554 Set grep-find-use-xargs, grep-find-command, and grep-find-template
8555 accordingly. Don't add the null-device if not needed.
8556
8557 * files.el (save-some-buffers): Doc fix.
8558
8559 2011-04-02 Eli Zaretskii <eliz@gnu.org>
8560
8561 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
8562
8563 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
8564
8565 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
8566 Use `dolist' rather than `mapcar'.
8567
8568 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8569
8570 Add lexical binding.
8571
8572 * subr.el (apply-partially): Use new closures rather than CL.
8573 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
8574 (dolist, dotimes): Use slightly different expansion for lexical code.
8575 (functionp): Move to C.
8576 (letrec): New macro.
8577 (with-wrapper-hook): Use it and apply-partially instead of CL.
8578 (eval-after-load): Preserve lexical-binding.
8579 (save-window-excursion, with-output-to-temp-buffer): Turn them
8580 into macros.
8581
8582 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
8583
8584 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
8585 than the arglist.
8586 (help-add-fundoc-usage): Don't add `Not documented'.
8587 (help-function-arglist): Handle closures, subroutines, and new
8588 byte-code-functions.
8589 (help-make-usage): Remove leading underscores.
8590 (describe-function-1): Handle closures.
8591 (describe-variable): Use special-variable-p for completion.
8592
8593 * files.el (lexical-binding): Declare safe.
8594
8595 * emacs-lisp/pcase.el: Don't use destructuring-bind.
8596 (pcase--memoize): Rename from pcase-memoize. Change weakness.
8597 (pcase): Add `let' pattern.
8598 Change memoization so it actually works.
8599 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
8600 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
8601 <let>: New case.
8602
8603 * emacs-lisp/macroexp.el: Use lexical binding.
8604 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
8605 Don't convert ' to #' without checking that it's indeed quoting
8606 a lambda.
8607
8608 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
8609 Use eval-sexp-add-defvars.
8610 (eval-sexp-add-defvars): New fun.
8611
8612 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
8613
8614 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
8615 Don't autoload.
8616 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
8617 than the internal `byte-compile-lambda'.
8618 (defmethod): Don't hide code under quotes.
8619 (eieio-defmethod): New `code' argument.
8620
8621 * emacs-lisp/eieio-comp.el: Remove.
8622
8623 * emacs-lisp/edebug.el (edebug-eval-defun)
8624 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
8625 (edebug-toggle): Avoid `eval'.
8626
8627 * emacs-lisp/disass.el (disassemble-internal): Handle new
8628 `closure' objects.
8629 (disassemble-1): Handle new byte codes.
8630
8631 * emacs-lisp/cl.el (pushnew): Silence warning.
8632
8633 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
8634 (cl-byte-compile-throw): Remove.
8635 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
8636
8637 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
8638 closures.
8639
8640 * emacs-lisp/cconv.el: New file.
8641
8642 * emacs-lisp/bytecomp.el: Use lexical binding instead of
8643 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
8644 (byte-compile-initial-macro-environment):
8645 Handle declare-function here.
8646 (byte-compile--lexical-environment): New var.
8647 (byte-stack-ref, byte-stack-set, byte-discardN)
8648 (byte-discardN-preserve-tos): New lap codes.
8649 (byte-interactive-p): Don't use any more.
8650 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
8651 New macros.
8652 (byte-compile-lapcode): Use them and handle new lap codes.
8653 (byte-compile-obsolete): Remove.
8654 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
8655 (byte-compile-arglist-warn): Check late def of inlinable funs.
8656 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
8657 since they should have been expanded by now.
8658 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
8659 (byte-compile-from-buffer): Remove unused second arg.
8660 (byte-compile-preprocess): New function.
8661 (byte-compile-toplevel-file-form): New function to distinguish
8662 file-form calls from outside from file-form calls from hunk-handlers.
8663 (byte-compile-file-form): Simplify.
8664 (byte-compile-file-form-defsubst): Remove.
8665 (byte-compile-file-form-defmumble): Simplify now that
8666 byte-compile-lambda always returns a byte-code-function.
8667 (byte-compile): Preprocess.
8668 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
8669 Remove, not used any more.
8670 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
8671 (byte-compile-make-args-desc): New funs.
8672 (byte-compile-lambda): Handle lexical functions. Always return
8673 a byte-code-function.
8674 (byte-compile-reserved-constants): New var, to make up room for
8675 closed-over variables.
8676 (byte-compile-constants-vector): Obey it.
8677 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
8678 (byte-compile-macroexpand-declare-function): New function.
8679 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
8680 byte-code-functions.
8681 (byte-compile-form): Check obsolescence here.
8682 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
8683 (byte-compile-variable-ref): Remove.
8684 (byte-compile-dynamic-variable-op): New fun.
8685 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
8686 (byte-compile-variable-set): New funs.
8687 (byte-compile-discard): Add 2 args.
8688 (byte-compile-stack-ref, byte-compile-stack-set)
8689 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
8690 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
8691 macroexpand-all instead.
8692 (byte-compile-quote-form): Remove.
8693 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
8694 (byte-compile-bind, byte-compile-unbind): New funs.
8695 (byte-compile-let): Handle let* and lexical binding.
8696 (byte-compile-let*): Remove.
8697 (byte-compile-catch, byte-compile-unwind-protect)
8698 (byte-compile-track-mouse, byte-compile-condition-case):
8699 Handle a new :fun-body form, used for lexical scoping.
8700 (byte-compile-save-window-excursion)
8701 (byte-compile-with-output-to-temp-buffer): Remove.
8702 (byte-compile-defun): Simplify.
8703 (byte-compile-stack-adjustment): New fun.
8704 (byte-compile-out): Use it.
8705 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
8706
8707 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
8708 handler any more.
8709
8710 * emacs-lisp/byte-opt.el: Use lexical binding.
8711 (byte-inline-lapcode): Remove (to bytecomp).
8712 (byte-compile-inline-expand): Pay attention to inlining to/from
8713 lexically bound code.
8714 (byte-compile-unfold-lambda): Don't handle byte-code-functions
8715 any more.
8716 (byte-optimize-form-code-walker): Don't handle save-window-excursion
8717 any more and don't call compiler-macros.
8718 (byte-compile-splice-in-already-compiled-code): Remove.
8719 (byte-code): Don't inline any more.
8720 (disassemble-offset): Receive `bytes' as argument rather than via
8721 dynamic scoping.
8722 (byte-compile-tag-number): Declare before first use.
8723 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
8724 `return' even if make-spliceable.
8725 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
8726 obsolete interactive-p.
8727 (byte-optimize-lapcode): Optimize new lap-codes.
8728 Don't trip up on new form of `byte-constant' lap code.
8729
8730 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
8731
8732 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
8733
8734 * custom.el (custom-initialize-default, custom-declare-variable):
8735 Use `defvar'.
8736
8737 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
8738 New variables.
8739 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
8740 (COMPILE_FIRST): Add macroexp and cconv.
8741 * makefile.w32-in: Mirror changes in Makefile.in.
8742
8743 * vc/cvs-status.el:
8744 * vc/diff-mode.el:
8745 * vc/log-edit.el:
8746 * vc/log-view.el:
8747 * vc/smerge-mode.el:
8748 * textmodes/bibtex-style.el:
8749 * textmodes/css.el:
8750 * startup.el:
8751 * uniquify.el:
8752 * minibuffer.el:
8753 * newcomment.el:
8754 * reveal.el:
8755 * server.el:
8756 * mpc.el:
8757 * emacs-lisp/smie.el:
8758 * doc-view.el:
8759 * dired.el:
8760 * abbrev.el: Use lexical binding.
8761
8762 2011-04-01 Eli Zaretskii <eliz@gnu.org>
8763
8764 * info.el (info-display-manual): New function.
8765
8766 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8767
8768 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
8769
8770 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
8771
8772 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
8773 an entry for that server in rcirc-authinfo. (Bug#8385)
8774
8775 2011-03-31 Glenn Morris <rgm@gnu.org>
8776
8777 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
8778
8779 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
8780
8781 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
8782
8783 * progmodes/python.el (python-default-interpreter)
8784 (python-python-command-args, python-jython-command-args)
8785 (python-which-shell, python-which-args, python-which-bufname)
8786 (python-file-queue, python-comint-output-filter-function)
8787 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
8788 variables and functions.
8789
8790 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
8791
8792 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
8793 (completion-in-region-mode): New minor mode.
8794 (completion-in-region): Use it.
8795 (completion-in-region--data, completion-in-region-mode-map): New vars.
8796 (completion-in-region--postch): New function.
8797 (completion--capf-misbehave-funs, completion--capf-safe-funs):
8798 New vars.
8799 (completion--capf-wrapper): New function.
8800 (completion-at-point): Use it to track well-behavedness of
8801 hook functions.
8802 (completion-help-at-point): New command.
8803
8804 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
8805
8806 * vc/add-log.el (add-change-log-entry): Don't use whitespace
8807 syntax class to search for whitespace on a single line
8808 (Message-ID: <4D938140.4030905@redhat.com>).
8809
8810 2011-03-30 Leo Liu <sdl.web@gmail.com>
8811
8812 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
8813 New commands.
8814 (edit-abbrevs-map): Bind them here.
8815 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
8816
8817 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
8818
8819 * allout.el (allout-hide-by-annotation, allout-flag-region):
8820 Reduce possibility of overlay leakage by making them volatile.
8821
8822 * allout-widgets.el (allout-widgets-tally): Define as nil so the
8823 hash is not shared between buffers. Mode initialization is
8824 responsible for giving it a useful starting value.
8825 (allout-item-span): Reduce possibility of overlay leakage by
8826 making them volatile.
8827 (allout-widgets-count-buttons-in-region): Add diagnostic function
8828 for tracking down button overlay leaks.
8829
8830 2011-03-29 Leo Liu <sdl.web@gmail.com>
8831
8832 * ido.el (ido-read-internal): Use the default history var
8833 minibuffer-history if no HISTORY is specified.
8834
8835 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
8836
8837 * net/imap.el (imap-shell-open, imap-process-connection-type):
8838 Use imap-process-connection-type for 'shell' streams as well as
8839 Kerberos, SSL, other subprocesses.
8840
8841 2011-03-28 Leo Liu <sdl.web@gmail.com>
8842
8843 * abbrev.el (abbrev-table-empty-p): New function.
8844 (prepare-abbrev-list-buffer): Place empty abbrev tables after
8845 nonempty ones. (Bug#5937)
8846
8847 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
8848
8849 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
8850
8851 2011-03-27 Leo Liu <sdl.web@gmail.com>
8852
8853 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
8854 for foreground and background colors.
8855 (ansi-color-make-color-map): Adapt.
8856
8857 2011-03-25 Leo Liu <sdl.web@gmail.com>
8858
8859 * midnight.el (midnight-time-float): Remove. Note it calculates
8860 the microsecond component incorrectly and seconds-to-time does the
8861 same job.
8862 Remove redundant (require 'timer).
8863
8864 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
8865 (ido-completions): Remove unused arguments. (Bug#8329)
8866
8867 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8868
8869 * minibuffer.el (completion--flush-all-sorted-completions):
8870 Remove itself from hook.
8871 (completion-at-point): Let the functions perform the completion
8872 immediately and return nil or t.
8873 * comint.el (comint-dynamic-complete-functions): Now identical to
8874 completion-at-point-functions.
8875 (comint-dynamic-list-input-ring): Remove unused var `index'.
8876 (comint--match-partial-filename, comint--unquote&expand-filename):
8877 New funs, split from comint-match-partial-filename.
8878 (comint-dynamic-complete): Use completion-at-point.
8879 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
8880
8881 2011-03-24 Drew Adams <drew.adams@oracle.com>
8882
8883 * thingatpt.el: Support `defun'.
8884
8885 2011-03-23 Leo Liu <sdl.web@gmail.com>
8886
8887 * abbrevlist.el: Move to obsolete/abbrevlist.el.
8888
8889 * help-mode.el (help-mode-finish): Tweak regexp.
8890
8891 2011-03-23 Glenn Morris <rgm@gnu.org>
8892
8893 * eshell/esh-opt.el (eshell-eval-using-options):
8894 Do not bind unused local variable `eshell-option-stub'.
8895
8896 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
8897
8898 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
8899
8900 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
8901 keymap variable in `with-no-warnings' to avoid a warning when the
8902 keymap has been already `defconst'ed.
8903
8904 2011-03-22 Leo Liu <sdl.web@gmail.com>
8905
8906 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
8907 encode all chars in abbrevs; otherwise use emacs-mule or
8908 utf-8-emacs. (Bug#8308)
8909
8910 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
8911
8912 * simple.el (backward-delete-char-untabify):
8913 Avoid warning about using `delete-backward-char'.
8914
8915 * image.el (image-type-file-name-regexps): Make it variable.
8916 `imagemagick-register-types' modifies it, and the user may want
8917 to add new extensions for known image types.
8918 (imagemagick-register-types): Throw error if not using ImageMagick.
8919
8920 2011-03-22 Leo Liu <sdl.web@gmail.com>
8921
8922 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
8923 located before rcirc-prompt-end-marker.
8924 (rcirc-complete): Error if point is not after rcirc prompt.
8925 Handle the case when table is nil.
8926 (rcirc-user-authenticated): Define to fix compiler warning.
8927
8928 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
8929
8930 * custom.el (custom--inhibit-theme-enable): Make it affect only
8931 custom-theme-set-variables and custom-theme-set-faces.
8932 (provide-theme): Ignore custom--inhibit-theme-enable.
8933 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
8934 (custom-enabling-themes): Delete variable.
8935 (enable-theme): Accept only loaded themes as arguments.
8936 Ignore the special custom-enabled-themes variable.
8937 (custom-enabled-themes): Forbid themes from setting this.
8938 Eliminate use of custom-enabling-themes.
8939 (custom-push-theme): Quote "changed" custom var entry.
8940
8941 2011-03-21 Leo Liu <sdl.web@gmail.com>
8942
8943 * ido.el (ido-read-internal): Add ido-selected to history instead
8944 of user input.
8945
8946 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
8947
8948 * subr.el (deferred-action-list, deferred-action-function):
8949 Mark obsolete.
8950
8951 2011-03-21 Leo Liu <sdl.web@gmail.com>
8952
8953 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
8954 change on 2011-02-13 (bug#8309).
8955
8956 * minibuffer.el (read-file-name-function): Change default value.
8957 (read-file-name--defaults): Rename from read-file-name-defaults.
8958 (read-file-name-default): Rename from read-file-name.
8959 (read-file-name): Call read-file-name-function.
8960
8961 2011-03-21 Glenn Morris <rgm@gnu.org>
8962
8963 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
8964 Doc fixes.
8965
8966 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
8967
8968 * cus-theme.el: Add missing provide statement.
8969 (customize-create-theme): Extract theme value correctly.
8970 (custom-theme-visit-theme): Autoload.
8971 (customize-create-theme): Prompt before inserting default faces.
8972
8973 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
8974
8975 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
8976 units and musical notes.
8977
8978 2011-03-20 Leo <sdl.web@gmail.com>
8979
8980 * ido.el (ido-read-internal): Use completing-read-default.
8981 (ido-completing-read): Fix compatibility with completing-read.
8982
8983 2011-03-20 Christian Ohler <ohler@gnu.org>
8984
8985 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
8986 (ert-delete-all-tests): Use `called-interactively-p' rather than
8987 `interactive-p'.
8988 (ert--make-xrefs-region): Respect END.
8989
8990 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
8991
8992 * dired-aux.el (dired-create-directory): Signal an error if the
8993 directory already exists (Bug#8246).
8994
8995 * facemenu.el (list-colors-display): Call list-faces-display
8996 inside with-help-window.
8997 (list-colors-print): Use display property to align the final
8998 column, instead of checking window-width.
8999
9000 2011-03-19 Eli Zaretskii <eliz@gnu.org>
9001
9002 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
9003 windows-nt systems.
9004 (emerge-protect-metachars): Quote correctly for ms-dos and
9005 windows-nt systems.
9006
9007 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
9008
9009 * info.el (info-initialize): Replace all uses of `:' with
9010 path-separator for compatibility with non-Unix systems.
9011 Cache quoting of path-separator. (Bug#8258)
9012
9013 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
9014
9015 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
9016 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
9017 (mouse-avoidance-mode): Fix typos in docstrings.
9018
9019 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
9020
9021 * startup.el (package-subdirectory-regexp): Move from package.el.
9022 Omit \\` and \\', and let callers add them.
9023
9024 * emacs-lisp/package.el (package-strip-version)
9025 (package-load-all-descriptors): Add \\` and \\' to
9026 package-subdirectory-regexp before using it.
9027 (package-untar-buffer): New arg DIR; ensure that file untars only
9028 into this expected directory. Remove superfluous delete-region.
9029 (package-unpack): Caller changed.
9030 (package-tar-file-info): Use package-subdirectory-regexp.
9031
9032 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9033
9034 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
9035 diff-mode-shared-map (bug#8284).
9036 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
9037
9038 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9039
9040 * calendar/time-date.el (format-seconds): Use assoc instead of
9041 assoc-string, since assoc-string doesn't exist in XEmacs.
9042
9043 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
9044
9045 * custom.el (custom-known-themes): Reflow docstring.
9046 (custom-theme-load-path): Fix typo in docstring.
9047 (load-theme): Fix typo in error message.
9048 (custom-available-themes, custom-variable-theme-value):
9049 Use `let', not `let*'.
9050
9051 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9052
9053 * calc/README: Mention inclusion of musical notes.
9054
9055 * calc/calc-units.el (calc-lu-quant): Rename from
9056 `calc-logunits-quantity'.
9057 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
9058 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
9059 (calc-db): Rename from `calc-dblevel'.
9060 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
9061 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
9062 (calc-np): Rename from `calc-nplevel'.
9063 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
9064 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
9065 (calc-lu-plus): Rename from `calc-logunits-add'.
9066 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
9067 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
9068 (calc-lu-minus): Rename from `calc-logunits-sub'.
9069 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
9070 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
9071 (calc-lu-times): Rename from `calc-logunits-mul'.
9072 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
9073 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
9074 (calc-lu-divide): Rename from `calc-logunits-div'.
9075 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
9076 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
9077
9078 * calc/calc-ext.el (calc-init-extensions): Update the names of the
9079 functions being autoloaded.
9080
9081 * calc/calc.el (calc-lu-power-reference): Rename from
9082 `calc-logunits-power-reference'.
9083 (calc-lu-field-reference): Rename from
9084 `calc-logunits-field-reference'.
9085
9086 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
9087
9088 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9089
9090 * minibuffer.el (completion-all-sorted-completions):
9091 Use :completion-cycle-penalty text property if present.
9092
9093 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
9094
9095 * allout.el (allout-yank-processing): Adjust for new rebulleting
9096 regime so bullet being yanked is used without prompting the user
9097 for a choice.
9098
9099 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9100
9101 * startup.el (command-line): Warn the user that _emacs is deprecated.
9102
9103 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9104
9105 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
9106 (delphi-verbose, delphi-comment-face, delphi-string-face)
9107 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
9108 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
9109 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
9110 (delphi-new-comment-line, delphi-font-lock-defaults)
9111 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
9112 Fix typos in docstrings.
9113
9114 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
9115
9116 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
9117 Invert the roles of character and string values for INSTEAD, so a
9118 string is used for the more common case of a defaulting prompt.
9119
9120 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9121
9122 * progmodes/ruby-mode.el (ruby-backward-sexp):
9123 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
9124 * play/gamegrid.el (gamegrid-make-face):
9125 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
9126 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
9127 * notifications.el (notifications-notify):
9128 * net/xesam.el (xesam-search-engines):
9129 * net/quickurl.el (quickurl-list-insert):
9130 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
9131
9132 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
9133
9134 * startup.el (command-line): Update package subdirectory regexp.
9135
9136 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9137
9138 * allout.el (allout-abbreviate-flattened-numbering)
9139 (allout-mode-deactivate-hook): Fix up obsolescence "date".
9140
9141 * subr.el (read-char-choice): Only show the cursor after the prompt,
9142 not after the answer.
9143
9144 2011-03-15 Kevin Ryde <user42@zip.com.au>
9145
9146 * help-fns.el (variable-at-point): Skip leading quotes, if any
9147 (bug#8253).
9148
9149 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9150
9151 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
9152 warning message.
9153
9154 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
9155
9156 * shell.el (shell): When called interactively, offer to change the
9157 shell file name on remote hosts.
9158
9159 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
9160
9161 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
9162 integration for LDAP parameters. The host, base, user or binddn,
9163 and secret tokens can be specified in a netrc file, for instance.
9164 This is optional because an `auth-source' parameter must be
9165 specified in the search attributes.
9166
9167 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
9168
9169 * help.el (describe-mode): Link to the mode's definition (bug#8185).
9170
9171 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9172
9173 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
9174 into declaration. Remove redundant and harmful binding.
9175
9176 2011-03-12 Eli Zaretskii <eliz@gnu.org>
9177
9178 * files.el (file-ownership-preserved-p): Pass `integer' as an
9179 explicit 2nd argument to `file-attributes'. If the file's owner
9180 is the Administrators group on Windows, and the current user is
9181 Administrator, consider that a match.
9182
9183 * server.el (server-ensure-safe-dir): Consider server directory
9184 safe on MS-Windows if its owner is the Administrators group while
9185 the current Emacs user is Administrator. Use `=' to compare
9186 numerical UIDs, since they could be integers or floats.
9187
9188 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
9189
9190 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
9191
9192 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
9193
9194 Sync with Tramp 2.2.1.
9195
9196 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
9197
9198 * net/trampver.el: Update release number.
9199
9200 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9201
9202 * progmodes/compile.el (compilation--previous-directory): Fix up
9203 various nil/dead-marker mismatches (bug#8014).
9204 (compilation-directory-properties, compilation-error-properties):
9205 Don't call it at a position past the one we're about to change.
9206
9207 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
9208 Disable obsolescence warnings in the file that declares it.
9209
9210 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
9211
9212 * allout-widgets.el (allout-widgets-tally):
9213 Initialize allout-widgets-tally as a hash table rather than nil to
9214 prevent mode-line redisplay warnings. Also, clarify the module
9215 description and fix a comment typo.
9216
9217 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
9218
9219 * help-fns.el (describe-variable): Don't complete keywords.
9220 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
9221
9222 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
9223
9224 * emacs-lisp/package.el (package-version-join): Impose a standard
9225 string representation for pre/alpha/beta version lists.
9226 (package-unpack-single): Standardize the directory name by passing
9227 it through package-version-join.
9228 (package-strip-rcs-id): Accept any version string that does not
9229 signal an error in version-to-list.
9230
9231 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
9232
9233 * simple.el (delete-trailing-whitespace): Return nil for the
9234 benefit of `write-file-functions'.
9235
9236 2011-03-10 Glenn Morris <rgm@gnu.org>
9237
9238 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
9239
9240 * vc/vc-git.el (vc-git-program): New option.
9241 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
9242 (vc-git--call): Use it.
9243
9244 * eshell/esh-util.el (eshell-condition-case): Doc fix.
9245
9246 * cus-edit.el (Custom-newline): If no button at point, look
9247 for a subgroup button at start-of-line. (Bug#2298)
9248
9249 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
9250
9251 2011-03-10 Julien Danjou <julien@danjou.info>
9252
9253 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
9254 `cursor-type' is nil.
9255
9256 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
9257
9258 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
9259
9260 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
9261
9262 * allout.el Summary: Change so yank of distinctive-bullet items
9263 preserves the existing header prefix, rebulleting it if necessary,
9264 rather than replacing it. This is necessary for proper operation
9265 of cooperative addons like allout-widgets.
9266 (allout-make-topic-prefix, allout-rebullet-heading): Change
9267 SOLICIT arg to INSTEAD, and interpret additionally a string value
9268 as alternate bullet to be used, instead of prompting the user for
9269 a bullet character.
9270
9271 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
9272
9273 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9274 Do not use `tramp-file-name-port', because this returns also
9275 `tramp-default-port'.
9276
9277 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9278
9279 * net/rcirc.el (rcirc-handler-001): Remove useless
9280 with-rcirc-process-buffer.
9281 (rcirc-check-auth-status): Swap arguments to string-match.
9282
9283 2011-03-09 Glenn Morris <rgm@gnu.org>
9284
9285 * shell.el (shell-mode):
9286 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
9287
9288 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
9289 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
9290
9291 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
9292
9293 * emacs-lisp/package.el (package-refresh-contents)
9294 (package-menu-execute): Use condition-case-no-debug.
9295
9296 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
9297
9298 * simple.el (shell-command-to-string): Use `process-file'.
9299
9300 * emacs-lisp/package.el (package-tar-file-info): Handle also
9301 remote files.
9302
9303 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9304 Use `equal' for upload base check.
9305
9306 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
9307
9308 * textmodes/texinfo.el (texinfo-environments):
9309 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
9310
9311 2011-03-08 Glenn Morris <rgm@gnu.org>
9312
9313 * cus-start.el (cursor-in-non-selected-windows):
9314 Fix :set quoting oddness. (Bug#8192)
9315
9316 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
9317 in some setf expressions. (Bug#2159)
9318
9319 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
9320
9321 * custom.el (custom-available-themes): Return themes in
9322 alphabetical order.
9323
9324 See ChangeLog.15 for earlier changes.
9325
9326 ;; Local Variables:
9327 ;; coding: utf-8
9328 ;; End:
9329
9330 Copyright (C) 2011 Free Software Foundation, Inc.
9331
9332 This file is part of GNU Emacs.
9333
9334 GNU Emacs is free software: you can redistribute it and/or modify
9335 it under the terms of the GNU General Public License as published by
9336 the Free Software Foundation, either version 3 of the License, or
9337 (at your option) any later version.
9338
9339 GNU Emacs is distributed in the hope that it will be useful,
9340 but WITHOUT ANY WARRANTY; without even the implied warranty of
9341 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9342 GNU General Public License for more details.
9343
9344 You should have received a copy of the GNU General Public License
9345 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.