]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Remove spurious * in docstrings.
[gnu-emacs] / lisp / ChangeLog
1 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * filesets.el: Remove spurious * in docstrings.
4 (filesets-running-xemacs): Remove. Use (featurep 'xemacs) instead.
5 (filesets-conditional-sort): Remove unused arg `simply-do-it'.
6 (filesets-ingroup-collect): Remove unused arg `depth'.
7 (filesets-update): Remove unused arg `version'.
8
9 * finder.el (finder-compile-keywords): Fix up comment style.
10 (finder-mouse-face-on-line): previous-line -> forward-line.
11
12 * recentf.el: Remove spurious * in docstrings.
13 (recentf-save-list): Fix up comment style.
14
15 * progmodes/octave-mod.el: Remove spurious * in docstrings.
16 (octave-mode-map): Move init into declaration and remove \t binding.
17 (octave-mode-startup-message): Remove unused var.
18 (octave-scan-blocks): Remove unused arg `from'.
19 (octave-forward-block, octave-down-block, octave-up-block):
20 Update callers.
21
22 * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
23 (meta-mode-map): Likewise and remove \t binding.
24
25 * net/snmp-mode.el: Remove spurious * in docstrings.
26 (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
27 (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
28 (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
29 that completion accepts lists of strings.
30 (snmp-mode-syntax-table): Move initialization into declaration.
31 (snmp-mode-map): Likewise and remove \t binding.
32 (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
33 (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
34 (snmp-indent-command): Remove.
35
36 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
37 binding, so tab-always-indent works right.
38
39 2007-09-19 Johannes Weiner <hannes@saeurebad.de>
40
41 * net/browse-url.el (browse-url-elinks-new-window): New function.
42 (browse-url-elinks): Use browse-url-elinks-new-window.
43 Accept optional second argument `new-window'. Fix typo in doc-string.
44 (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
45 Improve error message.
46
47 2007-09-19 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
48
49 * net/browse-url.el (browse-url-url-encode-chars): Use the right
50 parameter name in the function body.
51 Reported by Johannes Weiner.
52
53 2007-09-19 Glenn Morris <rgm@gnu.org>
54
55 * net/socks.el (socks-open-network-stream): Signal an explicit
56 error if the port associated with a service string can't be found.
57
58 * textmodes/tex-mode.el (tex-terminate-paragraph):
59 Use backward-paragraph. Leave point at the site of any mismatch.
60
61 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
62
63 * server.el (server-running-p): New function.
64
65 2007-09-18 Jason Rumney <jasonr@gnu.org>
66
67 * term/w32-win.el (w32-focus-frame): Make obsolete alias for
68 x-focus-frame.
69
70 * frame.el (select-frame-set-input-focus, select-frame-by-name):
71 Use x-focus-frame for w32.
72
73 2007-09-17 David Kastrup <dak@gnu.org>
74
75 * textmodes/tex-mode.el (tex-verbatim-environments):
76 Eliminate CL dependency.
77
78 2007-09-17 Richard Stallman <rms@gnu.org>
79
80 * newcomment.el (comment-add): New arg EXTRA.
81 (comment-region-default): Pass EXTRA if not indenting lines.
82
83 2007-09-17 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
84
85 * net/browse-url.el (browse-url-url-encode-chars): New function.
86 URL-encode some chars in a string.
87 (browse-url-encode-url): Rewrite using the previous function.
88 (browse-url-file-url): Use `browse-url-url-encode-chars'.
89 (browse-url-elinks-sentinel): Fix typo.
90 (browse-url-new-window-flag): Doc change.
91
92 2007-09-17 Glenn Morris <rgm@gnu.org>
93
94 * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
95 filename from `--file-line-error', if it is available.
96
97 2007-09-17 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
98
99 * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
100 TeX `--file-line-error' format.
101
102 2007-09-17 Dan Nicolaescu <dann@ics.uci.edu>
103
104 * xt-mouse.el: Delete add-hook calls that were moved to
105 xterm-mouse-mode.
106 (xterm-mouse-mode): Disable resume-tty-functions, explain why it
107 does not work.
108
109 2007-09-17 Richard Stallman <rms@gnu.org>
110
111 * cus-face.el (custom-theme-set-faces): Undo previous change.
112
113 * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
114
115 2007-09-17 Glenn Morris <rgm@gnu.org>
116
117 * textmodes/tex-mode.el (tex-region): Simplify previous change,
118 handling the case where the region is not in `tex-main-file'.
119 (tex-region-1): Delete.
120 (tex-region-header): New function, doing the header part of the
121 old tex-region-1.
122
123 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
124
125 * simple.el (newline): Simplify use of prefix-numeric-value.
126 (line-move-partial): Remove unused var `ppos'.
127 (line-move-1): Replace 9999 with most-positive-fixnum.
128 (move-end-of-line): Use more efficient single-property search.
129 (move-beginning-of-line): Remove unused var `start'.
130 (blink-matching-open): Restructure in a more functional style.
131
132 2007-09-16 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
133
134 * calendar/holidays.el (list-holidays): Remove the cyclic alias.
135
136 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
137
138 * server.el (server-clients): Only keep procs, no properties any more.
139 (server-client): Remove.
140 (server-client-get, server-client-set): Remove, replace all callers by
141 process-get and process-put resp.
142 (server-clients-with, server-add-client, server-delete-client)
143 (server-create-tty-frame, server-create-window-system-frame)
144 (server-process-filter, server-execute, server-visit-files)
145 (server-buffer-done, server-kill-buffer-query-function)
146 (server-kill-emacs-query-function, server-switch-buffer)
147 (server-save-buffers-kill-terminal): Update accordingly.
148
149 * server.el (server-with-environment): Simplify.
150 (server-select-display, server-unselect-display): Re-add functions that
151 seem to have been lost in the multi-tty merge.
152 (server-eval-and-print, server-create-tty-frame)
153 (server-create-window-system-frame, server-goto-toplevel)
154 (server-execute, server-return-error): New functions extracted from
155 server-process-filter.
156 (server-execute-continuation): New functions.
157 (server-process-filter): Restructure so that all arguments are analysed
158 first and then acted upon in a subsequent stage This way
159 server-goto-toplevel can be executed later, when we know if
160 it's necessary.
161 Remove the "-version" and "-version-good" support.
162
163 2007-09-16 Drew Adams <drew.adams@oracle.com>
164
165 * cus-edit (custom-face-edit-activate): Doc fix.
166
167 2007-09-16 Glenn Morris <rgm@gnu.org>
168
169 * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
170 Following cal-bahai renaming, update all instances of
171 list-bahai-diary-entries to diary-bahai-list-entries,
172 mark-bahai-diary-entries to diary-bahai-mark-entries,
173 calendar-goto-bahai-date to calendar-bahai-goto-date,
174 insert-bahai-diary-entry to diary-bahai-insert-entry,
175 insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
176 insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
177 calendar-print-bahai-date to calendar-bahai-print-date.
178
179 * textmodes/tex-mode.el (tex-region): Handle the case where the
180 region is not in `tex-main-file'. Move the old code that applies
181 to both cases...
182 (tex-region-1): ...to this new function.
183
184 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
185
186 * vc.el (vc-process-sentinel): New function.
187 (vc-exec-after): Use it instead of using ugly hackish analysis and
188 construction of Elisp code.
189 (vc-sentinel-movepoint): New dynamically scoped var.
190 (vc-print-log, vc-annotate): Set it to move the user's point.
191
192 * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
193 inhibit-modification-hooks.
194
195 * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
196 (calendar-bahai-print-date, calendar-bahai-goto-date)
197 (diary-bahai-list-entries, diary-bahai-insert-entry):
198 New names to clean up the namespace a bit more.
199 (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
200
201 2007-09-15 Glenn Morris <rgm@gnu.org>
202
203 * calendar/holidays.el (holiday-list): Rename it back to
204 `list-holidays', but leave `holiday-list' as an alias.
205
206 * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
207 custom group.
208
209 * textmodes/css-mode.el (css): New custom group.
210 (css-electrick-keys, css-selector, css-property)
211 (css-indent-offset): Specify custom group.
212
213 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
214
215 * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
216 (cvs-execute-single-file): Use process-file.
217 (cvs-run-process): Use start-file-process.
218
219 2007-09-15 Dan Nicolaescu <dann@ics.uci.edu>
220
221 * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
222 level. Remove the hooks when turning off the mode.
223
224 * term/xterm.el: Require xt-mouse at compile time.
225 (terminal-init-xterm): Turn on xterm mouse tracking for this
226 terminal if xterm-mouse-mode is enabled.
227
228 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
229
230 * term/xterm.el (xterm-function-map): Replace bindings that were
231 deleted by the merge.
232
233 2007-09-14 Ulf Jasper <ulf.jasper@web.de>
234
235 * play/bubbles.el (bubbles-version): Bump value to "0.5".
236 (bubbles-mode-map): Move define-key statements here.
237 (bubbles-game-theme-menu): Ditto.
238 (bubbles-graphics-theme-menu): Ditto.
239 (bubbles-menu): Ditto.
240 (bubbles-mode): Initialize buffer-undo-list, redisplay.
241 (bubbles--initialize): Reset buffer-undo-list, redisplay.
242 (bubbles-plop): Set buffer-undo-list, redisplay.
243 (bubbles-undo): Reset buffer-undo-list, redisplay.
244 (bubbles--show-images): Take care of missing text properties.
245
246 2007-09-14 Glenn Morris <rgm@gnu.org>
247
248 * startup.el (fancy-startup-text, fancy-about-text): Fix face
249 quoting.
250
251 * calendar/cal-hebrew.el, calendar/cal-menu.el
252 * calendar/calendar.el, calendar/diary-lib.el
253 * calendar/holidays.el: Rename all instances of
254 list-calendar-holidays callers to calendar-list-holidays,
255 list-holidays to holiday-list, check-calendar-holidays to
256 calendar-check-holidays, mark-calendar-holidays to
257 calendar-mark-holidays, and filter-visible-calendar-holidays to
258 holiday-filter-visible-calendar.
259
260 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
261
262 * term/xterm.el (xterm-function-map): Add C-M- bindings.
263
264 2007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change)
265
266 * play/bubbles.el (bubbles--initialize-images): Fix bug:
267 Use transparent background for empty cells in graphics mode.
268
269 2007-09-13 Jari Aalto <jari.aalto@cante.net>
270
271 * man.el (Man-default-man-entry): At end of line, continue looking
272 to the next line for possible end of hyphenated command.
273
274 2007-09-13 Chris Moore <dooglus@gmail.com>
275
276 * shell.el (shell-resync-dirs): Don't move the cursor relative to
277 the command being edited.
278
279 2007-09-12 Jim Meyering <jim@meyering.net> (tiny change)
280
281 * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
282
283 2007-09-12 Dan Nicolaescu <dann@ics.uci.edu>
284
285 * term/xterm.el (xterm-function-map): Add bindings for M-S- and
286 C-M-S- keys.
287
288 * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
289
290 2007-09-12 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
291
292 * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
293 New argument `filename-p' to use one set of confusing chars or another.
294 (browse-url-file-url): Use the argument.
295 Suggested by Johannes Weiner.
296
297 2007-09-12 Romain Francoise <romain@orebokech.com>
298
299 * cus-start.el (all): Revert 2007-09-08 change.
300
301 2007-09-12 Aaron Hawley <aaronh@garden.org>
302
303 * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
304 extract .Z files, since it is more common than uncompress.
305
306 2007-09-12 Glenn Morris <rgm@gnu.org>
307
308 * textmodes/org-publish.el (org-publish-org-to-html): Remove
309 duplicate function definition.
310
311 2007-09-10 Chris Moore <dooglus@gmail.com>
312
313 * diff-mode.el (diff-sanity-check-hunk):
314 Also accept single-line hunks.
315
316 2007-09-10 Chong Yidong <cyd@stupidchicken.com>
317
318 * startup.el (startup-screen-inhibit-startup-screen)
319 (pure-space-overflow-message): New vars.
320 (fancy-splash-insert): Allow functions for face and link specs.
321 (fancy-splash-head): Remove unused arg. Move splash text...
322 (fancy-startup-text, fancy-about-text): ...here.
323 (fancy-startup-tail): Rename from fancy-splash-tail.
324 (fancy-startup-screen, fancy-about-screen): Split off from
325 fancy-splash-screens.
326 (display-startup-screen): New function.
327 (display-about-screen): Rename from display-splash-screen.
328 (command-line-1): Use concise startup screen if necessary.
329
330 2007-09-10 Thien-Thi Nguyen <ttn@gnuvola.org>
331
332 * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
333 Reported by Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>.
334
335 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
336
337 * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
338 (python-font-lock-keywords): Update to the 2.5 version of the language.
339 (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
340 (python-backspace): Only behave funny in code.
341 (python-compilation-regexp-alist): Add PDB stack trace regexp.
342 (inferior-python-mode): Add PDB prompt regexp.
343 (python-fill-paragraph): Refine the fenced-string regexp.
344 (python-find-imports): Handle imports spanning several lines.
345 (python-mode): Add `class' to hideshow support.
346
347 2007-09-10 Dave Love <fx@gnu.org>
348
349
350 * outline.el (outline-4, outline-5, outline-7):
351 Move font-lock-builtin-face down from 4 to 7 to better keep the
352 progression of color brightness, and to better match Org-mode's faces.
353
354 2007-09-10 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
355
356 * progmodes/meta-mode.el (meta-font-lock-keywords)
357 (font-lock-match-meta-declaration-item-and-skip-to-next)
358 (meta-comment-indent, meta-indent-previous-line)
359 (meta-indent-unfinished-line, meta-beginning-of-defun)
360 (meta-end-of-defun, meta-common-initialization): Handle \f.
361 (meta-indent-unfinished-line): Do not handle a `%' in a string as
362 a comment-start.
363
364 * files.el (file-modes-char-to-who, file-modes-char-to-right)
365 (file-modes-rights-to-number): Auxiliary functions for symbolic to
366 numeric notation of file modes.
367 (file-modes-symbolic-to-number): New. Convert symbolic modes to its
368 numeric value.
369 (read-file-modes): New. Read either an octal value of a file mode or a
370 symbolic value, and return its numeric value.
371
372 * dired-aux.el (dired-do-chmod): Change to use the built-in
373 `set-file-modes' and the previous symbolic mode parsing functions.
374
375 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
376
377 * textmodes/texinfo.el: Remove spurious * in docstrings.
378 (texinfo-mode-syntax-table, texinfo-mode-map):
379 Initialize in the declaration.
380
381 * tmm.el: Remove spurious * in docstrings.
382 (tmm-prompt): Use with-current-buffer.
383
384 * vcursor.el: Remove spurious * in docstrings.
385 (vcursor-map): Initialize in the declaration.
386 (vcursor-use-vcursor-map): Use define-minor-mode.
387 (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
388
389 * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
390 Initialize in the declaration.
391 (widget-minor-mode): Use define-minor-mode.
392
393 * woman.el (woman-mode-map, woman-syntax-table):
394 Initialize in the declaration.
395
396 2007-09-09 Tassilo Horn <tassilo@member.fsf.org>
397
398 * doc-view.el: New file.
399
400 2007-09-09 Juri Linkov <juri@jurta.org>
401
402 * Makefile.in (update-authors): Add etc/ to AUTHORS.
403
404 * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
405
406 * startup.el (initial-buffer-choice): Rename choice "Splash screen"
407 to "Startup screen". Fix docstring.
408 (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
409 (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
410 (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
411 (initial-scratch-message): Fix docstring.
412 (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
413 Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
414 Add link to "Customize Startup" and set interval between links to
415 5 spaces.
416 (fancy-about-text): Add links "Authors" and "Contributing".
417 (fancy-splash-head): Add text "Welcome to " on the startup screen,
418 and "This is " on the about screen. Add link to
419 "http://www.gnu.org/software/emacs/" for "GNU Emacs".
420 For the about screen move emacs version to the header from
421 `fancy-splash-tail' (as it's done already for normal about screen).
422 (fancy-splash-tail): Insert emacs version only for startup screen.
423 (normal-splash-screen): Remove duplicate empty lines.
424 (normal-about-screen): Add links "Authors" and "Contributing".
425
426 * menu-bar.el (menu-bar-help-menu):
427 Move "About Emacs" and "About GNU" to the end of the Help menu.
428 Move "Emacs Psychotherapist" after "Send Bug Report...".
429 Move "External Packages" after "Find Emacs Packages".
430
431 2007-09-09 Michael Albinus <michael.albinus@gmx.de>
432
433 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
434 they are useless with the byte compiler.
435 (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
436 (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
437 (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
438 (tramp-file-name-real-host, tramp-file-name-port)
439 (tramp-find-method, tramp-find-user, tramp-find-host): Make them
440 defuns.
441
442 * net/tramp-cache.el (top): Improve error message when
443 `tramp-persistency-file-name' is corrupted.
444
445 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
446
447 * textmodes/org.el (org-re): Also replace the :alpha: class.
448 (org-todo-tag-alist): Variable removed.
449 (org-todo-key-alist, org-todo-key-trigger) New variables.
450 (org-use-fast-todo-selection): New option.
451 (org-log-done): Docstring fixed.
452 (org-deadline-warning-days): New default value 14.
453 (org-edit-timestamp-down-means-later) New option.
454 (org-tag-alist): Docstring fixed.
455 (org-fast-tag-selection-include-todo): New option.
456 (org-export-language-setup): New languages added.
457 (org-set-regexps-and-options): Compute the new variables.
458 (org-paste-subtree): Cleaning up.
459 (org-remember-apply-template): New escape %A.
460 (org-todo): Call fast TODO selection.
461 (org-fast-todo-selection): New function.
462 (org-add-log-note): Allow prefix for abort exit.
463 (org-at-property-p, org-entry-properties)
464 (org-columns-get-autowidth-alist): Use :alpha: class.
465 (org-get-wdays): New function.
466 (org-agenda-remove-date): New variable.
467 (org-agenda-get-deadlines): Use `org-get-wdays'.
468 (org-agenda-get-deadlines): Reverse ee before returning.
469 (org-format-agenda-item): New argument REMOVE-RE.
470 (org-agenda-convert-date): Baha'i calendar added.
471 (org-infile-export-plist): Also find DATE line.
472 (org-get-min-level): New function.
473 (org-export-as-html, org-export-as-ascii): Use the date format.
474 (org-shiftup, org-shiftdown): Use.
475 `org-edit-timestamp-down-means-later'.
476 (org-assign-fast-keys): New function.
477
478 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
479
480 * cus-start.el (all): Add prefer-window-split-horizontally from
481 window.c.
482
483 2007-09-08 Eli Zaretskii <eliz@gnu.org>
484
485 * net/browse-url.el (browse-url-galeon): Fix last change.
486 (top-level): Require cl when compiling.
487
488 2007-09-08 Carsten Dominik <dominik@science.uva.nl>
489
490 * textmodes/org-export-latex.el: arch-tag restored.
491
492 * textmodes/org-publish.el: arch-tag restored.
493
494 2007-09-08 Masatake YAMATO <jet@gyve.org>
495
496 * progmodes/which-func.el (which-func-modes): Add diff-mode.
497
498 * progmodes/cc-langs.el: Support new keywords added to
499 objective-c frontend of gcc.
500 (c-simple-stmt-kwds): Add @throw.
501 (c-block-stmt-2-kwds): Add @synchronized.
502 (c-block-stmt-1-kwds): Add @finally and @try.
503
504 2007-09-07 Carsten Dominik <dominik@science.uva.nl>
505
506 * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
507 (org-agenda-after-show-hook): New variable.
508 (org-columns-compile-format)
509 (org-columns-get-autowidth-alist, org-buffer-property-keys)
510 (org-entry-properties, org-at-property-p): Allow [:alnum:] in
511 property names.
512 (org-get-wdays): New function.
513
514 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
515
516 * simple.el (normal-erase-is-backspace-setup-frame): Massage.
517
518 * term/xterm.el (xterm-function-map): Initialize in the declaration.
519
520 * vc-arch.el (vc-arch-checkin): Fix typo.
521
522 2007-09-07 Johan Bockg\e,Ae\e(Brd <bojohan@gnu.org>
523
524 * cus-face.el (custom-theme-set-faces): Set face attributes
525 locally for each frame.
526
527 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
528
529 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
530 via font-lock-defaults.
531
532 * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
533 derived-mode-p.
534
535 2007-09-07 Thien-Thi Nguyen <ttn@gnuvola.org>
536
537 * progmodes/autoconf.el (autoconf-definition-regexp):
538 Handle optional square brackets around definition name.
539
540 2007-09-07 Johannes Weiner <hannes@saeurebad.de>
541
542 * net/browse-url.el (browse-url-browser-function): Add elinks.
543 (browse-url-elinks-wrapper): New option.
544 (browse-url-encode-url, browse-url-elinks)
545 (browse-url-elinks-sentinel): New functions.
546 (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
547 (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
548 Use new function browse-url-encode-url.
549
550 2007-09-07 Glenn Morris <rgm@gnu.org>
551
552 * version.el (emacs-version): Revert 2007-08-29 change: no need to
553 say if multi-tty is present.
554
555 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 * cus-start.el (split-window-preferred-function): Add custom info.
558
559 * calendar/holidays.el (holiday-list, calendar-check-holidays)
560 (calendar-mark-holidays, calendar-list-holidays)
561 (holiday-filter-visible-calendar): New names to clean up namespace.
562 (filter-visible-calendar-holidays, list-calendar-holidays)
563 (mark-calendar-holidays, check-calendar-holidays, list-holidays):
564 Add compatibility aliases.
565 (calendar-check-holidays, calendar-mark-holidays)
566 (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
567 (holiday-sexp): Replace append with list.
568 (holiday-filter-visible-calendar): Replace append with push.
569
570 * woman.el: Remove spurious * in docstrings.
571 (woman-mini-help, woman-non-underline-faces, woman0-rename)
572 (woman-topic-all-completions-merge, woman-file-name-all-completions)
573 (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
574 (woman-write-directory-cache, woman-display-extended-fonts)
575 (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
576 (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
577 (woman-mode): Use inhibit-read-only.
578 (woman-negative-vertical-space): Use dotimes.
579 (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
580
581 2007-09-06 Romain Francoise <romain@orebokech.com>
582
583 * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
584 (vc-bzr-workfile-version): Use it.
585
586 2007-09-06 Sean O'Rourke <sorourke@cs.ucsd.edu>
587
588 * complete.el (PC-do-completion): Don't try to treat
589 empty string as an abbreviation.
590
591 2007-09-06 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
592
593 * help-fns.el (describe-variable): Keep doc's text properties.
594
595 2007-09-06 Dan Nicolaescu <dann@ics.uci.edu>
596
597 * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
598 instead of a file.
599
600 2007-09-06 Glenn Morris <rgm@gnu.org>
601
602 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
603 (checkdoc-minor-mode): Allow user to specify lighter via
604 checkdoc-minor-mode-string.
605
606 2007-09-05 Richard Stallman <rms@gnu.org>
607
608 * startup.el (fancy-startup-text): Rename from fancy-splash-text.
609 Several items removed, simplified, or put on one line.
610 (fancy-about-text): Add substantial contents, part of startup text.
611 (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
612 (normal-splash-screen): Call normal-mouse-startup-screen,
613 normal-no-mouse-startup-screen, or normal-about-screen.
614 (normal-mouse-startup-screen): New fn, broken out, shortened.
615 (normal-no-mouse-startup-screen): New fn, broken out.
616 (normal-about-screen): New function, contents all new.
617
618 2007-09-05 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
619
620 * emacs-lisp/rx.el (rx): Fix typo in docstring.
621
622 2007-09-05 Glenn Morris <rgm@gnu.org>
623
624 * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
625 is bound.
626
627 2007-09-05 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
628
629 * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
630 in doc string.
631
632 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
633
634 * server.el (server-start, server-unload-hook): Undo previous change.
635
636 * xt-mouse.el: Undo previous change.
637
638 2007-09-04 Juri Linkov <juri@jurta.org>
639
640 * startup.el (fancy-about-text): New variable.
641 (fancy-splash-delay, fancy-splash-max-time): Remove user options.
642 (fancy-current-text, fancy-splash-stop-time)
643 (fancy-splash-outer-buffer): Remove variables.
644 (fancy-splash-head, fancy-splash-tail): Add new optional argument
645 `startup' and use it to conditionally display different texts for
646 Startup and About screens. Don't display Help commands on the About
647 screen.
648 (fancy-splash-screens-1): Remove function and move its content to
649 `fancy-splash-screens' to the part that dislpays the About screen.
650 (exit-splash-screen): Don't treat specially exiting from
651 alternating screens.
652 (fancy-splash-screens): Rename argument `static' to `startup'.
653 Fix docstring. Remove code for displaying alternating screens.
654 Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
655 Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
656 for `inhibit-read-only'.
657 (normal-splash-screen): Rename argument `static' to `startup'.
658 Fix docstring. Use argument `startup' to conditionally display
659 different texts for Startup and About screens. Don't display Help
660 commands on the About screen. Remove `unwind-protect' `sit-for'
661 delay and `kill-buffer' after it.
662 (display-startup-echo-area-message): Remove call to
663 `use-fancy-splash-screens-p' because image.el is preloaded and
664 doesn't display "Loading image... done".
665 (display-splash-screen): Rename argument `static' to `startup'.
666 Fix docstring.
667
668 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
669
670 * server.el (server-start, server-unload-hook):
671 suspend-tty-functions has been renamed to suspend-tty-hook.
672
673 * xt-mouse.el: Likewise. resume-tty-functions has been renamed to
674 resume-tty-hook.
675
676 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
677
678 * loadup.el: Fix merge problem, only load "button" once.
679
680 2007-09-03 Glenn Morris <rgm@gnu.org>
681
682 * vc-svn.el (vc-svn-print-log): If there is only one file, use
683 "Working file:" as the prefix, for the sake of
684 log-view-current-file.
685
686 2007-09-02 Dan Nicolaescu <dann@ics.uci.edu>
687
688 * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
689 (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
690 if the selected frames is in
691 xterm-modify-other-keys-terminal-list.
692 (xterm-turn-off-modify-other-keys): Add an optional frame
693 parameter. Only turn off modify-other-keys if FRAME is in
694 xterm-modify-other-keys-terminal-list.
695 (xterm-remove-modify-other-keys): New function.
696 (terminal-init-xterm): Use it. Deal with delete-frame hook.
697 Add the selected frame to xterm-modify-other-keys-terminal-list.
698
699 2007-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
700
701 * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
702 (icon-map-list): New variable.
703 (x-gtk-map-stock): Use icon-map-list.
704
705 2007-09-02 Romain Francoise <romain@orebokech.com>
706
707 * log-view.el (log-view-current-file): Balance parens.
708
709 2007-09-02 Glenn Morris <rgm@gnu.org>
710
711 * comint.el (comint-mode): Don't set scroll-conservatively.
712
713 * eshell/em-unix.el (eshell/time): Stringify and flatten the
714 non-command arguments.
715
716 * log-view.el (log-view-current-file): Give a more explicit error
717 if log-view-file-re fails to find a match.
718
719 2007-09-01 Thien-Thi Nguyen <ttn@gnuvola.org>
720
721 * emacs-lisp/bytecomp.el (byte-recompile-directory):
722 Fix bug: Don't expand top-level file name more than once.
723 Reported by Dmitry Antipov <dmantipov@yandex.ru>.
724
725 2007-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
726
727 * server.el (server-process-filter): Don't display the splash screen.
728 It's annoying enough on the initial screen and becomes positively
729 obnoxious here.
730
731 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
732
733 * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
734 Change naming to use "avl-tree--" for internal functions.
735
736 2007-08-31 Dan Nicolaescu <dann@ics.uci.edu>
737
738 * term/x-win.el (x-menu-bar-open): Delete duplicated function from
739 the merge.
740 (global-set-key): Delete f10 mapping, now done in menu-bar.el.
741 (provide): Move to the end of file.
742
743 * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
744
745 2007-08-31 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
746
747 * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
748 New variable. List of exceptions for the duplicated word rule.
749 (flyspell-mark-duplications-flag): Mention it.
750 (flyspell-word): Treat it.
751
752 * files.el (create-file-buffer): If the filename sans directory starts
753 with spaces, remove them.
754
755 2007-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
756
757 * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
758 (x-gtk-map-stock): Use two directory elements when matching
759 file name.
760
761 2007-08-31 James Wright <james@chumsley.org>
762
763 * eshell/em-unix.el (eshell/info): New function.
764
765 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
766
767 * frame.el (frame-initialize, make-frame):
768 * server.el (server-process-filter):
769 * faces.el (tty-set-up-initial-frame-faces): Don't set
770 term-environment-variable since it's not used any more.
771
772 * env.el (setenv): Don't treat $TERM specially.
773
774 * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
775 stated otherwise, subprocesses do not send back escape sequences
776 corresponding to the terminal from which Emacs was started.
777
778 2007-08-31 Thien-Thi Nguyen <ttn@gnuvola.org>
779
780 * calculator.el: Require cl for compilation.
781
782 2007-08-30 Daniel Pfeiffer <occitan@esperanto.org>
783
784 * outline.el (outline-font-lock-levels): Comment out unused var.
785 (outline-font-lock-face): Wrap around face list to handle any
786 nesting depth gracefully.
787
788 2007-08-30 Michael Albinus <michael.albinus@gmx.de>
789
790 * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
791 `set-file-times'.
792
793 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
794
795 * textmodes/org.el (org-export-visible): Fix drawers before export.
796 (org-do-sort): Allow sorting by priority.
797 (org-agenda-files): Ignore non-existing files.
798 (org-agenda-skip-unavailable-files): New variable.
799 (org-ellipsis): All a face as value.
800 (org-mode): Interprete the face value of `org-ellipsis'.
801 (org-archive-save-context-info): New option.
802 (org-archive-subtree): Store context info in archived entry.
803 (org-fast-tag-selection-can-set-todo-state): New variable.
804 (org-fast-tag-selection): Allow setting TODO states through this
805 interface.
806 (org-cycle): Docstring updated.
807 (org-todo-keyword-faces): New option.
808 (org-get-todo-face): New function.
809 (org-set-font-lock-defaults, org-agenda-highlight-todo):
810 Use `org-get-todo-face'.
811 (org-switch-to-buffer-other-window): New function.
812 (org-table-edit-field, org-table-show-reference)
813 (org-table-edit-formulas, org-add-log-note)
814 (org-fast-tag-selection, org-agenda, org-prepare-agenda)
815 (org-timeline): Use `org-switch-to-buffer-other-window' instead of
816 `switch-to-buffer-other-window' to make sure that the temporary
817 windows show up on the current frame.
818 (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
819 (org-get-entries-from-diary, org-replace-region-by-html):
820 Don't allow pop-up frames.
821 (org-agenda-get-deadlines, org-agenda-get-scheduled):
822 Fix problems with time-of-day.
823 (org-export-get-title-from-subtree): New function.
824 (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
825 with listing items that are DONE.
826 (org-change-tag-in-region): New command.
827 (org-agenda-skip-scheduled-if-done)
828 (org-agenda-skip-deadline-if-done): Docstring clarified.
829 (org-mode): Hide drawers on startup.
830 (org-get-todo-face): New function.
831 (org-todo-keyword-faces): New option.
832 (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
833 (org-remove-keyword-keys): New function.
834
835 2007-08-30 Jari Aalto <jari.aalto@cante.net> (tiny change)
836
837 * progmodes/grep.el (grep-find-ignored-directories):
838 Add monotone _MTN bookkeeping directory in workspaces.
839 Add RCS control directory. List items in alphabetical order.
840
841 * progmodes/grep.el (grep-files-aliases): Add cc alias.
842 Sort items in alphabetical order. Fix parens.
843
844 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
845
846 * vc-hg.el (vc-hg-extra-menu-map): New variable.
847 (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
848 (vc-hg-pull): New functions.
849 (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
850
851 * term/mac-win.el: Don't require url, only autoloaded url
852 functions are used in this file.
853
854 2007-08-29 Andreas Schwab <schwab@suse.de>
855
856 * shell.el (shell): Return correct value from interactive spec.
857
858 2007-08-29 Glenn Morris <rgm@gnu.org>
859
860 * version.el (emacs-version): Increase to 23.0.50.
861
862 2007-08-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
863
864 * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
865
866 2007-08-29 Juri Linkov <juri@jurta.org>
867
868 * loadup.el: Add "button" loading after "faces" and move "startup"
869 to load after "button".
870
871 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
872
873 * loadup.el: Load term/mac-win on a Mac using Carbon.
874
875 * term/mac-win.el: Provide mac-win.
876 (mac-initialized): New variable.
877 (mac-initialize-window-system): New function. Move global setup here.
878 (handle-args-function-alist, frame-creation-function-alist):
879 (window-system-initialization-alist): Add mac entries.
880 (x-setup-function-keys): New function containing all the
881 top level function key definitions.
882
883 * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
884
885 * env.el (read-envvar-name): Don't consider the environment frame param.
886
887 * env.el (setenv):
888 * frame.el (frame-initialize, make-frame):
889 * faces.el (tty-set-up-initial-frame-faces):
890 * server.el (server-process-filter): Set
891 display-environment-variable and term-environment-variable.
892
893 * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
894
895 2007-08-29 Jason Rumney <jasonr@gnu.org>
896
897 * loadup.el: Only load term/x-win when X is compiled in.
898 Load term/w32-win and dependencies on windows-nt.
899
900 * term/w32-win.el: Reorder to match x-win.el more closely.
901 Provide w32-win. Don't throw error when global window-system not w32.
902 (internal-face-interactive): Remove obsolete function.
903 (x-setup-function-keys): Use local-function-key-map.
904 (w32-initialized): New variable.
905 (w32-initialize-window-system): Set it.
906 Move more global setup here.
907 (x-setup-function-keys): New function.
908 (w32-initialize-window-system): Move non function key global setup here.
909 (x-cut-buffer-max): Remove.
910 (w32-initialize-window-system): New function.
911 (handle-args-function-alist, frame-creation-function-alist):
912 (window-system-initialization-alist): Add w32 entries.
913
914 2007-08-29 David Kastrup <dak@gnu.org>
915
916 * env.el (getenv): Pass frame to getenv-internal.
917
918 2007-08-29 Karoly Lorentey <lorentey@elte.hu>
919
920 * version.el (emacs-version): Show if multi-tty is present.
921
922 * loadup.el: Delay loading env; mule-conf gets confused by cl
923 during bootstrap. Also load termdev and term/x-win.
924
925 * bindings.el (mode-line-client): New variable.
926 (help-echo): Add it to the default mode-line format.
927
928 * cus-start.el: Remove bogus window-system reference from GTK test.
929
930 * ebrowse.el (ebrowse-electric-list-mode-map)
931 (ebrowse-electric-position-mode-map):
932 * ebuff-menu.el (electric-buffer-menu-mode-map):
933 * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
934 not `suspend-emacs'.
935
936 * ediff-wind.el (ediff-setup-windows-automatic): New function.
937 (ediff-window-setup-function): Use it as default.
938
939 * files.el (save-buffers-kill-terminal): New function.
940 (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
941
942 * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
943 and `with-selected-frame'.
944
945 * help-fns.el (describe-variable): Describe frame-local variables
946 correctly.
947
948 * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
949 display support.
950 (normal-erase-is-backspace-setup-frame): New function.
951
952 * subr.el (with-selected-frame): New function.
953 (read-quoted-char): Use terminal-local binding of
954 local-function-key-map instead of function-key-map.
955
956 * talk.el (talk): New function.
957 (talk-handle-delete-frame): New function.
958 (talk-add-display): Open a new frame only if FRAME was not a frame.
959
960 * termdev.el: New file.
961
962 * menu-bar.el (menu-bar-open): New function. Bind it to f10.
963 * term/x-win.el: Don't bind f10.
964 * tmm.el: Remove autoload binding for f10.
965
966 * international/encoded-kb.el (encoded-kbd-setup-display): Use
967 `set-input-meta-mode'. Fix broken condition before set-input-mode.
968 Store the saved input method as a terminal parameter. Add keymap
969 parameter. Use it instead of changing key-translation-map directly.
970 (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
971 Remove.
972 (encoded-kbd-setup-display): New function.
973
974 * international/mule-cmds.el (set-locale-environment): Fix getenv
975 call. Use save-buffers-kill-terminal. Ignore window-system; always
976 set the keyboard coding system. Add DISPLAY parameter.
977 (set-display-table-and-terminal-coding-system): Add DISPLAY
978 parameter. Pass it to set-terminal-coding-system.
979
980 * international/mule.el (keyboard-coding-system): Test for
981 encoded-kbd-setup-display, not encoded-kbd-mode.
982 (set-terminal-coding-system, set-keyboard-coding-system): Add
983 DISPLAY parameter.
984 (set-keyboard-coding-system): Use encoded-kbd-setup-display.
985
986 * term/README: Update.
987
988 * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
989
990 * term/x-win.el (x-setup-function-keys): New function. Move
991 function-key-map tweaks here. Protect against multiple calls on
992 the same terminal. Use terminal-local binding of
993 local-function-key-map instead of function-key-map.
994 (x-initialize-window-system): Make a copy of pure list. Pass a
995 frame getenv.
996
997 * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
998 * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
999 * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
1000 * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
1001 * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
1002 local-function-key-map instead of function-key-map.
1003
1004 * term/rxvt.el, term/xterm.el: Speed up load time by protecting
1005 `substitute-key-definition' and `define-key' calls against
1006 multiple execution. Use terminal-local binding of
1007 local-function-key-map instead of function-key-map. Pass a frame
1008 to getenv.
1009
1010 * edmacro.el (edmacro-format-keys):
1011 * emulation/cua-base.el (cua--pre-command-handler):
1012 * isearch.el (isearch-other-meta-char):
1013 * xt-mouse.el: Use terminal-local binding of
1014 local-function-key-map instead of function-key-map.
1015
1016 * fringe.el (set-fringe-mode): Simplify and fix using
1017 `modify-all-frames-parameters'.
1018 * scroll-bar.el (set-scroll-bar-mode): Ditto.
1019 * tool-bar.el (tool-bar-mode): Ditto. Remove 'tool-bar-map length
1020 check before calling `tool-bar-setup'.
1021 (tool-bar-setup): New variable.
1022 (tool-bar-setup): Use it to guard against multiple calls. Add
1023 optional frame parameter, and select that frame before adding items.
1024 (toggle-tool-bar-mode-from-frame): New function.
1025
1026 * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
1027 (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
1028 toggle-tool-bar-mode-from-frame to change "Menu-bar" and
1029 "Tool-bar" toggles to reflect the state of the current frame.
1030 (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
1031
1032 * env.el: Require cl for byte compilation (for `block' and `return').
1033 (environment, setenv-internal): New functions.
1034 (let-environment): New macro.
1035 (setenv, getenv): Add optional terminal parameter. Update docs.
1036 (setenv): Use setenv-internal. Always set process-environment.
1037 Handle `local-environment-variables'.
1038 (read-envvar-name, setenv, getenv): Use frame parameters
1039 to store the local environment, not terminal parameters. Include
1040 `process-environment' as well.
1041
1042 * faces.el (tty-run-terminal-initialization): New function.
1043 (tty-create-frame-with-faces): Use it. Set up faces and
1044 background mode only after the terminal has been initialized.
1045 Call terminal-init-*. Don't load the initialization file more
1046 than once. Call set-locale-environment.
1047 (frame-set-background-mode): Handle the 'background-mode terminal
1048 parameter.
1049 (tty-find-type): New function.
1050 (x-create-frame-with-faces): Remove bogus check for
1051 first frame. Call `tool-bar-setup'. Don't make frame visible
1052 until we are done setting up all its parameters. Call
1053 x-setup-function-keys.
1054
1055 * frame.el (make-frame): Always inherit 'environment and 'client
1056 parameters. Set up the 'environment frame parameter, when needed.
1057 Also inherit 'client parameter. Don't override explicitly
1058 specified values with inherited ones. Add 'terminal frame
1059 parameter. Append window-system-default-frame-alist to parameters
1060 before calling frame-creation-function.
1061 (frame-initialize): Copy the environment from the initial frame.
1062 (window-system-default-frame-alist): Enhance doc string.
1063 (frame-notice-user-settings): Don't put 'tool-bar-lines in
1064 `default-frame-alist' when initial frame is on a tty.
1065 (modify-all-frames-parameters): Simplify using `assq-delete-all'.
1066 Remove specified parameters from `window-system-default-frame-alist'.
1067 (make-frame-on-tty, framep-on-display, suspend-frame):
1068 Extend doc string, update parameter names.
1069 (frames-on-display-list): Use terminal-id to get the display id.
1070 (frame-notice-user-settings): Extend to apply
1071 settings in `window-system-default-frame-alist' as well.
1072 (terminal-id, terminal-parameters, terminal-parameter)
1073 (set-terminal-parameter, terminal-handle-delete-frame): New functions.
1074 (delete-frame-functions): Add to `delete-frame-functions' hook.
1075 (blink-cursor-mode): Adapt blink-cursor-mode default
1076 value from startup.el.
1077 (make-frame-on-display): Protect condition on x-initialized when
1078 x-win.el is not loaded. Update doc.
1079 (suspend-frame): Use display-controlling-tty-p to decide between
1080 suspend-emacs and suspend-tty.
1081 (frames-on-display-list): Update for display ids.
1082 (framep-on-display): Ditto.
1083 (suspend-frame): Use display-name, not frame-tty-name.
1084 (selected-terminal): New function.
1085
1086 * server.el: Use `device' instead of `display' or `display-id' in
1087 variable and client parameter names.
1088 (server-select-display): Remove (unused).
1089 (server-tty-live-p, server-handle-delete-tty): Remove.
1090 (server-unquote-arg, server-quote-arg, server-buffer-clients):
1091 Update docs.
1092 (server-getenv-from, server-with-environment, server-send-string)
1093 (server-save-buffers-kill-terminal): New functions.
1094 (server-delete-client): Handle quits in kill-buffer. Don't kill
1095 modified buffers. Add extra logging. Delete frames after
1096 deleting the tty. Clear 'client parameter before deleting a frame.
1097 Use delete-display, not delete-tty.
1098 (server-visit-files): Don't set `server-existing-buffer' if the
1099 buffer already has other clients. Return list of buffers
1100 created. Update doc. Don't set client-record when nowait.
1101 (server-handle-delete-frame): Delete the client if this was its
1102 last frame. Check that the frame is alive. Remove bogus comment.
1103 Add note on possible race condition. Delete tty clients, if needed.
1104 (server-handle-suspend-tty): Use server-send-string. Kill the
1105 client in case of errors from process-send-string. Use the display
1106 parameter.
1107 (server-unload-hook): Remove obsolete delete-tty hook.
1108 (server-start): Ask before restarting if the old server still has
1109 clients. Add feedback messages. Remove obsolete delete-tty hook.
1110 (server-process-filter): Use server-send-string. Accept `-dir'
1111 command. Switch to *scratch* immediately after creating the frame,
1112 before evaluating any -evals. Protect `display-splash-screen'
1113 call in a condition-case. Explain why. Call
1114 `display-startup-echo-area-message' before
1115 `display-splash-screen'. Don't display the splash screen when no
1116 frame was created. Show the Emacs splash screen and startup echo
1117 area message. Display the *scratch* buffer by default. Store the
1118 local environment in a frame (not terminal) parameter. Do not try
1119 to decode environment strings. Fix reference to the 'display
1120 frame parameter. Change syntax of environment variables. Put
1121 environment into terminal parameters, not client parameters. Use
1122 a dummy client with --no-wait's X frames. In `-position LINE'
1123 handler, don't ruin the request string until the line number is
1124 extracted. Log opened files. Handle -current-frame command.
1125 Don't create frames when it is given. Don't bind X frames to the
1126 client when we are in -no-wait mode. Set locale environment
1127 variables from client while creating tty frames. Disable call to
1128 configure-display-for-locale. When processing -position command,
1129 don't change the request string until the parameters are
1130 extracted. Don't try to create an X frame when Emacs does not
1131 support it. Improve logging. Temporarily set ncurses-related
1132 environment variables to those of the client while creating a new
1133 tty frame. Select buffers opened by nowait clients, don't leave
1134 them buried under others. Set the display parameter, and use it
1135 when appropriate.
1136
1137 * startup.el (display-startup-echo-area-message): Handle
1138 `inhibit-startup-echo-area-message' here.
1139 (command-line-1): Moved from here.
1140 (fancy-splash-screens): Use `overriding-local-map' instead of
1141 `overriding-terminal-local-map' for now; the latter doesn't work
1142 right, it looses keypresses to another terminal. Use
1143 `overriding-terminal-local-map' to set up keymap. Install a
1144 `delete-frame-functions' hook to catch `delete-frame' events.
1145 Ignore `select-window' events to cope better with
1146 `focus-follows-mouse'. Don't switch back to the original buffer
1147 if the splash frame has been killed. Restore previous buffer, even
1148 if it's *scratch*.
1149 (normal-splash-screen): Don't let-bind `mode-line-format'; it
1150 changes the global binding - setq it instead. Use
1151 `save-buffers-kill-terminal'.
1152 (display-splash-screen): Don't do anything if the splash screen is
1153 already displayed elsewhere.
1154 (fancy-splash-exit, fancy-splash-delete-frame): New functions.
1155 (command-line): Replace duplicated code with a call to
1156 tty-run-terminal-initialization. Don't load the terminal
1157 initialization file more than once. Remove call to nonexistent
1158 function `set-locale-translation-file-name'.
1159
1160 * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
1161 parameters.
1162 (xterm-mouse-position-function, xterm-mouse-event): Update.
1163 (xterm-mouse-mode): Don't depend on current value of window-system.
1164 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
1165 Update for multi-tty.
1166 (turn-on-xterm-mouse-tracking-on-terminal)
1167 (turn-off-xterm-mouse-tracking-on-terminal)
1168 (xterm-mouse-handle-delete-frame): New functions.
1169 (delete-frame-functions, after-make-frame-functions)
1170 (suspend-tty-functions, resume-tty-functions): Install extra hooks
1171 for multi-tty.
1172
1173 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1174
1175 * simple.el (invisible-p): Remove: implemented in C now.
1176 (line-move-invisible-p): Remove obsolete alias.
1177
1178 2007-08-28 Juri Linkov <juri@jurta.org>
1179
1180 * image-mode.el (image-type): New variable.
1181 (image-mode): Set default major mode name to "Image[text]".
1182 (image-minor-mode): Change LIGHTER to display image-type in the
1183 mode line.
1184 (image-minor-mode): Set default image-type to "text".
1185 (image-toggle-display): After switching to text mode, set
1186 image-type to "text" and major mode name to "Image[text]".
1187 After switching to image mode, set image-type to actual image
1188 type, and add image type to major mode name. Let-bind the same
1189 variable names as arguments of `image-type' and `create-image'.
1190 Bind `type' to the result of `image-type' and use it as arg
1191 of `create-image' to not determine the image type twice.
1192
1193 2007-08-28 Michael Albinus <michael.albinus@gmx.de>
1194
1195 * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
1196 (tramp-set-file-uid-gid, tramp-get-local-uid)
1197 (tramp-get-local-gid): New defuns.
1198 (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
1199 (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
1200 Improve fast track.
1201 (tramp-do-copy-or-rename-file-directly): Sync parameter list with
1202 the other tramp-do-copy-or-rename-file-* functions. Major rewrite.
1203 (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
1204 (tramp-handle-write-region): Improve fast track.
1205 (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
1206 (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
1207 be nil.
1208
1209 2007-08-28 Ivan Kanis <apple@kanis.eu>
1210
1211 * time.el: New feature to display several time zones in a buffer.
1212 (display-time-world-mode, display-time-world-display)
1213 (display-time-world, display-time-world-timer): New functions.
1214 (display-time-world-list, display-time-world-time-format)
1215 (display-time-world-buffer-name, display-time-world-timer-enable)
1216 (display-time-world-timer-second, display-time-world-mode-map):
1217 New variables.
1218
1219 2007-08-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1220
1221 * term/x-win.el (x-gtk-stock-map): New variable.
1222 (x-gtk-map-stock): New function.
1223
1224 * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
1225 prev/next-node.
1226
1227 2007-08-28 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se> (tiny change)
1228
1229 * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
1230
1231 2007-08-28 Glenn Morris <rgm@gnu.org>
1232
1233 * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
1234
1235 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
1236
1237 * progmodes/modula2.el (m2-definition, m2-module):
1238 Don't use previous-line. Reported by T. V. Raman.
1239
1240 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1241
1242 * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
1243 argument to tool-bar-mode call.
1244
1245 2007-08-27 Glenn Morris <rgm@gnu.org>
1246
1247 * diff-mode.el (diff-find-file-name): Only accept regular files,
1248 to rule out /dev/null, directories, etc.
1249
1250 * vc-svn.el (vc-svn-diff): If the repository version of all the
1251 files is the same as the specified OLDVERS, do a local diff.
1252
1253 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
1254
1255 * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
1256 of buffers in uniquify-managed.
1257
1258 * simple.el (invisible-p): Rename from text-invisible-p.
1259 Update callers.
1260
1261 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1262
1263 * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
1264 (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
1265 (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
1266 (cperl-etags-goto-tag-location): Use new style backquotes.
1267
1268 * net/browse-url.el: Remove spurious * in custom docstrings.
1269 (browse-url-filename-alist): Use new-style backquote.
1270
1271 * emacs-lisp/backquote.el (backquote-unquote-symbol)
1272 (backquote-splice-symbol): Clarify they're not new-style unquotes.
1273
1274 * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
1275 (\,@): Backslash the , and ,@ which are not new-style unquotes.
1276
1277 * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
1278
1279 * net/socks.el (socks-username/password-auth-filter):
1280 Remove unused vars `state' and `desired-len'.
1281 (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
1282 (socks-wait-for-state-change): Use new-style backquotes.
1283
1284 * pcvs.el (cvs-mode-status): Fix long-standing typo.
1285
1286 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
1287 backquotes after each `read' rather than once per buffer.
1288
1289 * dframe.el: Remove spurious * in custom docstrings.
1290 (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
1291 (dframe-xemacs20p): Remove, inline at the sole use point.
1292 (defface): Don't defvar the face, don't use old-style backquote.
1293 (defcustom): Don't use old-style backquote.
1294 (dframe-frame-parameter, dframe-mouse-event-p):
1295 Make it obvious that it's always defined.
1296 (dframe-popup-kludge): New function to replace
1297 dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
1298 (dframe-frame-mode, dframe-set-timer-internal)
1299 (dframe-mouse-set-point): Remove use of with-no-warnings from
1300 XEmacs-specific code.
1301 (dframe-set-timer-internal): Fix very old bug with
1302 post-command-idle-hook.
1303
1304 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
1305
1306 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
1307
1308 * emacs-lisp/avl-tree.el: New file.
1309
1310 2007-08-26 Micha\e,bk\e(Bl Cadilhac <michael@cadilhac.name>
1311
1312 * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
1313 was used.
1314
1315 2007-08-26 Sean O'Rourke <seano@cs.ucsd.edu>
1316
1317 * complete.el (PC-do-completion): Make RET accept a non-unique but
1318 complete expansion again.
1319
1320 2007-08-26 Thien-Thi Nguyen <ttn@gnuvola.org>
1321
1322 * eshell/esh-opt.el (eshell-eval-using-options):
1323 Add debug declaration.
1324
1325 2007-08-26 Dan Nicolaescu <dann@ics.uci.edu>
1326
1327 * log-view.el (log-view-toggle-mark-entry): Add docstring.
1328 (log-view-get-marked): Likewise.
1329
1330 * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
1331 (vc-delete-automatic-version-backups): Likewise.
1332
1333 * vc.el (vc-dired-buffers-for-dir): Likewise.
1334
1335 2007-08-25 Dan Nicolaescu <dann@ics.uci.edu>
1336
1337 * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
1338 safe-local-variable setting.
1339 * progmodes/perl-mode.el (perl-indent-level): Likewise.
1340
1341 * log-view.el (log-view-marked-list): Delete variable.
1342 (log-view-mode): Don't use it.
1343 (log-view-toggle-mark-entry): Likewise, simplify.
1344 (log-view-current-tag): Don't return properties.
1345 (log-view-get-marked): New function.
1346
1347 2007-08-25 Alexandre Julliard <julliard@winehq.org>
1348
1349 * vc-git.el (vc-git-mode-line-string): New function.
1350
1351 2007-08-25 Alan Mackenzie <acm@muc.de>
1352
1353 * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
1354 new language variable.
1355
1356 * progmodes/cc-engine.el (c-brace-anchor-point): new function.
1357 (c-add-stmt-syntax): Give accurate anchor points for "namespace",
1358 "extern" etc., rather than BOI. Fix addition of spurious
1359 syntactic-symbol 'defun-block-intro, replacing it with
1360 'innamespace, etc.
1361
1362 2007-08-25 Juri Linkov <juri@jurta.org>
1363
1364 * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
1365
1366 * image-mode.el: Add autoloads to put associations in auto-mode-alist:
1367 associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
1368 "\\.svgz?\\'" with xml-mode and image-mode-maybe.
1369
1370 * image.el (image-type-header-regexps): Use more complex regexp for svg.
1371 (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
1372 (image-type-auto-detectable): Add (svg . maybe).
1373
1374 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
1375 to treat it like .tgz.
1376
1377 * calendar/cal-bahai.el: Add file coding cookie.
1378
1379 2007-08-25 Reiner Steib <Reiner.Steib@gmx.de>
1380
1381 * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
1382 Don't behave differently when executed via M-x. Add doc string.
1383
1384 * sort.el (sort-fold-case, sort-numeric-base): Mark as
1385 safe-local-variable.
1386
1387 2007-08-25 Jay Belanger <jay.p.belanger@gmail.com>
1388
1389 * calc/calc-forms.el (var-TimeZone): Make nil explicitly
1390 the default value.
1391 (math-calendar-tzinfo): New variable.
1392 (math-get-calendar-tzinfo): New function.
1393 (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
1394 to get information when zone is nil.
1395
1396 2007-08-24 Dan Nicolaescu <dann@ics.uci.edu>
1397
1398 * log-view.el (log-view-toggle-mark-entry): New function.
1399 (log-view-mode-map): Bind it.
1400 (log-view-marked-list): New variable.
1401 (log-view-mode): Make it local.
1402
1403 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
1404
1405 * play/zone.el (zone-pgm-rat-race): New func.
1406 (zone-programs): Add `zone-pgm-rat-race'.
1407
1408 2007-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
1409
1410 * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
1411 a list.
1412
1413 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
1414
1415 * progmodes/hideshow.el (hs-match-data): Delete alias.
1416 (hs-hide-block-at-point, hs-find-block-beginning)
1417 (hs-show-block): Use `match-data' directly.
1418
1419 2007-08-24 Martin Rudalics <rudalics@gmx.at>
1420
1421 * format.el (format-alist): Fix typo in doc-string.
1422
1423 2007-08-24 Michael Albinus <michael.albinus@gmx.de>
1424
1425 * net/tramp.el (tramp-local-host-p): New defun.
1426 (tramp-handle-file-local-copy, tramp-handle-write-region):
1427 Implement fast track when being on the local host.
1428 (tramp-file-name-handler): Don't set "started" property. It shall
1429 be reserved for the "ftp" method.
1430 (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
1431
1432 * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
1433 (tramp-ftp-file-name-handler): Set "started" property.
1434
1435 2007-08-24 Ulrich Mueller <ulm@gentoo.org> (tiny change)
1436
1437 * files.el (backup-buffer-copy): Don't wrap delete in
1438 condition-case, only try to delete if file exists.
1439
1440 2007-08-24 Glenn Morris <rgm@gnu.org>
1441
1442 * files.el (backup-buffer-copy): Revert 2007-08-22 change.
1443
1444 * startup.el (tutorial-directory): Set with eval-at-startup so it
1445 gets the right value in an installed Emacs.
1446
1447 2007-08-24 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
1448
1449 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
1450 (eldoc-highlight-function-argument): Use it.
1451
1452 2007-08-23 Masatake YAMATO <jet@gyve.org>
1453
1454 * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
1455 name of parameters in document body.
1456
1457 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1458
1459 * emacs-lisp/bytecomp.el (byte-compile-output-docform)
1460 (byte-compile-output-as-comment): Use with-current-buffer rather than
1461 a weird set-buffer&prog1 combination.
1462
1463 * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
1464 test so as to optimise cases where the `progn's result is constant.
1465
1466 2007-08-23 Thien-Thi Nguyen <ttn@gnuvola.org>
1467
1468 * locate.el (locate-get-file-positions):
1469 Use line-beginning-position and line-end-position.
1470
1471 2007-08-23 John Wiegley <johnw@newartisans.com>
1472
1473 * calendar/cal-bahai.el: Added in the diacriticals that were
1474 missing for many of the month names.
1475
1476 2007-08-22 Jason Rumney <jasonr@gnu.org>
1477
1478 * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
1479
1480 2007-08-22 Chong Yidong <cyd@stupidchicken.com>
1481
1482 * image-mode.el (image-minor-mode): Use image-mode-text-map.
1483
1484 2007-08-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
1485
1486 * dabbrev.el (dabbrev--progress-reporter): New variable.
1487 (dabbrev--scanning-message): Delete func.
1488 (dabbrev--find-expansion): Use a progress reporter
1489 instead of dabbrev--scanning-message.
1490
1491 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
1492
1493 * comint.el (comint-exec-1): Raise an error if
1494 `start-file-process' does not return a process object.
1495
1496 * shell.el (shell): Prompt for `default-directory' if it is a
1497 remote file name, and if called with a prefix arg.
1498
1499 2007-08-22 Sam Steingold <sds@gnu.org>
1500
1501 * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
1502
1503 2007-08-22 Carsten Dominik <dominik@science.uva.nl>
1504
1505 * textmodes/org-export-latex.el: New file.
1506
1507 * textmodes/org-publish.el (org-publish-org-to-latex): New function.
1508
1509 * textmodes/org.el (org-agenda-skip): Allow a form for
1510 `org-agenda-skip-function'.
1511 (org-agenda-redo): Re-use local settings.
1512 (org-agenda): Store local settings.
1513 (org-agenda-deadline-faces): New option.
1514 (org-agenda-deadline-face): New function.
1515 (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
1516 entries on their due date.
1517 (org-agenda-get-timestamps): No longer handle the due dates of
1518 schedules and deadline items.
1519 (org-insert-link-global, org-open-at-point-global): New commands.
1520 (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
1521 :for-ascii parameter.
1522 (org-skip-comments): Function removed.
1523 (org-cleaned-string-for-export): Handle special table lines.
1524 (org-global-properties): New option.
1525 (org-entry-get-with-inheritance): Check global properties.
1526 (org-local-properties): New variable.
1527 (org-set-regexps-and-options): Find the #+PROPERTY line.
1528 (org-link-types): Change type into variable (was constant).
1529 (org-make-link-regexps): New function.
1530 (org-link-re-with-space, org-link-re-with-space2)
1531 (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
1532 (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
1533 these regular expressions happens now in the function
1534 `org-make-link-regexps'.
1535 (org-store-link): Call the functions in
1536 `org-store-link-functions'.
1537 (org-add-link-type): New function.
1538 (org-store-link-functions): New variable.
1539 (org-activate-tags): Force matches to be in headlines.
1540 (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
1541 (org-columns-display-here): Make sure this works in a narrowed
1542 buffer by checking for point-min.
1543 (org-columns-display-here): Make the rest of the line intangible,
1544 so that point never can be there.
1545 (org-cleaned-string-for-export): Use `with-current-buffer'.
1546 (org-replace-region-by-html): Use `with-current-buffer'.
1547 (org-unfontify-region, org-do-occur, org-columns-display-here)
1548 (org-columns-remove-overlays, org-columns-quit)
1549 (org-columns-edit-value, org-columns-next-allowed-value)
1550 (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
1551 (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
1552 (org-agenda-todo, org-agenda-change-all-lines)
1553 (org-agenda-align-tags, org-agenda-priority)
1554 (org-agenda-set-tags, org-agenda-toggle-archive-tag)
1555 (org-agenda-show-new-time, org-cleaned-string-for-export)
1556 (org-export-grab-title-from-buffer)
1557 (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
1558 instead of `buffer-read-only'.
1559 (org-export-as-html): Set `coding-system-for-write'.
1560 (org-remember-store-without-prompt): New option.
1561 (org-archive-subtree): Fixed bug with modifying TODO keyword.
1562 (org-beginning-of-line): Also treat C-a special in items.
1563 (org-table-convert-refs-to-rc): Fixed problem with column
1564 reference after "..".
1565 (org-columns-compute): Don't mark buffer modified because of text
1566 properties.
1567 (org-batch-store-agenda-views): Use the variable
1568 `default-directory', not the function.
1569 (org-clock-out-if-current): Respect `org-clock-out-when-done'.
1570 (org-clock-out-when-done): New option.
1571 (org-html-entities): Added HTML entities for smileys.
1572
1573 2007-08-22 Glenn Morris <rgm@gnu.org>
1574
1575 * image.el (create-image): Doc fix.
1576
1577 * startup.el (tutorial-directory): New constant.
1578 (fancy-splash-text): Tutorials now in tutorial-directory.
1579 * tutorial.el (help-with-tutorial): Tutorials now in
1580 tutorial-directory.
1581
1582 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
1583
1584 * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
1585 otherwise.
1586 (tramp-get-remote-path): New defun. Replace occurrences of
1587 `tramp-default-remote-path' by this function.
1588 (tramp-set-remote-path): Move most of the code to
1589 `tramp-get-remote-path'.
1590 (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
1591 existing directories, this is done already in
1592 `tramp-get-remote-path'.
1593
1594 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
1595
1596 * image-file.el (image-file-name-extensions): Add "svg".
1597 * image.el (image-type-header-regexps): Add svg entry.
1598
1599 2007-08-22 Glenn Morris <rgm@gnu.org>
1600
1601 * files.el (backup-buffer-copy): Check backup directory is
1602 writable, to avoid infloop deleting old backup.
1603
1604 * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
1605 movemail related variables.
1606 (rmail-insert-inbox-text): Use only rmail-movemail-program, which
1607 will now be set before this is called.
1608
1609 2007-08-21 Juri Linkov <juri@jurta.org>
1610
1611 * delsel.el (delete-selection-pre-hook):
1612 * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
1613 instead of checking last-command.
1614
1615 2007-08-21 Juri Linkov <juri@jurta.org>
1616
1617 * loadup.el: Preload "button".
1618
1619 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1620
1621 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1622 Add previous-line and next-line.
1623
1624 * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
1625 (vc-arch-find-file-not-found-hook): Remove, it's now the default.
1626
1627 * vc-hooks.el (vc-menu-entry): New var.
1628 (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
1629 (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
1630 (vc-menu-map): Declare and initialize in one step.
1631 (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
1632
1633 * menu-bar.el (vc-menu-map): Don't setup any more.
1634 Instead, just create the proper spot in the menu.
1635
1636 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1637
1638 * smerge-mode.el (smerge-resolve): New arg `safe'.
1639 (smerge-resolve-all, smerge-batch-resolve): New function.
1640 (smerge-refine): Make sure `diff' returns the expected result.
1641 (smerge-parsep-re): New const.
1642 (smerge-mode): Use it to adjust paragraph-separate.
1643
1644 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
1645 Correctly match / regexp matchers as first char on a line when
1646 fontifying only that line.
1647
1648 * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
1649
1650 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1651
1652 * vc-bzr.el: Don't fiddle with vc-handled-backend.
1653 (vc-bzr-registered): Don't redundantly protect against
1654 file-error. Actually use the format-specific code.
1655 (vc-bzr-buffer-nonblank-p): Remove.
1656 (vc-bzr-status): Change `kindchange' -> `kindchanged'.
1657
1658 2007-08-20 Juri Linkov <juri@jurta.org>
1659
1660 * startup.el (fancy-splash-text): Change multiple tabs into one
1661 tab. Remove "Useful File menu items" section (with "Exit Emacs"
1662 and "Recover Crashed Session").
1663 (fancy-splash-screens): Set tab-width to 22.
1664 (normal-splash-screen): Replace literal tabs with \t and
1665 fix whitespace. Remove "Useful File menu items" section (with
1666 "Exit Emacs" and "Recover Crashed Session").
1667
1668 2007-08-20 Johannes Weiner <hannes@saeurebad.de> (tiny change)
1669
1670 * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
1671 extracted from `eval-last-sexp-1'.
1672 (eval-last-sexp-1): Call `preceding-sexp'.
1673
1674 2007-08-20 Thien-Thi Nguyen <ttn@gnuvola.org>
1675
1676 * vc-rcs.el (vc-rcs-annotate-command):
1677 Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
1678 Add back :vc-annotate-prefix propertization.
1679
1680 2007-08-20 Andreas Schwab <schwab@suse.de>
1681
1682 * mail/rmail.el (rmail-autodetect): Doc fix.
1683
1684 2007-08-19 Juri Linkov <juri@jurta.org>
1685
1686 * startup.el (normal-splash-screen): Add more links.
1687
1688 2007-08-19 Juri Linkov <juri@jurta.org>
1689
1690 * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
1691 because it's common to both types of splash screen: fancy and normal.
1692 Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
1693 (exit-splash-screen): Rename from `fancy-splash-quit'.
1694 Use `quit-window' instead of `kill-buffer'.
1695 (fancy-splash-head): Use make-button to insert GNU image link.
1696 (fancy-splash-screens, normal-splash-screen): Rename " About GNU
1697 Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
1698 (normal-splash-screen): Put "Browse manuals" on the same line with
1699 "Emacs manual". Remove descriptions from "Useful tasks" and put
1700 all links in two columns on two lines.
1701
1702 2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
1703
1704 * viper.el (viper-remove-hooks): Remove some additional viper hooks
1705 when the user calls viper-go-away.
1706 (viper-go-away): Restore the default of default-major-mode.
1707 Save the value of default-major-mode before vaperization.
1708
1709 * viper-cmd.el: Replace error "" with "Viper bell".
1710
1711 * viper-ex.el: Replace error "" with "Viper bell".
1712
1713 * ediff-util.el (ediff-make-temp-file): Use the coding system of the
1714 buffer for which file is created.
1715
1716 2007-08-19 Glenn Morris <rgm@gnu.org>
1717
1718 * Makefile.in (custom-deps, finder-data, autoloads, recompile)
1719 (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
1720 than $(EMACS), so that EMACSLOADPATH is set. Prevents any system
1721 shadow files messing up the compilation.
1722
1723 2007-08-18 Glenn Morris <rgm@gnu.org>
1724
1725 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
1726 string. Also apply eldoc-argument-case in the help-split-fundoc
1727 case. Adapt for changed behavior of eldoc-function-argstring,
1728 eldoc-function-argstring-format, and
1729 eldoc-highlight-function-argument.
1730 (eldoc-highlight-function-argument): Handle nil INDEX argument,
1731 just call eldoc-docstring-format-sym-doc in that case.
1732 (eldoc-function-argstring): Change the behavior. Now it converts
1733 an argument list to a string.
1734 (eldoc-function-argstring-format): Change the behavior. Now it
1735 applies `eldoc-argument-case' to a string.
1736
1737 * progmodes/scheme.el (scheme-mode-variables): Set
1738 font-lock-comment-start-skip.
1739
1740 2007-08-18 Martin Rudalics <rudalics@gmx.at>
1741
1742 * progmodes/ada-mode.el (ada-create-syntax-table): Move
1743 set-syntax-table from here to ...
1744 (ada-mode): ... here. Do not change global value of
1745 comment-multi-line. Call new function
1746 ada-initialize-syntax-table-properties and add new function
1747 ada-handle-syntax-table-properties to font-lock-mode-hook.
1748 (ada-deactivate-properties, ada-initialize-properties): Replace
1749 by new functions ...
1750 (ada-handle-syntax-table-properties)
1751 (ada-initialize-syntax-table-properties)
1752 (ada-set-syntax-table-properties): ... to set up syntax-table
1753 properties uniformly, independently from whether font-lock-mode
1754 is enabled or not. Handle read-only buffers and do not change
1755 undo-list when setting syntax-table properties.
1756 (ada-after-change-function): Use ada-set-syntax-table-properties.
1757
1758 2007-08-18 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1759
1760 * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
1761 (meta-indent-current-nesting): Use a computation of the nesting
1762 instead.
1763 (meta-indent-current-indentation): Indentation is given according
1764 to nesting and if the previous line was finished or not.
1765 (meta-indent-unfinished-line): Tell if the current line ends with
1766 a finished expression.
1767 (meta-indent-looking-at-code): Like `looking-at', but checks if
1768 the point is in a string before.
1769 (meta-indent-level-count): Use it. Don't count parenthesis as it's
1770 done in the nesting function.
1771 (meta-indent-in-string-p): Tell if the current point is in a
1772 string.
1773 (meta-indent-calculate): Treat b-o-b as a special case. Use the
1774 previous functions.
1775
1776 2007-08-17 Thien-Thi Nguyen <ttn@gnuvola.org>
1777
1778 * emacs-lisp/copyright.el (copyright-limit): New defsubst.
1779 (copyright-update-year, copyright-update)
1780 (copyright-fix-years): Use it.
1781
1782 2007-08-17 Kimit Yada <kimitto@gmail.com> (tiny change)
1783
1784 * emacs-lisp/copyright.el (copyright-update-year):
1785 Fix bug: Handle nil copyright-limit.
1786
1787 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
1788
1789 * calc/calc-units.el (math-standard-units): Give exact
1790 conversion for tsp.
1791
1792 * calc/calc.el (math-bignum-digit-length): Compute the
1793 appropriate value.
1794
1795 * calc/calc-bin.el (math-bignum-logb-digit-size)
1796 (math-bignum-digit-power-of-two):
1797 * calc/calc-comb.el (math-small-factorial-table):
1798 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
1799 (math-approx-gamma-const):
1800 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
1801 (math-besY1, math-bernoulli-b-cache):
1802 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
1803 Remove `eval-when-compile's.
1804
1805 2007-08-17 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
1806
1807 * progmode/cperl-mode.el (cperl-look-at-leading-count)
1808 (cperl-find-pods-heres): Fix an error when typing expressions like
1809 `s{a}{b}'.
1810
1811 2007-08-17 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1812
1813 * mail/emacsbug.el (report-emacs-bug): Remove the last number of
1814 `emacs-version', use the topic prefix ``version; ''. Make MS-DOS
1815 a special case (there's no build number).
1816
1817 2007-08-17 T. V. Raman <raman@users.sf.net> (tiny change)
1818
1819 * completion.el (symbol-under-point, symbol-before-point)
1820 (symbol-before-point-for-complete): Use buffer-substring-no-properties.
1821
1822 2007-08-17 Glenn Morris <rgm@gnu.org>
1823
1824 * progmodes/compile.el (compilation-get-file-structure): Make use
1825 of the directory part when checking for an existing entry, to
1826 handle files with same basename in different directories.
1827
1828 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
1829
1830 * calc/calc.el (calc-language-alist): Add texinfo-mode.
1831
1832 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1833
1834 * ps-print.el (ps-header-font-size, ps-header-title-font-size)
1835 (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
1836 (ps-paragraph-spacing): Docstring fix.
1837
1838 2007-08-16 Glenn Morris <rgm@gnu.org>
1839
1840 * ps-print.el (ps-font-size): Doc fix.
1841
1842 2007-08-16 Richard Stallman <rms@gnu.org>
1843
1844 * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
1845
1846 2007-08-15 Juri Linkov <juri@jurta.org>
1847
1848 * startup.el (initialization): Change parent group from `internal'
1849 to `environment'.
1850 (initial-buffer-choice): New variable.
1851 (command-line): Revert 2007-07-02 change that sets
1852 buffer-offer-save in *scratch* and enables auto-save in it.
1853 (fancy-splash-text): Add links to existing items. Add new items
1854 with links for useful tasks. Move information about Control-g to
1855 fancy-splash-head. Move "Emacs Guided Tour" to the end.
1856 (fancy-splash-keymap): New variable.
1857 (fancy-splash-last-input-event): Remove variable.
1858 (fancy-splash-insert): Add processing of `:link' element.
1859 (fancy-splash-head): Replace "Type Control-l to begin editing"
1860 with "Type `q' to exit".
1861 (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
1862 (fancy-splash-default-action, fancy-splash-special-event-action):
1863 Remove functions.
1864 (fancy-splash-quit): New function.
1865 (fancy-splash-screens): Rename input arg from `hide-on-input' to
1866 `static' and reverse the condition of its usage. Don't preserve
1867 original values of `minor-mode-map-alist',
1868 `emulation-mode-map-alists', `special-event-map'.
1869 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
1870 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
1871 Remove processing of special events. Use local key map
1872 `fancy-splash-keymap'. Set buffer to read-only.
1873 (normal-splash-screen): Rename input arg from `hide-on-input' to
1874 `static' and reverse the condition of its usage.
1875 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
1876 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
1877 Add links to existing items. Add new items with links for useful
1878 tasks. Use local key map `fancy-splash-keymap'.
1879 (display-splash-screen): Rename input arg from `hide-on-input' to
1880 `static'.
1881 (about-emacs): Add alias to display-splash-screen.
1882 (command-line-1): Use `initial-buffer-choice'.
1883
1884 * menu-bar.el (menu-bar-help-menu):
1885 * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
1886 item to about-emacs instead of display-splash-screen.
1887
1888 2007-08-15 Jay Belanger <jay.p.belanger@gmail.com>
1889
1890 * calc/calc-units.el (math-standard-units): Update values.
1891 Put in exact, rational values when possible.
1892 (math-unit-prefixes): Replace floats with powers of ten.
1893 (math-standard-units-systems): Replace floats with integers.
1894 (math-make-unit-string): Remove extra spaces in output.
1895
1896 2007-08-15 Glenn Morris <rgm@gnu.org>
1897
1898 * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
1899 sloppier, for the sake of GNU Mailman.
1900 (rmail-digest-rfc1153): Initialize `result' correctly.
1901
1902 2007-08-15 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1903
1904 * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
1905 in the mail title. Suggested by Reiner Steib.
1906
1907 2007-08-14 Chris Hecker <checker@d6.com> (tiny change)
1908
1909 * calc/calc-aent.el (calc-do-quick-calc): Add binary
1910 representation of integers to the list of outputs.
1911
1912 2007-08-14 Glenn Morris <rgm@gnu.org>
1913
1914 * simple.el (bad-packages-alist): New constant.
1915 (bad-package-check): New function. Together, these two add elements
1916 to `after-load-alist' to check for problematic external packages.
1917 * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
1918
1919 2007-08-14 Jay Belanger <jay.p.belanger@gmail.com>
1920
1921 * calc/calc-units.el (math-get-standard-units)
1922 (math-get-units, math-make-unit-string)
1923 (math-get-default-units, math-put-default-units): New functions.
1924 (math-default-units-table): New variable.
1925 (calc-convert-units, calc-convert-temperature): Add machinery
1926 to supply default values.
1927
1928 2007-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
1929
1930 * emulation/tpu-edt.el: Add tpu-extras's autoloads.
1931 (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
1932 (tpu-gold-map): Bind F to tpu-cursor-free-mode.
1933 (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
1934
1935 * emulation/tpu-extras.el: Remove spurious * in docstrings.
1936 Put its autoloads into tpu-edt.el rather than loaddefs.el.
1937 (tpu-cursor-free-mode): Rename from tpu-cursor-free.
1938 Make into a proper minor-mode.
1939 (tpu-backward-char, tpu-next-line, tpu-previous-line)
1940 (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
1941 (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
1942 (tpu-set-cursor-free, tpu-set-cursor-bound):
1943 Delegate to tpu-cursor-free-mode.
1944 (tpu-next-line, tpu-previous-line, tpu-forward-line)
1945 (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
1946 Use line-move or forward-line instead of next-line-internal.
1947
1948 2007-08-13 Nick Roberts <nickrob@snap.net.nz>
1949
1950 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
1951
1952 2007-08-12 Richard Stallman <rms@gnu.org>
1953
1954 * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
1955 (cvs-execute-single-file): Use new name split-string-and-unquote.
1956 (cvs-header-msg): Use new name combine-and-quote-strings.
1957
1958 * emulation/vi.el (vi-next-line): Ignore return value of line-move.
1959
1960 * progmodes/gud.el (gud-common-init): Use new name
1961 split-string-and-unquote.
1962
1963 * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
1964 in javac regexp.
1965
1966 * pcvs-util.el (cvs-qtypedesc-strings): Use new names
1967 combine-and-quote-strings and split-string-and-unquote.
1968
1969 * subr.el (combine-and-quote-strings): Rename from strings->string.
1970 (split-string-and-unquote): Rename from string->strings.
1971
1972 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1973
1974 * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
1975 to buffer-local settings.
1976
1977 * emacs-lisp/backquote.el (backquote-delay-process): New function.
1978 (backquote-process): Add internal arg `level'. Use the two to
1979 correctly handle nested backquotes.
1980
1981 2007-08-09 Riccardo Murri <riccardo.murri@gmail.com>
1982
1983 * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
1984 (vc-bzr-state-words): Add "kind changed" state word.
1985 (vc-bzr-status): New function. Return Bzr idea of file status,
1986 which is different from VC's.
1987 (vc-bzr-state): Use vc-bzr-status.
1988 (vc-workfile-unchanged-p): Use vc-bzr-status.
1989 (vc-bzr-revert): Use synchronous process; expect exitcode 0.
1990 (vc-dired-state): Process "kind changed" state word.
1991
1992 2007-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
1993
1994 * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
1995
1996 * vc-rcs.el (vc-rcs-find-file-not-found-hook):
1997 Move from vc-default-find-file-not-found-hook.
1998
1999 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2000
2001 * man.el: Remove spurious * in docstrings.
2002 Merge defvars and toplevel setq-defaults.
2003 (Man-highlight-references0): Limit=nil rather than point-max.
2004 (Man-mode-map): Move initialization into the declaration.
2005 (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
2006 (Man-view-header-file): Use expand-file-name rather than concat.
2007 (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
2008
2009 * man.el (Man-next-section): Make sure we do not move backward.
2010
2011 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * files.el (auto-mode-alist): Use the purecopied text (duh!).
2014
2015 2007-08-08 Glenn Morris <rgm@gnu.org>
2016
2017 * Replace `iff' in doc-strings and comments.
2018
2019 2007-08-08 Martin Rudalics <rudalics@gmx.at>
2020
2021 * dired.el (dired-pop-to-buffer):
2022 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
2023 * calendar/calendar.el (generate-calendar-window):
2024 * progmodes/compile.el (compilation-set-window-height):
2025 * textmodes/two-column.el (2C-two-columns, 2C-merge):
2026 Use window-full-width-p instead of comparing frame-width and
2027 window-width.
2028
2029 * progmodes/compile.el (compilation-find-buffer): Remove extra
2030 argument in call to compilation-buffer-internal-p.
2031
2032 2007-08-07 Tom Tromey <tromey@redhat.com>
2033
2034 * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
2035 Add safe-local-variable property.
2036
2037 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
2038
2039 * image-mode.el (image-toggle-display): Use image-refresh.
2040
2041 2007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
2042
2043 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
2044 unofficial version.
2045 (vc-bzr-command): Remove redundant setting of process-connection-type.
2046 (vc-bzr-admin-checkout-format-file): Add autoload.
2047 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
2048 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
2049 (vc-bzr-registered): Compare dirstate format tag with known good
2050 value, abort parsing if match fails. Warn user in docstring.
2051 (vc-bzr-workfile-version): Case for different Bzr branch formats.
2052 See bzrlib/branch.py in Bzr sources.
2053 (vc-bzr-diff): First argument FILES may be a string rather than a list.
2054 (vc-bzr-shell-command): Remove in favor of
2055 vc-bzr-command-discarding-stderr.
2056 (vc-bzr-command-discarding-stderr): New function.
2057
2058 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
2059
2060 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
2061 program, and return nil.
2062 (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
2063 (vc-bzr-state): Look for path names relative to the repository
2064 root after status keyword.
2065 (vc-bzr-file-name-relative): New function.
2066 (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
2067 depend on it.
2068 (vc-bzr-admin-dirname, ...-checkout-format-file)
2069 (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
2070 files that we now parse directly for speed.
2071 (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
2072 (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
2073 (vc-bzr-state): "bzr status" successful only if exitcode is 0.
2074 (vc-bzr-root): Use `vc-bzr-shell-command'. Stderr may contain
2075 Bzr warnings, so we must discard it.
2076 (vc-bzr-workfile-version): Speedup counting lines from
2077 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
2078 if that file doesn't exist.
2079 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
2080 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname' (not ".bzr"!)
2081 to `vc-directory-exclusion-list'.
2082 (vc-bzr-shell-command): New function.
2083
2084 2007-08-06 Tom Tromey <tromey@redhat.com>
2085
2086 * diff-mode.el (diff-unified->context, diff-reverse-direction)
2087 (diff-fixup-modifs): Typo in docstring.
2088
2089 2007-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
2090
2091 * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
2092 count-screen-lines.
2093 (tpu-edt-off): Disable relevant pieces of advice.
2094
2095 * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
2096 tpu-write-file-hook. Activate it with add-hook on buffer-save-hook.
2097 (newline, newline-and-indent, do-auto-fill): Use advice instead of
2098 redefining the function.
2099 (tpu-set-scroll-margins): Activate the pieces of advice.
2100
2101 2007-08-06 Martin Rudalics <rudalics@gmx.at>
2102
2103 * help.el (resize-temp-buffer-window): Use window-full-width-p
2104 instead of comparing frame-width and window-width.
2105
2106 2007-08-13 Stephen Leake <stephen_leake@stephe-leake.org>
2107
2108 * pcvs-parse.el (cvs-parse-table): Handle additional instance of
2109 optional quotes around files in NEED-UPDATE . REMOVED case.
2110
2111 * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
2112 (ada-treat-cmd-string): Improve error message.
2113 (ada-do-file-completion): Call `ada-require-project-file', so
2114 project variables are set properly.
2115 (ada-prj-find-prj-file): Delete Emacs 20.2 support.
2116 (ada-gnatfind-buffer-name): New constant.
2117 (ada-find-any-references): Use new constant. Set buffer name
2118 properly in compilation-start. Toggle read-only properly.
2119 (ada-find-in-src-path): Fix spelling error in docstring.
2120
2121 * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
2122 by zero error.
2123
2124 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2125
2126 * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
2127
2128 2007-08-12 Richard Stallman <rms@gnu.org>
2129
2130 * progmodes/sh-script.el (sh): Delete group `unix'.
2131
2132 * progmodes/gud.el (gud): Change to group `processes'.
2133
2134 2007-08-11 Glenn Morris <rgm@gnu.org>
2135
2136 * progmodes/compile.el (compilation-buffer-name): Don't check
2137 compilation-arguments. It is superfluous, and the variable isn't
2138 even set when this function is called.
2139
2140 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2141
2142 * term/mac-win.el (mac-ae-reopen-application): New function.
2143 (mac-apple-event-map): Bind "reopen application" Apple event to it.
2144
2145 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
2146
2147 * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
2148 take tex-font-script-display into account.
2149 (tex-font-script-display, tex-font-lock-suscript): Change from a cons
2150 cell to a list of 2 elements to simplify the unfontify code.
2151
2152 2007-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2153
2154 * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
2155 (ps-begin-job): Use ps-default-fg and ps-default-bg only when
2156 ps-print-color-p is neither nil nor black-white. Reported by Christian
2157 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
2158
2159 2007-08-08 Andreas Schwab <schwab@suse.de>
2160
2161 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
2162 self-insert-command, not self-insert.
2163
2164 2007-08-08 Glenn Morris <rgm@gnu.org>
2165
2166 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
2167 argument optional, for backwards compatibility, and only highlight
2168 args when present. Fix symbol name typo (doc/args).
2169
2170 * help-mode.el (help-make-xrefs): Search for symbol constituents,
2171 rather than just `-'.
2172
2173 2007-08-07 Jay Belanger <jay.p.belanger@gmail.com>
2174
2175 * calc/calc-units.el (calc-convert-temperature):
2176 Use `/' to create fractions.
2177
2178 2007-08-07 Michael Albinus <michael.albinus@gmx.de>
2179
2180 * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
2181 global matching.
2182 (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
2183 ERROR-BUFFER more robust. Display output.
2184 (tramp-file-name-handler): Add a connection property when we found
2185 a foreign file name handler. This allows backends like ftp to
2186 profit also from usr/host name completion based on connection
2187 cache.
2188 (tramp-send-command-and-read): Search for trash after the regexp
2189 until eol only. In XEmacs, there is a problem with \n.
2190
2191 * net/tramp-cache.el (top): Read persistent connection history
2192 when cache is empty.
2193
2194 2007-08-07 Nic Ferrier <nferrier@tapsellferrier.co.uk> (tiny change)
2195
2196 * net/tramp.el (tramp-handle-process-file): Fix bug inserting
2197 resulting output.
2198
2199 2007-08-07 Sam Steingold <sds@gnu.org>
2200
2201 * progmodes/compile.el (compilation-start): Pass nil as startfile
2202 to comint-exec.
2203
2204 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
2205
2206 * longlines.el (longlines-decoded): New variable.
2207 (longlines-mode): Avoid encoding or decoding the buffer twice.
2208
2209 2007-08-07 Martin Rudalics <rudalics@gmx.at>
2210
2211 * format.el (format-insert-file): Make sure that at most one undo
2212 entry is recorded for the insertion. Inhibit point-motion and
2213 modification hooks around call to insert-file-contents.
2214
2215 2007-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2216
2217 * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
2218 Select the buffer's window before moving point.
2219
2220 2007-08-07 Richard Stallman <rms@gnu.org>
2221
2222 * term.el (term): Remove parent group `unix'.
2223
2224 * simple.el (default-indent-new-line): New function.
2225 It calls comment-line-break-function if there are comments.
2226 (do-auto-fill): Use that.
2227
2228 2007-08-07 Sean O'Rourke <sorourke@cs.ucsd.edu>
2229
2230 * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
2231 (PC-do-completion): Add "acronym completion" for symbols and
2232 filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
2233
2234 2007-08-06 Sam Steingold <sds@gnu.org>
2235
2236 * mouse.el (mouse-buffer-menu): Pass mode-name through
2237 format-mode-line because it may be a list,
2238 e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
2239
2240 2007-08-06 Vinicius Jose Latorre <viniciusig@ig.com.br>
2241
2242 * printing.el (pr-update-menus): Docstring fix.
2243
2244 2007-08-06 Jason Rumney <jasonr@gnu.org>
2245
2246 * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
2247
2248 * vc-hooks.el (vc-call): Add doc string.
2249
2250 2007-08-06 Michael Albinus <michael.albinus@gmx.de>
2251
2252 * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
2253 process-filter.
2254
2255 2007-08-06 Kenichi Handa <handa@m17n.org>
2256
2257 * international/quail.el: Wrap (require 'help-mode) by
2258 eval-when-compile.
2259 (quail-help-init): New function.
2260 (quail-help): Call quail-help-init.
2261 (quail-store-decode-map-key): Change it to a function.
2262
2263 2007-08-05 Jason Rumney <jasonr@gnu.org>
2264
2265 * vc.el (vc-rollback): Add norevert argument back.
2266 (vc-revert-buffer): Add back as obsolete alias.
2267
2268 2007-08-05 Peter Povinec <ppovinec@yahoo.com> (tiny change)
2269
2270 * term.el: Honor term-default-fg-color and term-default-bg-color
2271 settings when modifying term-current-face.
2272 (term-default-fg-color, term-default-bg-color): Initialize from
2273 default term-current-face.
2274 (term-mode, term-reset-terminal): Set term-current-face with
2275 term-default-fg-color and term-default-bg-color.
2276 (term-handle-colors-array): term-current-face has term-default-fg-color
2277 and term-default-bg-color after reset escape sequence.
2278 (term-handle-colors-array): Set term-current-color with
2279 term-default-fg/bg-color instead of ansi-term-color-vector when the
2280 index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
2281
2282 2007-08-05 Jay Belanger <jay.p.belanger@gmail.com>
2283
2284 * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
2285 (math-nlfit-givens): Let bind free variables.
2286
2287 2007-08-05 Vinicius Jose Latorre <viniciusig@ig.com.br>
2288
2289 * printing.el: Require lpr and ps-print when loading printing package.
2290 Reported by Glenn Morris <rgm@gnu.org>.
2291
2292 2007-08-05 Michael Albinus <michael.albinus@gmx.de>
2293
2294 * files.el (set-auto-mode): Handle also remote files wrt
2295 `auto-mode-alist'.
2296
2297 2007-08-04 Jay Belanger <jay.p.belanger@gmail.com>
2298
2299 * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
2300 curves and plotting.
2301
2302 * calc/calc-nlfit.el: New file.
2303
2304 2007-08-04 Glenn Morris <rgm@gnu.org>
2305
2306 * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
2307 zero, not nil, when the library is first loaded. Check for a file
2308 that has been modified on disk.
2309
2310 * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
2311 Remove duplicate defvar preventing initialization.
2312 (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
2313
2314 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2315
2316 * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
2317 (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
2318 may match up to 4 lines.
2319 (diff-beginning-of-file-and-junk): Rewrite.
2320
2321 2007-08-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2322
2323 * printing.el: Evaluate require only during compilation.
2324 (pr-version): New version 6.9.1.
2325 (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
2326 (pr-global-menubar): Fix code.
2327
2328 2007-08-03 Dan Nicolaescu <dann@ics.uci.edu>
2329
2330 * term.el (term-erase-in-display): Fix case when point is not at
2331 the beginning of the line.
2332
2333 2007-08-03 Jay Belanger <jay.p.belanger@gmail.com>
2334
2335 * calc/calc-ext.el (math-get-value, math-get-sdev)
2336 (math-contains-sdev): New functions.
2337
2338 * calc/calc-graph.el (calc-graph-format-data)
2339 (calc-graph-add-curve): Check for error forms.
2340 (calc-graph-set-styles): Add option for error forms.
2341
2342 2007-08-03 Miles Bader <miles@gnu.org>
2343
2344 * vc-hooks.el (vc-handled-backends): Change capitalization of VC
2345 backend names for new backends to `Git', `Hg', and `Bzr'.
2346 * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
2347 not `HG'.
2348 * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
2349 name, not `GIT'.
2350 * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
2351 (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
2352
2353 2007-08-03 Richard Stallman <rms@gnu.org>
2354
2355 * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
2356 to update deleted flag.
2357
2358 * cus-edit.el (customize-apropos, customize-apropos-options)
2359 (customize-apropos-faces, customize-apropos-groups): Improve prompt.
2360
2361 * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
2362
2363 * startup.el (fancy-splash-head, startup-echo-area-message):
2364 Change message text.
2365
2366 * emulation/tpu-edt.el (next-line-internal): Setting deleted.
2367 All callers use line-move.
2368
2369 * progmodes/compile.el (compilation-find-buffer): Return current
2370 buffer immediately if suitable.
2371 (compile, compilation-buffer-name, compilation-start): Doc fixes.
2372
2373 2007-08-03 Daiki Ueno <ueno@unixuser.org>
2374
2375 * faces.el (face-normalize-spec): New function.
2376 (frame-set-background-mode): Normalize face-spec before calling
2377 face-spec-match-p.
2378
2379 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2380
2381 * server.el (server-window): Add switch-to-buffer-other-frame option.
2382
2383 2007-08-03 Glenn Morris <rgm@gnu.org>
2384
2385 * cus-edit.el (customize-apropos): Make the error message indicate
2386 what kind of thing the user was trying to customize.
2387
2388 * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
2389
2390 * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
2391 Fix off-by-one error in previous change.
2392
2393 2007-08-03 Drew Adams <drew.adams@oracle.com>
2394
2395 * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
2396 Make buffer writable.
2397
2398 2007-08-01 Jay Belanger <jay.p.belanger@gmail.com>
2399
2400 * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
2401 (math-cos-raw-2, math-arctan-raw, math-ln-raw):
2402 Use native Emacs functions, when appropriate.
2403
2404 2007-08-01 Dan Nicolaescu <dann@ics.uci.edu>
2405 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 * vc.el: Document new VC operation `extra-menu'.
2408
2409 * vc-hooks.el (vc-default-extra-menu): New function.
2410
2411 * menu-bar.el (menu-bar-vc-filter): New function.
2412 (menu-bar-tools-menu): Use it as a filter.
2413
2414 2007-08-01 Eric Hanchrow <offby1@blarg.net> (tiny change)
2415
2416 * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
2417
2418 2007-08-01 Glenn Morris <rgm@gnu.org>
2419
2420 * progmodes/fortran.el: Remove leading `*' from all defcustom doc
2421 strings.
2422 (fortran-tab-mode-default): Remove needless autoload.
2423 (fortran-tab-mode-string): Add help-echo and mouse properties, and
2424 mark as risky.
2425 (fortran-line-length): New buffer-local variable, safe if integer.
2426 (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
2427 Change from variables to constants.
2428 (fortran-font-lock-syntactic-keywords): Delete as a variable,
2429 replace with a new function definition.
2430 (fortran-mode): Use fortran-line-length, and
2431 fortran-font-lock-syntactic-keywords as a function. Add a
2432 hack-local-variables-hook function.
2433 (fortran-line-length, fortran-hack-local-variables): New functions.
2434 (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
2435 Use fortran-line-length rather than 72.
2436 (fortran-window-create-momentarily): Doc fix.
2437
2438 2007-07-31 Drew Adams <drew.adams@oracle.com> (tiny change)
2439
2440 * cus-edit.el (custom-group-value-create, custom-goto-parent):
2441 Fix parent groups link.
2442
2443 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net>
2444
2445 * progmodes/python.el (python-current-defun): Adjust to never fall
2446 into infinite loop.
2447
2448 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
2449
2450 * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
2451
2452 2007-07-29 Kimit Yada <kimitto@gmail.com> (tiny change)
2453
2454 * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
2455 (copyright-fix-years, copyright): Correctly handle the case where
2456 copyright-limit is nil.
2457
2458 2007-07-28 Konstantin Novitsky <knovitsk@Bear.com> (tiny change)
2459
2460 * progmodes/python.el (run-python): Fix path separator under w32.
2461
2462 2007-07-30 Richard Stallman <rms@gnu.org>
2463
2464 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
2465 Treat non-break space as whitespace in Lisp.
2466
2467 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
2468
2469 * vc.el (vc-dired-hook): Use inhibit-read-only.
2470
2471 * progmodes/compile.el (compilation-forget-errors):
2472 Reset compilation-auto-jump-to-next.
2473
2474 2007-07-30 Michael Olson <mwolson@gnu.org>
2475
2476 * cus-edit.el (custom-group-save): Fix void function definition
2477 error. Thanks to Zhang Wei for the report.
2478
2479 * ps-print.el: Check in trivial changes to the autoloads section
2480 caused by the build process. These autoloads really ought to be
2481 placed in a separate file, methinks.
2482
2483 2007-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
2484
2485 * calendar/calendar.el (calendar-mode): Make sure
2486 displayed-(month|year) are set.
2487 (calendar-basic-setup): Display buffer before adjusting window sizes.
2488 (generate-calendar-window): Use inhibit-read-only. Simplify.
2489 Generate buffer and set displayed-month and displayed-year before
2490 calling update-calendar-mode-line.
2491
2492 2007-07-29 Michael Albinus <michael.albinus@gmx.de>
2493
2494 * net/tramp.el:
2495 * net/tramp-uu.el:
2496 * net/trampver.el: Use utf-8 encoding with coding cookie.
2497
2498 * net/tramp-cache.el:
2499 * net/tramp-fish.el:
2500 * net/tramp-ftp.el:
2501 * net/tramp-gw.el:
2502 * net/tramp-smb.el: Remove coding cookie.
2503
2504 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
2505 Flush buffer file-name's file property.
2506 (tramp-handle-file-remote-p): The first parameter is FILENAME.
2507
2508 * net/trampver.el: Update release number.
2509
2510 2007-07-29 Juri Linkov <juri@jurta.org>
2511
2512 * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
2513 Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
2514 when major-mode is not dired-mode.
2515 (dired-toggle-read-only): New function.
2516 (dired-recursive-deletes): Remove obsolete comments about old
2517 default value.
2518 (dired-do-flagged-delete, dired-do-delete): Refill docstring.
2519
2520 * wdired.el (wdired-exit): New function.
2521 (wdired-mode-map): Bind C-x C-q to wdired-exit.
2522
2523 2007-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
2524
2525 * cus-edit.el (customize-read-group): New fun.
2526 (customize-group-other-window, customize-face-other-window):
2527 Prompt before delegating to customize-(group|face).
2528 Bind pop-up-windows rather than use the other-window argument.
2529 (customize-group, customize-face): Prompt from the interactive spec.
2530 Remove args `prompt-for-group' and `other-window'.
2531
2532 * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
2533 (ad-body-forms, ad-advised-interactive-form): Revert this part of
2534 last change.
2535
2536 2007-07-28 Masatake YAMATO <jet@gyve.org>
2537
2538 * vc.el (vc-dired-mode): Add a menu for VC related operation.
2539 Use backend name as the menu label. Suggested by David Kastrup.
2540
2541 2007-07-28 Alan Mackenzie <acm@muc.de>
2542
2543 Fix problem with modes derived from CC Mode:
2544 * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
2545 macro to cc-langs.
2546 (c-init-language-vars-for): Remove call to above macro.
2547 * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
2548 been moved to here.
2549 (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
2550
2551 2007-07-28 Eli Zaretskii <eliz@gnu.org>
2552
2553 * net/trampver.el: Fix the `coding' cookie.
2554
2555 2007-07-28 Dan Nicolaescu <dann@ics.uci.edu>
2556
2557 * vc-git.el (vc-git-print-log): Support both the old single file
2558 interface and the new one.
2559
2560 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
2561
2562 * bindings.el (mode-line-remote): Use updated %@ construct.
2563
2564 2007-07-27 Stefan Monnier <monnier@iro.umontreal.ca>
2565
2566 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
2567 (calendar-bahai-epoch, calendar-bahai-leap-year-p)
2568 (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
2569 (diary-list-bahai-entries, diary-bahai-mark-entries)
2570 (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
2571 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
2572 New names to clean up namespace.
2573 (list-bahai-diary-entries, mark-bahai-diary-entries)
2574 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
2575 (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
2576 Add compatibility aliases.
2577
2578 * calendar/appt.el: Don't wrap defvar within eval-when-compile.
2579
2580 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
2581 (calendar-scroll-left-three-months)
2582 (calendar-scroll-right-three-months): Clean up namespace.
2583 (scroll-calendar-left, scroll-calendar-right)
2584 (scroll-calendar-left-three-months)
2585 (scroll-calendar-right-three-months): Add compatibility aliases.
2586
2587 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
2588 Behave like mouse-scroll-calendar-* when used from the mouse.
2589
2590 * calendar/cal-menu.el (cal-menu-scroll-menu)
2591 (cal-menu-global-mouse-menu):
2592 * calendar/calendar.el (calendar-mode-map):
2593 Use new calendar-scroll-* names.
2594 (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
2595 Remove. Use calendar-scroll-* directly instead.
2596
2597 2007-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2598
2599 * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
2600 (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
2601 (ad-make-advised-definition, ad-cache-id-verification-code):
2602 Use commandp and interactive-form instead.
2603
2604 2007-07-26 Dan Nicolaescu <dann@ics.uci.edu>
2605
2606 * vc-git.el: Relicense to GPLv3 or later.
2607 (vc-directory-exclusion-list, vc-handled-backends): Remove.
2608
2609 * vc-hooks.el (vc-handled-backends): Add GIT.
2610
2611 * vc.el (vc-directory-exclusion-list): Add .git.
2612
2613 2007-07-26 Alexandre Julliard <julliard@winehq.org>
2614
2615 * vc-git.el (vc-git-revision-table)
2616 (vc-git-revision-completion-table): New functions.
2617
2618 2007-07-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2619
2620 * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
2621 * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
2622 * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
2623 * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
2624 * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
2625 * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
2626 New command actions for EPS header and EPS footer.
2627
2628 * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
2629 footer. Fix some problems with one-or-more, zero-or-more and
2630 alternative constructions generation. Some log messages
2631 implementation. Doc fix.
2632 (ebnf-version): New version 4.4.
2633 (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
2634 (ebnf-eps-footer, ebnf-log): New options.
2635 (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
2636 (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
2637 (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
2638 (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
2639 (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New funs.
2640 (ebnf-style-custom-list, ebnf-style-database): Put new values.
2641 (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
2642 (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
2643 (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
2644 (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
2645 (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
2646 (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
2647 (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
2648 (ebnf-non-terminal-dimension, ebnf-special-dimension)
2649 (ebnf-terminal-dimension1, ebnf-repeat-dimension)
2650 (ebnf-except-dimension, ebnf-alternative-dimension)
2651 (ebnf-optional-dimension, ebnf-one-or-more-dimension)
2652 (ebnf-zero-or-more-dimension, ebnf-sequence-dimension): Insert log
2653 message fun.
2654 (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
2655 (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
2656 (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
2657 (ebnf-terminal-dimension1, ebnf-alternative-dimension)
2658 (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
2659 (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
2660 (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
2661 compatibility with Emacs 20 & 21.
2662 (ebnf-eps-header-comment, ebnf-eps-footer-comment)
2663 (ebnf-eps-file-alist, ebnf-basic-width-extra)
2664 (ebnf-basic-empty-height): New vars.
2665 (ebnf-prologue): Fix PostScript code.
2666 (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
2667 (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
2668 (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
2669 (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
2670
2671 2007-07-25 Glenn Morris <rgm@gnu.org>
2672
2673 * Relicense all FSF files to GPLv3 or later.
2674
2675 * COPYING: Switch to GPLv3.
2676
2677 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
2678
2679 * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
2680 Replace it with another one which disables undo before calling
2681 erase-buffer and then turns it back on if needed.
2682
2683 2007-07-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2684
2685 * ps-print.el: Problem with foreground and background color when
2686 printing a buffer with and without faces. Reported by Christian
2687 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
2688 (ps-print-version): New version 6.7.5.
2689 (ps-default-fg): Change default value to nil, so black color is used
2690 when a face does not specify a foreground color.
2691 (ps-default-bg): Change default value to nil, so white color is used
2692 for background color.
2693 (ps-begin-job): Fix code.
2694
2695 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
2696
2697 * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
2698
2699 2007-07-24 Glenn Morris <rgm@gnu.org>
2700
2701 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
2702 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
2703 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
2704 (cal-tex-cursor-week, cal-tex-cursor-week2)
2705 (cal-tex-cursor-week-iso, cal-tex-week-hours)
2706 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
2707 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
2708 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
2709
2710 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
2711
2712 * calendar/calendar.el (calendar-mode-map): Move initialization
2713 into declaration. Add menu bindings (used to be done in cal-menu).
2714 (calendar-mode): Don't add an activate-menubar-hook.
2715
2716 * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
2717 modify calendar-mode-map), use easy-menu, and make sure that C-h k
2718 can be used on the menu entries.
2719 (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
2720 (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
2721 (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
2722 (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
2723 (calendar-flatten, cal-menu-update): Remove.
2724 (calendar-mouse-insert-hebrew-diary-entry)
2725 (calendar-mouse-insert-islamic-diary-entry)
2726 (calendar-mouse-insert-bahai-diary-entry):
2727 Remove (fold into cal-menu-diary-menu).
2728 (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
2729 (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
2730 (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
2731 (calendar-mouse-view-diary-entries): Minor simplifications.
2732 (calendar-event-to-date): Use with-current-buffer.
2733
2734 2007-07-25 Nick Roberts <nickrob@snap.net.nz>
2735
2736 * add-log.el (change-log-redate): Remove (not needed anymore and
2737 doesn't appear to work).
2738
2739 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
2740
2741 * frame.el: Use mapc and dolist instead of mapcar where possible.
2742 (close-display-connection): New command.
2743
2744 2007-07-25 Alexandre Julliard <julliard@winehq.org>
2745
2746 * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
2747 (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
2748
2749 2007-07-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2750
2751 * ps-print.el (ps-multibyte-buffer): Docstring fix.
2752
2753 * ps-mule.el: Doc fix.
2754 (ps-multibyte-buffer, ps-mule-font-info-database-default)
2755 (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
2756
2757 2007-07-25 Glenn Morris <rgm@gnu.org>
2758
2759 * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
2760 (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
2761 (cal-tex-daily-end, cal-tex-hook)
2762 (cal-tex-cal-one-month, cal-tex-cal-multi-month)
2763 (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
2764 (cal-tex-cursor-week-iso, cal-tex-week-hours)
2765 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
2766 (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
2767 (cal-tex-day-prefix, cal-tex-day-name-format)
2768 (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
2769 (cal-tex-caldate, cal-tex-LaTeX-hourbox)
2770 (cal-tex-LaTeX-subst-list): Change from variables to constants.
2771 (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
2772 (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
2773 etc, rather than \bf.
2774 (cal-tex-mini-calendar): Fix typos in previous change.
2775 (cal-tex-latexify-list): Remove inner let binding.
2776 (cal-tex-end-document, cal-tex-banner): Use multi-line
2777 cal-tex-comment.
2778 (cal-tex-comment): Handle embedded newlines.
2779 (cal-tex-LaTeXify-string): Use substring-no-properties.
2780
2781 2007-07-25 Joakim Verona <joakim@verona.se> (tiny change)
2782
2783 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2784 Add support for the Maden build tool.
2785
2786 2007-07-25 William Xu <william.xwl@gmail.com> (tiny change)
2787
2788 * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
2789
2790 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2791
2792 * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
2793
2794 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
2795
2796 * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
2797 C-x C-q.
2798
2799 * vc-git.el (vc-git-print-log): Fix previous change.
2800
2801 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2802
2803 * window.el (save-selected-window): Minor optimization.
2804 (bw-adjust-window): If operation failed, try with a smaller delta.
2805 (window-fixed-size-p): New function.
2806 (window-area-factor): New var.
2807 (balance-windows-area): New command.
2808
2809 * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
2810 (ps-mule-encode-ethiopic): Make it clear that it's always defined.
2811 (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
2812 (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
2813 (ps-mule-begin-job): Use dolist.
2814
2815 2007-07-24 Michael Albinus <michael.albinus@gmx.de>
2816
2817 * subr.el (start-file-process-shell-command)
2818 (process-file-shell-command): New defuns.
2819
2820 * progmodes/compile.el (compilation-start):
2821 Apply `start-file-process-shell-command'.
2822
2823 2007-07-24 Alexandre Julliard <julliard@winehq.org>
2824
2825 * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
2826
2827 2007-07-24 Alan Mackenzie <acm@muc.de>
2828
2829 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
2830 Initialise byte-compile-unresolved-functions before rather than
2831 after a compilation.
2832 (byte-compile-unresolved-functions): Amplify doc string.
2833
2834 2007-07-24 Glenn Morris <rgm@gnu.org>
2835
2836 * startup.el (normal-splash-screen): Use `emacs-copyright'.
2837
2838 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
2839 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
2840 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
2841 (cal-tex-cursor-week, cal-tex-cursor-week2)
2842 (cal-tex-cursor-week-iso, cal-tex-week-hours)
2843 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
2844 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
2845 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
2846
2847 * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
2848 (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
2849 (cal-tex-day-name-format, cal-tex-cal-one-month)
2850 (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
2851 (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
2852 (cal-tex-mini-calendar, cal-tex-em): Doc fix.
2853 (cal-tex-list-holidays, cal-tex-cursor-year)
2854 (cal-tex-cursor-year-landscape, cal-tex-year)
2855 (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
2856 (cal-tex-cursor-month, cal-tex-insert-days)
2857 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2858 (cal-tex-first-blank-p, cal-tex-cursor-week)
2859 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
2860 (cal-tex-week-hours, cal-tex-cursor-week-monday)
2861 (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
2862 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
2863 (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
2864 (cal-tex-latexify-list, cal-tex-previous-month)
2865 (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
2866 modernization, including using dotimes rather than
2867 calendar-for-loop.
2868 (cal-tex-LaTeX-subst-list): Remove `@'.
2869 (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
2870 Use \textit and \textbf rather than \em and \it.
2871
2872 * calendar/cal-bahai.el (list-bahai-diary-entries)
2873 * calendar/cal-hebrew.el (list-hebrew-diary-entries)
2874 * calendar/cal-islam.el (list-islamic-diary-entries)
2875 * calendar/calendar.el (generate-calendar, generate-calendar-month)
2876 * calendar/diary-lib.el (diary-list-entries)
2877 (mark-calendar-date-pattern): Use `dotimes' rather than
2878 `calendar-for-loop'.
2879
2880 * calendar/calendar.el (calendar-for-loop): Doc fix.
2881
2882 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
2883
2884 * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
2885 underlying file is uptodate.
2886
2887 2007-07-23 Christopher J. Madsen <cjm@cjmweb.net>
2888
2889 * replace.el (perform-replace): Use isearch-no-upper-case-p.
2890
2891 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
2892
2893 * vc-hooks.el (vc-mode-line-map): New const.
2894 (vc-mode-line): Use it.
2895
2896 2007-07-23 Alexandre Julliard <julliard@winehq.org>
2897
2898 * vc-git.el (vc-git-delete-file, vc-git-rename-file)
2899 (vc-git-unregister): New functions.
2900 (vc-git-find-version): Use the result of ls-files as a parameter
2901 for cat-file.
2902
2903 2007-07-23 Michael Albinus <michael.albinus@gmx.de>
2904
2905 * net/tramp.el (tramp-perl-file-attributes)
2906 (tramp-perl-directory-files-and-attributes)
2907 (tramp-handle-file-attributes-with-stat)
2908 (tramp-handle-directory-files-and-attributes-with-stat)
2909 (tramp-convert-file-attributes): Handle huge file sizes.
2910
2911 2007-07-23 Juri Linkov <juri@jurta.org>
2912
2913 * isearch.el (isearch-message-function): New variable.
2914 (isearch-update, isearch-search): Use it.
2915
2916 * simple.el (goto-history-element): New function created from
2917 next-history-element.
2918 (next-history-element): Most code moved to goto-history-element.
2919 Call goto-history-element with (- minibuffer-history-position n).
2920 (previous-history-element): Call goto-history-element with (+
2921 minibuffer-history-position n).
2922 (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
2923 (minibuffer-history-isearch-message-overlay): New buffer-local variable.
2924 (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
2925 (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
2926 (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
2927 (minibuffer-history-isearch-pop-state): New functions.
2928
2929 2007-07-23 Thien-Thi Nguyen <ttn@gnuvola.org>
2930
2931 * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
2932 Also, if FILE is a list, return non-nil if any of its elements
2933 should stay local. Update docstring.
2934
2935 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
2936
2937 * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
2938 change by reverting a small part.
2939
2940 2007-07-23 Richard Stallman <rms@gnu.org>
2941
2942 * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
2943
2944 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
2945
2946 * vc-git.el (vc-git-checkin): Delete unused parameter and the code
2947 handling it. Use vc-git-command.
2948 (vc-git-find-version, vc-git-diff-tree): New functions.
2949 (vc-git-revert): Use vc-git-command.
2950 (vc-git--run-command): Delete.
2951
2952 2007-07-23 Alexandre Julliard <julliard@winehq.org>
2953
2954 * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
2955
2956 2007-07-20 Kenichi Handa <handa@m17n.org>
2957
2958 * international/utf-8.el (utf-8-post-read-conversion):
2959 Temporarily bind utf-8-compose-scripts to nil while running
2960 *-compose-region functions.
2961
2962 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
2963
2964 * vc-git.el: Update status.
2965 (vc-directory-exclusion-list): Use eval-after-load.
2966
2967 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
2968
2969 * bindings.el (mode-line-remote): New variable.
2970 (help-echo): Add to default values of mode-line-format.
2971
2972 * files.el: Mark mode-line-remote as risky.
2973
2974 2007-07-22 Juri Linkov <juri@jurta.org>
2975
2976 * isearch.el (isearch-edit-string): Save old point and
2977 isearch-other-end to old-point and old-other-end before reading
2978 the search string from minibuffer. After exiting minibuffer set
2979 point to old-other-end if point and the search direction is the
2980 same as before reading the search string.
2981 (isearch-del-char): Don't set isearch-yank-flag to t. Put point
2982 to isearch-other-end. Instead of isearch-search-and-update call
2983 three functions isearch-search, isearch-push-state and isearch-update.
2984
2985 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2986
2987 * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
2988 deal with multiple file arguments.
2989 (vc-git-print-log): Deal with multiple file arguments.
2990
2991 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
2992
2993 * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
2994 diff-refine-hunk. Adjust users.
2995 (diff-unified-hunk-p, diff-splittable-p): New functions.
2996 (diff-mode-menu): Use it to disable Split when it doesn't work.
2997
2998 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2999
3000 * diff-mode.el (diff-mode-menu): New entries.
3001
3002 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3003
3004 * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
3005 if applicable, so as to save undo-log space.
3006
3007 * diff-mode.el (diff-find-file-name): Add arg `batch'.
3008
3009 * diff-mode.el (diff-beginning-of-file-and-junk): New function.
3010 (diff-file-kill): Use it.
3011 (diff-beginning-of-hunk): Add arg `try-harder' using it.
3012 (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
3013 Use it so they find the hunk even when we're in the file header.
3014
3015 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
3016
3017 * vc-git.el (vc-git-revision-granularity, vc-git-root)
3018 (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
3019 (vc-git-create-repo): New functions.
3020 (vc-git-registered): New autoloaded function definition.
3021 (vc-git-registered): Use vc-git-root.
3022 (vc-git-responsible-p): New defalias.
3023 (vc-git-annotate-extract-revision-at-line): Uncomment.
3024 (vc-git-print-log): Add the file name to the log.
3025 (vc-git-log-view-mode): New derived mode.
3026 (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
3027
3028 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
3029
3030 * progmodes/grep.el (grep-compute-defaults): Keep default values.
3031
3032 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
3033
3034 * textmodes/reftex.el (reftex-access-parse-file): Create parse
3035 file in a way that does not interfere with recentf mode.
3036 (reftex-access-parse-file): Do not risk destroying an existing
3037 buffer.
3038
3039 2007-07-22 Alexandre Julliard <julliard@winehq.org>
3040
3041 * vc-git.el: New file.
3042
3043 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3044
3045 * textmodes/tex-mode.el (tex-font-script-display): Change default.
3046
3047 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
3048
3049 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
3050 for branches and new files.
3051
3052 * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
3053 local-map handling ...
3054 (vc-mode-line): ... here. Improve handling of help-echo.
3055
3056 * vc.el (mode-line-string): Document help-echo usage.
3057
3058 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
3059
3060 Sync with Tramp 2.1.10.
3061
3062 * net/tramp.el (tramp-get-ls-command): Fix typo.
3063
3064 * net/trampver.el: Update release number.
3065
3066 2007-07-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3067
3068 * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
3069
3070 * term/x-win.el (x-handle-no-bitmap-icon): New function.
3071
3072 2007-07-22 Martin Rudalics <rudalics@gmx.at>
3073
3074 * add-log.el (change-log-fill-parenthesized-list): New function.
3075 (change-log-indent): Call change-log-fill-parenthesized-list.
3076 (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
3077 Have lines with leading asterisk start a paragraph.
3078
3079 2007-07-21 Jay Belanger <jay.p.belanger@gmail.com>
3080
3081 * calc/calc-math.el (math-emacs-precision)
3082 (math-largest-emacs-expt, math-smallest-emacs-expt):
3083 New variables.
3084 (math-use-emacs-fn): New function.
3085 (math-exp-raw): Evaluate with `math-use-emacs-fn', when
3086 appropriate.
3087
3088 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
3089
3090 * image-dired.el (image-dired-sane-db-file): New func.
3091 (image-dired-write-tags, image-dired-remove-tag)
3092 (image-dired-list-tags, image-dired-write-comments)
3093 (image-dired-get-comment, image-dired-mark-tagged-files)
3094 (image-dired-create-gallery-lists): Call new func.
3095 Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
3096
3097 2007-07-21 Dan Nicolaescu <dann@ics.uci.edu>
3098
3099 * vc-hg.el (vc-hg-dir-state): Fix loop.
3100 (vc-hg-print-log): Fix expected return value for vc-hg-command.
3101 (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
3102 (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
3103 (vc-hg-revert): Likewise.
3104 (vc-hg-revision-table, vc-hg-revision-completion-table): New
3105 functions.
3106
3107 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
3108
3109 * add-log.el (change-log-resolve-conflict): Don't lose data if the
3110 merge fails.
3111
3112 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
3113
3114 * progmodes/compile.el (compilation-auto-jump-to-first-error):
3115 Add group and version.
3116
3117 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
3118
3119 * add-log.el (add-log-file-name): Use file-relative-name.
3120 (add-change-log-entry): Delay reading
3121 add-log-(full-name|mailing-address) to after we've switched to the
3122 ChangeLog buffer so we get the right value.
3123 (add-change-log-entry, add-log-current-defun, change-log-merge):
3124 Use derived-mode-p rather than checking major-mode directly.
3125
3126 * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
3127 name for buffer-file-name if it refers to a directory.
3128
3129 * vc-arch.el (vc-arch-diff): Fix last change.
3130
3131 * progmodes/compile.el (compilation-start): Remember the original
3132 directory in a buffer-local compilation-directory.
3133 (compile): Set the global value of compilation-directory.
3134 (recompile): Use compilation-directory even in the compilation buffer.
3135
3136 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
3137
3138 * vc-hg.el (vc-hg-diff): Use vc-hg-command.
3139
3140 2007-07-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3141
3142 * ps-print.el: Problem with foreground and background color when
3143 printing a buffer with and without faces. Reported by Christian
3144 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
3145 (ps-print-version): New version 6.7.5.
3146 (ps-default-fg): Change default value to nil, so black color is used
3147 when a face does not specify a foreground color.
3148 (ps-default-bg): Change default value to nil, so white color is used
3149 for background color.
3150 (ps-begin-job): Fix code.
3151
3152 2007-07-20 Eli Zaretskii <eliz@gnu.org>
3153
3154 * makefile.w32-in (install-lisp-SH): Don't create subdirectories
3155 in $(INSTALL_DIR)/lisp/ if they already exist.
3156
3157 2007-07-20 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
3158
3159 * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
3160 in $(INSTALL_DIR)/lisp/ if they already exist.
3161
3162 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
3163
3164 * progmodes/vera-mode.el (vera-re-search-forward)
3165 (vera-re-search-backward): Remove use of store-match-data.
3166 (vera-mode-map): Move initialization into declaration.
3167
3168 * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
3169 (flymake-find-buildfile): Use locate-dominating-file.
3170
3171 * vc.el (vc-delistify): Use mapconcat.
3172 (vc-do-command): Minor simplification.
3173 (vc-expand-dirs): Use push.
3174
3175 * vc-mcvs.el (vc-mcvs-create-repo):
3176 * vc-cvs.el (vc-cvs-create-repo): Remove.
3177
3178 * vc-hooks.el (vc-find-root): Fix case where `file' is the current
3179 directory and the root as well.
3180
3181 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
3182
3183 * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
3184 instead of a file.
3185
3186 * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
3187 (vc-hg-registered): Replace if with when.
3188 (vc-hg-state): Deal with nonexistent files and handle removed files.
3189 (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
3190 (vc-hg-checkout): Re-enable.
3191 (vc-hg-create-repo): Fix typos.
3192 (vc-hg-print-log): Fix for multiple files.
3193 (vc-hg-workfile-unchanged-p): New function.
3194
3195 * vc.el: Fix typo.
3196 (vc-print-log): Fix call to print-log.
3197 (vc-default-comment-history): Likewise.
3198 (vc-directory-exclusion-list): Add .hg and .bzr.
3199 (vc-diff-internal): Pass a list instead of a file.
3200
3201 * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
3202
3203 * vc-bzr.el (vc-bzr-create-repo): New function.
3204
3205 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3206
3207 * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
3208 `file' from which to start the search.
3209
3210 2007-07-19 Eric S. Raymond <esr@snark.thyrsus.com>
3211
3212 * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
3213 having a single file argument to having a list of files as the
3214 first argument.
3215
3216 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3217
3218 * files.el (locate-dominating-file): New function.
3219
3220 2007-07-18 Michael Albinus <michael.albinus@gmx.de>
3221
3222 * progmodes/grep.el (grep-host-defaults-alist): New defvar.
3223 (grep-compute-defaults): Use it.
3224
3225 2007-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
3226
3227 * uniquify.el: Docstring fixes.
3228
3229 2007-07-18 Eric S. Raymond <esr@snark.thyrsus.com>
3230
3231 * vc.el (revision-granularity, create-repo): Document new vc
3232 backend properties.
3233 (vc-rollback): Renamed from vc-cancel-version. Update
3234 references. Pass a list instead of a file.
3235 (vc-revert): Renamed from vc-revert-buffer. Update references.
3236 (vc-delistify, vc-expand-dirs): New functions.
3237 (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
3238 of files instead of a single file.
3239 (vc-position-context, vc-resync-window, vc-diff-internal)
3240 (vc-print-log): Pass a list instead of a file.
3241
3242 * vc-hooks.el (vc-stay-local-p, vc-backend)
3243 (vc-backend-subdirectory-name): Work on a file list, not a single
3244 file.
3245 (vc-workfile-version): Update docstring.
3246 (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
3247 vc-revert instead of vc-revert-buffer.
3248 (vc-prefix-map): Likewise. Bind vc-update.
3249
3250 * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
3251 (vc-svn-wash-log): New functions.
3252 (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
3253 (vc-svn-command): Deal with a list of files, not a single file.
3254
3255 * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
3256 (vc-rcs-wash-log): New functions.
3257 (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
3258 Deal with a list of files, not a single file.
3259 (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version.
3260
3261 * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
3262 functions.
3263 (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
3264 list of files, not a single file.
3265
3266 * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
3267 New functions.
3268 (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
3269 (vc-mcvs-diff): Deal with a list of files, not a single file.
3270
3271 * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
3272 functions.
3273 (vc-hg-print-log): Deal with a list of files, not a single file.
3274 (vc-hg-diff-tree): New function, replace defalias with the same
3275 name.
3276 (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
3277 FILES to denote that it is a file list, not a single file.
3278
3279 * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
3280 (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
3281 a single file.
3282 (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
3283 that it is a file list, not a single file.
3284 (vc-cvs-diff): Likewise. Simplify.
3285
3286 * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
3287 Deal with a list of files, not a single file.
3288
3289 * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
3290 (vc-bzr-print-log): Update FILE parameter name to denote that it
3291 is a file list, not a single file.
3292 (vc-bzr-diff): Likewise. Use the car of files.
3293
3294 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
3295
3296 * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
3297 (follow-delete-other-windows-and-split, follow-recenter)
3298 (follow-windows-aligned-p, follow-point-visible-all-windows-p)
3299 (follow-redisplay, follow-estimate-first-window-start)
3300 (follow-xemacs-scrollbar-support, follow-intercept-process-output):
3301 Fix typos in docstrings.
3302
3303 2007-07-18 Martin Rudalics <rudalics@gmx.at>
3304
3305 * add-log.el (change-log-mode): Use fill-nobreak-predicate to
3306 avoid that filling introduces lines with a single asterisk.
3307
3308 * kmacro.el (kmacro-end-macro): When ignoring empty macro
3309 avoid incorrect kmacro-ring-empty-p messages.
3310 Reported by Michael Schierl <schierlm@gmx.de>.
3311
3312 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
3313
3314 * vc.el: Add more info about the vc-registered function.
3315
3316 2007-07-17 Michael Albinus <michael.albinus@gmx.de>
3317
3318 * files.el (file-remote-p): Introduce optional parameter
3319 IDENTIFICATION.
3320
3321 * recentf.el (recentf-keep-default-predicate): Adapt call of
3322 `file-remote-p'.
3323
3324 * progmodes/grep.el (grep-probe): Use `process-file'.
3325 (grep-compute-defaults): Handle variables host specific.
3326
3327 * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
3328 parameter IDENTIFICATION.
3329
3330 * net/tramp.el (tramp-handle-file-remote-p): Handle optional
3331 parameter IDENTIFICATION.
3332 (tramp-handle-set-file-times): New defun. Replaces `tramp-touch'.
3333 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
3334 Add entry for `set-file-times'.
3335 (tramp-do-copy-or-rename-file-via-buffer)
3336 (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
3337 (tramp-handle-unhandled-file-name-directory): Rewrite.
3338 (tramp-convert-file-attributes): Add error handling when inode is
3339 extraordinary big.
3340 (tramp-get-inode): Change parameter from FILE to VEC.
3341 (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
3342 is nil. This is according to the specification. Goto (point-max)
3343 when ready.
3344 (tramp-handle-shell-command): Rewrite completely, using
3345 `process-file' and `start-file-process'.
3346 (tramp-methods, tramp-find-shell)
3347 (tramp-open-connection-setup-interactive-shell)
3348 (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
3349 var. Reported by Steve Youngs <steve@sxemacs.org>.
3350
3351 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
3352 entry for `set-file-times'. Rename `start-process' into
3353 `start-file-process'. Remove `call-process' entry.
3354 (tramp-fish-handle-set-file-times): New defun.
3355 (tramp-fish-handle-executable-find): Use `process-file'.
3356 (tramp-fish-handle-process-file): New defun. Replaces
3357 `tramp-fish-handle-call-process'.
3358 (tramp-fish-do-copy-or-rename-file-directly): Use
3359 `set-file-times'.
3360 (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
3361
3362 * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
3363 `tramp-get-inode' parameter.
3364
3365 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
3366
3367 * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
3368 (vc-bzr-post-command-function): Remove. Version 0.8 is already old
3369 nowadays, and by the time Emacs-23 comes out, nobody will even remember
3370 it has ever existed.
3371
3372 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
3373
3374 * vc.el: Undo previous change.
3375
3376 2007-07-16 Eli Zaretskii <eliz@gnu.org>
3377
3378 * makefile.w32-in (clean): Don't delete *~.
3379
3380 2007-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
3381
3382 * textmodes/tex-mode.el (tex-verbatim-environments):
3383 Add safe-local-variable property.
3384 (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
3385 when starting font-lock rather than when loading tex-mode.el.
3386
3387 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
3388 whole $( rather than just the $. Rename from sh-quoted-subshell.
3389 (sh-font-lock-syntactic-keywords): Adjust call accordingly.
3390
3391 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
3392
3393 * bookmark.el (bookmark-maybe-sort-alist): Don't modify
3394 bookmark-alist. Instead, if not sorting, simply return it.
3395 (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
3396 for its return value, not for its side effect.
3397
3398 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
3399 case of alignment under a constant symbol, find and consider
3400 the sexp actually at indentation to be the "last sexp".
3401
3402 2007-07-16 Drew Adams <drew.adams@oracle.com>
3403
3404 * mouse.el (mouse-yank-secondary): Better error message if no
3405 secondary selection.
3406
3407 2007-07-16 Dan Nicolaescu <dann@ics.uci.edu>
3408
3409 * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
3410
3411 * term/xterm.el (xterm-turn-on-modify-other-keys)
3412 (xterm-turn-off-modify-other-keys): New functions.
3413 (terminal-init-xterm): Enable the modifyOtherKeys feature if the
3414 terminal supports it.
3415
3416 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
3417
3418 * bookmark.el (bookmark-show-all-annotations):
3419 Make sure each inserted annotation ends with newline.
3420
3421 2007-07-15 Richard Stallman <rms@gnu.org>
3422
3423 * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
3424
3425 * tutorial.el (tutorial--find-changed-keys):
3426 Handle C-x specially like ESC.
3427
3428 2007-07-15 Aaron Hawley <aaronh@garden.org>
3429
3430 * tar-mode.el (tar-get-descriptor): No error for zero-length file.
3431
3432 2007-07-15 Juri Linkov <juri@jurta.org>
3433
3434 * delsel.el (delete-selection-pre-hook):
3435 * emulation/cua-base.el (cua-paste): Before a yank command,
3436 check also whether last-command is one of mouse-save-then-kill,
3437 mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
3438
3439 2007-07-15 Michael Albinus <michael.albinus@gmx.de>
3440
3441 * recentf.el (recentf-keep-default-predicate): New defun.
3442 (recentf-keep): Use it as initial value.
3443
3444 2007-07-15 Karl Fogel <kfogel@red-bean.com>
3445
3446 * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
3447 thus restoring bookmark bindings to three slots under C-x r. See
3448 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
3449
3450 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change)
3451
3452 * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
3453
3454 2007-07-15 Jason Rumney <jasonr@gnu.org>
3455
3456 * w32-fns.el (set-default-process-coding-system): Use dos line ends
3457 for input to cmdproxy on all versions of Windows.
3458 Use dos line ends for input to plink.
3459
3460 * comint.el (comint-simple-send): Concat newline before sending.
3461 (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
3462
3463 2007-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
3464
3465 * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
3466 safe-local-variable setting.
3467
3468 2007-07-14 David Kastrup <dak@gnu.org>
3469
3470 * emacs-lisp/advice.el (defadvice): Doc fix.
3471
3472 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
3473
3474 * subr.el (when, unless): Doc fix.
3475
3476 2007-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3477
3478 * replace.el (match): Use yellow1 instead of yellow.
3479
3480 * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of red.
3481
3482 * pcvs-info.el (cvs-unknown): Likewise.
3483
3484 2007-07-13 Eli Zaretskii <eliz@gnu.org>
3485
3486 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
3487 (install): Use them to copy all *.el files before *.elc.
3488
3489 2007-07-13 Drew Adams <drew.adams@oracle.com>
3490
3491 * bookmark.el (bookmark-jump-other-window): New function.
3492 (bookmark-map): Bind it to "o".
3493
3494 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
3495 and its thread contains discussion about this change.
3496 The original patch was slightly tweaked by Karl Fogel
3497 <kfogel@red-bean.com> before committing.
3498
3499 2007-07-13 Karl Fogel <kfogel@red-bean.com>
3500
3501 * bookmark.el: Shorten some comments to fit within 80 lines.
3502
3503 2007-07-13 Karl Fogel <kfogel@red-bean.com>
3504
3505 * bookmark.el: Don't define bookmark keys under the "C-xr" map;
3506 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew
3507 Adams <drew.adams@oracle.com>, mildly tweaked by me. See
3508 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
3509
3510 2007-07-13 Carsten Dominik <dominik@science.uva.nl>
3511
3512 * textmodes/org.el: Bug fixes.
3513 (org-end-of-line): Move to end of line if in headline without tags.
3514
3515 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
3516
3517 * vc-hooks.el: Remove spurious * in docstrings.
3518 (vc-handled-backends): Add BZR.
3519
3520 * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
3521
3522 2007-07-12 Davis Herring <herring@lanl.gov>
3523
3524 * desktop.el (desktop-buffer-info, desktop-save):
3525 Use `desktop-dirname' instead of `dirname'.
3526
3527 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
3528
3529 * progmodes/which-func.el (which-func-modes): Add `python-mode'.
3530
3531 * progmodes/python.el (python-which-func-length-limit): New var.
3532 (python-which-func): New function.
3533 (python-current-defun): Add optional `length-limit' and try to fit
3534 computed function name to that length.
3535 (python-mode): Hook `python-which-func' up.
3536
3537 2007-07-12 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
3538
3539 * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
3540
3541 * comint.el (comint-dynamic-complete-as-filename):
3542 Use read-file-name-completion-ignore-case.
3543
3544 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
3545
3546 * comint.el (comint-dynamic-list-filename-completions):
3547 Use read-file-name-completion-ignore-case.
3548
3549 * vc-cvs.el: Require CL.
3550 (vc-cvs-revision-table, vc-cvs-revision-completion-table):
3551 New functions to provide completion of revision names.
3552
3553 * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
3554 (vc-cvs-annotate-first-line-re): New const.
3555 (vc-cvs-annotate-process-filter): New fun.
3556 (vc-cvs-annotate-command): Use them and run the command asynchronously.
3557
3558 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
3559
3560 * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
3561 (eldoc-print-current-symbol-info): Adjust for changed helper
3562 function signatures.
3563 (eldoc-get-fnsym-args-string): Add `args' argument. Use new
3564 `eldoc-highlight-function-argument'.
3565 (eldoc-highlight-function-argument): New function.
3566 (eldoc-get-var-docstring): Format documentation with
3567 `font-lock-variable-name-face'.
3568 (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
3569 where suited.
3570 (eldoc-fnsym-in-current-sexp): Return a list with argument index.
3571 (eldoc-beginning-of-sexp): Return number of skipped sexps.
3572
3573 2007-07-11 Michael Albinus <michael.albinus@gmx.de>
3574
3575 * progmodes/compile.el (compilation-start): `start-process' must
3576 still be redefined when calling `start-process-shell-command'.
3577
3578 * progmodes/gud.el (gud-file-name): When `default-directory' is a
3579 remote file name, prepend its remote part to the filename.
3580 (gud-common-init): When `default-directory' is a remote file name,
3581 make the filename relative to it.
3582 Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
3583
3584 2007-07-11 Dan Nicolaescu <dann@ics.uci.edu>
3585
3586 * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
3587 mouse binding and a tooltip.
3588
3589 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
3590
3591 * menu-bar.el (vc-menu-map): New defalias.
3592
3593 2007-07-10 Richard Stallman <rms@gnu.org>
3594
3595 * emacs-lisp/lisp-mode.el (eval-defun):
3596 Explain special handling of `defface'.
3597
3598 2007-07-10 Jim Meyering <jim@meyering.net> (tiny change)
3599
3600 * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
3601
3602 * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
3603
3604 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
3605
3606 * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
3607
3608 * vc-arch.el (vc-arch-complete): Remove.
3609 (vc-arch-revision-completion-table): Use complete-with-action.
3610
3611 * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
3612 (complete-with-action): New function.
3613 (dynamic-completion-table): Use it.
3614
3615 2007-07-10 Michael Albinus <michael.albinus@gmx.de>
3616
3617 * comint.el (make-comint, make-comint-in-buffer)
3618 (comint-exec-1): Replace `start-process' by `start-file-process'.
3619
3620 * progmodes/compile.el (compilation-start): Revert redefining
3621 `start-process'.
3622
3623 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
3624
3625 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
3626 with EOLs when generating MD5 checksums.
3627
3628 * follow.el: Don't change the global map from the follow-mode-map
3629 defvar, but from the toplevel. Use easy-menu to unify the Emacs and
3630 XEmacs code.
3631 (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
3632 since `follow-mode' should be used instead for that.
3633
3634 * emacs-lisp/easymenu.el (easy-menu-binding): New function.
3635 (easy-menu-do-define): Use it.
3636 (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
3637
3638 * progmodes/compile.el (compilation-auto-jump-to-first-error)
3639 (compilation-auto-jump-to-next): New vars.
3640 (compilation-auto-jump): New function.
3641 (compilation-error-properties): Use them to jump to first error.
3642 (compilation-start): Set the var if requested.
3643
3644 * emacs-lisp/autoload.el (update-directory-autoloads): Remove
3645 duplicates without also removing entries from other directories.
3646
3647 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
3648
3649 * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
3650 Remember span as default.
3651 (org-columns-edit-value): Rename from `org-column-edit'.
3652 (org-columns-display-here-title): Rename from
3653 `org-overlay-columns-title'.
3654 (org-columns-remove-overlays): Rename from org-remove-column-overlays.
3655 (org-columns-get-autowidth-alist): Rename from
3656 `org-get-columns-autowidth-alist'.
3657 (org-columns-display-here): Rename from `org-overlay-columns'.
3658 (org-columns-new-overlay): Rename from `org-new-column-overlay'.
3659 (org-columns-quit): Rename from `org-column-quit'.
3660 (org-columns-show-value): Rename from `org-column-show-value'.
3661 (org-columns-content, org-columns-widen)
3662 (org-columns-next-allowed-value)
3663 (org-columns-edit-allowed, org-columns-store-format)
3664 (org-columns-uncompile-format, org-columns-redo)
3665 (org-columns-edit-attributes, org-delete-property)
3666 (org-set-property, org-columns-update)
3667 (org-columns-compute, org-columns-eval)
3668 (org-columns-not-in-agenda, org-columns-compute-all)
3669 (org-property-next-allowed-value)
3670 (org-columns-compile-format)
3671 (org-fill-paragraph-experimental)
3672 (org-string-to-number, org-property-action)
3673 (org-columns-move-left, org-columns-new)
3674 (org-column-number-to-string)
3675 (org-property-previous-allowed-value)
3676 (org-at-property-p, org-columns-delete)
3677 (org-columns-previous-allowed-value)
3678 (org-columns-move-right, org-columns-narrow)
3679 (org-property-get-allowed-values)
3680 (org-verify-version, org-column-string-to-number)
3681 (org-delete-property-globally): New functions.
3682 (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
3683 (org-columns-overlays): Rename from `org-column-overlays'.
3684 (org-columns-map): Rename from `org-column-map'.
3685 (org-columns-current-maxwidths): Rename from
3686 `org-current-columns-maxwidths'.
3687 (org-columns-begin-marker, org-columns-current-fmt-compiled)
3688 (org-previous-header-line-format)
3689 (org-columns-inhibit-recalculation)
3690 (org-columns-top-level-marker): New variables.
3691 (org-columns-default-format): Rename from `org-default-columns-format'.
3692 (org-property-re): New constant.
3693
3694 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
3695
3696 * subr.el (looking-at-p, string-match-p): New functions.
3697
3698 2007-07-09 Reiner Steib <Reiner.Steib@gmx.de>
3699
3700 * textmodes/tex-mode.el (tex-fontify-script)
3701 (tex-font-script-display): New variables to make display of
3702 superscripts and subscripts customizable.
3703 (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
3704
3705 2007-07-09 Richard Stallman <rms@gnu.org>
3706
3707 * isearch.el (isearch-edit-string): Call to isearch-push-state
3708 after the search.
3709
3710 2007-07-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3711
3712 * window.el (fit-window-to-buffer): Remove setting of window-min-height
3713 to 1 as enlarge-window uses the value to resize/shrink windows other
3714 than WINDOW if needed.
3715
3716 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
3717
3718 * cus-start.el (file-coding-system-alist): Fix custom type.
3719
3720 2007-07-08 Chong Yidong <cyd@stupidchicken.com>
3721
3722 * longlines.el (longlines-wrap-region): Avoid marking buffer as
3723 modified.
3724 (longlines-auto-wrap, longlines-window-change-function):
3725 Remove unnecessary calls to set-buffer-modified-p.
3726
3727 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
3728
3729 * cus-start.el (file-coding-system-alist): Fix custom type.
3730
3731 2007-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
3732
3733 * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
3734 (vc-cvs-checkout): Remove last arg now unused; simplify.
3735
3736 2007-07-08 Michael Albinus <michael.albinus@gmx.de>
3737
3738 * files.el (file-remote-p): Introduce optional parameter CONNECTED.
3739
3740 * net/tramp.el:
3741 * net/tramp-ftp.el:
3742 * net/tramp-smb.el:
3743 * net/tramp-uu.el:
3744 * net/trampver.el: Migrate to Tramp 2.1.
3745
3746 * net/tramp-cache.el:
3747 * net/tramp-fish.el:
3748 * net/tramp-gw.el: New Tramp packages.
3749
3750 * net/tramp-util.el:
3751 * net/tramp-vc.el: Removed.
3752
3753 * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
3754 (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
3755
3756 * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
3757
3758 * progmodes/compile.el (compilation-start): Redefine
3759 `start-process' temporarily when `default-directory' is remote.
3760 Remove case of synchronous compilation, this won't happen ever.
3761 (compilation-setup): Make local variable `comint-file-name-prefix'
3762 for remote compilation.
3763
3764 2007-07-08 Martin Rudalics <rudalics@gmx.at>
3765
3766 * novice.el (disabled-command-function): Fit window to buffer to
3767 make last line visible.
3768 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
3769
3770 * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
3771 when handling the terminating event.
3772
3773 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
3774
3775 * calc/calc.el (math-read-number-simple): Remove leading 0s.
3776 (math-bignum-digit-length): Change to optimal value.
3777
3778 * calc/calc-bin.el (math-bignum-logb-digit-size)
3779 (math-bignum-digit-power-of-two): Evaluate when compiled.
3780
3781 * calc/calc-comb.el (math-small-factorial-table)
3782 (math-init-random-base, math-prime-test): Remove unnecessary calls
3783 to `math-read-number-simple'.
3784
3785 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
3786 (math-approx-gamma-const): Add docstrings.
3787
3788 * calc/calc-forms.el (math-julian-date-beginning)
3789 (math-julian-date-beginning-int): New constants.
3790 (math-format-date-part, math-parse-standard-date, calcFunc-julian):
3791 Use the new constants.
3792
3793 * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
3794
3795 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
3796 Add docstrings.
3797
3798 2007-07-07 Tom Tromey <tromey@redhat.com>
3799
3800 * vc.el (vc-annotate): Jump to line and output message only after the
3801 process is really all done.
3802
3803 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3804
3805 * vc.el (vc-exec-after): Don't move point from the sentinel.
3806 Forcefully read all the remaining text in the pipe upon process exit.
3807 (vc-annotate-display-autoscale, vc-annotate-lines):
3808 Don't stop at the first unrecognized line.
3809 (vc-annotate-display-select): Run autoscale after the process is done
3810 since it depends on the whole result.
3811
3812 2007-07-07 Eli Zaretskii <eliz@gnu.org>
3813
3814 * term/w32-win.el (menu-bar-open): New function.
3815 Bind <f10> to it.
3816
3817 2007-07-07 Michael Albinus <michael.albinus@gmx.de>
3818
3819 * simple.el (start-file-process): New defun.
3820
3821 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3822
3823 * files.el (find-file-confirm-nonexistent-file): Rename from
3824 find-file-confirm-inexistent-file. Update users.
3825
3826 * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
3827 format of autoload block where the file's time-stamp is replaced by its
3828 MD5 checksum.
3829 (autoload-generate-file-autoloads): Use MD5 checksum instead of
3830 time-stamp for secondary autoloads files.
3831 (update-directory-autoloads): Remove duplicate entries.
3832 Use time-less-p for time-stamps, as done in autoload-find-destination.
3833
3834 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
3835
3836 * calc/calc.el (math-read-number): Replace number by variable.
3837 (math-read-number-simple): Properly parse small integers.
3838
3839 2007-07-07 Dan Nicolaescu <dann@ics.uci.edu>
3840
3841 * vc.el: Fix doc for the checkout function.
3842
3843 2007-07-06 Dan Nicolaescu <dann@ics.uci.edu>
3844
3845 * vc-hg.el (vc-hg-root): New function.
3846 (vc-hg-registered): Use it.
3847 (vc-hg-diff-tree): New defalias.
3848 (vc-hg-responsible-p): Likewise.
3849 (vc-hg-checkout): Comment out, not needed.
3850 (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
3851 (vc-hg-find-version, vc-hg-next-version): New functions.
3852
3853 2007-07-06 Andreas Schwab <schwab@suse.de>
3854
3855 * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
3856 dynamic bindings around the evaluation of the expression.
3857 Reported by Jay Belanger <jay.p.belanger@gmail.com>.
3858
3859 2007-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
3860
3861 * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
3862 Run before-revert-hook. Suggested by Denis Bueno <denbuen@sandia.gov>.
3863 Use run-hooks rather than run-mode-hooks.
3864
3865 2007-07-05 Jay Belanger <jay.p.belanger@gmail.com>
3866
3867 * calc/calc-comb.el (math-random-digit): Rename to
3868 `math-random-three-digit-number'.
3869 (math-random-digits): Don't depend on representation of integer.
3870
3871 * calc/calc-bin.el (math-bignum-logb-digit-size)
3872 (math-bignum-digit-power-of-two): New constants.
3873 (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
3874 (math-not-bignum, math-clip-bignum): Use the constants
3875 `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
3876 instead of their values.
3877 (math-clip): Use math-small-integer-size instead of its value.
3878
3879 * calc/calc.el (math-add-bignum): Replace number by constant.
3880
3881 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
3882
3883 * wid-edit.el (widget-documentation-string-value-create):
3884 Insert indentation spaces.
3885
3886 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
3887
3888 * emacs-lisp/byte-opt.el: Revert last change.
3889
3890 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
3891
3892 * vc-hooks.el (vc-handled-backends): Add HG.
3893
3894 * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
3895
3896 2007-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3897
3898 * complete.el (PC-do-complete-and-exit): Add support for the new
3899 `confirm-only' confirmation mode.
3900
3901 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
3902
3903 * cus-edit.el (custom-commands): New variable.
3904 (custom-tool-bar-map): New variable. Initialize using
3905 `custom-commands'.
3906 (custom-mode): Use `custom-tool-bar-map'.
3907 (custom-buffer-create-internal): Insert action buttons only if
3908 tool bar is not used. Use `custom-commands'.
3909 (Custom-help, custom-command-apply): New function.
3910 (custom-command-apply, Custom-set, Custom-save)
3911 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
3912 Use `custom-command-apply' instead of duplicating code.
3913 (customize-group-other-window): Call `customize-group' instead of
3914 duplicating code.
3915 (customize-face-other-window): Call `customize-face' instead of
3916 duplicating code.
3917 (customize-group, customize-face): Add optional args for opening
3918 in another window.
3919 (custom-variable-tag): Don't inherit `variable-pitch' face.
3920 (custom-group-tag): Inherit `variable-pitch' face.
3921 (custom-variable-value-create): Set documentation indentation.
3922 (custom-group-value-create): Make group name a link, instead of
3923 using an extra "go to group" button.
3924 (custom-prompt-variable, custom-group-set, custom-group-save)
3925 (custom-group-reset-current, custom-group-reset-saved)
3926 (custom-group-reset-standard): Minor cleanup.
3927
3928 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
3929
3930 * Makefile.in (bootstrap-prepare): When copying from
3931 ldefs-boot.el, make sure loaddefs.el is writeable.
3932
3933 (bootstrap-prepare): Make $(lisp)/ps-print.el
3934 and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
3935
3936 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
3937
3938 * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
3939 only caller, and delete.
3940 (vc-hg-state): Deal with exceptions and only parse the output on
3941 successful return.
3942 (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
3943 caller, and delete.
3944 (vc-hg-workfile-version): Deal with exceptions and only parse the
3945 output on successful return.
3946 (vc-hg-revert): New function.
3947
3948 2007-07-04 Jay Belanger <jay.p.belanger@gmail.com>
3949
3950 * calculator.el (calculator-expt): Use more cases to determine
3951 the value.
3952
3953 2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3954
3955 * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
3956 file names.
3957
3958 2007-07-03 Jay Belanger <jay.p.belanger@gmail.com>
3959
3960 * calculator.el (calculator-expt, calculator-integer-p):
3961 New functions.
3962 (calculator-fact): Check to see if the factorial will be too
3963 large before computing it.
3964 (calculator-initial-operators): Use `calculator-expt' to
3965 compute "^".
3966 (calculator-mode): Mention that results which are too large
3967 will return inf.
3968 * calc/calc-comb.el (math-small-factorial-table): Replace list
3969 by vector.
3970
3971 2007-07-03 David Kastrup <dak@gnu.org>
3972
3973 * shell.el: On request of the authors, remove their addresses for
3974 the sake of bug reports, and add the developer list address as
3975 maintainer information.
3976
3977 2007-07-03 Richard Stallman <rms@gnu.org>
3978
3979 * files.el (make-directory): Doc fix.
3980 (find-file-confirm-inexistent-file): Make it a defcustom.
3981 Make nil the default.
3982
3983 2007-07-02 Richard Stallman <rms@gnu.org>
3984
3985 * startup.el (command-line): Set buffer-offer-save in *scratch*
3986 and enable auto-save in it.
3987
3988 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
3989
3990 * textmodes/org.el (orgstruct-mode-map): New variable.
3991 (orgstruct-mode): New minor mode.
3992 (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
3993 (orgstruct-make-binding, org-context-p, org-get-local-variables)
3994 (org-run-like-in-org-mode): New functions.
3995 (org-cycle-list-bullet): New command.
3996 (org-special-properties, org-property-start-re)
3997 (org-property-end-re): New constants.
3998 (org-with-point-at): New macro.
3999 (org-get-property-block, org-entry-properties, org-entry-get)
4000 (org-entry-delete, org-entry-get-with-inheritance)
4001 (org-entry-put, org-buffer-property-keys): New functions.
4002 (org-insert-property-drawer): New command.
4003 (org-entry-property-inherited-from): New variable.
4004 (org-column): New face.
4005 (org-column-overlays, org-current-columns-fmt)
4006 (org-current-columns-maxwidths, org-column-map): New variables.
4007 (org-column-menu): New menu.
4008 (org-new-column-overlay, org-overlay-columns)
4009 (org-overlay-columns-title, org-remove-column-overlays)
4010 (org-column-show-value, org-column-quit, org-column-edit): New
4011 functions.
4012 (org-columns, org-agenda-columns): New commands.
4013 (org-get-columns-autowidth-alist): New functions.
4014 (org-properties): New customize group.
4015 (org-default-columns-format): New option.
4016 (org-priority): Realign tags after changing priority.
4017 (org-preserve-lc): New macro.
4018 (org-update-checkbox-count): Catch case when there is no headline.
4019 (org-agenda-quit): Remove any column overlays.
4020 (org-beginning-of-item-list): Fixed bug when non-item line is
4021 indented too deep.
4022 (org-cached-props): New variable.
4023 (org-cached-entry-get): New function.
4024 (org-make-tags-matcher): Handle property matches.
4025 (org-table-recalculate): Swap evaluation order: Field formula
4026 first, then column formulas, but don't allow them to overwrite the
4027 field formulas.
4028 (org-table-eval-formula): New argument untouchable.
4029 (org-table-put-field-property): New function.
4030
4031 2007-07-02 Martin Rudalics <rudalics@gmx.at>
4032
4033 * help-mode.el (help-make-xrefs): Skip spaces too when
4034 skipping tabs.
4035
4036 * ffap.el (dired-at-point-prompter): Improve prompt in
4037 list-directory case.
4038
4039 2007-07-01 Richard Stallman <rms@gnu.org>
4040
4041 * files.el (find-file-visit-truename): Fix safe-local-variable value.
4042
4043 2007-07-01 Richard Stallman <rms@gnu.org>
4044
4045 * cus-start.el (max-mini-window-height): Added.
4046
4047 2007-07-01 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
4048
4049 * complete.el (partial-completion-mode): Remove advice of
4050 read-file-name-internal.
4051 (PC-do-completion): Rebind minibuffer-completion-table.
4052 (PC-read-file-name-internal): New function doing what
4053 read-file-name-internal advice did.
4054
4055 2007-07-01 Paul Pogonyshev <pogonyshev@gmx.net>
4056
4057 * emacs-lisp/byte-opt.el: Set `binding-is-magic'
4058 property on a few symbols.
4059 (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
4060 (byte-optimize-lapcode): Remove bindings that are not referenced
4061 and certainly will not effect through dynamic scoping.
4062
4063 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4064
4065 * files.el (find-file-confirm-inexistent-file): New var.
4066 (find-file, find-file-other-window, find-file-other-frame)
4067 (find-file-read-only, find-file-read-only-other-window)
4068 (find-file-read-only-other-frame): Use it.
4069
4070 2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
4071
4072 * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
4073
4074 2007-06-29 Juanma Barranquero <lekktu@gmail.com>
4075
4076 * generic-x.el (generic-define-mswindows-modes)
4077 (generic-define-unix-modes, apache-log-generic-mode)
4078 (bat-generic-mode-keymap, java-manifest-generic-mode)
4079 (show-tabs-generic-mode): Fix typos in docstrings.
4080
4081 2007-06-29 Ryan Yeske <rcyeske@gmail.com>
4082
4083 * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
4084 (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
4085 (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
4086 (rcirc-print): Never ignore messages from ourself.
4087
4088 2007-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
4089
4090 * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
4091 syntax as well. Reported by Juri Linkov <juri@jurta.org>.
4092
4093 2007-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4094
4095 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
4096 replace-regexp-in-string.
4097
4098 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
4099
4100 * emacs-lisp/cl.el: Set edebug and indentation before loading
4101 cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
4102
4103 2007-06-28 Andreas Schwab <schwab@suse.de>
4104
4105 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
4106 $(lisp)/subdirs.el.
4107
4108 2007-06-28 Juanma Barranquero <lekktu@gmail.com>
4109
4110 * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
4111 the speedbar frame if nil; that deletes the current frame or
4112 causes an error if it is the only frame.
4113 Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
4114
4115 2007-06-28 Kevin Ryde <user42@zip.com.au>
4116
4117 * textmodes/nroff-mode.el: Groff \# comments.
4118 (nroff-mode-syntax-table): \# comment intro,
4119 plain # as punct per global table.
4120 (nroff-font-lock-keywords): Add # as a single char escape.
4121 (nroff-mode): In comment-start-skip, match \#.
4122
4123 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
4124
4125 * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
4126 (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
4127 point-min == 1.
4128
4129 2007-06-28 Nick Roberts <nickrob@snap.net.nz>
4130
4131 * pcvs-util.el (cvs-strings->string, cvs-string->strings):
4132 Rename and move to...
4133
4134 * subr.el (strings->string, string->strings): ...here.
4135
4136 * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
4137 (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
4138
4139 * progmodes/gud.el (gud-common-init): Call string->strings instead
4140 of split-string.
4141
4142 2007-06-27 Michael Albinus <michael.albinus@gmx.de>
4143
4144 * dired-aux.el: Remove `dired-call-process'.
4145 (dired-check-process): Call `process-file'.
4146
4147 * wdired.el (wdired-do-perm-changes): Call `process-file'.
4148
4149 * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
4150 `ange-ftp-process-file'.
4151
4152 2007-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4153
4154 * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
4155
4156 * emacs-lisp/cl-extra.el:
4157 * emacs-lisp/cl-seq.el:
4158 * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
4159 Add autoload cookies on all defs autoloaded manually in cl.el.
4160
4161 * emacs-lisp/cl-loaddefs.el: New file.
4162
4163 * textmodes/texinfmt.el (texinfo-raisesections-alist)
4164 (texinfo-lowersections-alist): Merge definition and declaration.
4165 (texinfo-start-of-header, texinfo-end-of-header): Remove.
4166 (texinfo-format-syntax-table): Merge init into declaration.
4167 (texinfo-format-parse-line-args, texinfo-format-parse-args)
4168 (texinfo-format-parse-defun-args, texinfo-format-node)
4169 (texinfo-push-stack, texinfo-multitable-widths)
4170 (texinfo-define-info-enclosure, texinfo-alias)
4171 (texinfo-format-defindex, batch-texinfo-format): Use push.
4172 (texinfo-footnote-number): Remove duplicate declaration.
4173
4174 * ps-print.el: Update with auto-generated autoloads.
4175
4176 * ps-mule.el: Set generated-autoload-file to "ps-print.el".
4177
4178 2007-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4179
4180 * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
4181 relative to current dir for file-local settings.
4182 (autoload-generate-file-autoloads): Add `outfile' arg.
4183 (update-directory-autoloads): Use it to directly call
4184 autoload-generate-file-autoloads instead of going through
4185 update-file-autoloads so we avoid redundant searches and so we can know
4186 the set of buffers changed so we can save them all.
4187
4188 * emacs-lisp/autoload.el (autoload-find-destination): Return nil
4189 rather than throwing `up-to-date'.
4190 (autoload-generate-file-autoloads): Adjust correspondingly.
4191 (update-file-autoloads): Be careful to let-bind
4192 autoload-modified-buffers and adjust to new calling conventions.
4193 (autoload-modified-buffers): Make it a dynamically scoped var.
4194 (update-directory-autoloads): Use file-relative-name instead of
4195 autoload-trim-file-name.
4196 (autoload-insert-section-header): Don't use autoload-trim-file-name
4197 since the file is already relative now.
4198 (autoload-trim-file-name): Remove.
4199
4200 * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
4201 (vc-arch-complete, vc-arch--version-completion-table)
4202 (vc-arch-revision-completion-table): New functions to provide
4203 completion of revision names.
4204 (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
4205 (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
4206 to let the user trim the revlib.
4207
4208 * vc.el: Add new VC operation `revision-completion-table'.
4209 (vc-default-revision-completion-table): New function.
4210 (vc-version-diff, vc-version-other-window): Use it to provide
4211 completion of revision names if the backend provides it.
4212
4213 * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
4214
4215 * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
4216 of newer .svn/entries.
4217
4218 2007-06-25 David Kastrup <dak@gnu.org>
4219
4220 * calc/calc-poly.el (math-padded-polynomial)
4221 (math-partial-fractions): Add some function comments.
4222
4223 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4224
4225 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4226 Make `outbuf' optional.
4227 (update-file-autoloads): Use it.
4228
4229 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4230
4231 * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
4232 (autoload-find-destination): Keep it uptodate.
4233 (autoload-save-buffers): New fun.
4234 (update-file-autoloads): Use it. Re-add the "up to date" message.
4235
4236 * emacs-lisp/autoload.el: Refactor for upcoming changes.
4237 (autoload-find-destination): New function extracted from
4238 update-file-autoloads.
4239 (update-file-autoloads): Use it.
4240 (autoload-generate-file-autoloads): New function extracted from
4241 generate-file-autoloads. Use file-relative-name. Delay computation of
4242 output-start to the first cookie. Remove done-any, replaced by
4243 output-start.
4244 (generate-file-autoloads): Use it.
4245
4246 2007-06-24 Jay Belanger <jay.p.belanger@gmail.com>
4247
4248 * calc/calc-comb.el (math-init-random-base, math-prime-test):
4249 Use math-read-number-simple to insert constants.
4250 (math-prime-test): Redo calculation of sum.
4251
4252 * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
4253
4254 * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
4255 math-scale-bignum-3.
4256 (math-isqrt-bignum): Use math-scale-bignum-digit-size and
4257 math-bignum-digit-size.
4258 (math-isqrt-small): Add another possible initial guess.
4259
4260 2007-06-23 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4261
4262 * textmodes/bibtex.el (bibtex-entry-format): New options
4263 `whitespace', `braces', and `string'.
4264 (bibtex-field-braces-alist, bibtex-field-strings-alist)
4265 (bibtex-field-braces-opt, bibtex-field-strings-opt)
4266 (bibtex-cite-matcher-alist): New variables.
4267 (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
4268 (bibtex-flash-head): Use blink-matching-delay.
4269 (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
4270 (bibtex-format-entry, bibtex-reformat): Handle new options of
4271 bibtex-entry-format.
4272 (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
4273 New functions.
4274 (bibtex-complete-internal): Do not display messages while
4275 minibuffer is used. Do not leave around a completions buffer
4276 that is out of date.
4277 (bibtex-copy-summary-as-kill): New optional arg.
4278 (bibtex-font-lock-url): New optional arg no-button.
4279 (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
4280 (bibtex-url): Allow multiple URLs per entry.
4281
4282 2007-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
4283
4284 * emacs-lisp/autoload.el (autoload-generated-file): New function.
4285 (update-file-autoloads, update-directory-autoloads): Use it.
4286 (autoload-file-load-name): New function.
4287 (generate-file-autoloads, update-file-autoloads): Use it.
4288 (autoload-find-file): Accept non-absolute argument. Set default-dir.
4289 (generate-file-autoloads): If the autoloaded form is malformed,
4290 indicate the problem with a warning instead of aborting.
4291
4292 2007-06-23 Thien-Thi Nguyen <ttn@gnuvola.org>
4293
4294 * simple.el (next-error-recenter): Accept `(4)' as well;
4295 also, specify `integer' instead of `number'.
4296
4297 2007-06-23 Eli Zaretskii <eliz@gnu.org>
4298
4299 * ls-lisp.el (insert-directory): If an invalid regexp error is
4300 thrown, try using FILE as a literal file name, not a wildcard.
4301
4302 2007-06-23 Juanma Barranquero <lekktu@gmail.com>
4303
4304 * ruler-mode.el (ruler-mode): Prevent clobbering the original
4305 `header-line-format' when reentering ruler mode.
4306
4307 2007-06-23 Eli Zaretskii <eliz@gnu.org>
4308
4309 * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
4310 FILE exists as a file.
4311
4312 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
4313
4314 * calc/calc.el (math-bignum-digit-length)
4315 (math-bignum-digit-size, math-small-integer-size):
4316 New constants.
4317 (math-normalize, math-bignum-big, math-make-float)
4318 (math-div10-bignum, math-scale-left, math-scale-left-bignum)
4319 (math-scale-right, math-scale-right-bignum, math-scale-rounding)
4320 (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
4321 (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
4322 (math-quotient, math-div-bignum, math-div-bignum-digit)
4323 (math-div-bignum-part, math-format-bignum-decimal)
4324 (math-read-bignum): Use math-bignum-digit-length,
4325 math-bignum-digit-size and math-small-integer-size.
4326
4327 * calc/calc-ext.el (math-fixnum-big): Use the variable
4328 math-bignum-digit-size.
4329
4330 2007-06-23 Dan Nicolaescu <dann@ics.uci.edu>
4331
4332 * log-view.el (log-view-mode-menu): New menu.
4333
4334 2007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4335
4336 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
4337 differently.
4338
4339 * vc-hg.el (vc-hg-registered): Add an autoloaded version.
4340 (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
4341
4342 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4343
4344 * vc-hg.el (vc-hg-print-log): Insert the file name.
4345 (vc-hg-log-view-mode): Fontify the file name.
4346
4347 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
4348
4349 * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
4350 (calcFunc-julian): Fix incorrect number used in calculations.
4351
4352 2007-06-22 Thien-Thi Nguyen <ttn@gnuvola.org>
4353
4354 * simple.el (next-error-recenter): New defcustom.
4355 (next-error, next-error-internal): Recenter if specified,
4356 immediately prior to running `next-error-hook'.
4357
4358 * progmodes/hideshow.el (hs-show-block): Use line-end-position.
4359 (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
4360
4361 * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
4362
4363 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
4364
4365 * calc/calc-comb.el (math-small-factorial-table): New variable.
4366 (calcFunc-fact): Use `math-small-factorial-table'.
4367
4368 * calc/calc-ext.el (math-defcache): Allow forms to evaluate
4369 initial values.
4370 (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
4371 New variables to use in caches.
4372
4373 * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
4374 (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
4375
4376 * calc/calc-func.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
4377 (math-bernoulli-b-cache): Use math-read-number-simple to insert
4378 bignums.
4379
4380 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
4381 New variables to use in caches.
4382
4383 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4384
4385 * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
4386
4387 * vc-hg.el (vc-hg-log-view-mode): New mode.
4388
4389 2007-06-21 Jay Belanger <jay.p.belanger@gmail.com>
4390
4391 * calc/calc.el (math-read-number-simple): New function.
4392
4393 2007-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4394
4395 * vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
4396 (vera-font-lock-match-item): Fix doc string.
4397 (vera-in-comment-p): Remove unused function.
4398 (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
4399 use `syntax-ppss'.
4400 (vera-forward-syntactic-ws): Fix argument order.
4401 (vera-prepare-search): Use `with-syntax-table'.
4402 (vera-indent-line): Fix doc string.
4403 (vera-electric-tab): Fix doc string.
4404 (vera-expand-abbrev): Define alias instead of using `fset'.
4405 (vera-comment-uncomment-region): Use `comment-start-skip'.
4406
4407 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
4408
4409 * textmodes/org.el (org-export-with-footnotes): New option.
4410 (org-export-as-html): Fix replacement bug for XEmacs.
4411 (org-agenda-default-appointment-duration): New option.
4412
4413 2007-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4414
4415 * vc-hg.el: Add to do items.
4416 (vc-hg-diff): Add support for comparing different revisions.
4417 (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
4418 (vc-hg-annotate-extract-revision-at-line)
4419 (vc-hg-previous-version, vc-hg-checkin): New functions.
4420 (vc-hg-annotate-re): New constant.
4421
4422 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com>
4423
4424 * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
4425
4426 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4427
4428 * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
4429 buffer-local value of log-view-*-re if applicable.
4430
4431 * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
4432 Use vc-bzr-command rather than the ill defined vc-bzr-command*.
4433 (vc-bzr-command*): Remove both (incompatible) versions.
4434 (vc-bzr-do-command*): Remove.
4435 (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
4436 Remove by folding into its only caller vc-bzr-command.
4437 (vc-bzr-command): Always set the environment, even when ineffective.
4438 (vc-bzr-version): Minor fix up.
4439 (vc-bzr-admin-dirname): New var.
4440 (vc-bzr-bzr-dir): Remove.
4441 (vc-bzr-root-dir): New fun.
4442 (vc-bzr-registered): Use it. Add an autoloaded version.
4443 (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
4444 (vc-bzr-view-log-function): Remove.
4445 (vc-bzr-log-view-mode): New major mode to replace it.
4446 (vc-bzr-print-log): Only activate the old hack if needed.
4447
4448 * vc.el (vc-default-log-view-mode): New function.
4449 (vc-print-log): Add new `log-view-mode' VC operation.
4450
4451 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
4452
4453 * ido.el (ido-find-file-in-dir): Don't signal an error for
4454 empty directories.
4455
4456 * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
4457
4458 * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
4459 directory where the desktop file was found, as the docstring says.
4460 (desktop-kill): Use `read-directory-name'.
4461
4462 2007-06-20 Alan Mackenzie <acm@muc.de>
4463
4464 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
4465 When removing lines, also remove the \n. Correction of patch of
4466 2007-04-21.
4467
4468 2007-06-20 Martin Rudalics <rudalics@gmx.at>
4469
4470 * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
4471 event is not a cons cell. Do not unread drag-mouse-1 events.
4472 Select right window in check whether space was stolen from
4473 window above.
4474
4475 * help-mode.el (help-make-xrefs): Adjust position of new forward
4476 button.
4477
4478 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com>
4479
4480 * vc-bzr.el (vc-bzr-with-process-environment)
4481 (vc-bzr-std-process-invocation): New macros.
4482 (vc-bzr-command, vc-bzr-command*): Use them.
4483 (vc-bzr-with-c-locale): Remove.
4484 (vc-bzr-dir-state): Replace its use with vc-bzr-command.
4485 (vc-bzr-buffer-nonblank-p): New function.
4486 (vc-bzr-state-words): New const.
4487 (vc-bzr-state): Look for `bzr status` keywords in output.
4488 Display everything else as a warning message to the user.
4489 Fix status report with bzr >= 0.15.
4490
4491 2007-06-20 Dan Nicolaescu <dann@ics.uci.edu>
4492
4493 * vc-hg.el (vc-hg-global-switches): Simplify.
4494 (vc-hg-state): Handle more states.
4495 (vc-hg-diff): Fix doc-string.
4496 (vc-hg-register): New function.
4497 (vc-hg-checkout): Likewise.
4498
4499 2007-06-20 Reto Zimmermann <reto@gnu.org>
4500
4501 * progmodes/vera-mode.el: New file.
4502
4503 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com>
4504
4505 * calc/calc.el (calc-multiplication-has-precendence):
4506 New variable.
4507 (math-standard-ops, math-standard-ops-p, math-expr-ops):
4508 New functions.
4509 (math-expr-opers): Define using math-standard-ops rather than
4510 math-standard-opers.
4511 * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
4512 equal the function math-standard-ops rather than the variable
4513 math-standard-opers.
4514 (calc-algebraic-entry): Let math-expr-opers equal
4515 math-standard-ops or math-expr-ops, as appropriate.
4516 (math-expr-read-level, math-read-factor): Let math-expr-opers
4517 equal math-expr-ops.
4518 * calc/calc-embed.el (calc-embedded-finish-edit):
4519 Let math-expr-opers equal the function math-standard-ops
4520 rather than the variable math-standard-opers.
4521 * calc/calc-ext.el (math-read-plain-expr)
4522 (math-format-flat-expr-fancy): Let math-expr-opers equal the
4523 function math-standard-ops rather than the variable
4524 math-standard-opers.
4525 * calc/calc-lang.el (calc-set-language, math-read-big-rec):
4526 Let math-expr-opers equal the function math-standard-ops rather
4527 than the variable math-standard-opers.
4528 * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
4529 equal the function math-standard-ops rather than the variable
4530 math-standard-opers.
4531 * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
4532 equal the function math-standard-ops rather than the variable
4533 math-standard-opers.
4534 * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
4535 math-expr-ops.
4536
4537 2007-06-19 Ivan Kanis <apple@kanis.eu>
4538
4539 * vc-hg.el: New file.
4540
4541 2007-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4542
4543 * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
4544 with font-lock-multiline.
4545
4546 2007-06-17 Glenn Morris <rgm@gnu.org>
4547
4548 * lpr.el (lpr-page-header-switches): Move %s to separate element
4549 for correct quoting. Doc fix.
4550
4551 2007-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4552
4553 * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
4554 than setting sgml-xml-mode.
4555 (sgml-mode, html-mode): Set sgml-xml-mode.
4556 (sgml-skip-tag-backward): Tell if we skipped over matched tags.
4557 (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
4558 (sgml-electric-tag-pair-before-change-function)
4559 (sgml-electric-tag-pair-flush-overlays): New functions.
4560 (sgml-electric-tag-pair-mode): New minor mode.
4561 (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
4562 (sgml-calculate-indent): Use assoc-string.
4563
4564 2007-06-16 Karl Fogel <kfogel@red-bean.com>
4565
4566 * thingatpt.el (thing-at-point-email-regexp): Don't require two
4567 chars before the "@" in an email address. Andreas Roehler noticed
4568 this problem.
4569
4570 2007-06-15 Karl Fogel <kfogel@red-bean.com>
4571
4572 * thingatpt.el: Add support for email addresses (`email').
4573 (thing-at-point, bounds-of-thing-at-point): Document `email' support.
4574 (thing-at-point-email-regexp): New variable.
4575 (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
4576 properties on this symbol, with lambda forms for values.
4577
4578 2007-06-15 Masatake YAMATO <jet@gyve.org>
4579
4580 * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
4581
4582 * vc.el (vc-dired-hook): Check the backend returned from
4583 `vc-responsible-backend' can really handle `subdir'.
4584
4585 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
4586
4587 * wid-edit.el (widget-add-documentation-string-button):
4588 Fix handling of documentation indent.
4589
4590 2007-06-15 Miles Bader <miles@fencepost.gnu.org>
4591
4592 * mb-depth.el: New file.
4593
4594 2007-06-15 Masatake YAMATO <jet@gyve.org>
4595
4596 * vc.el (vc-dired-mode): Show backend name as part of mode name.
4597
4598 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
4599
4600 * wid-edit.el (widget-default-create): Move ?h handling here...
4601 (widget-default-format-handler): ...from here.
4602 (widget-docstring, widget-add-documentation-string-button): New funs.
4603 (documentation-string): Add :visibility-widget property.
4604 (widget-documentation-string-value-create): Use it.
4605
4606 * cus-edit.el (custom-split-regexp-maybe): Simplify.
4607 (custom-buffer-create-internal): Simplify message.
4608 (custom-variable-tag): Reduce height to normal.
4609 (custom-variable-value-create, custom-face-value-create)
4610 (custom-visibility): New widget.
4611 (custom-visibility): New face.
4612 (custom-group-value-create):
4613 Call widget-add-documentation-string-button, using `custom-visibility'.
4614
4615 2007-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4616
4617 * emacs-lisp/bytecomp.el (byte-compile-current-group)
4618 (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
4619 change. Apparently the "warning even if the group is implicit" is
4620 a feature rather than a bug.
4621
4622 2007-06-14 Michael Kifer <kifer@cs.stonybrook.edu>
4623
4624 * viper.el (viper-describe-key-ad, viper-describe-key-briefly-ad):
4625 Different advices for Emacs and XEmacs. Compile them conditionally.
4626 (viper-version): Belated version change.
4627
4628 2007-06-14 Juanma Barranquero <lekktu@gmail.com>
4629
4630 * follow.el (follow-all-followers, follow-generic-filter):
4631 * pcomplete.el (pcomplete-restore-windows):
4632 * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
4633 (x-dnd-drop-data):
4634 * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
4635 * progmodes/python.el (python-complete-symbol):
4636 * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
4637
4638 2007-06-13 Ryan Yeske <rcyeske@gmail.com>
4639
4640 * rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
4641 around bright and dim regexps. Make sure bright and dim matches
4642 use word anchors. Send text through rcirc-markup functions.
4643 (rcirc-url-regexp): Add single quote character.
4644 (rcirc-connect): Write logs to disk on auto-save-hook.
4645 Make server a non-optional argument.
4646 (rcirc-log-alist): New variable.
4647 (rcirc-log-directory): Make customizable.
4648 (rcirc-log-flag): New customizable variable.
4649 (rcirc-log): New function.
4650 (rcirc-print): Use above function.
4651 (rcirc-log-write): New function.
4652 (rcirc-generate-new-buffer-name): Strip text properties.
4653 (rcirc-switch-to-buffer-function): Remove variable.
4654 (rcirc-last-non-irc-buffer): Remove variable.
4655 (rcirc-non-irc-buffer): Add function.
4656 (rcirc-next-active-buffer): Use above function.
4657 (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
4658 (rcirc-handler-ctcp-KEEPALIVE): Add handler.
4659 (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
4660 (rcirc-omit-mode): Add minor-mode.
4661 (rcirc-mode-map): Change C-c C-o binding.
4662 (rcirc-mode): Clear mode-line-process. Use a custom
4663 fill-paragraph-function. Set up buffer-invisibility-spec.
4664 (rcirc-response-formats): Remove timestamp code.
4665 (rcirc-omit-responses): Add variable.
4666 (rcirc-print): Don't put the overlay arrow on potentially omitted
4667 lines. Log line to disk. Record activity for private messages
4668 from /dim nicks. Facify the fill-prefix with rcirc-timestamp face.
4669 (rcirc-jump-to-first-unread-line): Print message if there is no
4670 unread text.
4671 (rcirc-clear-unread): New function.
4672 (rcirc-markup-text-functions): Add variable.
4673 (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
4674 (rcirc-debug): Don't mess with window configuration.
4675 (rcirc-send-message): Send message before printing locally.
4676 Add SILENT argument, do not print message if non-nil.
4677 (rcirc-visible-buffers): New function and variable.
4678 (rcirc-window-configuration-change-1): Add function.
4679 (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
4680 server buffer.
4681 (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
4682 (rcirc-fill-paragraph): Add function.
4683 (rcirc-record-activity, rcirc-window-configuration-change-1):
4684 Only update the activity string if it has actually changed.
4685 (rcirc-update-activity-string): Remove padding characters from the
4686 mode-line string.
4687 (rcirc-disconnect-buffer): New function to be called when a
4688 channel is parted or the user quits.
4689 (rcirc-server-name): Warn when the server-name hasn't been set.
4690 (rcirc-window-configuration-change): Postpone work until
4691 post-command-hook.
4692 (rcirc-window-configuration-change-1): Update mode-line and
4693 overlay arrows here.
4694 (rcirc-authenticate): Fixc hanserv identification.
4695 (rcirc-default-server): Remove variable.
4696 (rcirc): Connect according to rcirc-connections.
4697 (rcirc-connections): Add variable.
4698 (rcirc-startup-channels-alist): Remove variable.
4699 (rcirc-startup-channels): Remove function.
4700
4701 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4702
4703 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
4704
4705 2007-06-13 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se> (tiny change)
4706
4707 * term/xterm.el (terminal-init-xterm): Escape parens in character
4708 constants.
4709
4710 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4711
4712 * progmodes/sh-script.el: Remove unneeded * from docstrings.
4713 Use [:alpha:] and [:alnum:] where applicable.
4714 (sh-quoted-subshell): Rewrite to correctly
4715 handle nested mixes of `...` and $(...).
4716 (sh-apply-quoted-subshell): Remove.
4717 (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
4718
4719 * vc-arch.el (vc-arch-command): Remove bzr. It's a different program.
4720
4721 2007-06-13 Michael Kifer <kifer@cs.stonybrook.edu>
4722
4723 * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
4724 previous change.
4725
4726 2007-06-12 Tom Tromey <tromey@redhat.com>
4727
4728 * subr.el (user-emacs-directory): New defconst.
4729 * cmuscheme.el (scheme-start-file):
4730 * shell.el (shell):
4731 * completion.el (save-completions-file-name):
4732 * custom.el (custom-theme-directory):
4733 * term/x-win.el (emacs-session-filename):
4734 * filesets.el (filesets-menu-cache-file):
4735 * thumbs.el (thumbs-thumbsdir):
4736 * server.el (server-auth-dir):
4737 * image-dired.el (image-dired-dir):
4738 (image-dired-db-file):
4739 (image-dired-temp-image-file):
4740 (image-dired-gallery-dir):
4741 (image-dired-temp-rotate-image-file):
4742 * play/gamegrid.el (gamegrid-user-score-file-directory):
4743 * savehist.el (savehist-file):
4744 * tutorial.el (tutorial--saved-dir):
4745 * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
4746
4747 2007-06-12 Ralf Angeli <angeli@caeruleus.net>
4748
4749 * scroll-lock.el (scroll-lock-mode): Doc fix.
4750
4751 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
4752
4753 * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
4754
4755 * ediff-init.el: Doc strings.
4756
4757 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4758
4759 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
4760 (byte-compile-file): Bind it.
4761 (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
4762 group argument is provided implicitly.
4763 (byte-compile-format-warn, byte-compile-from-buffer)
4764 (byte-compile-insert-header): Don't hardcode point-min==1.
4765 (byte-compile-file-form-require): Remove unused var old-load-list.
4766 (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
4767
4768 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
4769
4770 * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
4771 Display error messages.
4772 (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
4773 Get rid of cl.el dependencies.
4774
4775 * emulation/viper-init.el (viper-suppress-input-method-change-message):
4776 New variable.
4777 (viper-activate-input-method-action)
4778 (viper-inactivate-input-method-action):
4779 Use viper-suppress-input-method-change-message.
4780
4781 * emulation/viper-kem.el (viper-vi-basic-map): Disable the bindings
4782 for C-s, C-r.
4783
4784 * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
4785 Use viper-replace-overlay-cursor-color instead of
4786 viper-replace-overlay-cursor-color.
4787 (viper-sit-for-short): Use sit-for with 3 arguments.
4788
4789 * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
4790 (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
4791 to gud-mode.
4792
4793 * ediff-mult.el (ediff-meta-buffer-brief-message)
4794 (ediff-meta-buffer-verbose-message): New variables.
4795 (ediff-meta-buffer-message): Variable deleted.
4796 (ediff-verbose-help-enabled): New variable.
4797 (ediff-toggle-verbose-help-meta-buffer): New function.
4798 (ediff-redraw-directory-group-buffer): Made aware of short/verbose
4799 message options.
4800
4801 * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
4802 (ediff-fixup-patch-map): Improve heuristic.
4803
4804 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4805
4806 * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
4807 (log-view-font-lock-keywords): Simplify.
4808 (log-view-current-file, log-view-current-tag): Simplify.
4809
4810 2007-06-12 Sam Steingold <sds@gnu.org>
4811
4812 * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
4813
4814 2007-06-12 Juanma Barranquero <lekktu@gmail.com>
4815
4816 * desktop.el (desktop-load-locked-desktop): New option.
4817 (desktop-read): Use it.
4818 (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
4819 Use `when'.
4820
4821 2007-06-12 Davis Herring <herring@lanl.gov>
4822
4823 * desktop.el (desktop-save-mode-off): New function.
4824 (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
4825 (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
4826 (desktop-claim-lock, desktop-release-lock): New functions.
4827 (desktop-kill): Tell `desktop-save' that this is the last save.
4828 Release the lock afterwards.
4829 (desktop-buffer-info): New function.
4830 (desktop-save): Use it. Run `desktop-save-hook' where the doc
4831 says to. Detect conflicts, and manage the lock.
4832 (desktop-read): Detect conflicts. Manage the lock.
4833
4834 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4835
4836 * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
4837
4838 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
4839 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead.
4840 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
4841 (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
4842 keysyms rather than byte sequences.
4843 (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
4844
4845 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4846
4847 * font-lock.el (font-lock-add-keywords): In case font-lock was only
4848 half-activated, forcefully activate it completely.
4849
4850 2007-06-11 Richard Stallman <rms@gnu.org>
4851
4852 * cus-edit.el (custom-variable-type): Doc fix.
4853
4854 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4855
4856 * progmodes/sh-script.el (sh-font-lock-backslash-quote)
4857 (sh-font-lock-flush-syntax-ppss-cache): New functions.
4858 (sh-font-lock-syntactic-keywords): Use them to distinguish the
4859 different possible cases for \'.
4860
4861 * complete.el (PC-bindings): Don't bind things already bound in the
4862 parent keymap.
4863
4864 * textmodes/bibtex-style.el: New file.
4865
4866 2007-06-11 Riccardo Murri <riccardo.murri@gmail.com>
4867
4868 * vc-bzr.el: New file.
4869
4870 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4871
4872 * vc-svn.el (vc-svn-program): New var.
4873 (vc-svn-command): Use it.
4874
4875 2007-06-11 Juanma Barranquero <lekktu@gmail.com>
4876
4877 * server.el (server-switch-buffer): Remove redundant check.
4878
4879 2007-06-10 Martin Rudalics <rudalics@gmx.at>
4880
4881 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
4882 Match against file-name-nondirectory.
4883 Fix text on user customization variables.
4884 Reported by Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>.
4885
4886 2007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
4887
4888 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
4889
4890 2007-06-09 Davis Herring <herring@lanl.gov>
4891
4892 * desktop.el (desktop-minor-mode-table): Doc fix.
4893
4894 2007-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
4895
4896 * textmodes/css-mode.el (css-navigation-syntax-table):
4897 Use set-char-table-range so it also works in the unicode branch.
4898
4899 2007-06-08 Nick Roberts <nickrob@snap.net.nz>
4900
4901 * help-mode.el (help-xref-forward-stack)
4902 (help-xref-stack-forward-item, help-forward-label): New variables.
4903 (help-forward): New button type.
4904 (help-setup-xref): Initialise help-xref-forward-stack.
4905 (help-make-xrefs): Add forward button, if appropriate.
4906 (help-xref-go-back): Push item on forward stack.
4907 (help-xref-go-forward, help-go-forward): New functions.
4908
4909 2007-06-07 Chong Yidong <cyd@stupidchicken.com>
4910
4911 * dired.el (dired-mode-map): Remove spurious separator.
4912
4913 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
4914
4915 * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
4916
4917 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
4918 * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
4919
4920 2007-06-07 Carsten Dominik <dominik@science.uva.nl>
4921
4922 * textmodes/org.el: Version number fixed.
4923
4924 2007-06-07 Glenn Morris <rgm@gnu.org>
4925
4926 * version.el (emacs-copyright): New constant.
4927 * startup.el (fancy-splash-tail): Use emacs-copyright.
4928 * calc/calc-help.el (calc-full-help): Use emacs-copyright.
4929
4930 * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
4931 `make-local'.
4932 (byte-compile-warnings-safe-p): Add `make-local'.
4933 (byte-compile-make-variable-buffer-local):
4934 Allow byte-compile-warnings to suppress this warning.
4935
4936 * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
4937 format of "menu" description.
4938 (tutorial--find-changed-keys): Describe the specific menu a
4939 command is in.
4940
4941 * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
4942 Rewrite compatibility functions to silence byte-compiler.
4943
4944 2007-06-07 Alfred M. Szmidt <ams@gnu.org> (tiny change)
4945
4946 * mail/rmailsum.el (rmail-summary-save-buffer): New command.
4947 (rmail-summary-mode-map): Add rmail-summary-save-buffer.
4948
4949 2007-06-07 Eric M. Ludlam <eric@siege-engine.com>
4950
4951 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
4952
4953 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
4954
4955 * progmodes/ebrowse.el (ebrowse-member-table):
4956 * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
4957 (org-batch-agenda-csv): Fix typos in docstrings.
4958
4959 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
4960
4961 * international/mule-cmds.el (toggle-enable-multibyte-characters)
4962 (sort-coding-systems, search-unencodable-char): Doc fixes.
4963 (coding-system-change-eol-conversion, set-default-coding-systems)
4964 (prefer-coding-system, find-multibyte-characters, princ-list)
4965 (leim-list-entry-regexp, set-input-method, locale-language-names)
4966 (input-method-exit-on-first-char, exit-language-environment-hook)
4967 (locale-charset-language-names): Fix typos in docstrings.
4968
4969 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
4970
4971 * pgg.el (pgg-sign-region, pgg-sign):
4972 * ses.el (ses-call-printer):
4973 * calendar/icalendar.el (icalendar--diarytime-to-isotime):
4974 * textmodes/org.el (org-cycle): Fix typos in docstrings.
4975
4976 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
4977
4978 * textmodes/org.el
4979 (org-export-region-as-html, org-replace-region-by-html)
4980 (org-number-to-letters, org-table-fedit-finish)
4981 (org-normalize-color, org-table-fedit-ref-right)
4982 (org-date-to-gregorian, org-table-fedit-move)
4983 (org-table-convert-refs-to-rc, org-calendar-holiday)
4984 (org-table-fedit-toggle-ref-type, org-write-agenda)
4985 (org-colgroup-info-to-vline-list, org-agenda-todo-previousset)
4986 (org-defkey, org-encode-for-stdout)
4987 (org-indent-line-function, org-export-as-html-to-buffer)
4988 (org-store-agenda-views, org-update-mode-line)
4989 (org-find-if, org-delete-all)
4990 (org-table-fedit-convert-buffer, org-emphasize)
4991 (org-uniquify, org-table-fedit-lisp-indent)
4992 (org-table-fedit-scroll, org-get-todo-sequence-head)
4993 (org-table-fedit-scroll-down, org-table-fedit-line-down)
4994 (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
4995 (org-table-fedit-toggle-coordinates, org-dvipng-color)
4996 (org-table-fedit-line-up, org-table-fedit-ref-down)
4997 (org-table-formula-from-user, org-mode-flyspell-verify)
4998 (org-cycle-show-empty-lines, org-ctrl-c-ret)
4999 (org-table-formula-to-user, org-diary-to-ical-string)
5000 (orgtbl-export, org-table-fedit-post-command)
5001 (org-closed-in-range, org-shiftcontrolright)
5002 (org-table-convert-refs-to-an, org-table-hline-and-move)
5003 (org-table-formula-less-p, org-format-table-ascii)
5004 (org-agenda-get-sexps, org-shift-refpart)
5005 (org-diary-sexp-entry, org-time-string-to-absolute)
5006 (org-table-show-reference, org-letters-to-number)
5007 (org-fix-agenda-info, org-table-fedit-ref-up)
5008 (org-table-fedit-shift-reference, org-table-fedit-abort)
5009 (org-closest-date, org-shiftcontrolleft)
5010 (org-at-heading-or-item-p, org-rematch-and-replace)
5011 (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
5012 New functions.
5013 (org-table-edit-scroll-down, org-finish-edit-formulas)
5014 (org-table-edit-next-field, org-abort-edit-formulas)
5015 (org-font-lock-level, org-export-find-first-heading-line)
5016 (org-table-edit-line-down, org-table-edit-backward-field)
5017 (org-edit-formula-lisp-indent, org-table-edit-move)
5018 (org-check-log-option, org-this-word)
5019 (org-table-edit-line-up, org-table-edit-formulas-post-command)
5020 (org-agenda-file-to-end, org-expand-file-name)
5021 (org-fake-empty-table-line, org-table-edit-scroll)
5022 (org-toggle-log-option, org-show-reference): Function removed.
5023 (org-inhibit-invisibility, org-table-formula-make-cmp-string):
5024 New defsubsts.
5025 (org-unmodified, org-batch-store-agenda-views)
5026 (org-batch-agenda-csv): New macro.
5027 (org-agenda-export): New customization group.
5028 (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
5029 (org-highest-priority, org-agenda-exporter-settings)
5030 (org-log-done-with-time, org-replace-disputed-keys)
5031 (org-format-latex-header, org-export-table-header-tags)
5032 (org-cycle-separator-lines, org-export-table-data-tags)
5033 (org-icalendar-include-sexps)
5034 (org-empty-line-terminates-plain-lists)
5035 (org-log-repeat, org-special-ctrl-a)
5036 (org-table-use-standard-references, org-disputed-keys)
5037 (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
5038 (org-agenda-export-html-style): New option.
5039 (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
5040 (org-CUA-compatible): Option removed.
5041 (org-agenda-structure, org-sexp-date): New face.
5042 (org-todo-keywords-for-agenda, org-not-done-keywords)
5043 (org-planning-or-clock-line-re, org-agenda-name)
5044 (org-table-colgroup-info, org-todo-sets)
5045 (constants-unit-system, org-clock-mode-line-entry)
5046 (org-mode-line-timer, org-table-current-begin-pos)
5047 (org-todo-keywords-1, org-mode-line-string)
5048 (org-table-clean-did-remove-column, org-table-fedit-map)
5049 (org-clock-heading, org-table-buffer-is-an)
5050 (org-agenda-info, org-done-keywords)
5051 (org-done-keywords-for-agenda, org-todo-heads)
5052 (org-todo-kwd-alist, org-clock-start-time): New variable.
5053 (org-todo-kwd-priority-p, org-edit-formulas-map)
5054 (org-repeat-re, org-todo-kwd-max-priority)
5055 (org-version, org-done-string)
5056 (org-table-clean-did-remove-column-1, org-disputed-keys):
5057 Remove variables.
5058 (org-table-translate-regexp, org-repeat-re, org-version): New consts.
5059 (org-ts-lengths): Constant removed.
5060 (org-follow-gnus-link): Don't ask how many articles to read.
5061 (org-export-find-first-export-line): Rename from
5062 `org-export-find-first-heading'.
5063 Use `org-export-skip-text-before-1st-heading'.
5064 (org-table-fedit-post-command): Rename from
5065 `org-table-edit-formulas-post-command'.
5066 (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
5067 (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
5068 (org-table-fedit-lisp-indent): Rename from
5069 `org-edit-formula-lisp-indent'.
5070 (org-table-show-reference): Rename from `org-show-reference'.
5071 (org-table-store-formulas): Use `org-table-formula-less-p'.
5072 (org-table-edit-formulas): Position cursor to current field equation.
5073 (org-update-checkbox-count, org-hide-archived-subtrees)
5074 (org-timestamp-up-day, org-timestamp-down-day)
5075 (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
5076 (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
5077 (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
5078 (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
5079 Let `org-on-heading-p' also check for invisible heading.
5080 (org-read-date): Match am/pm times.
5081 (org-eval-in-calendar): Fix default date in prompt.
5082
5083 2007-06-05 Chong Yidong <cyd@stupidchicken.com>
5084
5085 * files.el (auto-mode-alist): Separate "ChangeLog.1" and
5086 "ChangeLog.a" entries, giving the latter lower priority.
5087
5088 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
5089
5090 * faces.el (face-id): If the argument is a face alias,
5091 return the ID of the target face.
5092
5093 2007-06-05 Michael Albinus <michael.albinus@gmx.de>
5094
5095 * net/socks.el (top): Remove unnecessary copyright line.
5096
5097 2007-06-04 Chong Yidong <cyd@stupidchicken.com>
5098
5099 * longlines.el (longlines-auto-wrap): Handle argument correctly.
5100
5101 2007-06-04 Michael Albinus <michael.albinus@gmx.de>
5102
5103 * net/socks.el: New file, taken from w3 repository.
5104 (top): Update Copyright. Don't load cl.el.
5105 (all): Replace `case' by `cond', `string-to-int' by
5106 `string-to-number', and `process-kill-without-query' by
5107 `set-process-query-on-exit-flag'.
5108 (socks-char-int): Remove defalias and all occurrences.
5109
5110 2007-06-04 Juanma Barranquero <lekktu@gmail.com>
5111
5112 * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
5113 Fix typos in docstrings.
5114 (compilation-search-path, compilation-buffer-name-function): Doc fixes.
5115 (compilation-finish-function): Fix typo in obsolescence declaration.
5116
5117 2007-06-03 Sam Steingold <sds@gnu.org>
5118
5119 * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
5120 handle unending automatic recompilation of changed files (`omake -P').
5121 (compilation-loop): VISITED is now 5th CDR.
5122 (compilation-next-error-function): Set TIMESTAMP.
5123
5124 2007-06-03 Sam Steingold <sds@gnu.org>
5125
5126 * files.el (kill-buffer-ask): New function.
5127 (kill-some-buffers): Use it.
5128 (kill-matching-buffers): New user command.
5129
5130 2007-06-01 David Kastrup <dak@gnu.org>
5131
5132 * dired.el (dired-recursive-deletes, dired-recursive-copies):
5133 Change default to `top'.
5134
5135 2007-05-31 Richard Stallman <rms@gnu.org>
5136
5137 * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
5138
5139 2007-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5140
5141 * textmodes/css-mode.el: New file.
5142
5143 2007-05-30 Michael Olson <mwolson@gnu.org>
5144
5145 * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
5146 died and we are trying to send a signal to it. The program using
5147 tq.el should periodically check to see whether the process has
5148 died and react appropriately -- this is not the responsibility of
5149 tq.el, and is consistent with the rest of the tq.el source code.
5150
5151 2007-05-29 Martin Rudalics <rudalics@gmx.at>
5152
5153 * textmodes/table.el (table--point-entered-cell-function)
5154 (table--point-left-cell-function):
5155 Bind `inhibit-point-motion-hooks' to t.
5156
5157 2007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
5158
5159 * emacs-lisp/rx.el (rx): Doc fix.
5160
5161 2007-05-28 Juanma Barranquero <lekktu@gmail.com>
5162
5163 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
5164
5165 2007-05-28 Michael Albinus <michael.albinus@gmx.de>
5166
5167 Sync with Tramp 2.0.56.
5168
5169 * net/tramp.el:
5170 * net/tramp-ftp.el:
5171 * net/tramp-smb.el:
5172 * net/tramp-util.el:
5173 * net/tramp-vc.el:
5174 Don't load cl.el, because that pollutes the namespace. Replace cl
5175 macros by their implementations where necessary. Requested by
5176 Richard Stallman <rms@gnu.org>.
5177
5178 * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
5179 doesn't exist.
5180 (with-parsed-tramp-file-name): Protect debug spec during compilation.
5181 (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
5182 (tramp-file-name-p, tramp-file-name-multi-method)
5183 (tramp-file-name-method, tramp-file-name-user)
5184 (tramp-file-name-host, tramp-file-name-localname): New defuns,
5185 replacing defstruct `tramp-file-name'.
5186 (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
5187 (tramp-dissect-file-name, tramp-dissect-multi-file-name):
5188 Apply `vector' instead of `make-tramp-file-name'.
5189 (tramp-handle-make-auto-save-file-name):
5190 Apply `tramp-temporary-file-directory' for compatibility reasons.
5191 (tramp-completion-mode): Use `natnump' instead of `wholenump'
5192 because of XEmacs.
5193 (tramp-completion-mode): `last-input-event' is nil when XEmacs is
5194 started.
5195
5196 2007-05-28 Chong Yidong <cyd@stupidchicken.com>
5197
5198 * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
5199
5200 2007-05-27 Tetsurou Okazaki <okazaki@be.to> (tiny change)
5201
5202 * log-edit.el (log-edit-changelog-paragraph): Return point-max
5203 as the end of the ChangeLog paragraph when it ends without a line
5204 termination.
5205
5206 2007-05-27 Ryan Yeske <rcyeske@gmail.com>
5207
5208 * net/webjump.el (webjump-sample-sites):
5209 Add simple Wikipedia query.
5210
5211 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5212
5213 * emacs-lisp/derived.el (define-derived-mode): Remove bogus
5214 compatibility code.
5215
5216 * emacs-lisp/copyright.el (copyright-names-regexp): New var.
5217 (copyright-update-year): Use it.
5218
5219 * edmacro.el (edmacro-format-keys): Use current-active-maps.
5220
5221 * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
5222 Add indentation and debugging info. Fix up comment convention.
5223
5224 * cus-dep.el (custom-make-dependencies): Simplify.
5225
5226 * composite.el (compose-region, decompose-region):
5227 Use inhibit-read-only and restore-buffer-modified-p.
5228
5229 * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
5230 (xterm-mouse-event): Use it.
5231
5232 2007-05-25 Juanma Barranquero <lekktu@gmail.com>
5233
5234 * bs.el (bs-cycle-previous): Don't modify the cycle list until
5235 `switch-to-buffer' has returned succesfully.
5236 (bs-cycle-next): Ditto. Also, don't bury the buffer when the
5237 window is dedicated (it could iconify the frame).
5238
5239 2007-05-25 Miles Bader <miles@fencepost.gnu.org>
5240
5241 * vc-hooks.el (vc-find-root): Fix file attribute test.
5242
5243 2007-05-24 Richard Stallman <rms@gnu.org>
5244
5245 * textmodes/flyspell.el (flyspell-correct-word-before-point):
5246 Don't let opoint be nil.
5247 (flyspell-emacs-popup): Explicit error if no dialogs.
5248
5249 2007-05-24 Chong Yidong <cyd@stupidchicken.com>
5250
5251 * image-mode.el (image-forward-hscroll, image-backward-hscroll)
5252 (image-next-line, image-previous-line, image-scroll-up)
5253 (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
5254 New functions.
5255 (image-mode-map): Remap motion commands.
5256 (image-mode-text-map): New keymap for viewing images as text.
5257 (image-mode): Use image-mode-map.
5258 (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
5259
5260 2007-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * textmodes/fill.el (canonically-space-region): Make the second arg
5263 a marker if it's not already the case.
5264
5265 2007-05-23 Eli Zaretskii <eliz@gnu.org>
5266
5267 * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
5268 (tar-get-descriptor): Handle type 55, an extended pax header.
5269
5270 2007-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
5271
5272 * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
5273 to confuse outline-minor-mode.
5274
5275 2007-05-23 Eli Zaretskii <eliz@gnu.org>
5276
5277 * tar-mode.el (tar-file-name-handler): New function.
5278 (tar-extract): Bind file-name-handler-alist to it to force
5279 find-buffer-file-type-coding-system behave as if the file being
5280 extracted existed. Use last-coding-system-used to force
5281 buffer-file-coding-system to what decode-coding-region actually
5282 used to decode the file.
5283
5284 2007-05-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
5285
5286 * progmodes/compile.el (compilation-handle-exit):
5287 `compilation-finish-function' may change the current buffer.
5288
5289 2007-05-22 Richard Stallman <rms@gnu.org>
5290
5291 * files.el (set-auto-mode): Doc fix.
5292
5293 2007-05-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5294
5295 * help-fns.el (find-source-lisp-file): New function.
5296 (describe-function-1): Use find-source-lisp-file to find source
5297 file in compile tree.
5298
5299 2007-05-22 Eli Zaretskii <eliz@gnu.org>
5300
5301 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
5302
5303 2007-05-22 Juanma Barranquero <lekktu@gmail.com>
5304
5305 * emacs-lisp/easy-mmode.el (define-minor-mode)
5306 (easy-mmode-define-navigation): Fix typos in docstrings.
5307
5308 2007-05-22 Glenn Morris <rgm@gnu.org>
5309
5310 * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
5311
5312 2007-05-22 Katsumi Yamaoka <yamaoka@jpl.org>
5313
5314 * mail/mail-extr.el (mail-extract-address-components):
5315 Recognize non-ASCII characters except for NBSP as words.
5316
5317 2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
5318
5319 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
5320 (rcirc-print): Handle `window-width'.
5321 (rcirc-buffer-maximum-lines): Doc fix.
5322
5323 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
5324
5325 * image-mode.el (image-toggle-display): Don't clear image cache.
5326 Only use filename in image spec if the file is readable.
5327 Call image-refresh.
5328
5329 * image.el (image-type-from-file-name, image-type): Simplify.
5330 (image-type-auto-detected-p): Don't scan auto-mode-alist.
5331
5332 * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
5333 (magic-fallback-mode-alist): Add image-type-auto-detected-p.
5334
5335 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
5336
5337 * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
5338 is an error.
5339
5340 * term/linux.el (terminal-init-linux): Don't signal an error
5341 if gpm isn't running.
5342
5343 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
5344
5345 * t-mouse.el: Reduce to a minor-mode macro call.
5346 (t-mouse-mode): Remove the lighter.
5347
5348 * term/linux.el (terminal-init-linux): Enable t-mouse by default.
5349
5350 2007-05-19 Dan Nicolaescu <dann@ics.uci.edu>
5351
5352 * files.el (auto-mode-alist): Change the regexp so that
5353 ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
5354
5355 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
5356
5357 * Version 22.1 released.
5358
5359 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
5360
5361 * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
5362 changes.
5363
5364 2007-05-19 Kevin Ryde <user42@zip.com.au>
5365
5366 * info.el (Info-fontify-node): Fontify https as well as http and ftp.
5367
5368 2007-05-18 Thien-Thi Nguyen <ttn@gnuvola.org>
5369
5370 * textmodes/sgml-mode.el: Revert last change.
5371
5372 2007-05-18 Richard Stallman <rms@gnu.org>
5373
5374 * simple.el (push-mark): Doc fix.
5375
5376 2007-05-18 Rob Riepel <riepel@Stanford.EDU>
5377
5378 * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
5379 tpu-global-map.
5380 (tpu-original-global-map): Variable deleted.
5381 (tpu-control-keys-map): New keymap variable.
5382 (tpu-set-control-keys): Use tpu-reset-control-keys rather than
5383 setting keymapping directly.
5384 (tpu-reset-control-keys): Use tpu-control-keys-map instead of
5385 tpu-global-map.
5386 (tpu-edt-on): Activate the tpu-global-map.
5387 (tpu-edt-off): Deactivate the tpu-global-map.
5388
5389 2007-05-18 Ryan Yeske <rcyeske@gmail.com>
5390
5391 * textmodes/ispell.el (ispell-get-word): Return markers
5392 for start and end positions.
5393 (ispell-word): Assume END is a marker.
5394
5395 2007-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5396
5397 * printing.el: Group together all XEmacs/Emacs definitions.
5398 (pr-version): New version 6.9.
5399 (pr-global-menubar, pr-menu-char-height, pr-menu-char-width): New funs.
5400 (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
5401 (pr-menu-bind): Fix code.
5402 (pr-e-frame-char-height, pr-e-frame-char-width)
5403 (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
5404 (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
5405 (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
5406 (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
5407 (pr-x-event-y-pixel): Aliases eliminated.
5408 (pr-xemacs-global-menubar): Macro moved.
5409 (current-menubar, current-mouse-event, zmacs-region-stays)
5410 (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
5411 (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
5412 Vars moved.
5413 (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
5414 (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
5415 (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
5416 (pr-menu-set-utility-title, pr-even-or-odd-pages)
5417 (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
5418 (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name): Funs
5419 moved.
5420
5421 2007-05-17 Christian Plate <cplate@web.de> (tiny change)
5422
5423 * textmodes/sgml-mode.el (sgml-tag):
5424 Fix bug: Call sgml-transformation-function.
5425
5426 2007-05-17 Martin Rudalics <rudalics@gmx.at>
5427
5428 * hilit-chg.el (highlight-changes-rotate-faces): Don't set
5429 modified flag of buffer. Use `inhibit-modification-hooks'.
5430
5431 2007-05-16 Richard Stallman <rms@gnu.org>
5432
5433 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
5434
5435 2007-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
5436
5437 * files.el (magic-mode-alist, magic-fallback-mode-alist):
5438 Move the *ml, Postscript, and XmCD entries to the fallback part.
5439
5440 * files.el (magic-fallback-mode-alist):
5441 Rename from file-start-mode-alist.
5442
5443 2007-05-16 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
5444
5445 * progmodes/compile.el (compilation-handle-exit): Quote first
5446 argument of `run-hook-with-args'.
5447
5448 2007-05-16 Juanma Barranquero <lekktu@gmail.com>
5449
5450 * buff-menu.el (Buffer-menu-sort-column):
5451 * dabbrev.el (dabbrev-upcase-means-case-search):
5452 * dired.el (dired-recursive-deletes, dired-recursive-copies):
5453 * info.el (Info-current-subfile):
5454 * ls-lisp.el (ls-lisp-verbosity):
5455 * msb.el (msb-menu-cond):
5456 * pcvs.el (cvs-dired-use-hook):
5457 * simple.el (set-mark-command-repeat-pop):
5458 * time.el (display-time-24hr-format, display-time-mail-file):
5459 Doc fixes.
5460
5461 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
5462 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
5463
5464 * view.el (view-inhibit-help-message): Fix typo in docstring.
5465 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
5466
5467 2007-05-16 Martin Rudalics <rudalics@gmx.at>
5468
5469 * textmodes/ispell.el (ispell-start-process): Defend against bad
5470 default-directory.
5471
5472 2007-05-14 Eli Zaretskii <eliz@gnu.org>
5473
5474 * mail/rmail.el (rmail-convert-to-babyl-format): Check
5475 content-transfer-encoding _last_, because it's its position that
5476 we need as value of base64-header-field-end.
5477
5478 2007-05-14 Juanma Barranquero <lekktu@gmail.com>
5479
5480 * files.el (mode-require-final-newline, require-final-newline)
5481 (enable-local-variables, enable-local-eval): Doc fixes.
5482
5483 2007-05-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5484
5485 * ps-print.el: Use default color when foreground or background color
5486 are unspecified. Reported by Leo <sdl.web@gmail.com>.
5487 (ps-print-version): New version 6.7.4.
5488 (ps-rgb-color): New argument. Use default color when color is
5489 unspecified.
5490 (ps-begin-job): Fix code.
5491
5492 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
5493
5494 * longlines.el (longlines-mode): Make longlines-auto-wrap
5495 buffer-local. Add hooks unconditionally.
5496 (longlines-auto-wrap): Toggle wrapping.
5497 (longlines-after-change-function)
5498 (longlines-post-command-function): Check longlines-auto-wrap.
5499
5500 2007-05-12 Nick Roberts <nickrob@snap.net.nz>
5501
5502 * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
5503 (xterm-mouse-translate): Use it.
5504
5505 2007-05-10 Richard Stallman <rms@gnu.org>
5506
5507 * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
5508 (iso-cvt-write-only): Likewise.
5509
5510 * emacs-lisp/easy-mmode.el (define-minor-mode):
5511 Fix generated doc string.
5512
5513 * startup.el (fancy-splash-text): Add URL of guided tour.
5514 Adjust horizontal and vertical whitespace.
5515
5516 * progmodes/compile.el (compilation-handle-exit):
5517 Use run-hook-with-args to run compilation-finish-functions.
5518
5519 * files.el (file-start-mode-alist): New variable.
5520 (magic-mode-regexp-match-limit): Doc fix.
5521 (set-auto-mode): Handle file-start-mode-alist.
5522 A little cleanup of structure.
5523
5524 * dabbrev.el (dabbrev-eliminate-newlines):
5525 Renamed from dabbrev--eliminate-newlines. All uses changed.
5526
5527 2007-05-10 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
5528
5529 * man.el (Man-next-section): Don't consider the last line of the page
5530 as being part of any section.
5531
5532 2007-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
5533
5534 * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
5535 can take any number of values.
5536
5537 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
5538
5539 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
5540 to the list of citation commands.
5541
5542 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
5543
5544 * vc-hooks.el (vc-find-root): Stop searching when the user changes.
5545
5546 2007-05-09 Edward O'Connor <hober0@gmail.com> (tiny change)
5547
5548 * progmodes/python.el (python-font-lock-keywords)
5549 (python-open-block-statement-p, python-mode): Add support for the new
5550 "with" keyword.
5551
5552 2007-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
5553
5554 * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
5555 the exact opposite of diff-goto-source.
5556
5557 * emacs-lisp/advice.el (ad-special-forms): Remove.
5558 (ad-special-form-p): Use subr-arity.
5559
5560 * newcomment.el (comment-search-forward): Make sure we search forward.
5561 (comment-enter-backward): Try and distinguish the non-matching case at
5562 EOB from the non-matching case with a missing comment-end-skip for
5563 a 2-char comment ender.
5564 (comment-choose-indent): New function extracted from comment-indent.
5565 Improve the alignment algorithm.
5566 (comment-indent): Use it.
5567
5568 * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
5569 XML style Processing Instructions.
5570 (sgml-parse-tag-backward): Handle XML-style PIs. Also ensure progress.
5571 (sgml-calculate-indent): Handle `pi' context.
5572
5573 * vc.el: Ensure that update-changelog issues an error when used with
5574 a backend that does not implement it.
5575 (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
5576 Remove `backend' argument. Use expand-file-name.
5577 (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
5578
5579 * progmodes/python.el (python-end-of-block): Revert last change.
5580 (python-end-of-statement): Make sure we move *forward*.
5581
5582 2007-05-08 Richard Stallman <rms@gnu.org>
5583
5584 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
5585 Don't include non-self-insert commands in the exception for `-'.
5586
5587 2007-05-08 David Reitter <david.reitter@gmail.com>
5588
5589 * progmodes/python.el (python-guess-indent): Check non-nullness
5590 before comparing indent against the 2..8 interval.
5591
5592 2007-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5593
5594 * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
5595 available.
5596
5597 2007-05-06 Richard Stallman <rms@gnu.org>
5598
5599 * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
5600
5601 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
5602
5603 * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
5604 rather than storing their value in the revert-buffer function.
5605
5606 2007-05-04 Nick Roberts <nickrob@snap.net.nz>
5607
5608 * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
5609 when disabling t-mouse-mode.
5610
5611 2007-05-01 Davis Herring <herring@lanl.gov>
5612
5613 * calendar/timeclock.el: Update version number.
5614 (timeclock-modeline-display): Mention timeclock-use-display-time
5615 in explanatory message.
5616 (timeclock-in): Fix non-interactive workday specifications.
5617 (timeclock-log): Don't kill the log buffer if it already existed.
5618 Suppress warnings when finding the log. Don't check for a nil
5619 project twice. Run hooks after killing the buffer (if applicable).
5620 (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
5621 was geometric). All uses changed.
5622 (timeclock-generate-report): Support prefix argument.
5623
5624 2007-05-03 Ryan Yeske <rcyeske@gmail.com>
5625
5626 * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
5627 disconnections.
5628
5629 2007-05-01 Romain Francoise <romain@orebokech.com>
5630
5631 * dired-x.el: Revert 2007-04-06 change.
5632
5633 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net>
5634
5635 * find-dired.el (find-dired-filter): Propertize all text down to eob.
5636
5637 2007-04-29 Richard Stallman <rms@gnu.org>
5638
5639 * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
5640
5641 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5642
5643 * progmodes/cc-mode.el (c-before-change): Use point-min rather
5644 than 1.
5645
5646 2007-04-28 Richard Stallman <rms@gnu.org>
5647
5648 * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
5649
5650 2007-04-28 Nick Roberts <nickrob@snap.net.nz>
5651
5652 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
5653 don't put stop on toolbar.
5654
5655 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5656
5657 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
5658
5659 2007-04-28 Eli Zaretskii <eliz@gnu.org>
5660
5661 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
5662 instead of $(lisp)/mh-e.
5663
5664 2007-04-28 Glenn Morris <rgm@gnu.org>
5665
5666 * image-dired.el (image-dired-cmd-create-thumbnail-options)
5667 (image-dired-cmd-create-temp-image-options): Replace option
5668 +profile "*" with -strip.
5669
5670 2007-04-27 Chong Yidong <cyd@stupidchicken.com>
5671
5672 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
5673 Use window-start and window-end.
5674
5675 2007-04-27 Andreas Schwab <schwab@suse.de>
5676
5677 * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
5678
5679 2007-04-27 Eli Zaretskii <eliz@gnu.org>
5680
5681 * textmodes/fill.el (fill-paragraph): Doc fix.
5682
5683 2007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
5684
5685 * locate.el (locate-in-alternate-database): Doc fix.
5686
5687 2007-04-26 Glenn Morris <rgm@gnu.org>
5688
5689 * button.el (button): Use underline if supported, else fall back
5690 to color.
5691
5692 * version.el (emacs-version): Increase to 22.1.50.
5693
5694 2007-04-25 Richard Stallman <rms@gnu.org>
5695
5696 * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
5697
5698 2007-04-25 J.D. Smith <jdsmith@as.arizona.edu>
5699
5700 * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
5701 (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
5702 pushing mark.
5703 (idlwave-current-routine): Don't push mark.
5704
5705 2007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
5706
5707 * image-dired.el (image-dired-display-image): Derive image-type from
5708 filename rather than assuming jpeg, in case no resizing was needed.
5709
5710 2007-04-25 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
5711
5712 * custom.el (defface): Doc fix.
5713
5714 See ChangeLog.12 for earlier changes.
5715
5716 ;; Local Variables:
5717 ;; coding: iso-2022-7bit
5718 ;; add-log-time-zone-rule: t
5719 ;; End:
5720
5721 Copyright (C) 2007 Free Software Foundation, Inc.
5722
5723 This file is part of GNU Emacs.
5724
5725 GNU Emacs is free software; you can redistribute it and/or modify
5726 it under the terms of the GNU General Public License as published by
5727 the Free Software Foundation; either version 3, or (at your option)
5728 any later version.
5729
5730 GNU Emacs is distributed in the hope that it will be useful,
5731 but WITHOUT ANY WARRANTY; without even the implied warranty of
5732 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5733 GNU General Public License for more details.
5734
5735 You should have received a copy of the GNU General Public License
5736 along with GNU Emacs; see the file COPYING. If not, write to the
5737 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
5738 Boston, MA 02110-1301, USA.
5739
5740 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af