(Killing from the stack): Mention how to use normal Emacs copying.
[bpt/emacs.git] / lisp / ChangeLog
1 2008-06-24 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc/calc.el (calc-mode-map): Add extra keybindings to
4 `calc-missing-key'.
5 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
6 `kill-ring-save'.
7
8 2008-06-24 Miles Bader <miles@gnu.org>
9
10 * mouse.el (mouse-appearance-menu): Don't do anything if the user
11 pops up the menu but doesn't select anything.
12
13 2008-06-24 Dan Nicolaescu <dann@ics.uci.edu>
14
15 * add-log.el (add-change-log-entry): Add new arg to force each new
16 entry to be on a new line.
17 * diff-mode.el (diff-add-change-log-entries-other-window): Use it.
18
19 * vc-dir.el (vc-client-object): Remove.
20 (vc-dir-prepare-status-buffer): Take a backend as an argument and
21 use it when looking for a buffer.
22 (vc-dir): Add a backend argument. Set revert-buffer-function.
23 Don't create a client object. Move bindings ...
24 (vc-dir-menu-map, vc-dir-mode-map): ... here.
25 (vc-dir-revert-buffer-function): New function.
26 (vc-generic-status-printer): Rename to ...
27 (vc-dir-status-printer): ... this.
28 (vc-generic-state, vc-generic-status-fileinfo-extra)
29 (vc-dir-extra-menu, vc-make-backend-object): Remove.
30 (vc-default-status-printer): Use a different face for
31 directories. Don't display any text for directories in the state
32 column. Add tooltips.
33
34 * vc.el (Todo): Update.
35
36 * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
37 * vc-rcs.el (vc-annotate-convert-time):
38 * vc-mtn.el (vc-annotate-convert-time):
39 * vc-git.el (vc-annotate-convert-time):
40 * vc-cvs.el (vc-annotate-convert-time):
41 * vc-bzr.el (vc-annotate-convert-time): Declare as functions.
42
43 2008-06-23 Dan Nicolaescu <dann@ics.uci.edu>
44
45 * vc-annotate.el (vc-annotate-mode): Derive from special-mode
46 instead of using view-mode.
47
48 2008-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
49
50 * Makefile.in (distclean): Don't delete *.elc and autogen files.
51
52 2008-06-22 Dan Nicolaescu <dann@ics.uci.edu>
53
54 * vc.el:
55 * vc-hooks.el:
56 * vc-dispatcher.el: Move vc-dir variables and functions ...
57 * vc-dir.el: ... here. New file.
58 * Makefile.in (ELCFILES): Add vc-dir.elc.
59
60 * vc.el: Move vc-annotate variables and functions ...
61 * vc-annotate.el: ... here. New file.
62 * Makefile.in (ELCFILES): Add vc-annotate.elc.
63
64 * vc-dav.el: Move here from url/vc-dav.el.
65 (Todo): Note work needed to make this backend functional.
66
67 * Makefile.in (ELCFILES): Update vc-dav.el location.
68
69 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
70
71 * Makefile.in (COMPILE_FIRST): Trim down and add autoload.el.
72
73 2008-06-21 John Paul Wallington <jpw@pobox.com>
74
75 * emacs-lisp/derived.el (define-derived-mode): Add `doc-string' decl.
76
77 * textmodes/rst.el (rst-mode): Put docstring in right place.
78
79 2008-06-21 Chong Yidong <cyd@stupidchicken.com>
80
81 * startup.el (fancy-about-text, fancy-startup-tail): Increase text
82 size for legibility.
83
84 * faces.el (fixed-pitch): Use "Monospace" family.
85 (variable-pitch): Use "Sans" family.
86 (face-font-family-alternatives): Define alternatives for "Sans"
87 and "Monospace".
88
89 2008-06-21 Glenn Morris <rgm@gnu.org>
90
91 * mail/hashcash.el, net/tramp-smb.el, nxml/nxml-mode.el:
92 Require 'cl when compiling.
93
94 * emacs-lisp/debug.el (help-xref-interned): Declare.
95
96 * emacs-lisp/easy-mmode.el (easy-mmode-set-keymap-parents):
97 Evaluate definition when compiling.
98
99 * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1
100 rather than mouse-1.
101 (bug-reference-url-format): Autoload safe if string.
102 (bug-reference-bug-regexp): Make space after "bug" optional.
103
104 * Makefile.in (all): Explicitly pass EMACS to sub-make,
105 for some non-GNU makes.
106
107 * cus-dep.el (custom-dependencies-no-scan-regexp):
108 * finder.el (finder-no-scan-regexp): Add ldefs-boot.el
109
110 * calendar/cal-move.el (calendar-forward-day): Scroll in one month
111 increments.
112
113 * calendar/calendar.el: Factor out the magic numbers controlling the
114 calendar layout.
115 (calendar-month-digit-width, calendar-month-width)
116 (calendar-right-margin): New variables.
117 (calendar-recompute-layout-variables, calendar-set-layout-variable):
118 New functions.
119 (calendar-left-margin, calendar-intermonth-spacing)
120 (calendar-column-width, calendar-day-header-width)
121 (calendar-day-digit-width): New options.
122 (calendar-first-date-row): New constant.
123 (calendar-move-to-column, calendar-ensure-newline): New functions,
124 replacing calendar-insert-indented.
125 (calendar-insert-indented): Remove function.
126 (calendar-generate-month): Use calendar-move-to-column and
127 calendar-ensure-newline. Use layout variables.
128 (calendar-generate, calendar-update-mode-line)
129 (calendar-font-lock-keywords): Use layout variables.
130 (calendar-column-to-month): New function.
131 (calendar-cursor-to-date): Use calendar-column-to-month.
132 Use layout variables.
133 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
134 Use layout variables. Use calendar-column-to-month.
135 (calendar-cursor-to-visible-date): Use layout variables.
136
137 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
138
139 * Makefile.in (update-elclist): Don't exclude COMPILE_FIRST.
140 (all): Run compile-last.
141 (compile-onefile): New target.
142 (compile-first): Simplify.
143 (compile-last): Don't treat COMPILE_FIRST specially.
144 (COMPILE_FIRST): List the elc files rather than the el files.
145 (ELCFILES): Update.
146
147 2008-06-21 Ulf Jasper <ulf@web.de>
148
149 * net/newst-treeview.el: Remove dead code.
150 (newsticker--window-config): Remove.
151 (newsticker-treeview-quit): Do not save window config.
152 (newsticker-treeview): Do not try to restore window config.
153 (newsticker-groups, newsticker--treeview-list-sort-by-column)
154 (newsticker--treeview-list-new-items)
155 (newsticker--treeview-list-immortal-items)
156 (newsticker--treeview-list-obsolete-items)
157 (newsticker--treeview-list-all-items)
158 (newsticker--treeview-list-feed-items): Fix documentation.
159
160 2008-06-21 Miles Bader <miles@gnu.org>
161
162 * face-remap.el (text-scale-adjust): Bind `echo-keystrokes' to nil.
163
164 2008-06-21 Alan Mackenzie <acm@muc.de>
165
166 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5D.5): Fix an
167 infinite loop on invalid syntax.
168
169 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
170
171 * textmodes/rst.el: Run rst-define-level-faces when loading.
172 (rst-mode): Don't set the font-lock-multiline var.
173 (rst-font-lock-find-unindented-line, rst-font-lock-handle-adornment):
174 Set the font-lock-multiline property by hand.
175
176 * loadup.el: Don't add emacs-<VERS> name when bootstrapping.
177
178 * Makefile.in (emacs-deps): Remove.
179 ($(lisp)/cus-load.el, $(lisp)/finder-inf.el): Re-add.
180 (all): Use them.
181 (autogen-clean): Remove.
182
183 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
184
185 * Makefile.in (all): New target.
186 (bootstrap-prepare): Remove.
187
188 * Makefile.in ($(lisp)/progmodes/cc-mode.elc): Pass the .el file not
189 the .elc file to batch-byte-compile.
190
191 * progmodes/cc-mode.el (c-make-inherited-keymap): Only use
192 set-keymap-parents if set-keymap-parent doesn't exist.
193
194 * vc-bzr.el (vc-bzr-annotate-extract-revision-at-line):
195 Allow more than one space before the |.
196
197 * textmodes/rst.el: Fix up docstring conventions.
198 Move vars to before their first use.
199 (rst-mode): Don't mess with font-lock-support-mode.
200 (rst-suggest-new-decoration, rst-adjust-decoration):
201 Avoid CL's copy-list.
202 (rst-delete-entire-line): Use line-beginning-position.
203 (rst-position): New fun.
204 (rst-straighten-decorations): Use it instead of CL's position.
205 (rst-straighten-bullets-region): Avoid CL's mapcar*.
206 (rst-toc-mode): Use define-derived-mode.
207 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2):
208 Remove unused var `in-par'. Use `point' rather than `point-marker'.
209 (rst-line-block-region): Reduce redundancy. Use the `pfxarg' arg.
210 (rst-replace-lines): Simplify.
211 (auto-mode-alist): Use rst-mode for *.rst and *.rest files.
212
213 * simple.el (special-mode-map): New var.
214 (special-mode): New major mode.
215
216 2008-06-20 Dan Nicolaescu <dann@ics.uci.edu>
217
218 * vc-mtn.el (vc-mtn-log-view-mode): Set log-view-per-file-logs and
219 log-view-file-re.
220
221 * vc.el (vc-dir-hide-up-to-date): Undo previous change.
222 (vc-switch-backend): Simplify.
223 (Todo): Remove solved items.
224
225 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-parse-entry): Do not set
226 the vc-backend property.
227
228 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
229
230 * emacs-lisp/checkdoc.el (checkdoc-start-section, checkdoc-error):
231 Bind inhibit-read-only since the buffer is always read-only.
232
233 2008-06-20 Ulf Jasper <ulf@web.de>
234
235 * net/newst-treeview.el (newsticker-treeview-own-frame):
236 Change default value to nil.
237 (newsticker--treeview-list-add-item)
238 (newsticker--treeview-propertize-tag): Show item title in tooltip.
239
240 2008-06-20 Martin Blais <blais@furius.ca>
241 Stefan Merten <smerten@oekonux.de>
242 David Goodger <goodger@python.org>
243
244 * textmodes/rst.el: New file.
245
246 2008-06-20 Sam Steingold <sds@gnu.org>
247
248 * vc.el (vc-dir-hide-up-to-date): Accept a prefix argument to also
249 remove DIRECTORY entries.
250
251 2008-06-20 Eli Zaretskii <eliz@gnu.org>
252
253 * makefile.w32-in (distclean): Depend on `clean'.
254 (clean): Delete calc/calc-loaddefs.el~ and eshell/esh-groups.el~.
255 (AUTOGENEL): Add $(lisp)/nxml/subdirs.el.
256 ($(lisp)/cus-load.el): Don't use `touch'. Instead, generate an
257 empty cus-load.el with `echo', and include "Local Variables"
258 section to prevent the empty file from being compiled.
259 (cus-load.el-SH, cus-load.el-CMD): New SHELLTYPE-specific targets
260 that generate an empty cus-load.el.
261
262 2008-06-20 Juanma Barranquero <lekktu@gmail.com>
263
264 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
265 Don't copy ldefs-boot.el over loaddefs.el.
266 (bootstrap-clean): Remove loaddefs.el and don't depend on it.
267 (loaddefs.el-SH, loaddefs.el-CMD): Don't add autoloads and defvars
268 to loaddefs.el; they are not needed now. Add coding cookie.
269
270 2008-06-20 Miles Bader <miles@gnu.org>
271
272 * face-remap.el (face-remap-add-relative, face-remap-set-base):
273 Strip unnecessary list levels from SPECS.
274 (buffer-face-set, buffer-face-toggle):
275 Change argument from FACE to &rest SPECS, and strip unnecessary
276 list levels from SPECS.
277 (buffer-face-mode-invoke): Change argument from FACE to SPECS.
278
279 2008-06-20 Jason Rumney <jasonr@gnu.org>
280
281 * international/fontset.el (setup-default-fontset): Specify script
282 for latin use of iso10646-1. Fix use of lang tags.
283
284 2008-06-19 Miles Bader <miles@gnu.org>
285
286 * face-remap.el (text-scale-increase): Start from zero if
287 text-scale-mode isn't enabled.
288
289 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
290
291 * faces.el (face-set-after-frame-default): Re-apply explicit `font'
292 frame parameters after setting up the `default' face.
293
294 2008-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
295
296 * faces.el (face-set-after-frame-default): Don't exclude `default'.
297
298 2008-06-18 Glenn Morris <rgm@gnu.org>
299
300 * mouse.el (buffer-face-mode-invoke): Declare.
301
302 * Makefile.in (ELCFILES): Add org/org-id.elc.
303
304 * calendar/holidays.el (calendar-cursor-holidays): Accept optional date.
305 * calendar/cal-menu.el (cal-menu-holidays-menu):
306 Use calendar-cursor-holidays rather than cal-menu-today-holidays.
307 (cal-menu-today-holidays): Remove function.
308
309 * calendar/cal-menu.el (cal-menu-holiday-window-suffix): Simplify.
310 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
311 (cal-menu-list-holidays-previous-year, calendar-mouse-goto-date):
312 Remove unused functions.
313 (calendar-mouse-view-diary-entries): Use format rather than concat.
314
315 * calendar/cal-menu.el (cal-menu-x-popup-menu): Turn it into a macro.
316 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
317 (calendar-mouse-print-dates): Adapt for cal-menu-x-popup-menu change.
318
319 * calendar/cal-menu.el (cal-menu-event-to-date): Remove function.
320 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
321 (calendar-mouse-view-other-diary-entries, calendar-mouse-print-dates)
322 (cal-menu-set-date-title): Use calendar-cursor-to-date rather than
323 cal-menu-event-to-date.
324
325 * calendar/cal-html.el (cal-html-cursor-month, cal-html-cursor-year):
326 Handle mouse events.
327 * calendar/cal-tex.el (cal-tex-cursor-year)
328 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
329 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
330 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
331 (cal-tex-cursor-week-monday, cal-tex-cursor-filofax-2week)
332 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
333 (cal-tex-cursor-day): Handle mouse events. Rename ARG to N.
334 (cal-tex-cursor-month): Mark N as optional.
335 * calendar/cal-menu.el (calendar-mouse-tex-day)
336 (calendar-mouse-tex-week, calendar-mouse-tex-week2)
337 (calendar-mouse-tex-week-iso, calendar-mouse-tex-week-monday)
338 (calendar-mouse-tex-filofax-daily, calendar-mouse-tex-filofax-2week)
339 (calendar-mouse-tex-filofax-week, calendar-mouse-tex-month)
340 (calendar-mouse-tex-month-landscape, calendar-mouse-tex-year)
341 (calendar-mouse-tex-filofax-year, calendar-mouse-tex-year-landscape):
342 Remove functions.
343 (cal-menu-context-mouse-menu): Replace the above functions with the
344 cal-tex versions. Add HTML submenu.
345
346 2008-06-17 Nick Roberts <nickrob@snap.net.nz>
347
348 * progmodes/gdb-ui.el (gud-gdba-marker-filter): Don't switch to
349 text command mode.
350 (gdb): Explain that gud-gdb is needed for text command mode.
351
352 2008-06-17 Martin Rudalics <rudalics@gmx.at>
353
354 * window.el (split-height-threshold): Remove spurious extra line.
355
356 2008-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
357
358 * calendar/calendar.el (calendar-cursor-to-date): Add argument `event'.
359 (calendar-set-mark):
360 * calendar/diary-lib.el (diary-insert-entry):
361 * calendar/solar.el (calendar-sunrise-sunset): Use it.
362 * calendar/cal-menu.el (calendar-mouse-sunrise/sunset)
363 (calendar-mouse-insert-diary-entry, calendar-mouse-set-mark): Delete.
364 (cal-menu-context-mouse-menu): Use calendar-set-mark,
365 diary-insert-entry, and calendar-sunrise-sunset instead.
366
367 * vc.el (vc-deduce-fileset): Add arg `only-files'.
368 (vc-next-action): Pass the new arg.
369 (vc-register): Don't use `only-files'.
370 Don't set `backup-inhibited' in the current buffer.
371
372 2008-06-17 Miles Bader <miles@gnu.org>
373
374 * mouse.el (mouse-appearance-menu): Use buffer-face-mode.
375
376 * face-remap.el (buffer-face-mode-face)
377 (buffer-face-mode-remapping): New variables.
378 (buffer-face-mode, buffer-face-set, buffer-face-toggle)
379 (buffer-face-mode-invoke): New functions.
380 (variable-pitch-mode-remapping): Variable removed.
381 (variable-pitch-mode): Rewrite as an interface to `buffer-face-mode'.
382
383 * face-remap.el (internal-lisp-face-attributes): New variable.
384 (face-attrs-more-relative-p, face-remap-order): New functions.
385 (face-remap-add-relative): Use `face-remap-order'.
386
387 2008-06-17 Glenn Morris <rgm@gnu.org>
388
389 * mouse.el (x-select-font): Declare.
390
391 * calendar/calendar.el (calendar-move-hook):
392 Add calendar-update-mode-line as an option.
393 (calendar-date-echo-text): New user option.
394 (calendar-generate-month): Set `day'. Use calendar-date-echo-text.
395 (calendar-insert-indented): Simplify newline insertion.
396 (calendar-describe-mode): Remove unused function.
397 (calendar-mode-line-entry): New function.
398 (calendar-mode-line-format): Doc fix. Use calendar-mode-line-entry.
399 Mark as risky.
400 (calendar-mouse-other-month): Remove function.
401 (calendar-other-month): Handle mouse events.
402 (calendar-goto-info-node): Call fit-window-to-buffer.
403 (calendar-mode): Use define-derived-mode. Doc fix.
404 (calendar-update-mode-line): Tweak whitespace.
405
406 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 * vc-dispatcher.el (vc-dir-child-files): Use vc-string-prefix-p.
409 (vc-dir-marked-only-files): vc-string-prefix-p.
410
411 2008-06-16 Nick Roberts <nickrob@snap.net.nz>
412
413 * progmodes/gdb-ui.el (gdb-memory-set-address)
414 (gdb-memory-set-repeat-count): Allow keyboard bindings.
415 (gdb-memory-mode-map): Bind above functions respectively
416 to 'S' and 'N'.
417
418 2008-06-16 Derek Upham <sand@blarg.net> (tiny change)
419
420 * nxml/nxml-mode.el (nxml-mode): Use run-mode-hooks.
421
422 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
423
424 * log-view.el (vc-diff-internal): Declare for compiler.
425
426 * vc-bzr.el (log-view-per-file-logs):
427 * vc-svn.el (log-view-per-file-logs): Pacify byte compiler.
428
429 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
430
431 * mouse.el (mouse-appearance-menu-map): New var.
432 (mouse-appearance-menu): New function.
433 Bind it to S-down-mouse-1.
434
435 2008-06-15 Juri Linkov <juri@jurta.org>
436
437 * info.el (Info-toc): Call Info-toc-nodes instead of Info-build-toc.
438 (Info-toc, Info-insert-toc): Increment nth's index to add PARENT
439 as the second element.
440 (Info-build-toc): Add PARENT element extracted from the Up pointer.
441 Don't print progress messages.
442 (Info-toc-nodes): New variable and function.
443 (Info-index-nodes): Optimize non-string file name case.
444 (Info-breadcrumbs-depth): Increment the default value from 3 to 4.
445 (Info-insert-breadcrumbs): Use the cached document structure instead
446 of visiting all ancestor nodes. Remove the initial `>'.
447
448 2008-06-15 Dan Nicolaescu <dann@ics.uci.edu>
449
450 * log-view.el (log-view-diff-changeset): New function.
451 (log-view-mode-map, log-view-mode-menu): Bind it.
452 (log-view-per-file-logs, log-view-vc-fileset)
453 (log-view-vc-backend): New variables.
454 (log-view-find-revision, log-view-modify-change-comment)
455 (log-view-annotate-version): Throw an error if the log is for more
456 than one file and we can't find the current file. Get the current
457 file from log-view-vc-fileset if necessary.
458 (log-view-diff): Get the current file from log-view-vc-fileset if
459 necessary.
460
461 * vc.el (vc-print-log): Set log-view-vc-fileset and log-view-vc-backend.
462
463 * vc-hg.el (vc-hg-log-view-mode): Call the log method only once.
464 (vc-hg-log-view-mode): Declare for compiler.
465 (vc-hg-log-view-mode): Set log-view-per-file-logs and
466 log-view-file-re.
467 (vc-hg-diff): If no file is passed, use default-directory for cwd.
468
469 * vc-bzr.el (vc-bzr-log-view-mode): Set log-view-per-file-logs.
470
471 * vc-svn.el (vc-svn-log-view-mode): New derived mode.
472
473 2008-06-15 Michael Albinus <michael.albinus@gmx.de>
474
475 * net/tramp.el (tramp-handle-start-file-process):
476 Clear modification time of the connection buffer.
477 (tramp-sh-file-name-handler): Reset `tramp-locked' in case of error.
478 (tramp-open-connection-setup-interactive-shell): Flush cache, and
479 restart `tramp-maybe-open-connection' when the remote system has
480 been changed. Throw 'uname-changed event.
481 (tramp-maybe-open-connection): Catch it.
482
483 * net/tramp-cmds.el (tramp-cleanup-all-connections):
484 Reset `tramp-locked'.
485
486 2008-06-15 Ulf Jasper <ulf@web.de>
487
488 * net/newst-treeview.el (newsticker--treeview-list-update)
489 (newsticker--treeview-item-update)
490 (newsticker--treeview-tree-update)
491 (newsticker-treeview-jump, newsticker-group-add-group)
492 (newsticker-group-move-feed, newsticker-group-delete-group):
493 Remove window dedication.
494 (newsticker--group-manage-orphan-feeds): Handle ill-valued
495 newsticker-groups.
496 (newsticker--treeview-tree-expand): Don't manage orphan feeds here.
497
498 2008-06-15 Andreas Schwab <schwab@suse.de>
499
500 * vc-cvs.el (vc-cvs-status-extra-headers): Don't match newline
501 when parsing CVS/Repository.
502
503 * wdired.el (wdired-search-and-rename): Fix undocumented change.
504
505 2008-06-15 Ulf Jasper <ulf@web.de>
506
507 * net/newst-plainview.el (newsticker-faces, newsticker-feed-face)
508 (newsticker-extra-face, newsticker-enclosure-face): Moved to
509 net/newst-reader.el.
510
511 * net/newst-reader.el (newsticker-faces, newsticker-feed-face)
512 (newsticker-extra-face, newsticker-enclosure-face): Moved from
513 net/newst-reader.el.
514
515 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
516
517 * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
518 Catch and recover from case when the bytes we thought we were reading
519 turn out to be something else entirely, such as latin-1 chars from
520 quail. See bug#396.
521
522 2008-06-15 Dan Nicolaescu <dann@ics.uci.edu>
523
524 * vc.el (vc-deduce-fileset): Check if the buffer has a file.
525 (vc-register): Call the backend function only once, instead of
526 once for each file.
527 (vc-next-action): Update call to vc-register.
528 (vc-dir-register): Remove function.
529 (vc-dir): Bind vc-register instead of vc-dir-register.
530
531 2008-06-14 Glenn Morris <rgm@gnu.org>
532
533 * Makefile.in (ELCFILES): Add net/newst-*.el.
534
535 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
536
537 * wdired.el (wdired-do-renames): New function.
538 (wdired-finish-edit): Use it to.
539 (wdired-preprocess-files): Don't hardcode (point-min) == 1.
540
541 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
542
543 * info.el (Info-insert-breadcrumbs): Don't break in apropos and toc.
544
545 2008-06-14 Martin Rudalics <rudalics@gmx.at>
546
547 * window.el (window--even-window-heights): Even window heights
548 only if the selected window is higher than WINDOW.
549 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
550
551 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
552
553 * info.el (Info-insert-breadcrumbs): Be careful to preserve history.
554
555 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 * term/linux.el (terminal-init-linux): Load t-mouse.
558
559 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
560 Drew Adams <drew.adams@oracle.com>
561
562 * info.el (Info-breadcrumbs-depth): New var.
563 (Info-insert-breadcrumbs): New function.
564 (Info-fontify-node): Use it.
565 (Info-mode-map): Move initialization into declaration.
566
567 2008-06-13 Ulf Jasper <ulf.jasper@web.de>
568
569 Rename net/newsticker-*.el to net/newst-*.el.
570 * net/newst-backend.el: Rename from net/newsticker-backend.el.
571 * net/newst-plainview.el: Rename from net/newsticker-plainview.el.
572 * net/newst-reader.el: Rename from net/newsticker-reader.el.
573 * net/newst-ticker.el: Rename from net/newsticker-ticker.el.
574 * net/newst-treeview.el: Rename from net/newsticker-treeview.el.
575 * net/newsticker-backend.el: Rename to net/newst-backend.el.
576 * net/newsticker-plainview.el: Rename to net/newst-plainview.el.
577 * net/newsticker-reader.el: Rename to net/newst-reader.el.
578 * net/newsticker-ticker.el: Rename to net/newst-ticker.el.
579 * net/newsticker-treeview.el: Rename to net/newst-treeview.el.
580
581 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
582
583 * progmodes/compile.el (compilation-start): Don't disable undo in
584 comint buffer. Don't override the comint-filter with our own.
585 (compilation-filter): Change point's insertion-type.
586
587 * comint.el (comint-output-filter): Use copy-marker.
588
589 2008-06-13 David Reitter <david.reitter@gmail.com>
590
591 * textmodes/flyspell.el (mail-mode-flyspell-verify):
592 Check message-signature-separator exists before using it.
593
594 2008-06-13 Dan Nicolaescu <dann@ics.uci.edu>
595
596 * vc.el (vc-delete-file): Bind default-directory before calling
597 the backend.
598 (vc-annotate-show-diff-revision-at-line): Move most of the code to ...
599 (vc-annotate-show-diff-revision-at-line-internal): ... here.
600 New function.
601 (vc-annotate-show-changeset-diff-revision-at-line): New function.
602 (vc-annotate-mode-menu): Bind it.
603
604 2008-06-13 Jason Rumney <jasonr@gnu.org>
605
606 * term/w32-win.el (mouse-set-font): Remove overridden function.
607 (w32-select-font): Declare as obsolete alias for x-select-font.
608
609 2008-06-13 Daniel Engeler <engeler@gmail.com>
610
611 These changes add serial port access.
612 * term.el (term-update-mode-line): Modify.
613 (serial-port-is-file-p, serial-nice-speed-history)
614 (serial-no-speed, serial-mode-line-speed-menu)
615 (serial-mode-line-config-menu): New variables and constants.
616 (serial-name-history, serial-speed-history)
617 (serial-supported-or-barf, serial-read-name, serial-read-speed)
618 (serial-term, serial-speed, serial-mode-line-speed-menu-1)
619 (serial-mode-line-speed-menu, serial-update-speed-menu)
620 (serial-mode-line-config-menu-1, serial-mode-line-config-menu)
621 (serial-update-config-menu): New functions.
622
623 2008-06-13 Glenn Morris <rgm@gnu.org>
624
625 * menu-bar.el (menu-set-font): Use fboundp rather than functionp.
626
627 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Doc fix.
628
629 2008-06-13 Kenichi Handa <handa@m17n.org>
630
631 * cus-face.el (custom-face-attributes): Add :foundry.
632
633 * faces.el (set-face-attribute): Parse "FOUNDRY-FAMILY" here.
634 (face-x-resources): Add :foundry.
635 (face-valid-attribute-values): Likewise.
636 (face-attribute-name-alist): Likewise.
637 (describe-face): Likewise.
638
639 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
640
641 * emacs-lisp/map-ynp.el (map-y-or-n-p): Accept non-char events.
642
643 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
644
645 * longlines.el (longlines-search-forward, longlines-search-backward)
646 (longlines-re-search-forward): Use a smarter search-spaces-regexp.
647
648 2008-06-12 Sam Steingold <sds@gnu.org>
649
650 * vc.el (vc-rename-file): DTRT when the destination is a directory
651 name and the source is a file.
652
653 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
654
655 * menu-bar.el (menu-set-font): Rename x-font-dialog to x-select-font.
656
657 2008-06-12 Glenn Morris <rgm@gnu.org>
658
659 * progmodes/f90.el (f90-beginning-of-subprogram)
660 (f90-end-of-subprogram): Only give a message when interactive.
661
662 * term/mac-win.el (x-toolkit-scroll-bars): Check bound.
663
664 * progmodes/cperl-mode.el (cperl-info-on-command):
665 Use display-pixel-height rather than x-display-pixel-height.
666
667 * mail/rmailedit.el (rmail-cease-edit):
668 * vc-dispatcher.el (vc-dir-mode): Check tool-bar-mode is bound.
669
670 * emulation/edt.el (edt-xserver):
671 * emulation/edt-mapper.el (edt-xserver): Use replace-regexp-in-string.
672
673 * emulation/edt-mapper.el: Drop test for Emacs < 19.
674
675 * mwheel.el (mouse-wheel-follow-mouse, mwheel-event-window):
676 Evaluate definitions when compiling. Reverse tests.
677
678 * dframe.el (dframe-reposition-frame-emacs): Reorder test, and
679 use unless.
680
681 * menu-bar.el (w32-menu-bar-open): Declare for compiler.
682
683 * textmodes/artist.el (x-pointer-shape):
684 * term/x-win.el (x-parse-geometry, x-resource-name, accelerate-menu)
685 (x-open-connection, x-server-max-request-size, x-get-resource):
686 * term/w32console.el (x-setup-function-keys):
687 * term/w32-win.el (x-parse-geometry, x-resource-name)
688 (generate-fontset-menu, image-library-alist, x-open-connection)
689 (setup-default-fontset, set-fontset-font, setup-default-fontset)
690 (create-fontset-from-fontset-spec, create-fontset-from-x-resource)
691 (x-get-resource):
692 * term/mac-win.el (x-parse-geometry, x-resource-name)
693 (x-get-selection-internal, tool-bar-mode, set-fontset-font)
694 (new-fontset, x-display-list, x-open-connection, x-get-resource):
695 * progmodes/gud.el (tooltip-last-mouse-motion-event, tooltip-hide)
696 (tooltip-start-delayed-tip, tooltip-use-echo-area, tooltip-show)
697 (tooltip-strip-prompt, tooltip-expr-to-print, tooltip-event-buffer):
698 * progmodes/gdb-ui.el (tooltip-show, tooltip-use-echo-area)
699 (tooltip-identifier-from-point, define-fringe-bitmap):
700 * play/gamegrid.el (image-size):
701 * play/bubbles.el (image-size):
702 * mail/emacsbug.el (x-server-vendor, x-server-version):
703 * international/mule-util.el (internal-char-font):
704 * international/mule-diag.el (font-info, query-fontset, fontset-info)
705 (fontset-alias-alist, fontset-list, fontset-plain-name):
706 * international/mule-cmds.el (x-server-vendor, x-server-version):
707 * international/fontset.el (font-encoding-charset-alist)
708 (otf-script-alist, new-fontset, set-fontset-font)
709 (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
710 (fontset-list, query-fontset, x-get-resource):
711 * emulation/edt.el (x-server-vendor):
712 * emulation/edt-mapper.el (x-server-vendor):
713 * emacs-lisp/map-ynp.el (x-popup-dialog):
714 * emacs-lisp/lmenu.el (x-popup-dialog):
715 * x-dnd.el (x-window-property, x-change-window-property)
716 (x-get-selection-internal):
717 * woman.el (x-list-fonts):
718 * w32-fns.el (x-server-version):
719 * tooltip.el (x-show-tip, x-hide-tip):
720 * tool-bar.el (image-mask-p):
721 * thumbs.el (image-size):
722 * term.el (overflow-newline-into-fringe):
723 * subr.el (scroll-bar-scale):
724 * startup.el (x-get-resource, tool-bar-mode, image-size):
725 * select.el (x-get-selection-internal, x-own-selection-internal)
726 (x-disown-selection-internal):
727 * mouse.el (generate-fontset-menu):
728 * mouse-sel.el (x-select-text, x-cut-buffer-or-selection-value):
729 * image.el (image-library-alist):
730 * image-mode.el (image-size, image-refresh):
731 * image-dired.el (clear-image-cache):
732 * gs.el (x-display-mm-width, x-display-pixel-width)
733 (x-display-mm-height, x-display-pixel-height)
734 (x-change-window-property, x-display-grayscale-p, x-window-property):
735 * frame.el (tool-bar-mode, x-display-name, x-close-connection)
736 (x-focus-frame, x-list-fonts, x-display-screens)
737 (x-display-pixel-height, x-display-pixel-width, x-display-mm-height)
738 (x-display-mm-width, x-display-backing-store, x-display-save-under)
739 (x-display-planes, x-display-color-cells, x-display-visual-class):
740 * faces.el (internal-face-x-get-resource)
741 (internal-set-lisp-face-attribute-from-resource, x-bitmap-file-path)
742 (fontset-list, x-list-fonts, xw-color-defined-p, xw-color-values)
743 (xw-display-color-p, x-display-grayscale-p, x-get-resource)
744 (x-parse-geometry, x-create-frame, x-setup-function-keys)
745 (tool-bar-setup):
746 * doc-view.el (clear-image-cache, image-size, tooltip-show):
747 * dired.el (dnd-get-local-file-name, dnd-get-local-file-uri):
748 * dframe.el (x-display-pixel-width, x-display-pixel-height):
749 * descr-text.el (internal-char-font):
750 Define for compiler, for builds without X.
751
752 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
753
754 * vc-rcs.el (vc-rcs-state-heuristic): Don't assume the file exists.
755
756 2008-06-11 Glenn Morris <rgm@gnu.org>
757
758 * progmodes/fortran.el (fortran-end-of-subprogram): Check for a match
759 before trying to move there.
760 (fortran-calculate-indent): When fortran-check-all-num-for-matching-do
761 is non-nil, indent most terminating statements like loop body.
762
763 * calendar/diary-lib.el (diary-list-entries-2): Accept optional
764 Gregorian date, and add it, not the local date, to diary-entries-list.
765 (diary-list-entries-1): Pass Gregorian date to diary-list-entries-2.
766
767 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
768
769 * progmodes/compile.el (compilation-filter): Fix up last change.
770
771 * term/linux.el (terminal-init-linux): Use gpm-mouse-enable.
772
773 * t-mouse.el (gpm-mouse-enable, gpm-mouse-disable): New functions.
774 (gpm-mouse-mode): Make it into a proper global minor mode.
775
776 * files.el (save-some-buffers-action-alist): Only use recursive-edit
777 if the user enabled recursive-minibuffers.
778
779 * emacs-lisp/map-ynp.el (map-y-or-n-p):
780 Add support for scroll-other-window.
781
782 2008-06-11 Jason Rumney <jasonr@gnu.org>
783
784 * term/w32-win.el (w32-menu-bar-open): Rename from menu-bar-open.
785 Use tmm-menubar if menu is disabled in this frame.
786
787 * menu-bar.el (menu-bar-open): Determine how to open menu bar
788 from frame type, per documentation. Add w32 case.
789
790 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
791
792 * minibuffer.el (completion--merge-suffix): New function.
793 (completion-basic-try-completion): Use it.
794 (completion-pcm--find-all-completions): Add argument `filter'.
795 (completion-pcm--filename-try-filter, completion-pcm--merge-try):
796 New functions.
797 (completion-pcm-try-completion): Use them.
798
799 * xt-mouse.el (turn-on-xterm-mouse-tracking)
800 (turn-off-xterm-mouse-tracking): Use terminal-list.
801
802 * cus-start.el (underline-minimum-offset): Rename from
803 x-underline-minimum-display-offset.
804
805 2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
806
807 * cus-start.el (x-underline-minimum-display-offset): Give it a type.
808
809 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
810
811 * mouse.el (mouse-select-font): New function.
812
813 * faces.el (face-spec-recalc): When the face is set using
814 Customize, avoid recalculating it twice.
815
816 * menu-bar.el (menu-set-font): New function. Bind "Set Default
817 Font" menu item to it. Apply selected font to all frames, and
818 make it savable.
819 (menu-bar-options-save): Save `default' font if changed.
820
821 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
822
823 * ffap.el (ffap-string-at-point-mode-alist):
824 Use alpha rather than lower.
825
826 * dired.el (dired-insert-directory): Don't assume Unix-style dir names.
827
828 * subr.el (momentary-string-display): Use an overlay.
829
830 * progmodes/compile.el (compilation-mode):
831 Set window-point-insertion-type.
832 (compilation-filter): Don't use insert-before-markers any more.
833 * emacs-lisp/trace.el (trace-make-advice):
834 Set window-point-insertion-type in the trace buffer.
835 * startup.el (normal-top-level): Set window-point-insertion-type in
836 *Messages*.
837 * net/telnet.el (telnet-mode): Set window-point-insertion-type.
838 (telnet-filter): Don't use insert-before-markers any more.
839 * comint.el (comint-mode): Set window-point-insertion-type.
840 (comint-output-filter): Don't use insert-before-markers any more.
841 * button.el (make-text-button): Allow `start' to be a string.
842
843 2008-06-10 Juanma Barranquero <lekktu@gmail.com>
844
845 * emacs-lisp/autoload.el (autoload-rubric):
846 Fix coding cookie not to force Unix EOL.
847
848 2008-06-10 Martin Rudalics <rudalics@gmx.at>
849
850 * window.el (window--splittable-p, window--try-to-split-window):
851 Don't use with-selected-window to avoid messing up get-lru-window.
852 Reported by David Hansen <david.hansen@gmx.net>.
853
854 2008-06-10 Glenn Morris <rgm@gnu.org>
855
856 * subr.el (locate-library): Doc fix.
857
858 * net/newsticker-treeview.el (w3m-toggle-inline-images): Declare.
859 (newsticker-treeview-tool-bar-map, newsticker-treeview-mode):
860 Check tool-bar-map is bound, for non-X builds.
861
862 * net/newsticker-reader.el (newsticker--next-item-image)
863 (newsticker--previous-item-image, newsticker--previous-feed-image)
864 (newsticker--next-feed-image, newsticker--mark-read-image)
865 (ewsticker--mark-immortal-image, newsticker--narrow-image)
866 (newsticker--get-all-image, newsticker--update-image)
867 (newsticker--browse-image): Check xpm images are available.
868 (newsticker--mark-read-image, newsticker--mark-immortal-image)
869 (newsticker--narrow-image, newsticker--get-all-image): Doc fix.
870
871 * net/newsticker-plainview.el (tool-bar-map): Don't declare.
872 (newsticker--plainview-tool-bar-map, newsticker-mode):
873 Check tool-bar-map is bound, for non-X builds.
874 (w3m-toggle-inline-image): Declare.
875
876 * net/newsticker-backend.el (tool-bar-map): Don't declare.
877
878 * emacs-lisp/autoload.el (autoload-rubric): Add coding cookie.
879
880 * finder.el (finder-font-lock-keywords): Handle ``quotes''.
881 (finder-compile-keywords): Move let to where needed.
882 (finder-mouse-face-on-line): Go back one more line if needed.
883 (finder-list-matches): Use cadr.
884 (finder-goto-xref): New function.
885 (finder-commentary): Add buttons to jump to foo.el libraries.
886
887 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
888
889 * apropos.el (apropos-function, apropos-macro, apropos-command)
890 (apropos-variable, apropos-face, apropos-group, apropos-widget)
891 (apropos-plist): Add apropos-short-label property.
892 (apropos-multi-type): New variables.
893 (apropos-command, apropos-value): Set it.
894 (apropos-compact-layout): New custom.
895 (apropos-print, apropos-print-doc): Use it.
896 (apropos-print): Truncate lines.
897
898 2008-06-09 Kenichi Handa <handa@m17n.org>
899
900 * international/fontset.el (font-encoding-alist):
901 Add an entry for "ascii-0".
902
903 2008-06-09 Jihyun Cho <jihyun.jo@gmail.com>
904
905 * language/hanja-util.el (hanja-init-load): Show the message only
906 when loading a table.
907
908 2008-06-08 Ulf Jasper <ulf.jasper@web.de>
909
910 * net/newsticker-treeview.el (newsticker-treeview):
911 * net/newsticker-plainview.el (newsticker-plainview):
912 Add autoload cookie.
913
914 2008-06-08 Ulf Jasper <ulf.jasper@web.de>
915
916 * net/newsticker.el: Split up into newsticker-backend, -ticker,
917 -reader, -plainview, and -treeview.
918 (newsticker-version): Change to 1.99.
919
920 * net/newsticker-backend.el: New. Move backend functionality from
921 newsticker.el to newsticker-backend.el.
922 (newsticker--download-logos): New.
923 (newsticker--sentinel-callback): New.
924 (newsticker--set-customvar): Remove. Split up into specific
925 functions related to retrieval, ticker, buffer, and display.
926 (newsticker--set-customvar-retrieval): New. Extracted from
927 `newsticker--set-customvar'.
928 (newsticker-retrieval): New. Renamed from `newsticker-feed'.
929 (newsticker-url-list-defaults):
930 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
931 (newsticker-url-list): Doc changed. URL can be a function.
932 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
933 (newsticker-retrieval-method): New.
934 (newsticker-wget-name, newsticker-wget-arguments): Change :group.
935 (newsticker-retrieval-interval):
936 Use `newsticker--set-customvar-retrieval' for :set. Change :group.
937 (newsticker-desc-comp-max): Change :group.
938 (newsticker--cache): Doc changed.
939 (newsticker--guid-to-string): New.
940 (newsticker--guid): Use `newsticker--guid-to-string'.
941 (newsticker--real-feed-name): New.
942 (newsticker--start-feed): New. Extracted from `newsticker-start'.
943 (newsticker-start): Use `insert-file-contents' for reading cache.
944 Use `newsticker--start-feed'.
945 (newsticker--stop-feed): New. Extracted from `newsticker-stop'.
946 (newsticker-stop): Check whether `newsticker-stop-ticker' is fbound.
947 Use `newsticker--stop-feed'.
948 (newsticker-save-item): New.
949 (newsticker--get-news-by-funcall): New.
950 (newsticker-get-news): Handle new retrieval methods.
951 (newsticker--sentinel): Use `newsticker--sentinel-work'.
952 (newsticker--sentinel-work): New. Extracted from
953 `newsticker--sentinel'. Use `newsticker--download-logos',
954 `newsticker--sentinel-callback'.
955 (newsticker--parse-atom-0.3): Use `newsticker--guid-to-string'.
956 (newsticker--parse-atom-1.0): Fix link determination.
957 (newsticker--parse-rss-0.91): Fix time determination.
958 (newsticker--parse-rss-0.92): Fix time determination.
959 (newsticker--parse-rss-2.0): Use `newsticker--guid-to-string'.
960 (newsticker--parse-generic-feed): New arg order in
961 `newsticker--cache-add'.
962 (newsticker--parse-generic-items): Fix for multiple items.
963 New arg order in `newsticker--cache-add'.
964 (newsticker--forget-preformatted): Check whether
965 `newsticker--buffer-set-uptodate' is fbound.
966 (newsticker--decode-iso8601-date): Handle fractions of seconds.
967 (newsticker--decode-rfc822-date): Partial timezone handling.
968 (newsticker--cache-contains): Fix guid problem.
969 (newsticker--cache-add): Swap args AGE and TIME. Fix guid problem.
970 (newsticker--cache-save): New.
971 (newsticker--cache-update): Use temp buffer.
972 (newsticker--stat-num-items): Allow multiple AGE args.
973 (newsticker--stat-num-items-total): New.
974 (newsticker--opml-import-outlines): New.
975 (newsticker-opml-import): Use `newsticker--opml-import-outlines'.
976 (newsticker--do-run-auto-mark-filter): Doc changed.
977 (newsticker-retrieve-random-message): New.
978
979 * net/newsticker-ticker.el: New. Move ticker functionality from
980 net/newsticker.el to net/newsticker-ticker.el.
981 (newsticker--ticker-timer): Rename `newsticker--display-timer' to
982 `newsticker--ticker-timer'.
983 (newsticker-ticker-running-p): Rename `newsticker--display-timer'
984 to `newsticker--ticker-timer'.
985 (newsticker--set-customvar-ticker): New. Extracted from
986 `newsticker--set-customvar'.
987 (newsticker-ticker-interval): Rename `newsticker-display-interval'
988 to `newsticker-ticker-interval'. Use `newsticker--set-customvar-ticker
989 for :set. Change :group.
990 (newsticker-scroll-smoothly): Doc changed. Change :group.
991 (newsticker-hide-immortal-items-in-echo-area)
992 (newsticker-hide-old-items-in-echo-area)
993 (newsticker-hide-obsolete-items-in-echo-area):
994 Use `newsticker--set-customvar-ticker for :set. Change :group.
995 (newsticker-start-ticker): Rename `newsticker--display-timer' to
996 `newsticker--ticker-timer'. Rename `newsticker-display-interval'
997 to `newsticker-ticker-interval'.
998 (newsticker-stop-ticker): Rename `newsticker--display-timer' to
999 `newsticker--ticker-timer'.
1000
1001 * net/newsticker-reader.el: New. Move reader functionality from
1002 net/newsticker.el to net/newsticker-reader.el.
1003 (newsticker--set-customvar-formatting): New. Extracted from
1004 `newsticker--set-customvar'.
1005 (newsticker-reader, newsticker-frontend): New.
1006 (newsticker-enable-logo-manipulations): Change :group.
1007 (newsticker-justification): Use `newsticker--set-customvar-formatting'
1008 for :set. Change :group.
1009 (newsticker-use-full-width): Use `newsticker--set-customvar-formatting'
1010 for :set. Change :group.
1011 (newsticker-html-renderer): Doc changed.
1012 Use `newsticker--set-customvar-formatting' for :set. Change :group.
1013 (newsticker-date-format):
1014 Use `newsticker--set-customvar-formatting' for :set. Change :group.
1015 (newsticker--insert-enclosure):
1016 Rename `newsticker--buffer-insert-enclosure' to
1017 `newsticker--insert-enclosure'. Add keymap arg.
1018 (newsticker--print-extra-elements):
1019 Rename `newsticker--buffer-print-extra-elements' to
1020 `newsticker--print-extra-elements'. Add keymap arg.
1021 (newsticker--do-print-extra-element):
1022 Rename `newsticker--buffer-do-print-extra-element' to
1023 `newsticker--do-print-extra-element'. Add keymap arg.
1024 (newsticker-show-news): Use `newsticker-frontend'.
1025
1026 * net/newsticker-plainview.el: New. Move plainview functionality
1027 from net/newsticker.el to net/newsticker-reader.el.
1028 (newsticker-plainview): New.
1029 (newsticker--set-customvar-sorting): New. Extracted from
1030 `newsticker--set-customvar'.
1031 (newsticker-sort-method): Use `newsticker--set-customvar-sorting
1032 for :set. Changed :group.
1033 (newsticker-heading-format, newsticker-item-format)
1034 (newsticker-desc-format, newsticker-statistics-format):
1035 Use `newsticker--set-customvar-formatting for :set. Change :group.
1036 (newsticker-faces): Change :group.
1037 (newsticker-default-face): Enable again.
1038 (newsticker-hide-old-items-in-newsticker-buffer)
1039 (newsticker-show-descriptions-of-new-items):
1040 Use `newsticker--set-customvar-buffer' for :set. Change :group.
1041 (newsticker-show-all-news-elements): Change :group.
1042 (newsticker-plainview-hooks): New.
1043 (newsticker-select-item-hook, newsticker-select-feed-hook)
1044 (newsticker-buffer-change-hook, newsticker-narrow-hook): Change :group.
1045 (newsticker--plainview-tool-bar-map): Rename `newsticker--tool-bar-map'
1046 to `newsticker--plainview-tool-bar-map'.
1047 (newsticker--url-keymap): Add mouse-1 binding.
1048 (newsticker-plainview): New.
1049 (newsticker-mark-all-items-of-feed-as-read): Change doc.
1050 (newsticker--buffer-do-insert-text): Use renamed
1051 newsticker--[buffer-]insert-enclosure and
1052 newsticker--[buffer-]print-extra-elements.
1053 (newsticker--buffer-set-faces): Use newsticker-default-face.
1054
1055 * net/newsticker-treeview.el: New.
1056
1057 2008-06-08 Andreas Schwab <schwab@suse.de>
1058
1059 * vc-dispatcher.el (vc-dir-children-marked-p): Fix child check.
1060
1061 * vc-cvs.el (vc-cvs-dir-status): Pass -f to cvs.
1062
1063 * vc-dispatcher.el (vc-dir-move-to-goal-column): Don't move in an
1064 empty line.
1065
1066 * minibuffer.el (minibuffer-message): Bind inhibit-quit around sit-for.
1067
1068 2008-06-08 Martin Rudalics <rudalics@gmx.at>
1069
1070 * window.el (split-height-threshold, split-width-threshold):
1071 Add choice nil.
1072 (split-window-preferred-function): Allow either nil or a function.
1073 (window--splittable-p, window--try-to-split-window):
1074 Handle changed option values.
1075
1076 (window--frame-usable-p): Handle nil argument.
1077
1078 (display-buffer): Call get-lru-window when pop-up-windows is nil
1079 and window can't be split.
1080
1081 2008-06-08 Michael Albinus <michael.albinus@gmx.de>
1082
1083 * uniquify.el (uniquify-get-proposed-name): Handle remote files.
1084
1085 * net/tramp.el (top): Quote feature names. Remove
1086 `tramp-rfn-eshadow-setup-minibuffer' from
1087 `rfn-eshadow-setup-minibuffer-hook' when unloading.
1088 (tramp-read-passwd): There is only one call to
1089 `auth-source-user-or-password' needed. Pacify byte compiler.
1090
1091 2008-06-08 Andreas Schwab <schwab@suse.de>
1092
1093 * window.el (display-buffer): Use lru window if current window
1094 cannot be split.
1095
1096 2008-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1097
1098 * apropos.el (apropos-library): New command and new button.
1099 (apropos-library-button): New function.
1100
1101 * apropos.el: Remove spurious * in docstrings.
1102 (apropos-label-face): Use variable pitch.
1103 (apropos-print): Use dolist and with-current-buffer.
1104 (apropos-print-doc): Use when.
1105
1106 * window.el (special-display-p, display-buffer):
1107 Fix up C->Elisp transcription error.
1108
1109 2008-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1110
1111 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
1112 (byte-compile-file): Initialize it.
1113 (byte-compile-nogroup-warn): Keep track of the current group.
1114
1115 2008-06-08 Glenn Morris <rgm@gnu.org>
1116
1117 * Makefile.in (compile, compile-always, bootstrap-prepare):
1118 Explictly pass EMACS to sub-makes that use it, for non-GNU makes.
1119
1120 2008-06-07 Jihyun Cho <jihyun.jo@gmail.com>
1121
1122 * language/hanja-util.el (hanja-init-load): Use a char-table for
1123 hanja-table.
1124 (hangul-to-hanja-char): Adjust for the above change.
1125
1126 2008-06-07 Glenn Morris <rgm@gnu.org>
1127
1128 * finder.el (finder-compile-keywords): Use lm-keywords-list rather than
1129 lm-keywords.
1130
1131 * mail/sendmail.el (mail-interactive): Add :version.
1132
1133 * term/linux.el (terminal-init-linux): Use gpm-mouse-mode rather than
1134 obsolete alias.
1135
1136 * ediff-merg.el, strokes.el, wid-edit.el, emacs-lisp/lisp-mnt.el:
1137 * emulation/edt-mapper.el, eshell/em-dirs.el, eshell/em-glob.el:
1138 * eshell/em-ls.el, eshell/em-unix.el, eshell/esh-cmd.el:
1139 * eshell/esh-io.el, eshell/esh-opt.el, eshell/esh-test.el:
1140 * eshell/esh-util.el, international/mule-cmds.el:
1141 * international/mule-diag.el, mail/smtpmail.el, net/netrc.el:
1142 * net/tls.el, progmodes/etags.el, textmodes/page-ext.el:
1143 Remove unnecessary eval-when-compiles and eval-and-compiles.
1144
1145 * Makefile.in (bootstrap-clean): Run autogen-clean.
1146 (maintainer-clean): No need to run autogen-clean now it is included in
1147 bootstrap-clean.
1148
1149 2008-06-06 Miles Bader <miles@gnu.org>
1150
1151 * Makefile.in (ELCFILES): Add gnus/nndir.elc.
1152
1153 2008-06-06 Chong Yidong <cyd@stupidchicken.com>
1154
1155 * menu-bar.el (menu-bar-options-menu): Add Menu entry for
1156 longlines mode.
1157
1158 * replace.el (replace-search-function)
1159 (replace-re-search-function): New vars.
1160 (perform-replace): Use them.
1161
1162 * longlines.el (longlines-re-search-forward): New function.
1163 (longlines-mode): Bind replace-search-function and
1164 replace-re-search-function, to ensure that replacement commands
1165 treat newlines as spaces.
1166 (longlines-show-effect): Default to a pilcrow sign.
1167
1168 2008-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1169
1170 * help.el (function-called-at-point):
1171 * help-fns.el (variable-at-point): Use emacs-lisp-mode-syntax-table
1172 even when calling find-tag-default.
1173
1174 2008-06-06 Daniel Colascione <danc@merrillpress.com>
1175
1176 * nxml/nxml-mode.el (nxml-syntax-highlight-flag)
1177 (nxml-fontify-chunk-size, nxml-clear-face, nxml-set-fontified)
1178 (nxml-clear-fontified, nxml-fontify, nxml-fontify1)
1179 (nxml-fontify-buffer, nxml-do-fontify):
1180 Remove obsolete variables and functions.
1181 (nxml-font-lock-keywords, nxml-set-face, nxml-mode)
1182 (nxml-degrade, nxml-after-change, nxml-after-change1)
1183 (nxml-extend-region, nxml-extend-after-change-region)
1184 (nxml-extend-after-change-region1, nxml-fontify-matcher)
1185 (nxml-toggle-char-ref-extra-display): Use font-lock, and
1186 font-lock-extend-region-functions in particular, to fontify
1187 nxml-mode buffers.
1188 (nxml-debug-region): New debugging helper function.
1189
1190 * nxml/nxml-rap.el (nxml-clear-inside, nxml-set-inside)
1191 (nxml-scan-after-change, nxml-move-tag-backwards):
1192 Adapt for font-lock changes.
1193
1194 * nxml/nxml-util.el (nxml-debug, nxml-debug-change)
1195 (nxml-debug-set-inside, nxml-debug-clear-inside):
1196 New debugging functions.
1197 (nxml-with-degradation-on-error): New helper macro.
1198
1199 2008-06-06 Martin Rudalics <rudalics@gmx.at>
1200
1201 * window.el (display-buffer): Remove dead call to get-lru-window.
1202
1203 2008-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1204
1205 * mail/sendmail.el (mail-interactive): Change default.
1206
1207 2008-06-05 John Paul Wallington <jpw@pobox.com>
1208
1209 * bindings.el (completion-ignored-extensions):
1210 Add .p64fsl, .d64fsl, and .dx64fsl.
1211
1212 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1213
1214 * ffap.el (ffap-prompter): Don't use the region.
1215
1216 2008-06-05 Sam Steingold <sds@gnu.org>
1217
1218 * vc-cvs.el (vc-cvs-registered): Consider a directory with a CVS
1219 subdirectory to be registered.
1220
1221 2008-06-05 Martin Rudalics <rudalics@gmx.at>
1222
1223 * window.el (display-buffer-function, special-display-p)
1224 (special-display-buffer-names, special-display-regexps)
1225 (special-display-function, same-window-p, same-window-buffer-names)
1226 (same-window-regexps, pop-up-frames, display-buffer-reuse-frames)
1227 (pop-up-frame-function, pop-up-windows, even-window-heights)
1228 (split-window-preferred-function, split-height-threshold)
1229 (window--display-buffer-1, display-buffer, pop-to-buffer):
1230 Move from window.c and buffer.c.
1231 (window--splittable-p, window--try-to-split-window)
1232 (window--frame-usable-p, window--display-buffer-2)
1233 (window--even-window-heights): New functions.
1234 (split-width-threshold): New option.
1235 (split-window-preferred-horizontally): Remove.
1236
1237 * cus-start.el: Remove corresponding declarations.
1238
1239 2008-06-05 Sam Steingold <sds@gnu.org>
1240
1241 * vc.el (vc-update): Use `save-some-buffers' instead of signaling
1242 an error on modified buffers.
1243
1244 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1245
1246 * progmodes/etags.el (tags-verify-table): Be careful to use and update
1247 tags-file-name and tags-table-list from the right buffer.
1248 (tags-table-check-computed-list, tags-table-extend-computed-list)
1249 (find-tag-noselect): Use with-current-buffer.
1250
1251 * emacs-lisp/trace.el (trace-entry-message, trace-exit-message):
1252 Use print-circle.
1253
1254 * minibuffer.el (minibuffer-local-must-match-filename-map):
1255 Declare obsolete alias for the old name.
1256
1257 * abbrev.el (unexpand-abbrev): Better preserve markers.
1258
1259 2008-06-05 Glenn Morris <rgm@gnu.org>
1260
1261 * emacs-lisp/autoload.el (autoload-rubric): New function,
1262 extracted from autoload-ensure-default-file.
1263 (autoload-ensure-default-file): Use autoload-rubric.
1264
1265 * cus-dep.el (generated-custom-dependencies-file): Doc fix.
1266 (custom-dependencies-no-scan-regexp): New variable.
1267 (custom-make-dependencies): Use with-temp-buffer and autoload-rubric.
1268 Don't scan files matching custom-dependencies-no-scan-regexp.
1269 Disable undo in the output buffer. Remove kept-new-versions wackiness.
1270
1271 * finder.el (finder-headmark): Initialize and add doc string.
1272 (generated-finder-keywords-file): Doc fix.
1273 (finder-no-scan-regexp): New variable.
1274 (finder-compile-keywords): Use a single let binding.
1275 Disable undo in the output buffer. Use autoload-rubric.
1276 Use mapc rather than mapcar. Don't scan files matching
1277 finder-no-scan-regexp. Use with-temp-buffer. Use expand-file-name
1278 rather than concat. Use directory-files to do regexp matching.
1279 No need to require jka-compr.
1280 (finder-list-keywords): Remove un-needed set-buffer. Disable undo.
1281 (finder-list-matches): Disable undo.
1282 (finder-commentary): Use let rather than let*. Disable undo.
1283 (finder-current-item): Use zerop.
1284 (finder-mode): Use define-derived-mode.
1285 (finder-exit): Doc fix. Use dolist.
1286
1287 * Makefile.in ($(lisp)/cus-load.el): Remove unnecessary rule.
1288 (custom-deps): Don't require $(lisp)/cus-load.el.
1289 (custom-deps, finder-data): Don't depend on autoloads.
1290 Should not be needed now, and doing so was causing make install to
1291 re-dump emacs post-bootstrap.
1292 (bootstrap-after): Don't run update-elclist, since modifying Makefile.in
1293 mid-build forces some things to be rebuilt.
1294
1295 2008-06-05 Miles Bader <miles@gnu.org>
1296
1297 * face-remap.el
1298 (face-remap-add-relative): Renamed from `add-relative-face-remapping'.
1299 (face-remap-remove-relative): Renamed from
1300 `remove-relative-face-remapping'.
1301 (face-remap-reset-base): Renamed from
1302 `set-default-base-face-remapping'.
1303 (face-remap-set-base): Renamed from `set-base-face-remapping'.
1304 (text-scale-increase): Renamed from `increase-buffer-face-height'.
1305 (text-scale-decrease): Renamed from `decrease-buffer-face-height'.
1306 (text-scale-adjust): Renamed from `adjust-buffer-face-height'.
1307
1308 * face-remap.el (variable-pitch-mode): Autoload.
1309
1310 2008-06-04 Sam Steingold <sds@gnu.org>
1311
1312 * vc-hg.el (vc-hg-status-extra-header, vc-hg-status-extra-headers):
1313 Generate extra status headers for a Mercurial tree.
1314
1315 2008-06-04 John Paul Wallington <jpw@pobox.com>
1316
1317 * echistory.el (electric-history-map): Define within defvar.
1318 Add docstring.
1319
1320 * font-lock.el (font-lock-turn-off-thing-lock)
1321 (font-lock-after-fontify-buffer, font-lock-after-unfontify-buffer):
1322 Use `bound-and-true-p'.
1323 (cpp-font-lock-keywords-source-directives, cpp-font-lock-keywords):
1324 Doc fixes.
1325
1326 * international/ccl.el (define-ccl-program): Add `doc-string'
1327 declaration.
1328
1329 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
1330
1331 * face-remap.el (variable-pitch-mode): Reflow docstrings.
1332 (text-scale-mode, adjust-buffer-face-height): Fix typos in docstrings.
1333
1334 2008-06-04 Trent W. Buck <trentbuck@gmail.com> (tiny change)
1335
1336 * emacs-lisp/rx.el (rx): Doc fix.
1337
1338 2008-06-04 Markus Triska <markus.triska@gmx.at>
1339
1340 * image-mode.el (image-mode-map): Add doc-view-inspired bindings.
1341
1342 2008-06-04 Miles Bader <miles@gnu.org>
1343
1344 * face-remap.el (adjust-buffer-face-height): New function.
1345 Add autoloaded keybindings in ctl-x-map.
1346 (increase-buffer-face-height, decrease-buffer-face-height):
1347 Simplify interactive spec to just "p". Remove autoloaded keybindings.
1348
1349 2008-06-03 Chong Yidong <cyd@stupidchicken.com>
1350
1351 * simple.el (line-move-1): If we did not move as far as desired,
1352 ensure that point-left and point-entered hooks are called.
1353
1354 2008-06-03 Sam Steingold <sds@gnu.org>
1355
1356 * vc-cvs.el (vc-cvs-status-extra-headers): Remove extraneous newlines.
1357
1358 2008-06-03 John Paul Wallington <jpw@pobox.com>
1359
1360 * progmodes/make-mode.el (makefile-cleanup-continuations)
1361 (makefile-warn-suspicious-lines, makefile-warn-continuations):
1362 Use `derived-mode-p'.
1363
1364 2008-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
1365
1366 * Makefile.in (update-elclist): Impose a fixed collation for sorting.
1367 (ELCFILES): Update.
1368
1369 2008-06-03 Miles Bader <miles@gnu.org>
1370
1371 * face-remap.el: New file.
1372 * Makefile.in (ELCFILES): Add face-remap.elc.
1373
1374 2008-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
1375
1376 * progmodes/flymake.el (flymake-process-filter): Make sure the source
1377 buffer isn't dead.
1378
1379 * obsolete/bg-mouse.el, obsolete/float.el, obsolete/hilit19.el,
1380 * obsolete/lselect.el, obsolete/mlsupport.el, obsolete/ooutline.el,
1381 * obsolete/profile.el, obsolete/rsz-mini.el, obsolete/uncompress.el,
1382 * obsolete/auto-show.el, obsolete/hscroll.el:
1383 Remove packages that were obsolete in Emacs-20, or that were obsolete
1384 in Emacs-21 and do not contain any more code.
1385
1386 * vc-dispatcher.el (vc-dir-menu-map-filter): Don't fail if
1387 vc-client-mode is not set.
1388
1389 * image-mode.el (image-mode-map): Suppress key map and bind `q'.
1390 * doc-view.el (doc-view-mode-map): Inherit from image-mode-map.
1391
1392 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): Try to be
1393 yet a bit more clever at distinguishing / from /.
1394
1395 2008-06-03 Kenichi Handa <handa@m17n.org>
1396
1397 * Makefile.in (ELCFILES): Add $(lisp)/language/hanja-util.elc.
1398
1399 2008-06-03 Jihyun Cho <jihyun.jo@gmail.com>
1400
1401 * language/hanja-util.el: New file.
1402
1403 2008-06-03 Glenn Morris <rgm@gnu.org>
1404
1405 * progmodes/f90.el (f90-typedef-matcher, f90-looking-at-type-like):
1406 Check that end-of-word follows "type".
1407
1408 2008-06-02 Daiki Ueno <ueno@unixuser.org>
1409
1410 * epa-file.el (epa-file-write-region): Write the entire buffer
1411 content if START is nil.
1412
1413 2008-06-01 Thomas Morgan <tlm@thomasmorgan.net> (tiny change)
1414
1415 * select.el (x-get-selection): Fix typo.
1416
1417 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
1418
1419 * descr-text.el (describe-text-sexp): Use `string-match-p'. Simplify.
1420 (describe-char): Use `looking-at-p', `string-match-p' when possible.
1421
1422 2008-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1423
1424 * tar-mode.el (tar-header-block-summarize): Ensure one space around
1425 user&group.
1426
1427 2008-05-31 John Paul Wallington <jpw@pobox.com>
1428
1429 * help-fns.el (describe-variable-custom-version-info):
1430 Handle dotted `package-version' info.
1431
1432 2008-05-31 Juanma Barranquero <lekktu@gmail.com>
1433
1434 * icomplete.el (icomplete-get-keys): Doc fix. Use `when'.
1435
1436 2008-05-31 Dan Nicolaescu <dann@ics.uci.edu>
1437
1438 * vc-cvs.el (vc-cvs-after-dir-status): Support spaces in file
1439 names and improve support for unregistered files.
1440
1441 2008-05-31 Glenn Morris <rgm@gnu.org>
1442
1443 * Makefile.in (compile-last): Replace tr in `els' assignment with sed.
1444 Remove shell variable `elc'. Split tests to hopefully be more portable.
1445 Fix `sel' assignment.
1446
1447 2008-05-30 Juanma Barranquero <lekktu@gmail.com>
1448
1449 * minibuffer.el (completion-table-dynamic): Doc fix.
1450
1451 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1452
1453 * vc-cvs.el (vc-cvs-state-heuristic, vc-cvs-parse-status):
1454 Try and return `unregistered' when applicable.
1455
1456 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
1457 Don't encourage naming variables with "-flag".
1458
1459 2008-05-30 Glenn Morris <rgm@gnu.org>
1460
1461 * Makefile.in (update-elclist): Hide the warning when it does not apply,
1462 make it milder when it does.
1463 (autogen-clean): New target.
1464 (maintainer-clean): Use autogen-clean.
1465
1466 * calendar/diary-lib.el (diary-display-function): New name for
1467 diary-display-hook. Keep old name as obsolete alias. Doc fix.
1468 Change custom type and version.
1469 (diary-list-entries-hook, diary-list-entries, diary-simple-display)
1470 (diary-fancy-display): Doc fixes.
1471 (diary-list-entries, diary-include-other-diary-files)
1472 (diary-mail-entries):
1473 Use diary-display-function rather than diary-display-hook.
1474
1475 * calendar/appt.el (appt-check): Use diary-display-function rather than
1476 diary-display-hook.
1477 * calendar/cal-x.el (calendar-dedicate-diary): Update for
1478 diary-display-function replacing diary-display-hook.
1479 * org/org-agenda.el (org-get-entries-from-diary): Also set
1480 diary-display-function.
1481
1482 * calendar/cal-html.el (cal-html-list-diary-entries):
1483 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
1484 * calendar/cal-tex.el (cal-tex-list-diary-entries): Use LIST-ONLY
1485 argument of diary-list-entries rather than setting diary-display-hook.
1486
1487 2008-05-30 Kenichi Handa <handa@m17n.org>
1488
1489 * international/mule-conf.el (utf-8-with-signature): Renamed from
1490 utf-8-sig.
1491 (utf-8-auto): Adjusted for the above change.
1492
1493 * international/mule-diag.el (describe-font): Don't check fontset
1494 here, and just call font-info. Get the default font by from the
1495 default face.
1496
1497 2008-05-29 Kenichi Handa <handa@m17n.org>
1498
1499 * international/mule-conf.el (utf-8-sig, utf-8-auto):
1500 New coding systems.
1501
1502 * international/mule.el (define-coding-system): Accept :bom for utf-8.
1503
1504 2008-05-29 Espen Wiborg <espen.wiborg@telio.no> (tiny change)
1505
1506 * international/utf-7.el (utf-7-encode): Use the right escape char
1507 depending on imap/nonimap encoding.
1508
1509 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1510
1511 * minibuffer.el (completion-pcm-all-completions): Add the base-size.
1512
1513 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
1514
1515 * icomplete.el (icomplete-prospects-height): Add :group.
1516
1517 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1518
1519 * icomplete.el (icomplete-prospects-length): Make obsolete.
1520 (icomplete-prospects-height): New var.
1521 (icomplete-completions): Use it.
1522
1523 2008-05-29 David Kastrup <dak@gnu.org>
1524
1525 * autoinsert.el (auto-insert): Add :link.
1526
1527 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1528
1529 * tar-mode.el (tar-header): New field `header-start'.
1530 (tar-header-block-tokenize): Set it when useful.
1531 Drop "GNUtar " magic value, which even GNU Tar doesn't know about.
1532 (tar-header-data-end): New function.
1533 (tar-summarize-buffer): Use it.
1534 (tar-next-line): Fix goal column for long usernames.
1535 (tar-expunge-internal): Use header-start.
1536 (tar-rename-entry): Handle ustar-style long names.
1537 (tar-alter-one-field): Add optional `descriptor' argument.
1538 (tar-subfile-save-buffer): Use it.
1539
1540 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1541
1542 * tar-mode.el (tar-header): New field `header-start'.
1543 (tar-header-block-tokenize): Set header-start for longlink entries.
1544 (tar-expunge-internal): Use header-start to expunge longlink entries.
1545
1546 * files.el (hack-local-variables): Don't signal an error if the local
1547 variable section is not properly terminated.
1548
1549 * emacs-lisp/easymenu.el (easy-menu-convert-item)
1550 (easy-menu-convert-item-1): Move the duplicate-generation outside of
1551 the caching so it also works for identical entries.
1552
1553 * tar-mode.el (tar-summarize-buffer): Fix reporter initialization.
1554 (tar-mode): Use write-region-annotate-functions rather than
1555 write-contents-functions.
1556 (tar-extract): Remove unused var `pos'.
1557 (tar-subfile-save-buffer): Remove unused var `following-descs'.
1558 (tar-mode-write-file): Remove.
1559 (tar-write-region-annotate): New function.
1560
1561 * progmodes/flymake.el (flymake-save-buffer-in-file):
1562 * shadowfile.el (shadow-copy-file):
1563 * arc-mode.el (archive-*-write-file-member):
1564 * files.el (diff-buffer-with-file):
1565 * subr.el (with-temp-file): Pass nil to write-region.
1566 * jka-compr.el (jka-compr-write-region): Preserve `start's nullness.
1567
1568 * doc-view.el (doc-view-mode-map): Bind `q' to quit-window, as is
1569 the custom.
1570
1571 * files.el (basic-save-buffer-2): Pass nil rather than (point-min)
1572 to write-region.
1573
1574 2008-05-28 Glenn Morris <rgm@gnu.org>
1575
1576 * Makefile.in (update-elclist): Work around non-portability of "\"
1577 in various implementations of echo.
1578
1579 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1580
1581 * international/mule-diag.el (describe-current-coding-system):
1582 Don't assume selection-coding-system is always defined.
1583
1584 * tar-mode.el: Use defstruct and markers.
1585 (tar-setf): Remove.
1586 (tar-header): Use defstruct. Add `data-start' field.
1587 (make-tar-desc, tar-desc-tokens): Remove, folded into tar-header.
1588 (tar-desc-data-start): Remove (now called tar-header-data-start).
1589 (tar-roundup-512): New fun.
1590 (tar-header-block-tokenize): Receive a buffer position rather than
1591 a string. Handle @longLink here, be more careful about it.
1592 Create a marker for data-start.
1593 (tar-summarize-buffer): Don't handle @LongLink here any more.
1594 (tar-expunge-internal, tar-subfile-save-buffer): Don't update
1595 data-start on the following entries any more.
1596 (tar-chown-entry, tar-chgrp-entry): Use read-number.
1597
1598 * tar-mode.el: Use buffer-swap-text to separate summary and raw data.
1599 (tar-header-offset): Remove.
1600 (tar-parse-info, tar-header-offset, tar-file-name-coding-system):
1601 Not permanent any more.
1602 (tar-data-buffer): New var.
1603 (tar-data-swapped-p, tar-change-major-mode-hook)
1604 (tar-mode-kill-buffer-hook): New funs.
1605 (tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
1606 (tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
1607 (tar-clear-modification-flags, tar-alter-one-field)
1608 (tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
1609 Change accordingly.
1610
1611 2008-05-27 Dan Nicolaescu <dann@ics.uci.edu>
1612
1613 * vc-dispatcher.el (vc-directory-resynch-file): Rename to ...
1614 (vc-dir-resynch-file): ... this. Update callers.
1615 Use vc-string-prefix-p. Ignore directory args.
1616 (vc-string-prefix-p): CSE.
1617 (vc-resynch-buffer): Restore conditional.
1618
1619 * vc-hooks.el (vc-after-save): Improve test.
1620 (vc-mode-line): Fix indentation.
1621
1622 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
1623
1624 * calendar/parse-time.el (parse-time-months)
1625 (parse-time-weekdays): Add long-form month and day names.
1626
1627 2008-05-27 Glenn Morris <rgm@gnu.org>
1628
1629 * Makefile.in (update-elclist): Make errors in final sed non-fatal.
1630
1631 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1632
1633 * vc-dispatcher.el (vc-string-prefix-p): New function.
1634 (vc-dir-parent-marked-p): Use it.
1635
1636 2008-05-27 Dan Nicolaescu <dann@ics.uci.edu>
1637
1638 * vc.el (Problems): Remove fixed issues.
1639 (vc-expand-dirs): Avoid returning directories.
1640 (vc-dir): Fix C-x v v binding.
1641 (vc-make-backend-object): Fix name.
1642 (vc-dir-show-fileentry): Fix docstring.
1643 (vc-dir-refresh): Use vc-dir-backend. Fix docstring.
1644 (vc-dir-refresh-files): Use vc-dir-backend. Fix docstring.
1645 Reset the state for directories.
1646 (vc-dir-headers): Align labels.
1647 (vc-default-status-printer): Do no call prettify-state-info.
1648 (vc-deduce-fileset): Replace implementation with one based on a
1649 working older version.
1650 (vc-next-action): Use the new form of vc-deduce-fileset.
1651 Fix dealing with unregistered files.
1652
1653 * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating.
1654 (vc-dir-menu-map): Fix menu title for the menu bar and the popup menu.
1655 (vc-dir-child-files): New function.
1656 (vc-dir-node-directory): New function.
1657 (vc-dir-update, vc-dir-parent-marked-p)
1658 (vc-dir-children-marked-p, vc-dir-mark-all-files)
1659 (vc-dir-marked-only-files, vc-dispatcher-selection-set): Use it.
1660
1661 * vc-cvs.el (vc-cvs-status-extra-headers): Align labels.
1662
1663 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1664
1665 * diff-mode.el (diff-context-mid-hunk-header-re): New const.
1666 (diff-font-lock-keywords, diff-context->unified)
1667 (diff-reverse-direction, diff-fixup-modifs, diff-sanity-check-hunk)
1668 (diff-hunk-text, diff-find-source-location): Use it.
1669 (diff-post-command-hook): Let the user edit the hunk headers.
1670
1671 2008-05-26 Andreas Schwab <schwab@suse.de>
1672
1673 * vc.el (vc-default-prettify-state-info): Fix formatting of an
1674 unknown state.
1675
1676 * tar-mode.el (tar-summarize-buffer): Comment fix.
1677
1678 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1679
1680 * tar-mode.el (tar-summarize-buffer): Handle GNU Tar @LongLink format.
1681
1682 2008-05-26 Glenn Morris <rgm@gnu.org>
1683
1684 * calendar/cal-hebrew.el (diary-ordinal-suffix): Declare for compiler.
1685
1686 2008-05-25 John Paul Wallington <jpw@pobox.com>
1687
1688 * proced.el (proced-next-line, proced-previous-line):
1689 Avoid calling `next-line' and `previous-line' from Lisp code.
1690
1691 2008-05-25 Ed Reingold <reingold@emr.cs.iit.edu>
1692
1693 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
1694 Use diary-ordinal-suffix.
1695
1696 2008-05-24 Juanma Barranquero <lekktu@gmail.com>
1697
1698 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-defs)
1699 (edebug-all-forms, edebug-eval-macro-args, edebug-save-windows)
1700 (edebug-save-displayed-buffer-points, edebug-initial-mode)
1701 (edebug-trace, edebug-test-coverage, edebug-continue-kbd-macro)
1702 (edebug-print-length, edebug-print-level, edebug-print-circle)
1703 (edebug-unwrap-results, edebug-on-error, edebug-on-quit)
1704 (edebug-global-break-condition, edebug-sit-for-seconds):
1705 Remove spurious * from defcustom docstrings.
1706 (edebug-unwrap*, edebug-signal, edebug-eval-display):
1707 Improve argument/docstring consistency.
1708 (edebug-test-coverage, edebug-gensym, edebug-read)
1709 (edebug-top-level-nonstop, edebug-eval-result-list)
1710 (edebug-eval-redisplay, edebug-trace): Fix typos in docstring.
1711 (edebug-eval-defun, edebug-eval-top-level-form, edebug)
1712 (edebug-display-freq-count): Reflow docstrings.
1713 (edebug-restore-status): Doc fix.
1714
1715 2008-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1716
1717 * proced.el (proced-header-line): Use the :align-to 0 feature
1718 rather than computing the corresponding position manually.
1719 (proced-update): Don't hardcode point-min==1.
1720
1721 2008-05-24 Alan Mackenzie <acm@muc.de>
1722
1723 * progmodes/cc-mode.el (c-postprocess-file-styles): Throw an error
1724 if c-file-style is set to a non-string.
1725
1726 (c-neutralize-CPP-line): Surround by `save-excursion'.
1727 (c-neutralize-syntax-in-CPP): Optimize for speed.
1728
1729 2008-05-24 Glenn Morris <rgm@gnu.org>
1730
1731 * Makefile.in (update-elclist): New target, to update ELCFILES.
1732 (bootstrap-after): Run update-elclist.
1733
1734 2008-05-24 Ulf Jasper <ulf.jasper@web.de>
1735
1736 * icalendar.el (icalendar-version): Increase to "0.19".
1737 (icalendar--date-style): New function.
1738 (icalendar--datetime-to-diary-date): Doc fix.
1739 Use icalendar--date-style.
1740 (icalendar--datestring-to-isodate): Doc fix. Handle iso date style.
1741 (icalendar--convert-yearly-to-ical)
1742 (icalendar--convert-recurring-to-diary): Handle iso date style,
1743 use icalendar-date-style.
1744
1745 2008-05-23 Dan Nicolaescu <dann@ics.uci.edu>
1746
1747 * vc.el (vc-delete-file): Make sure the buffer is deleted and
1748 vc-dir buffers are updated.
1749
1750 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * vc.el (vc-delete-file): Don't try to resynch the buffer.
1753
1754 2008-05-23 Paul Rivier <paul.r.ml@gmail.com>
1755
1756 * textmodes/reftex-vars.el (reftex-extra-bindings-prefix): New var.
1757 * textmodes/reftex.el (reftex-extra-bindings-map): New var.
1758 (reftex-extra-bindings): Use it.
1759
1760 * progmodes/mixal-mode.el (mixal-mode-map): Move key-bindings
1761 away from the user-reserved keys.
1762
1763 * progmodes/ada-mode.el (ada-mode-extra-map, ada-mode-extra-prefix):
1764 New vars.
1765 (ada-create-keymap): Use them.
1766
1767 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1768
1769 * emacs-lisp/regexp-opt.el (regexp-opt): Always return
1770 a properly-grouped regexp.
1771
1772 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
1773
1774 * progmodes/cap-words.el (capitalized-words-mode):
1775 Fix typos in docstring.
1776
1777 2008-05-23 Kenichi Handa <handa@m17n.org>
1778
1779 * international/mule-conf.el: Don't define the charset `emacs'
1780 here, just put :docstring, :short-name, and :long-name.
1781
1782 2008-05-22 Kenichi Handa <handa@m17n.org>
1783
1784 * international/mule-diag.el (font-show-log): Limit each listing
1785 to 20 items.
1786
1787 2008-05-23 Nick Roberts <nickrob@snap.net.nz>
1788
1789 * progmodes/gdb-ui.el (gdb-enable-debug): New function.
1790 (gdb-annotation-rules): New entry for "thread-changed".
1791 (gdb-thread-changed): New function.
1792
1793 2008-05-23 Glenn Morris <rgm@gnu.org>
1794
1795 * Makefile.in (SOURCES): Remove, unused.
1796 (lisptagsfiles1, lisptagsfiles2): Use '*' rather than '[a-zA-Z]*'.
1797 (TAGS, TAGS-LISP): Use a single rule with multiple targets.
1798 Exclude more '*loaddefs' files.
1799 (compile-always): Simplify '.elc' deletion.
1800
1801 2008-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1802
1803 * vc-bzr.el (vc-bzr-annotate-time): Reduce memory allocation.
1804 (vc-bzr-revision-completion-table): Handle `boundaries' argument.
1805
1806 * minibuffer.el (completion-boundaries): Change calling
1807 convention, so `string' has the same semantics as in
1808 try-completion and all-completions.
1809 (completion-table-with-context, completion--embedded-envvar-table)
1810 (completion--file-name-table)
1811 (completion-pcm--find-all-completions): Adjust code accordingly.
1812
1813 2008-05-22 Chong Yidong <cyd@stupidchicken.com>
1814
1815 * image-mode.el (image-mode-winprops): Add argument CLEANUP to
1816 prune image-mode-winprops-alist, preventing it from growing
1817 indefinitely.
1818 (image-mode-reapply-winprops): Use it.
1819
1820 2008-05-22 Teodor Zlatanov <tzz@lifelogs.com>
1821
1822 * net/netrc.el (netrc-machine): Always match if the port is not given.
1823
1824 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
1825
1826 * minibuffer.el (completion-pcm--find-all-completions):
1827 Don't add pseudo-completions.
1828
1829 * icomplete.el (icomplete-eoinput): Remove.
1830 (icomplete-overlay): New var to replace it.
1831 (icomplete-tidy): Rewrite.
1832 (icomplete-exhibit): Use an overlay.
1833 (icomplete-completions): Use completion-all-sorted-completions.
1834 Obey completion-ignore-case.
1835
1836 * files.el (locate-dominating-file): Accept non-existing argument.
1837 (project-find-settings-file): Rewrite, using locate-dominating-file.
1838
1839 2008-05-22 Kenichi Handa <handa@m17n.org>
1840
1841 * faces.el (font-weight-table, font-slant-table, font-width-table):
1842 Delete them. Don't call internal-set-font-style-table.
1843
1844 * international/mule-diag.el (font-show-log): New function.
1845
1846 * international/fontset.el (script-representative-chars): Add more
1847 chars for latin. Add data for symbol.
1848 (setup-default-fontset): Add entries for phonetic, armenian, and symbol.
1849
1850 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1851
1852 * minibuffer.el (completion-all-sorted-completions): New var.
1853 (completion--flush-all-sorted-completions)
1854 (completion-all-sorted-completions): New functions.
1855 (minibuffer-force-complete): New command.
1856
1857 2008-05-21 Glenn Morris <rgm@gnu.org>
1858
1859 * files.el (c-postprocess-file-styles): Declare for compiler.
1860
1861 * Makefile.in: Allow for parallel byte-compiling.
1862 (ELCFILES): New variable.
1863 (.el.elc): Remove prerequisites from suffix rule. Print a message.
1864 (compile-first, compile-main, compile-last): New targets.
1865 (compile-always): Simplify - delete .elc files, then `make compile'.
1866
1867 * Makefile.in (compile-calc): Use glob rather than find.
1868 ($(lisp)/progmodes/cc-mode.elc): Use $@.
1869
1870 * eshell/esh-module.el: No need for cl when compiling.
1871
1872 * eshell/eshell.el (eshell-defgroup): New alias.
1873 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1874 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1875 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1876 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1877 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1878 * eshell/em-xtra.el: Use eshell-defgroup rather than defgroup.
1879 Autoload the custom group. Set generated-autoload-file.
1880 * eshell/em-basic.el, eshell/esh-module.el: Require eshell,
1881 for eshell-defgroup.
1882 * eshell/esh-module.el (eshell-load-defgroups): Remove.
1883 Require esh-groups rather than loading it.
1884
1885 2008-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1886
1887 * proced.el (proced-header-line): New variable and new function.
1888 (proced-mode): Set header-line-format.
1889 (proced-update): Set proced-header-line.
1890 (proced-send-signal): Use proced-header-line.
1891
1892 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1893
1894 * macros.el (insert-kbd-macro): Use prin1-char.
1895
1896 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
1897
1898 * minibuffer.el (completion-boundaries): New function.
1899 (completion--some): Delay errors.
1900 (complete-with-action, completion-table-with-context):
1901 Handle `boundaries' case.
1902 (completion--try-word-completion): Avoid partial-completion
1903 when the user hasn't entered anything yet.
1904 (minibuffer-local-map, minibuffer-local-filename-completion-map)
1905 (minibuffer-local-must-match-map, minibuffer-local-completion-map)
1906 (minibuffer-local-must-match-filename-map, minibuffer-local-ns-map):
1907 Setup default keybindings.
1908 (completion--embedded-envvar-re): New var.
1909 (completion--embedded-envvar-table): Use it. Handle `boundaries' case.
1910 (completion--file-name-table): Handle `boundaries' case.
1911 (completion-pcm--pattern->regex): Avoid pathological backtracking.
1912 (completion-pcm--all-completions): Add a `prefix' arg.
1913 (completion-pcm--find-all-completions): New function.
1914 (completion-pcm-all-completions, completion-pcm-try-completion):
1915 Use it.
1916
1917 * icomplete.el (icomplete-completions): Don't use `predicate' with
1918 a table of a different type than `candidates'.
1919
1920 2008-05-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1921
1922 * proced.el (proced-goal-column): Rename from proced-procname-column.
1923 (proced-goal-header-re): Rename from proced-procname-column-regexp.
1924 (proced-move-to-goal-column): Rename from proced-move-to-procname.
1925 (proced-header-face, proced-header-regexp): Remove.
1926 (proced-font-lock-keywords): Remove proced-header-face.
1927 (proced-header-alist, proced-sorting-schemes-re): New variables.
1928 (proced): Rename Proced buffer to *Proced*.
1929 (proced-next-line, proced-previous-line): New commands.
1930 (proced-do-mark, proced-do-mark-all, proced-toggle-marks)
1931 (proced-hide-processes): Do not treat first line as special.
1932 (proced-header-space): New function.
1933 (proced-update): Use header-line-format.
1934 Initialize proced-header-alist and proced-sorting-schemes-re.
1935 Set proced-goal-column. Include proced-command in mode-name.
1936 (proced-send-signal): Use header-line-format for *Marked
1937 Processes* buffer.
1938 (proced-sort): Restrict minibuffer completion to applicable
1939 sorting schemes.
1940 (proced-sorting-scheme-p): Use proced-sorting-schemes-re.
1941
1942 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
1943
1944 * icomplete.el (icomplete-simple-completing-p):
1945 Allow icomplete-with-completion-tables to say "use it everywhere".
1946 (icomplete-completions): Obey completion-styles. Try to accommodate
1947 partial-completion style.
1948
1949 2008-05-20 Michael Olson <mwolson@gnu.org>
1950
1951 * files.el (project-find-settings-file): Change concat to
1952 expand-file-name.
1953
1954 2008-05-19 Tom Tromey <tromey@redhat.com>
1955
1956 * files.el (normal-mode): Call hack-project-variables.
1957 (hack-local-variables-confirm): Add 'project' argument.
1958 (hack-local-variables-apply): New function.
1959 (hack-local-variables): Use it.
1960 (project-class-alist, project-directory-alist): New variables.
1961 (project-get-alist): New function.
1962 (project-collect-bindings-from-alist)
1963 (project-collect-binding-list, set-directory-project)
1964 (project-find-settings-file, project-define-from-project-file)
1965 (hack-project-variables): New functions.
1966
1967 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1968
1969 * emacs-lisp/cl-specs.el (destructuring-bind): Fix spec.
1970
1971 2008-05-19 Juanma Barranquero <lekktu@gmail.com>
1972
1973 * faces.el (font-weight-table): Fix typo in docstring.
1974
1975 2008-05-18 David Hull <david@snap.com> (tiny change)
1976
1977 * vc-hg.el (vc-hg-annotate-re): Recognize the output of --follow.
1978 (vc-hg-annotate-command): Allow white space before version number.
1979
1980 2008-05-18 Jay Belanger <jay.p.belanger@gmail.com>
1981
1982 * calc/calc-yank.el (calc-register-alist): New variable.
1983 (calc-set-register, calc-get-register, calc-copy-to-register)
1984 (calc-insert-register, calc-add-to-register, calc-append-to-register)
1985 (calc-prepend-to-register): New functions.
1986
1987 * calc/calc-ext.el (calc-init-extensions): Add keybindings for
1988 `calc-copy-to-register' and `calc-insert-register'.
1989 Autoload new register functions.
1990
1991 * calc/calc-help.el (calc-r-prefix-help): Add help for register
1992 functions.
1993
1994 2008-05-18 Dan Nicolaescu <dann@ics.uci.edu>
1995
1996 * vc.el (Todo): Add known problems.
1997 (vc-dir-backend): New variable.
1998 (vc-dir): Set it.
1999 (vc-make-backend-object, vc-generic-status-printer)
2000 (vc-generic-state, vc-generic-status-fileinfo-extra)
2001 (vc-dir-extra-menu): Use it.
2002 (vc-generic-dir-headers): Remove, unused.
2003
2004 * vc-dispatcher.el (vc-dir-previous-directory): Rename from
2005 vc-dir-prev-directory for consistency with vc-dir-previous-line.
2006 (vc-dir-mode-map): Fix bindings.
2007
2008 * vc-bzr.el (vc-bzr-after-dir-status): Remove unused binding.
2009
2010 2008-05-18 Jay Belanger <jay.p.belanger@gmail.com>
2011
2012 * calc/calc-yank.el (calc-kill): Make sure that only the stack is
2013 operated on.
2014 (calc-kill-region): Kill entire lines.
2015
2016 2008-05-17 Glenn Morris <rgm@gnu.org>
2017
2018 * ezimage.el (ezimage-use-images): Drop support for Emacs < 21 and
2019 simplify initial value.
2020 (defezimage): Drop support for Emacs without defimage, use a featurep
2021 test rather than fboundp when defining, drop with-no-warnings.
2022 (ezimage-insert-over-text): Move featurep test inside
2023 add-text-properties.
2024
2025 * elide-head.el (elide-head-headers-to-hide): Handle GPLv3 format.
2026
2027 * net/tramp.el (top-level): Load auth-source when compiling.
2028
2029 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
2030
2031 2008-05-17 Andreas Schwab <schwab@suse.de>
2032
2033 * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding.
2034
2035 2008-05-17 Dan Nicolaescu <dann@ics.uci.edu>
2036
2037 * vc.el (vc-annotate-show-diff-revision-at-line): Change
2038 vc-diff-internal arg to match what vc-deduce-fileseset returns now.
2039
2040 2008-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2041
2042 * menu-bar.el (menu-bar-select-buffer): Reinsert it as msb.el uses it.
2043
2044 2008-05-17 Jim Meyering <meyering@redhat.com>
2045
2046 * ido.el (ido-save-history): Do not emit a trailing newline at the
2047 end of the ido history file.
2048
2049 2008-05-16 John Paul Wallington <jpw@pobox.com>
2050
2051 * vc-dispatcher.el (top-level): Revert previous change: require cl
2052 when compiling.
2053
2054 2008-05-16 Eric S. Raymond <esr@snark.thyrsus.com>
2055
2056 * vc.el (vc-default-status-printer)
2057 (vc-default-prettify-state-info): Enhance the state prettyprinter
2058 to deal better with unknown states and indirect through it when
2059 painting vc-dir buffers.
2060
2061 2008-05-16 John Paul Wallington <jpw@pobox.com>
2062
2063 * vc-dispatcher.el (top-level): Don't require cl when compiling.
2064 (vc-dir-mode-map): Fix backquote.
2065 (vc-at-event): Doc fix. Use `make-symbol' instead of `gensym'.
2066
2067 2008-05-16 Michael Albinus <michael.albinus@gmx.de>
2068
2069 * net/tramp.el (tramp-handle-write-region): Fix check for short track.
2070 Reported by Glenn Morris <rgm@gnu.org>.
2071
2072 2008-05-16 Eric S. Raymond <esr@snark.thyrsus.com>
2073
2074 * vc.el: Remove my analysis of SCCS/RCS concurrency issues from
2075 the end of the file, it was good work at one time but has been
2076 stale since 1995 and may now be actively misleading.
2077 * vc-cvs.el (vc-cvs-status-extra-headers): Extract and display the
2078 CVS repository and module (assumptions for the latter a bit iffy).
2079 * vc-svn.el (vc-svn-status-extra-headers): Extract and display the
2080 SVN repository.
2081
2082 2008-05-16 Juanma Barranquero <lekktu@gmail.com>
2083
2084 * vc-rcs.el (vc-rcs-create-tag):
2085 * vc-sccs.el (vc-sccs-create-tag):
2086 Fix typo in error message and pass backend arg.
2087
2088 2008-05-15 Michael Albinus <michael.albinus@gmx.de>
2089
2090 * net/tramp.el (tramp-file-name-for-operation): Add `make-temp-name'.
2091
2092 2008-05-15 Teodor Zlatanov <tzz@lifelogs.com>
2093
2094 * net/tramp.el: Load auth-source library.
2095 (tramp-read-passwd): Use it for password, not login.
2096
2097 2008-05-15 Shigeru Fukaya <shugeru.fukaya@gmail.com>
2098
2099 * ses.el (ses-goto-print): Use move-to-column rather than forward-char.
2100 (ses-print-cell): Use string-width, truncate-string-to-width,
2101 delete-region rather than length, substring, delete-char.
2102 (ses-setup): Set inhibit-point-motion-hooks to t.
2103 Calculate position by actually moving point rather than just using
2104 unibyte character length.
2105 (ses-mode): Set indent-tabs-mode to nil.
2106 (ses-center): Use string-width rather than length.
2107
2108 2008-05-15 Eric S. Raymond <esr@snark.thyrsus.com>
2109
2110 * vc-cvs.el, vc-git.el, vc-hg.el, vc-hooks.el, vc-mcvs.el,
2111 * vc-rcs.el, vc-sccs.el, vc-svn.el, vc.el:
2112 Rename vc-*-create-snapshot and vc-*-retrieve-snapshot to
2113 vc-*-create-tag and vc-*-retrieve-tag respectively.
2114
2115 * vc-dispatcher.el: Fix an incorrect buffer name and remove an
2116 unneeded defalias.
2117
2118 * vc.el, vc-dispatcher.el (vc-dir-menu-map-filter): Move.
2119
2120 * vc.el, vc-dispatcher.el (vc-dir-menu-map): Remove assumption
2121 about buffer names.
2122
2123 2008-05-15 Glenn Morris <rgm@gnu.org>
2124
2125 * vc-hooks.el (vc-directory-resynch-file): Fix declaration.
2126
2127 * org/org-exp.el (org-infojs-options-inbuffer-template):
2128 Fix declaration.
2129
2130 * progmodes/cc-mode.el (declare-function): Add compat definition.
2131 (awk-mode-syntax-table, c-awk-unstick-NL-prop): Declare for compiler.
2132
2133 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com>
2134
2135 * vc-dispatcher.el (vc-dispatcher-selection): Change the returned
2136 list to a cons so the caller can get back both expanded and
2137 unexpanded filesets.
2138 * vc.el (vc-deduce-fileseset, vc-next-action, vc-diff-internal)
2139 (vc-merge, vc-version-diff, vc-print-log, vc-revert, vc-rollback):
2140 Change handling of selection-set returns as required.
2141
2142 2008-05-15 John Paul Wallington <jpw@pobox.com>
2143
2144 * add-log.el (top-level): Don't require cl when compiling.
2145
2146 * arc-mode.el (archive-add-new-member): Use `derived-mode-p'.
2147 (archive-*-extract): Use `zerop'.
2148 (archive-*-write-file-member): Use `or', use `zerop'.
2149
2150 * diff-mode.el (diff-current-defun): Use `buffer-local-value'.
2151
2152 * ibuffer.el (ibuffer-assert-ibuffer-mode): New defsubst.
2153 (ibuffer-mark-interactive, ibuffer-set-mark)
2154 (ibuffer-insert-buffer-line, ibuffer-redisplay-current)
2155 (ibuffer-map-lines, ibuffer-switch-format)
2156 (ibuffer-update-title-and-summary)
2157 (ibuffer-redisplay-engine): Use it.
2158
2159 * ibuf-ext.el (ibuffer-interactive-filter-by-mode)
2160 (ibuffer-set-filter-groups-by-mode, ibuffer-list-buffer-modes)
2161 (define-ibuffer-filter mode, define-ibuffer-filter used-mode)
2162 (define-ibuffer-sorter major-mode, ibuffer-mark-unsaved-buffers)
2163 (ibuffer-mark-read-only-buffers)
2164 (ibuffer-mark-dired-buffers): Use `buffer-local-value'.
2165
2166 * ibuf-macs.el (ibuffer-aif, ibuffer-awhen, ibuffer-save-marks)
2167 (define-ibuffer-column, define-ibuffer-sorter)
2168 (define-ibuffer-op, define-ibuffer-filter): Add declarations
2169 containing indentation specs, replacing equivalent top-level
2170 forms that set `lisp-indent-function' properties.
2171 (define-ibuffer-op): Use `derived-mode-p'.
2172 (define-ibuffer-filter): Remove redundant `concat' call.
2173
2174 2008-05-14 Michael Albinus <michael.albinus@gmx.de>
2175
2176 * net/tramp.el (tramp-echo-mark): Update docstring.
2177 (tramp-echo-mark-marker): New defconst.
2178 (tramp-check-for-regexp): Use it.
2179
2180 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com>
2181
2182 * vc.el (vc-deduce-fileset): Do the right thing when visting a
2183 buffer (say, a log buffer or diff buffer) with a vc-dir buffer
2184 as parent.
2185
2186 2008-05-14 John Paul Wallington <jpw@pobox.com>
2187
2188 * international/mule.el (convert-define-charset-argument):
2189 Remove period from end of error message.
2190 (coding-system-mnemonic): Doc fix.
2191 (ctext-pre-write-conversion): Doc fix.
2192
2193 2008-05-14 Simon Marshall <simon@gnu.org>
2194
2195 * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "."
2196 from its default value and give it the risky-local-variable
2197 property (CVE-2008-2142).
2198
2199 2008-05-14 Kenichi Handa <handa@m17n.org>
2200
2201 * language/korean.el ("Korean"): Set `iso639-language'
2202 property to `ko'.
2203
2204 * language/japanese.el ("Japanese"): Set `iso639-language'
2205 property to `ja'.
2206
2207 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2208 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK")
2209 ("Chinese-GB18030"): Set `iso639-language' property to `zh'.
2210
2211 * international/mule-cmds.el (set-language-environment):
2212 Set current-iso639-language.
2213
2214 * international/fontset.el (setup-default-fontset): For kana, han,
2215 hangul, and cjk-misc, move an entry with font-spec at the end.
2216 (generate-fontset-menu): Exclue fontset-auto* from the list.
2217
2218 * composite.el (compose-chars-after): Assume that WINDOW is always
2219 non-nil.
2220
2221 * faces.el (font-weight-table, font-slant-table)
2222 (font-swidth-table): Declare them by defconst. Change the format
2223 of elements. Call internal-set-font-style-table after their
2224 declaration.
2225 (face-valid-attribute-values): Call font-family-list. Get values
2226 for width, weight, and slant from font-xxx-table.
2227
2228 * cus-face.el (custom-face-attributes): Add "thin" for :weight.
2229
2230 2008-05-13 John Paul Wallington <jpw@pobox.com>
2231
2232 * ibuffer.el (ibuffer-buffer-file-name): New function.
2233 (define-ibuffer-column filename): Use it.
2234
2235 * ibuf-ext.el (define-ibuffer-filter filename): Use it.
2236
2237 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
2238
2239 * talk.el (talk): Simplify. Pass display arg to talk-add-display
2240 as a string.
2241 (talk-add-display): Simplify. Accept only string args.
2242
2243 2008-05-13 Jay Belanger <jay.p.belanger@gmail.com>
2244
2245 * calc/calc.el (calc-mode-map): Remove old keybinding for `calc-yank'.
2246
2247 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2248
2249 * Makefile.in (bootstrap-prepare): Don't chmod files.
2250 (autoloads): Do it here instead, where it's actually needed.
2251
2252 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
2253
2254 * tool-bar.el (tool-bar-make-keymap): Account for the optional
2255 KEY-BINDING-DATA field in menu-item list.
2256
2257 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2258
2259 * dired.el (dired-read-dir-and-switches): Move things about to use less
2260 recursion during macroexpansion.
2261
2262 * dired.el (dired-read-dir-and-switches): Use read-file-name.
2263
2264 * dired.el (dired-read-dir-and-switches): Ignore ., .., and
2265 completion-ignored-extension directories if there's something else.
2266 (dired-mark-if, dired-map-over-marks, dired-readin, dired-revert)
2267 (dired-remember-marks, dired-undo, dired-build-subdir-alist)
2268 (dired-internal-do-deletions, dired-mark-files-in-region, dired-mark)
2269 (dired-toggle-marks, dired-change-marks, dired-unmark-all-files):
2270 buffer-read-only -> inhibit-read-only.
2271
2272 2008-05-12 Eric S. Raymond <esr@snark.thyrsus.com>
2273
2274 * vc.el (vc-expand-dirs): Stop this function from tossing out
2275 explicitly specified files.
2276
2277 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
2278
2279 * smerge-mode.el (smerge-apply-resolution-patch): Don't pass nil
2280 to `insert'.
2281
2282 2008-05-12 Dan Nicolaescu <dann@ics.uci.edu>
2283
2284 * vc.el (vc-annotate-show-diff-revision-at-line): Remove incorrect
2285 cons. Use vc-annotate-backend.
2286 (with-vc-file, edit-vc-file): Remove unused macros.
2287
2288 2008-05-12 Teodor Zlatanov <tzz@lifelogs.com>
2289
2290 * mail/smtpmail.el: Add autoload for `auth-source-user-or-password'.
2291 (smtpmail-try-auth-methods): Use it.
2292
2293 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
2294
2295 * emacs-lisp/cl.el (cl-set-nthcdr): Make it a defsubst so that
2296 (setf (nthcdr ..) ..) doesn't require CL at runtime.
2297
2298 2008-05-11 Carsten Dominik <dominik@science.uva.nl>
2299
2300 * org/org.el (org-modules): Repair problems with loading org-jsinfo.org.
2301
2302 2008-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2303
2304 * vc-bzr.el (vc-bzr-sha1, vc-bzr-command-discarding-stderr)
2305 (vc-bzr-revision-completion-table): Use process-file.
2306 (vc-bzr-working-revision): Pass relative file names.
2307
2308 * diff-mode.el (diff-hunk-header-re): Refine the regexp.
2309
2310 2008-05-11 Juri Linkov <juri@jurta.org>
2311
2312 * wid-edit.el (widget-image-directory): Change default image data
2313 subdirectory from "custom" to "images/custom".
2314
2315 * info.el (Info-next-preorder): Let-bind `Info-history' to nil
2316 before recursive call to `Info-next-preorder' to not add
2317 intermediate nodes to the history.
2318
2319 * isearch.el: Put isearch-scroll property on recenter-top-bottom.
2320
2321 * emulation/cua-base.el: Put isearch-scroll property
2322 on cua-scroll-up and cua-scroll-down.
2323
2324 2008-05-11 Eric S. Raymond <esr@snark.thyrsus.com>
2325
2326 * vc-hooks.el (vc-recompute-state): Remove (dead code).
2327
2328 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu>
2329
2330 * vc-dispatcher.el (ewoc): Require.
2331 (vc-log-edit, vc-buffer-sync): Declare for byte compiler.
2332
2333 * vc-hg.el (vc-hg-diff, vc-hg-annotate-command): Use when not if.
2334
2335 2008-05-10 Chong Yidong <cyd@stupidchicken.com>
2336
2337 * term/w32-win.el (x-colors):
2338 * term/mac-win.el (x-colors):
2339 * term/x-win.el (x-colors): Re-order colors.
2340
2341 2008-05-10 Reiner Steib <reiner.steib@gmx.de>
2342
2343 * smerge-mode.el (smerge-command-prefix): Fix custom type.
2344
2345 2008-05-10 Eric S. Raymond <esr@snark.thyrsus.com>
2346
2347 * vc-dispatcher.el (vc-dir-next-directory, vc-dir-prev-directory):
2348 New functions implementing motion to next and previous directory.
2349
2350 * vc-arch.el (vc-arch-command):
2351 * vc-bzr.el (vc-bzr-command):
2352 * vc-cvs.el (vc-cvs-command):
2353 * vc-dispatcher.el (vc-do-command):
2354 * vc-git.el (vc-git-command):
2355 * vc-hg.el (vc-hg-command):
2356 * vc-mcvs.el (vc-mvcs-command):
2357 * vc-mtn.el (vc-mtn-command):
2358 * vc-sccs.el (vc-sccs-command, vc-sccs-workfile)
2359 (vc-sccs-workfile-unchanged-p):
2360 * vc-svn.el (vc-svn-command, vc-svn-create-repo):
2361 * vc-rcs.el (all methods): Remove assumption about what a nil
2362 argument to vc-do-command means. This means no buffer name needs
2363 to be hardcoded into the dispatcher layer, and it's better to be
2364 explicit anyway.
2365
2366 * vc-svn.el (vc-svn-dir-state-heuristic): Remove.
2367
2368 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu>
2369
2370 * vc.el: Update todo.
2371
2372 * vc-sccs.el (vc-sccs-dir-status):
2373 * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple
2374 backends and returning up to date files.
2375
2376 * vc-hooks.el (vc-prefix-map): Remove duplicate binding.
2377
2378 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
2379
2380 * vc.el (vc-dir):
2381 * vc-hooks.el: Tweak the VC directory bindings. These are now
2382 documented in the manual.
2383
2384 * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p)
2385 (vc-dir-children-marked-p): Remove the vc-dir-insert-directories global.
2386 (vc-dispatcher-selection-set): Allow callers to pass in an
2387 observer flag that says no buffer sync is required.
2388 * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff):
2389 Use the observer flag.
2390
2391 2008-05-09 Michael Albinus <michael.albinus@gmx.de>
2392
2393 * simple.el (start-file-process): Clarify docstring.
2394
2395 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
2396
2397 * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el:
2398 Remove stub implementations of, and references to, wash-log.
2399 * vc-rcs.el (vc-rcs-comment-history):
2400 * vc-cvs.el (vc-cvs-comment-history):
2401 Inline the code that used to be wash-log.
2402
2403 * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
2404 (vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment)
2405 (vc-sccs-print-log, vc-sccs-diff): Grok directories.
2406 * vc-rcs.el (vc-sccs-checkin, vc-sccs-checkout)
2407 (vc-rcs-revert, vc-rcs-steal-lock, vc-rcs-modify-change-comment)
2408 (vc-rcs-print-log): Grok directories.
2409
2410 2008-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2411
2412 * vc.el (vc-mark-resolved): Add `backend' argument.
2413 (vc-next-action): Pass it the backend.
2414 (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff)
2415 (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file)
2416 (vc-default-comment-history, vc-default-create-snapshot)
2417 (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate)
2418 (vc-annotate-revision-previous-to-line)
2419 (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision):
2420 * vc-svn.el (vc-svn-checkout):
2421 * vc-mcvs.el (vc-mcvs-checkout):
2422 * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p)
2423 (vc-working-revision, vc-before-save, vc-mode-line):
2424 Prefer vc-call-backend to vc-call so as not to recompute the backend.
2425
2426 * vc.el (vc-deduce-fileset): Don't require the checkout-model and the
2427 state to be consistent since it's often an unwarranted restriction.
2428 Don't return the state either.
2429 (vc-next-action): Check that the state is consistent.
2430 (vc-diff-internal, vc-version-diff, vc-print-log, vc-revert)
2431 (vc-rollback, vc-update): Adapt to new return value of
2432 vc-deduce-fileset.
2433
2434 * vc-dispatcher.el (vc-dispatcher-browsing): Use derived-mode-p.
2435 (vc-dir-prepare-status-buffer): Use vc-dispatcher-browsing.
2436 (vc-dispatcher-in-fileset-p): New fun.
2437 (vc-dispatcher-selection-set): Use it to properly handle directories.
2438
2439 2008-05-09 Dan Nicolaescu <dann@ics.uci.edu>
2440
2441 * vc.el (vc-version-diff, vc-print-log, vc-revert, vc-rollback)
2442 (vc-update): Remove unused let bindings.
2443
2444 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
2445
2446 * vc.el (vc-deduce-fileset, vc-next-action, vc-version-diff)
2447 (vc-diff, vc-revert, vc-rollback, vc-update):
2448 * vc-dispatcher.el (vc-dispatcher-selection-set):
2449 Get rid of 4 special cases in fileset selection. This involved
2450 changing the return value of (vc-deduce-fileset) so that it passes
2451 back a deduced state as well as a deduced back end.
2452
2453 2008-05-08 Sam Steingold <sds@gnu.org>
2454
2455 * progmodes/compile.el (compilation-minor-mode-map)
2456 (compilation-mode-map): Bind "g" to recompile and "q" to quit-window.
2457 * grep.el (grep-mode-map): Use `set-keymap-parent' to connect it
2458 to `compilation-minor-mode-map' (instead of an explicit `cons').
2459
2460 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
2461
2462 * org/org.el (org-modules, org-format-latex-options):
2463 * org/org-archive.el (org-archive-stamp-time)
2464 (org-archive-save-context-info):
2465 * org/org-faces.el (org-hide):
2466 * org/org-irc.el (org-irc-parse-link):
2467 * org/org-macs.el (org-call-with-arg, org-autoload):
2468 * org/org-mew.el (org-mew-store-link):
2469 * org/org-remember.el (org-remember-store-without-prompt)
2470 (org-remember-templates): Fix typos in docstrings.
2471
2472 * org/org-info.el (org-info-store-link): Remove leftover docstring.
2473
2474 * org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
2475 (org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
2476 (org-bbdb-anniv-split): Fix typos in docstrings.
2477
2478 * org/org-publish.el (org-publish-project-alist): Doc fixes.
2479 (org-publish-use-timestamps-flag): Reflow docstring.
2480 (org-publish-files-alist): Fix typos in docstring.
2481
2482 2008-05-07 Sam Steingold <sds@gnu.org>
2483
2484 * pcvs-util.el (cvs-bury-buffer): Revert my patch: quit-window
2485 appears to be too aggressive with window removal.
2486
2487 2008-05-08 Michael McNamara <mac@mail.brushroad.com>
2488
2489 * verilog-mode.el (verilog-type-font-keywords): Add leda and 0in
2490 as pragma keywords.
2491 (verilog-pretty-expr): Support lining up assignments which include
2492 part selects.
2493 (verilog-mode): More portable check for the availability of
2494 hideshow support.
2495 (verilog-do-indent): Remove special indent for declarations inside
2496 a parenthetical list. The code is ill-advised, and doesn't work
2497 given the new user defined types.
2498 (verilog-set-auto-endcomments): Enhance function automatic
2499 endcomment to support functions that return user defined types.
2500 (verilog-mode): Add code to tell which-function-mode minor mode
2501 that Verilog supports this feature.
2502
2503 2008-05-08 Eli Zaretskii <eliz@gnu.org>
2504
2505 * epa-file.el: Require epa-hook.
2506
2507 * loadup.el ("epa-hook"): Load epa-hook instead of epa-file-hook.
2508
2509 * epa-hook.el: Renamed from epa-file-hook.el, to avoid
2510 file-names clashes on 8+3 filesystems. Provide epa-hook.
2511
2512 * org/org-jsinfo.el: Renamed from org-infojs.el, to avoid
2513 file-names clashes on 8+3 filesystems.
2514
2515 2008-05-08 Carsten Dominik <dominik@science.uva.nl>
2516
2517 * org/org.el (org-read-date-get-relative): Interpret lone
2518 weekday abbreviation as relative to today.
2519
2520 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
2521
2522 * abbrev.el (define-abbrev-table):
2523 * composite.el (toggle-auto-composition):
2524 * json.el (json-alist-p, json-plist-p):
2525 * minibuffer.el (completion-table-with-predicate):
2526 * ps-mule.el (ps-mule-external-libraries):
2527 * emacs-lisp/advice.el (ad-special-form-p):
2528 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2529 * eshell/em-smart.el (eshell-review-quick-commands):
2530 * progmodes/python.el (python-comment-line-p, python-blank-line-p)
2531 (python-skip-out, python-check-comint-prompt):
2532 Don't use `iff' in docstrings.
2533
2534 * international/robin.el (robin-package-alist): Fix typo in docstring.
2535 (robin-current-package-name): Doc fix.
2536 (robin-activate): Don't use `iff' in docstring.
2537
2538 2008-05-07 Eric S. Raymond <esr@snark.thyrsus.com>
2539
2540 * vc.el, vc-dispatcher.el: VC-Dired support removed.
2541 The code uses a ewoc-based implementation now.
2542 * vc-hooks.el: Support for Meta-CVS has been removed.
2543
2544 2008-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2545
2546 * tool-bar.el: Choose images dynamically.
2547 (tool-bar-make-keymap, tool-bar-find-image): New function.
2548 (tool-bar-find-image-cache): New var.
2549 (tool-bar-local-item, tool-bar-local-item-from-menu):
2550 Don't select the image yet, do it later in tool-bar-make-keymap.
2551
2552 2008-05-07 Andreas Schwab <schwab@suse.de>
2553
2554 * window.el: Require 'cl when compiling.
2555
2556 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
2557
2558 * vc-dispatcher.el (vc-dir-insert-directories): Default to t.
2559
2560 2008-05-07 Glenn Morris <rgm@gnu.org>
2561
2562 * subr.el (ignore-errors): Move here from cl-macs.el.
2563 * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
2564
2565 * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
2566 oddness.
2567
2568 2008-05-06 Eric S. Raymond <esr@snark.thyrsus.com>
2569
2570 * vc-hooks.el (vc-find-file-hook):
2571 * vc-dispatcher.el (vc-resynch-window): Decouple vc-dispatcher
2572 further from vc.el.
2573 * vc.el (vc-dir-mode): Move VC-specific context menu entries here.
2574
2575 2008-05-06 Wilson Snyder <wsnyder@wsnyder.org>
2576
2577 * verilog-mode.el (verilog-getopt-file): Cleanup warning message format.
2578 (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum)
2579 (verilog-auto-inout, verilog-auto-inout-module)
2580 (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param)
2581 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2582 (verilog-auto-reg-input, verilog-auto-reset, verilog-auto-sense)
2583 (verilog-auto-sense-sigs, verilog-auto-tieoff)
2584 (verilog-auto-unused, verilog-auto-wire)
2585 (verilog-decls-get-assigns, verilog-decls-get-consts)
2586 (verilog-decls-get-gparams, verilog-decls-get-inouts)
2587 (verilog-decls-get-inputs, verilog-decls-get-outputs)
2588 (verilog-decls-get-ports, verilog-decls-get-regs)
2589 (verilog-decls-get-signals, verilog-decls-get-wires)
2590 (verilog-dir-cache-lib-filenames, verilog-dir-cache-list)
2591 (verilog-dir-cache-preserving, verilog-dir-file-exists-p)
2592 (verilog-dir-files, verilog-expand-dirnames, verilog-getopt-file)
2593 (verilog-inject-sense, verilog-library-filenames)
2594 (verilog-mode-release-date, verilog-mode-version)
2595 (verilog-modi-cache-add, verilog-modi-cache-preserve-buffer)
2596 (verilog-modi-cache-preserve-tick, verilog-modi-cache-results)
2597 (verilog-modi-get-assigns, verilog-modi-get-consts)
2598 (verilog-modi-get-gparams, verilog-modi-get-inouts)
2599 (verilog-modi-get-inputs, verilog-modi-get-outputs)
2600 (verilog-modi-get-ports, verilog-modi-get-regs)
2601 (verilog-modi-get-signals, verilog-modi-get-sub-inouts)
2602 (verilog-modi-get-sub-inputs, verilog-modi-get-sub-outputs)
2603 (verilog-modi-get-wires, verilog-preserve-cache)
2604 (verilog-preserve-dir-cache, verilog-preserve-modi-cache)
2605 (verilog-read-sub-decls, verilog-read-sub-decls-line)
2606 (verilog-read-sub-decls-sig, verilog-subdecls-get-inouts)
2607 (verilog-subdecls-get-inputs, verilog-subdecls-get-outputs):
2608 Add caching of additional state, and rework signal extraction
2609 routines to improve AUTO expansion performance by 300%++.
2610
2611 2008-05-06 Chong Yidong <cyd@stupidchicken.com>
2612
2613 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2614 Tweak Open Watcom regexp to distinguish between errors and warnings.
2615
2616 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2617
2618 * dired.el (dired-read-dir-and-switches): Fix up last change.
2619
2620 2008-05-05 Eric S. Raymond <esr@snark.thyrsus.com>
2621
2622 * vc.el (vc-deduce-fileset): Lift all the policy and UI stuff
2623 out of this function, move it to vc-dispatcher-selection-set.
2624
2625 2008-05-05 Sam Steingold <sds@gnu.org>
2626
2627 * window.el (delete-other-windows-vertically): New function.
2628
2629 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2630
2631 * dired.el (dired-read-dir-and-switches):
2632 Obey read-file-name-completion-ignore-case.
2633
2634 2008-05-05 Nick Roberts <nickrob@snap.net.nz>
2635
2636 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2637 Add regexp for Open Watcom compiler output.
2638
2639 2008-05-05 Phil Sung <psung@mit.edu> (tiny change)
2640
2641 * progmodes/python.el (python-block-pairs): Align finally with except.
2642
2643 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2644
2645 * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
2646
2647 2008-05-05 Tom Tromey <tromey@redhat.com>
2648
2649 * smerge-mode.el (smerge-start-session): Don't call smerge-next if
2650 looking at conflict marker.
2651
2652 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2653
2654 * vc-dispatcher.el (vc-dir-mark-buffer-changed): Fix typo
2655 client-mode -> vc-client-object, and guess `funcall' was meant.
2656 (vc-dir-mode): Rename client-mode -> vc-client-mode.
2657
2658 2008-05-05 Dan Nicolaescu <dann@ics.uci.edu>
2659
2660 * net/zeroconf.el (dbus-call-method, dbus-register-signal)
2661 (dbus-debug): Move declarations outside eval-when-compile.
2662
2663 2008-05-04 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2664
2665 * proced.el (proced-command-alist): Fix system-type values.
2666 Fix defcustom.
2667 (proced-sorting-schemes-alist, proced-sorting-scheme): New variables.
2668 (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
2669 (proced-sort-start, proced-sort, proced-sort-time): New commands.
2670 (proced-update): Use proced-sorting-scheme. Update modeline.
2671 (proced-send-signal): Use nreverse.
2672 (proced-sorting-scheme-p): New function.
2673
2674 2008-05-04 Andreas Schwab <schwab@suse.de>
2675
2676 * vc.el: Require dired when compiling.
2677
2678 * minibuffer.el (completion--insert-strings): Don't delete past bol.
2679
2680 2008-05-03 Glenn Morris <rgm@gnu.org>
2681
2682 * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el:
2683 * ediff-ptch.el, ediff-util.el, ediff-wind.el, ediff.el:
2684 Simplify compilation requirements.
2685 * ediff-init.el, ediff-vers.el: Remove unnecessary variable
2686 declarations.
2687
2688 2008-05-03 Dave Love <fx@gnu.org>
2689
2690 * progmodes/python.el (python-beginning-of-statement):
2691 Loop at least once (fixes 2008-02-21 change).
2692
2693 2008-05-03 Eli Zaretskii <eliz@gnu.org>
2694
2695 * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
2696 instead of `length' for comparing length of user and group names.
2697
2698 2008-05-03 Eric S. Raymond <esr@snark.thyrsus.com>
2699
2700 * vc-dispatcher.el: New file, separates out the UI and command
2701 execution machinery from VCS-specific logic left in vc.el.
2702 The separation is not yet completely clean, but it's a good start.
2703 * vc.el: This file is about 1700 lines shorter now.
2704 Remove obsolete logentry-check from the backend API.
2705 * vc-sccs.el (vc-sccs-logentry-check): Remove. This was the only
2706 implementation of the logentry-check method, and it guarded against
2707 a log length limit that has probably been obsolete for 15 years (!).
2708
2709 2008-05-02 Sam Steingold <sds@gnu.org>
2710
2711 * progmodes/compile.el (compilation-start): Move setting of
2712 compilation-directory after (funcall mode) as that resets local
2713 variables, this fixes recompile in grep buffers.
2714 * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c).
2715
2716 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
2717
2718 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
2719 * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
2720 * vc-svn.el, vc.el (vc-*-checkout-model): Make sure every backend
2721 has one of these and that all are called in compatible ways.
2722 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
2723 * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
2724 * vc-svn.el, vc.el (vc-*-revision-granularity): Make sure every
2725 backend has one of these.
2726
2727 2008-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2728
2729 * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
2730 initialization into define-abbrev-table. Use :regexp.
2731 (octave-mode-syntax-table): Don't set word syntax for `.
2732
2733 * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
2734 than only value.
2735
2736 * dired.el (dired-read-dir-and-switches):
2737 Set minibuffer-completing-file-name and call substitute-in-file-name.
2738 (dired-format-columns-of-files): Use completion--insert-strings.
2739
2740 * minibuffer.el (completion-hilit-commonality): Revert last change:
2741 the leftover code was actually useful.
2742 (completion--insert-strings): Use string-width rather than length.
2743
2744 2008-05-02 Sam Steingold <sds@gnu.org>
2745
2746 * vc.el (vc-dir-mode-map): Enable mouse bindings.
2747 (vc-at-event): New macro: run the body at the even location.
2748 (vc-dir-menu, vc-dir-toggle-mark): Use it.
2749 (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
2750 * subr.el (mouse-event-p): Check if the even is mouse-related.
2751
2752 2008-05-02 Nick Roberts <nickrob@snap.net.nz>
2753
2754 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
2755 Don't throw error if no file is found.
2756
2757 2008-05-02 Juanma Barranquero <lekktu@gmail.com>
2758
2759 * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
2760 (vc-default-state-heuristic): Doc fix.
2761
2762 2008-05-02 Richard Sharman <rsharman@pobox.com>
2763
2764 * hilit-chg.el (highlight-changes-mode): Remove references to
2765 hooks that no longer exist. Because define-minor-mode is used the
2766 hook highlight-changes-mode-hook exists and can do what both the
2767 old hooks used to do. The documentation at the top of the file
2768 was updated to demonstrate this.
2769 (highlight-changes-mode): Remove commented out call to a hook
2770 function that is no longer there.
2771 (hilit-chg-set): Remove running of highlight-changes-enable-hook.
2772
2773 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
2774
2775 * vc.el (vc-default-dired-state-info): Change name of primitive
2776 to prettify-state-info, in preparation for ripping out dired mode.
2777 * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
2778 to prettify-state-info, in preparation for ripping out dired mode.
2779 * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
2780 tries this on a version-controlled buffer. It will do useless or
2781 actively bad things on any version control system newer than RCS.
2782 * vc-hooks.el (vc-dired-resynch-file):
2783 * vc.el (vc-dired-resynch-file): Change name of primitive to
2784 vc-directory-resynch-file, preparing to remove dired.
2785
2786 2008-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2787
2788 * vc-rcs.el (vc-rcs-state): Fix typos.
2789
2790 * vc.el (vc-register): Change argument order so that the prefix
2791 argument is assigned correctly.
2792 (vc-next-action, vc-dir-register): Update for the above change.
2793
2794 2008-05-01 Juri Linkov <juri@jurta.org>
2795
2796 * replace.el (occur-read-primary-args): Set default to the car of
2797 regexp-history and display it in the prompt, but don't add to the
2798 list of minibuffer defaults. Bind history-add-new-input to nil to
2799 not add automatically `default'. For empty input return `default'.
2800 Otherwise, add `input' to regexp-history and return it.
2801 (occur-1): Signal an error for the empty regexp.
2802
2803 * progmodes/compile.el (compilation-auto-jump):
2804 Set window point to `pos' explicitly.
2805
2806 2008-05-01 Eric S. Raymond <esr@snark.thyrsus.com>
2807
2808 * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
2809 when appropriate.
2810 * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
2811 we report the 'unregistered state reliably.
2812 * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
2813 we report the 'unregistered state reliably.
2814 * vc-git.el (vc-git-state): Call vc-git-unregistered so
2815 we report the 'unregistered state reliably.
2816 * vc-hooks (vc-state): Document that vc-unregistered is
2817 now expected to be returned reliably.
2818 * vc.el (vc-default-dired-state): Change needs-patch state to
2819 needs-update, since the name now shows up in dir-status listings
2820 and was somewhat misleading.
2821 * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
2822 immediately after removing the file.
2823 * vc.el (vc-next-action): More informative messages when a fileset
2824 is in a mixed state or files are missing.
2825
2826 2008-05-01 Sam Steingold <sds@gnu.org>
2827
2828 * vc.el (vc-delete-file): Check if the file has uncommitted changes.
2829
2830 2008-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2831
2832 * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
2833
2834 2008-05-01 Daiki Ueno <ueno@unixuser.org>
2835
2836 * epa-file-hook.el: New file split from epa-file.el.
2837 * epa-file.el: Require 'epa-file-hook.
2838 (epa-file-handler): Add autoload cookie.
2839 * loadup.el: Load epa-file-hook.
2840 * startup.el (command-line): Eval the body of auto-encryption-mode.
2841
2842 2008-05-01 Dan Nicolaescu <dann@ics.uci.edu>
2843
2844 * vc.el (vc-dir-mode-map): Don't bind "r".
2845
2846 * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
2847 (vc-hg-status-printer): New function.
2848 (vc-hg-after-dir-status): Deal with copied and renamed files.
2849 (vc-hg-dir-status): Add flag to show copied files.
2850
2851 2008-05-01 John Paul Wallington <jpw@pobox.com>
2852
2853 * ibuffer.el (ibuffer-last-sorting-mode): New variable.
2854 (ibuffer-do-sort-by-recency): Reverse sorting order if last
2855 sorting mode was recency.
2856
2857 * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
2858 reverse sorting order if last sorting mode was the sorter's.
2859
2860 2008-05-01 Jason Rumney <jasonr@gnu.org>
2861
2862 * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
2863
2864 2008-04-30 John Paul Wallington <jpw@pobox.com>
2865
2866 * ibuffer.el (define-ibuffer-column filename): When the major mode
2867 is `vc-dir-mode' show the buffer's default directory.
2868
2869 * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
2870 major mode is `vc-dir-mode' use the buffer's default directory.
2871
2872 2008-04-30 Sam Steingold <sds@gnu.org>
2873
2874 * vc.el (vc-dir-delete-file): Add.
2875 (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
2876 (vc-delete-file): Do not barf when the file has been already deleted.
2877
2878 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
2879
2880 * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
2881
2882 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
2883
2884 * progmodes/octave-mod.el (octave-help): New function.
2885 * progmodes/octave-hlp.el: Delete.
2886 * info-look.el (octave-mode): Add operator index.
2887
2888 * vc.el (vc-checkout): Typo.
2889
2890 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
2891
2892 * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
2893 Add "..." in the appropriate places.
2894
2895 * epa.el (epa-key-list-mode-map): Add more menu entries.
2896 Add "..." in the appropriate places.
2897
2898 * dired.el (dired-mode-map): Add :help.
2899
2900 * vc.el (vc-deduce-fileset): Add new parameter.
2901 (vc-dir-marked-only-files): New function.
2902 (vc-next-action): Don't ignore directories, look at the files
2903 inside them.
2904 (vc-dir-mode): Document how the mark/unmark commands work.
2905
2906 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
2907
2908 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2909 Rule out trailing spaces in file and directory names as well.
2910
2911 * minibuffer.el (completion--do-completion): Move point even if the
2912 completion makes no change.
2913 (completion-pcm-try-completion): Fix computation of new point.
2914
2915 2008-04-30 David Hansen <david.hansen@gmx.net>
2916
2917 * dired.el: Require 'cl.
2918
2919 2008-04-30 Nick Roberts <nickrob@snap.net.nz>
2920
2921 * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
2922 hollow if not in innermost frame.
2923
2924 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2925
2926 Make `checkout-model' apply to filesets.
2927 * vc-hooks.el (vc-checkout-model): Rewrite.
2928 (vc-before-save, vc-after-save): Adjust callers accordingly.
2929 * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
2930 (vc-transfer-file): Adjust callers accordingly.
2931 * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
2932 (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
2933 (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
2934 instead of vc-checkout-model.
2935 * vc-mcvs.el (vc-mcvs-revert):
2936 Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
2937 * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
2938 (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
2939 * vc-svn.el (vc-svn-checkout-model):
2940 * vc-hg.el (vc-hg-checkout-model):
2941 * vc-git.el (vc-git-checkout-model):
2942 * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
2943
2944 * dired.el (dired-read-dir-and-switches): Replace last change with
2945 a new approach that mixes read-file-name and read-directory-name.
2946
2947 * files.el (read-buffer-to-switch):
2948 Avoid making assumptions about `other-buffer'.
2949
2950 2008-04-29 Sam Steingold <sds@gnu.org>
2951
2952 * vc.el (vc-dir-mode-hook): Add normal hook.
2953 (vc-dir-mode): Run it.
2954
2955 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
2956
2957 * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
2958 Always split windows.
2959 (gdb-speedbar-timer-fn): Only raise frame after user input.
2960 (gdb-same-frame): Reverse initial value.
2961 (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
2962
2963 * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
2964 gdb-speedbar-timer-fn.
2965
2966 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2967
2968 * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
2969
2970 2008-04-29 Daiki Ueno <ueno@unixuser.org>
2971
2972 * epa.el (epa-key-list-mode-map): Add menu.
2973 (epa-delete-keys, epa-import-keys): Fix typo.
2974
2975 2008-04-29 Glenn Morris <rgm@gnu.org>
2976
2977 * find-cmd.el (top-level): Does not need cl when compiling.
2978
2979 2008-04-29 Phil Jackson <phil@shellarchive.co.uk>
2980
2981 * find-cmd.el: New file.
2982
2983 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2984
2985 * minibuffer.el (completion-hilit-commonality): Remove leftover code.
2986 (completion-pcm--pattern->regex): Let `group' be a list of symbols.
2987 (completion-pcm--hilit-commonality): New function.
2988 (completion-pcm-all-completions): Use it.
2989
2990 * minibuffer.el (completion-common-substring): Mark obsolete.
2991 (completions-first-difference, completions-common-part):
2992 Move from simple.el.
2993 (completion-hilit-commonality): New fun.
2994 (display-completion-list, completion-emacs21-all-completions)
2995 (completion-emacs22-all-completions): Use it.
2996 * simple.el (completions-first-difference, completions-common-part):
2997 Move to minibuffer.el.
2998 (choose-completion-string): Use field functions and minibufferp.
2999 (completion-setup-function): Don't set completions faces.
3000
3001 2008-04-29 Glenn Morris <rgm@gnu.org>
3002
3003 * calendar/calendar.el (calendar-nth-named-absday)
3004 (calendar-nth-named-day):
3005 * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
3006 * calendar/holidays.el (holiday-float): Doc fixes.
3007
3008 * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
3009 the `full' case.
3010
3011 * org/org-agenda.el (calendar-iso-from-absolute):
3012 * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
3013 Fix declarations.
3014
3015 2008-04-28 Nick Roberts <nickrob@snap.net.nz>
3016
3017 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
3018 icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
3019 (gdb-goto-breakpoint): Likewise for visiting breakpoints.
3020 (gdb-assembler-custom): Be careful not to match other addresses.
3021
3022 2008-04-29 Jason Rumney <jasonr@gnu.org>
3023
3024 * battery.el (battery-status-function): Use w32-battery-status
3025 on Windows.
3026 (battery-echo-area-format): Make apm format the general case.
3027 (battery-mode-line-format): Merge apm and pmset formats as the
3028 general case.
3029
3030 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
3031
3032 * progmodes/gdb-ui.el (gdb-info-stack-custom):
3033 Use gud-tool-bar-item-visible-no-fringe.
3034 (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
3035 is already visible in frame. Remove optional size parameter
3036 and add optional frame parameter.
3037
3038 * progmodes/gud.el (gud-display-line): Only consider visible
3039 frames when looking for source buffer.
3040
3041 2008-04-28 Chong Yidong <cyd@stupidchicken.com>
3042
3043 * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
3044 argument to get-char-property, in case the current buffer hasn't
3045 been assigned to that window yet.
3046 (doc-view-display): Default to selected window if the current
3047 buffer hasn't been assigned to a window yet.
3048
3049 2008-04-28 Vinicius Jose Latorre <bzg@altern.org>
3050
3051 * whitespace.el (whitespace-trailing-regexp): Fix docstring.
3052
3053 2008-04-28 Michael Albinus <michael.albinus@gmx.de>
3054
3055 * net/tramp.el (tramp-mode): New defcustom.
3056 (tramp-file-name-handler, tramp-completion-file-name-handler):
3057 Use it.
3058 (tramp-replace-environment-variables): Handle "$$".
3059
3060 2008-04-28 Sam Steingold <sds@gnu.org>
3061
3062 * vc-hg.el (vc-hg-rename-file): Fix argument order.
3063
3064 2008-04-28 Bastien Guerry <bzg@altern.org>
3065
3066 * whitespace.el (whitespace-trailing): Fix typo.
3067
3068 2008-04-28 Sam Steingold <sds@gnu.org>
3069
3070 * textmodes/remember.el (diary-make-entry): Update the autoload.
3071
3072 2008-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
3073
3074 * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
3075 all-completions.
3076
3077 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
3078
3079 * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
3080
3081 2008-04-27 Dan Nicolaescu <dann@ics.uci.edu>
3082
3083 * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
3084 (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
3085 (vc-dir-mark-file): Add an optional argument.
3086 (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
3087
3088 2008-04-27 Daiki Ueno <ueno@unixuser.org>
3089
3090 * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
3091 rather than obsolete alias find-file-hooks.
3092 (auto-encryption-mode): Rename from epa-file-mode. Default to on.
3093 Use find-file-hook rather than obsolete alias find-file-hooks.
3094 Add to find-file-not-found-functions.
3095 (epa-file-handler): Put 'safe-magic and 'operations properties.
3096
3097 * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
3098 (epa-menu-items): Remove.
3099
3100 * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
3101 (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
3102 (epa-dired-mode, epa-global-dired-mode): Remove.
3103
3104 * dired.el (dired-mode-map): Bind encryption/decryption commands.
3105
3106 * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
3107
3108 * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
3109
3110 2008-04-27 Glenn Morris <rgm@gnu.org>
3111
3112 * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
3113 Remove un-needed local `orig-list'. Replace cl `copy-list'.
3114
3115 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
3116
3117 * org/org.el (org-html-level-start): Always have id's in HTML.
3118 (org-export-as-html): Use `org-link-protocols' to
3119 retrieve the export form of the link.
3120 (org-add-link-type): Final parameter renamed from PUBLISH.
3121 Better documentation of how it is to be used. Avoid double entries for
3122 the same link type.
3123 (org-add-link-props): New function.
3124 (org-modules-loaded): New variable.
3125 (org-load-modules-maybe, org-set-modules): New function.
3126 (org-modules): New option.
3127 (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
3128 (orgtbl-mode, org-store-link, org-insert-link-global)
3129 (org-open-at-point): Call `org-load-modules-maybe'.
3130 (org-search-view): Add more text properties.
3131 (org-agenda-schedule, org-agenda-deadline): Allow also in
3132 search-type agendas.
3133 (org-search-view): Order of arguments has been changed.
3134 Interpret prefix-arg as TODO-ONLY.
3135 (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
3136 Take new argument order of `org-search-view' into account.
3137 (org-todo-only): New variable.
3138 (org-search-syntax-table): New variable and function.
3139 (org-search-view): Do the search with the special syntax table.
3140 (define-obsolete-function-alias): Make work with XEmacs.
3141 (org-add-planning-info): Use old date as default when modifying an
3142 existing deadline or scheduled item.
3143 (org-agenda-compute-time-span): Make argument N optional.
3144 (org-agenda-format-date-aligned): Require `cal-iso'.
3145 (org-agenda-list): Include week into agenda heading, don't
3146 list it at each date (only on Mondays).
3147 (org-read-date-analyze): Define local variable `iso-date'.
3148 (org-agenda-format-date-aligned): Remove dependency on
3149 `calendar-time-from-absolute'.
3150 (org-remember-apply-template, org-go-to-remember-target):
3151 Interpret filenames relative to `org-directory'.
3152 (org-complete): Silently fail when trying to complete
3153 keywords that don't have a default value.
3154 (org-get-current-options): Add a #+DATE: option.
3155 (org-additional-option-like-keywords): Remove "DATE:" from the
3156 list of additional keywords.
3157 (org-export-as-html): Remove (current-time) as unnecessary second
3158 argument of `format-time-string'.
3159 (org-clock-find-position): Handle special case at end of buffer.
3160 (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
3161 `org-agenda-change-time-span'.
3162 (org-agenda-week-view): New argument ISO-WEEK, pass it on to
3163 `org-agenda-change-time-span'.
3164 (org-agenda-month-view): New argument MONTH, pass it on to
3165 `org-agenda-change-time-span'.
3166 (org-agenda-year-view): New argument YEAR, pass it on to
3167 `org-agenda-change-time-span'.
3168 (org-agenda-change-time-span): New optional argument N, pass it on
3169 to `org-agenda-compute-time-span'.
3170 (org-agenda-compute-time-span): New argument N, interpret it by
3171 changing the starting day.
3172 (org-small-year-to-year): New function.
3173 (org-scheduled-past-days): Respect `org-scheduled-past-days'.
3174 (org-auto-repeat-maybe): Make sure that repeating dates are pushed
3175 into the future, and that the shift is at least one interval, never 0.
3176 (org-update-checkbox-count): Fix bug with checkbox counting.
3177 (org-add-note): New command.
3178 (org-add-log-setup): Rename from `org-add-log-maybe'.
3179 (org-log-note-headings): New entry for plain notes (i.e. notes not
3180 related to state changes or clocking).
3181 (org-get-org-file): Check for availability of `remember-data-file'.
3182 (org-cached-entry-get): Allow a regexp value for
3183 `org-use-property-inheritance'.
3184 (org-use-property-inheritance): Allow regexp value. Fix bug in
3185 customization type.
3186 (org-use-tag-inheritance): Allow a list and a regexp value for
3187 this variable.
3188 (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
3189 (org-entry-get): Respect value `selective' for the INHERIT argument.
3190 (org-tag-inherit-p, org-property-inherit-p): New functions.
3191 (org-agenda-format-date-aligned): Allow 10 characters for
3192 weekday, to acomodate German locale.
3193 (org-add-archive-files): New function.
3194 (org-agenda-files): New argument `ext', to get archive files as well.
3195 (org-tbl-menu): Protect the use of variables that
3196 are only available when org-table.el gets loaded.
3197 (org-read-agenda-file-list): Error if `org-agenda-files' is a
3198 single directory.
3199 (org-open-file): Allow a batch process to trigger
3200 waiting after executing a system command.
3201 (org-store-link): Link to headline when there is not
3202 target and no region in an org-mode buffer when creating a link.
3203 (org-link-types-re): New variable.
3204 (org-make-link-regexps): Compute `org-link-types-re'.
3205 (org-make-link-description-function): New option.
3206 (org-agenda-date, org-agenda-date-weekend): New faces.
3207 (org-archive-sibling-heading): New option.
3208 (org-archive-to-archive-sibling): New function.
3209 (org-iswitchb): New command.
3210 (org-buffer-list): New function.
3211 (org-agenda-columns): Also try the #+COLUMNS line in
3212 the buffer associated with the entry at point (or with the first
3213 entry in the agenda view).
3214 (org-modules): Add entry for org-bibtex.el.
3215 (org-completion-fallback-command): Move into `org-completion' group.
3216 (org-clock-heading-function): Move to `org-progress' group.
3217 (org-auto-repeat-maybe): Make sure that a note can
3218 be enforces if `org-log-repeat' is `note'.
3219 (org-modules): Allow additional symbols for external packages.
3220 (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
3221 (org-clock-goto): Hide drawers after showing an
3222 entry with `org-clock-goto'.
3223 (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
3224 Try also a clocktable block shift.
3225 (org-clocktable-try-shift): New function.
3226 (org-columns-hscoll-title): New function.
3227 (org-columns-previous-hscroll): New variable.
3228 (org-columns-full-header-line-format): New variable.
3229 (org-columns-display-here-title, org-columns-remove-overlays):
3230 Install `org-columns-hscoll-title' in post-command-hook.
3231
3232 * org/org.el: Split into many small files.
3233
3234 * org/org-agenda.el: New file, split off from org.el.
3235
3236 * org/org-archive.el: New file, split off from org.el.
3237
3238 * org/org-bbdb.el: New file.
3239
3240 * org/org-bibtex.el: New file, split off from org.el.
3241
3242 * org/org-clock.el: New file, split off from org.el.
3243
3244 * org/org-colview.el: New file, split off from org.el.
3245
3246 * org/org-compat.el: New file, split off from org.el.
3247
3248 * org/org-exp.el: New file, split off from org.el.
3249
3250 * org/org-faces.el: New file, split off from org.el.
3251
3252 * org/org-gnus.el: New file, split off from org.el.
3253
3254 * org/org-info.el: New file, split off from org.el.
3255
3256 * org/org-infojs.el: New file.
3257
3258 * org/org-irc.el: New file.
3259
3260 * org/org-macs.el: New file, split off from org.el.
3261
3262 * org/org-mew.el: New file.
3263
3264 * org/org-mhe.el: New file, split off from org.el.
3265
3266 * org/org-publish.el: New file, split off from org.el.
3267
3268 * org/org-remember.el: New file, split off from org.el.
3269
3270 * org/org-rmail.el: New file, split off from org.el.
3271
3272 * org/org-table.el: New file, split off from org.el.
3273
3274 * org/org-vm.el: New file, split off from org.el.
3275
3276 * org/org-wl.el: New file, split off from org.el.
3277
3278 2008-04-27 Jason Riedy <jason@acm.org>
3279
3280 * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
3281 parameter that supresses lines that evaluate to NIL.
3282 (orgtbl-get-fmt): New inline function for
3283 picking apart formats that may be lists.
3284 (orgtbl-apply-fmt): New inline function for applying formats that
3285 may be functions.
3286 (orgtbl-eval-str): New inline function for strings that may be
3287 functions.
3288 (orgtbl-format-line, orgtbl-to-generic): Use and document.
3289 (orgtbl-to-latex, orgtbl-to-texinfo): Document.
3290 (*orgtbl-llfmt*, *orgtbl-llstart*)
3291 (*orgtbl-llend*): Dynamic variables for last-line formatting.
3292 (orgtbl-format-section): Shift formatting to support detecting the
3293 last line and formatting it specially.
3294 (orgtbl-to-generic): Document :ll* formats. Set to the non-ll
3295 formats unless overridden.
3296 (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
3297 (*orgtbl-table*, *orgtbl-rtn*): Dynamically
3298 bound variables to hold the input collection of lines and output
3299 formatted text.
3300 (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
3301 (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
3302 format parameters.
3303 (orgtbl-format-line): New function encapsulating formatting for a
3304 single line.
3305 (orgtbl-format-section): Similar for each section. Rebinding the
3306 dynamic vars customizes the formatting for each section.
3307 (orgtbl-to-generic): Use orgtbl-format-line and
3308 orgtbl-format-section.
3309 (org-get-param): Now unused, so delete.
3310 (orgtbl-gather-send-defs): New function to
3311 gather all the SEND definitions before a table.
3312 (orgtbl-send-replace-tbl): New function to find the RECEIVE
3313 corresponding to the current name.
3314 (orgtbl-send-table): Use the previous two functions and implement
3315 multiple destinations for each table.
3316
3317 * doc/org.texi (A LaTeX example): Note that fmt may be a
3318 one-argument function, and efmt may be a two-argument function.
3319 (Radio tables): Document multiple destinations.
3320
3321 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
3322
3323 * org/org-agenda.el (org-add-to-diary-list): New function.
3324 (org-prefix-has-effort): New variable.
3325 (org-sort-agenda-noeffort-is-high): New option.
3326 (org-agenda-columns-show-summaries)
3327 (org-agenda-columns-compute-summary-properties): New options.
3328 (org-format-agenda-item): Compute the duration of the item.
3329 (org-agenda-weekend-days): New variable.
3330 (org-agenda-list, org-timeline): Use the proper faces for dates in
3331 the agenda and timeline buffers.
3332 (org-agenda-archive-to-archive-sibling): New command.
3333 (org-agenda-start-with-clockreport-mode): New option.
3334 (org-agenda-clockreport-parameter-plist): New option.
3335 (org-agenda-clocktable-mode): New variable.
3336 (org-agenda-deadline-leaders): Allow a function value for the
3337 deadline leader.
3338 (org-agenda-get-deadlines): Deal with new function value.
3339
3340 * lisp/org-clock.el (org-clock): New customization group.
3341 (org-clock-into-drawer, org-clock-out-when-done)
3342 (org-clock-in-switch-to-state, org-clock-heading-function):
3343 Move into the new group.
3344 (org-clock-out-remove-zero-time-clocks): New option.
3345 (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
3346 (org-dblock-write:clocktable): Allow a Lisp form for the scope
3347 parameter.
3348 (org-dblock-write:clocktable): Fix bug with total time calculation.
3349 (org-dblock-write:clocktable): Request the unrestricted list of files.
3350 (org-get-clocktable): New function.
3351 (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
3352 be strings but also integers (an absolute day number) and lists (m d y).
3353
3354 * org/org-colview.el (org-columns-next-allowed-value)
3355 (org-columns-edit-value): Limit the effort for updating in the
3356 agenda to recomputing a single file.
3357 (org-columns-compute): Only write property value if it has changed.
3358 This avoids raising the buffer-change-flag unnecessarily.
3359 (org-agenda-colview-summarize)
3360 (org-agenda-colview-compute): New functions.
3361 (org-agenda-columns): Call `org-agenda-colview-summarize'.
3362
3363 * org/org-exp.el (org-export-run-in-background): New option.
3364 (org-export-icalendar): Allow a batch process to trigger waiting
3365 after executing a system command.
3366 (org-export-preprocess-string): Rename from
3367 `org-cleaned-string-for-export'.
3368 (org-export-html-style): Made target class look like normal text.
3369 (org-export-as-html): Make use of the better proprocessing in
3370 `org-cleaned-string-for-export'.
3371 (org-cleaned-string-for-export): Better treatment of heuristic
3372 targets, many more internal links will now work in HTML export.
3373 (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
3374 (org-export-inbuffer-options-extra): New variable.
3375 (org-export-options-filters): New hook.
3376 (org-infile-export-plist): Find also the settings keywords in
3377 `org-export-inbuffer-options-extra'.
3378 (org-infile-export-plist): Allow multiple #+OPTIONS lines and
3379 multiple #+INFOJS_OPT lines.
3380 (org-export-html-handle-js-options): New function.
3381 (org-export-html-infojs-setup): New option.
3382 (org-export-as-html): Call `org-export-html-handle-js-options'.
3383 Add autoload to all entry points.
3384 (org-skip-comments): Function removed.
3385
3386 * org/org-table.el (org-table-make-reference): Extra parenthesis
3387 around single fields, to make sure that algebraic formulas get
3388 correctly interpreted by calc.
3389 (org-table-current-column): No longer interactive.
3390
3391 * org/org-export-latex.el (org-export-latex-preprocess):
3392 Rename from `org-export-latex-cleaned-string'.
3393
3394 2008-04-27 Bastien Guerry <bzg@altern.org>
3395
3396 * org/org-publish.el (org-publish-get-base-files-1): New function.
3397 (org-publish-get-base-files): Use it.
3398 (org-publish-temp-files): New variable.
3399 Don't require 'dired-aux anymore.
3400 (org-publish-initial-buffer): New variable.
3401 (org-publish-org-to, org-publish): Use it.
3402 (org-publish-get-base-files-1): Bug fix: get
3403 the proper list of files when recursing thru a directory.
3404 (org-publish-get-base-files): Use the :exclude property to skip
3405 both files and directories.
3406
3407 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
3408
3409 * net/tramp.el (tramp-handle-make-symbolic-link)
3410 (tramp-handle-file-name-directory)
3411 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
3412 (tramp-do-copy-or-rename-file-directly)
3413 (tramp-handle-insert-directory, tramp-handle-expand-file-name)
3414 (tramp-handle-substitute-in-file-name)
3415 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3416 * net/tramp-cache.el (tramp-get-file-property)
3417 (tramp-set-file-property, tramp-flush-file-property)
3418 (tramp-flush-directory-property)
3419 * net/tramp-compat.el (tramp-compat-make-temp-file)
3420 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
3421 Disable `file-name-handler-alist' when handling localname.
3422 It could have a remote file syntax, like a VMS file name.
3423
3424 2008-04-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3425
3426 * whitespace.el: New version 11.1.
3427 (whitespace-trailing-regexp): Option fix, now trailing regexp must be
3428 enclosed by \\( and \\)$. Docstring fix.
3429 (whitespace-trailing-regexp): Fun removed.
3430 (whitespace-report-list): Const initialization fix.
3431 (whitespace-color-on): Code fix.
3432
3433 2008-04-27 Andreas Schwab <schwab@suse.de>
3434
3435 * Makefile.el: Unbreak bootstrap.
3436
3437 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
3438
3439 * net/tramp.el (tramp-replace-environment-variables): New defun.
3440 (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
3441 Use it.
3442
3443 2008-04-27 Glenn Morris <rgm@gnu.org>
3444
3445 * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
3446
3447 * calculator.el (calculator-expt): Replace cl function `oddp'.
3448
3449 2008-04-27 Johan Bockgård <bojohan@gnu.org>
3450
3451 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
3452 Simplify. Collect `defun' and `autoload' entries.
3453 Avoid modifying load-history.
3454
3455 2008-04-26 Glenn Morris <rgm@gnu.org>
3456
3457 * textmodes/ispell.el (ispell-insert-word): Revert previous change.
3458
3459 * simple.el (quoted-insert, zap-to-char): Revert previous change.
3460
3461 2008-04-26 John Paul Wallington <jpw@pobox.com>
3462
3463 * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
3464 `hexl-mode-old-eldoc-documentation-function'.
3465 (hexl-mode-exit): Restore it.
3466 (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
3467
3468 * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
3469
3470 2008-04-26 Juanma Barranquero <lekktu@gmail.com>
3471
3472 * minibuffer.el (completion-pcm-word-delimiters): Add :group.
3473 (completion-pcm--all-completions): Doc fix.
3474 (completion-styles-alist, completion-all-completions):
3475 Fix typos in docstrings.
3476
3477 2008-04-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3478
3479 * whitespace.el: There is now only one variable (whitespace-style) to
3480 specify which kind of blank is visualized. Doc and docstring fix.
3481 New version 11.0.
3482 (whitespace-style): New option, replace whitespace-style-mark and
3483 whitespace-style-color.
3484 (whitespace-style-mark, whitespace-style-color): Options removed.
3485 (whitespace-hspace, whitespace-tab, whitespace-newline)
3486 (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
3487 (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
3488 (whitespace-hspace-regexp, whitespace-space-regexp)
3489 (whitespace-tab-regexp, whitespace-trailing-regexp)
3490 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
3491 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3492 (whitespace-space-after-tab-regexp, whitespace-line-column)
3493 (whitespace-display-mappings, whitespace-report): Docstring fix.
3494 (whitespace-color-value-list, whitespace-mark-value-list)
3495 (whitespace-active-color, whitespace-active-mark)
3496 (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
3497 (whitespace-style-value-list, whitespace-active-style)
3498 (whitespace-toggle-style): New vars.
3499 (whitespace-toggle-option-alist, whitespace-help-text):
3500 Var initialization and docstring fix.
3501 (whitespace-toggle-options, global-whitespace-toggle-options)
3502 (whitespace-cleanup, whitespace-cleanup-region)
3503 (whitespace-report-region, whitespace-interactive-char)
3504 (whitespace-toggle-list): Docstring and code fix.
3505 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
3506 (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
3507 (whitespace-display-char-on, whitespace-display-char-off): Code fix.
3508 (whitespace-style-face-p, whitespace-style-mark-p): New fun.
3509
3510 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3511
3512 * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
3513 (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
3514 (diff-sanity-check-hunk): Adjust code accordingly.
3515
3516 2008-04-26 Glenn Morris <rgm@gnu.org>
3517
3518 * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
3519
3520 * forms-d2.dat: Move to ../etc.
3521 * forms-d2.el (forms-file): Adapt for above change.
3522
3523 * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
3524 `translation-table-for-input'.
3525
3526 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
3527 (byte-compile-obsolete, byte-compile-variable-ref): Use it.
3528
3529 * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
3530 to punctuation now it's not needed for abbrevs.
3531 (fortran-mode-abbrev-table): Remove defvar, make use of new
3532 define-abbrev-table :regexp feature.
3533
3534 * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
3535 insert, now that translation-table-for-input is not needed.
3536
3537 2008-04-26 Johannes Weiner <hannes@saeurebad.de>
3538
3539 * emacs-lisp/pp.el (pp-display-expression): New function,
3540 extracted from pp-eval-expression.
3541 (pp-eval-expression): Use pp-display-expression.
3542 (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
3543 (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
3544 (pp-eval-last-sexp): Use pp-last-sexp.
3545
3546 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3547
3548 * abbrev.el (define-abbrev-table): Apply props even if the table
3549 exists already.
3550
3551 * minibuffer.el (completion-table-with-context): Fix `pred' for the
3552 various kinds of completion tables.
3553 (completion-emacs22-try-completion): Place cursor after the /, as was
3554 done in Emacs-22's minibuffer-complete-word.
3555 Fix bug reported by David Hansen <david.hansen@gmx.net>.
3556 (completion-emacs22-try-completion): Merge all mergable text rather
3557 than just /.
3558 (completion-pcm--delim-wild-regex): New var.
3559 (completion-pcm-word-delimiters): New custom.
3560 (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
3561 (completion-pcm--string->pattern, completion-pcm--pattern->regex)
3562 (completion-pcm--all-completions, completion-pcm-all-completions)
3563 (completion-pcm--merge-completions, completion-pcm--pattern->string)
3564 (completion-pcm-try-completion): New functions.
3565 (completion-styles-alist): Add them.
3566 (completion-styles): Add it to the default.
3567
3568 2008-04-25 Nick Roberts <nickrob@snap.net.nz>
3569
3570 * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
3571 (gdb-var-create-handler): ...until here when there are values.
3572 (gdb-post-prompt): Don't do -var-update with no watch expressions.
3573 (gdb-info-locals-handler): Don't match "struct {...}" as an array.
3574
3575 2008-04-25 Eli Zaretskii <eliz@gnu.org>
3576
3577 * ls-lisp.el (ls-lisp-format): Fix last change.
3578 (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
3579 (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
3580 (ls-lisp-filesize-f-fmt): New defvars.
3581 (ls-lisp-insert-directory): Dynamically compute format specifiers
3582 for displaying UID, GID, and file size, and store them in the
3583 above variables.
3584 (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
3585 ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
3586 instead of constant format strings.
3587 (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
3588 ls-lisp-filesize-d-fmt instead of constant format strings.
3589
3590 2008-04-24 Nick Roberts <nickrob@snap.net.nz>
3591
3592 * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
3593 value of addresses rather than (partial) string value.
3594 (gdb-frame-handler): Change regexp according to above change.
3595 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
3596 (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
3597 (gdb-assembler-mode): Disable undo in these buffers.
3598
3599 2008-04-24 Michael Albinus <michael.albinus@gmx.de>
3600
3601 * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
3602 Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
3603
3604 2008-04-24 Sam Steingold <sds@gnu.org>
3605
3606 * textmodes/remember.el (remember-diary-extract-entries): Use
3607 diary-make-entry instead of the obsolete make-diary-entry.
3608
3609 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3610
3611 * subr.el (translation-table-for-input): Mark as obsolete.
3612
3613 * isearch.el (isearch-search-string): Avoid string-bytes and aset.
3614
3615 * international/quail.el (quail-build-decode-map): Avoid string-bytes.
3616
3617 * textmodes/ispell.el (ispell-dictionary-alist-1)
3618 (ispell-dictionary-alist-2, ispell-dictionary-alist-3)
3619 (ispell-dictionary-alist-4, ispell-dictionary-alist-5)
3620 (ispell-dictionary-alist-6): Remove.
3621 (ispell-dictionary-base-alist): New var, merges the above.
3622 (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
3623 Use it.
3624 (ispell-dictionary-alist): Default to nil. Remove autoload.
3625 (ispell-local-dictionary-alist): Remove autoload.
3626
3627 * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
3628 (f90-mode-abbrev-table): Use the new :regexp feature.
3629 Merge defvar and mapc into define-abbrev-table.
3630 (f90-imenu-type-matcher): Remove unused `l'.
3631 (f90-imenu-generic-expression): Remove unused `not-ib'.
3632 (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
3633 (f90-change-keywords): Use restore-buffer-modified-p.
3634
3635 2008-04-24 Glenn Morris <rgm@gnu.org>
3636
3637 * net/goto-addr.el (goto-address-prog-mode):
3638 * progmodes/bug-reference.el (bug-reference-prog-mode):
3639 Define for compiler.
3640
3641 * minibuffer.el (x-file-dialog): Declare as function.
3642
3643 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
3644 dframe-update-speed rather than obsolete alias speedbar-update-speed.
3645
3646 * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
3647 (cal-menu-scroll-menu): Use commands rather than key macros, which don't
3648 work with easymenu. Add :keys where needed.
3649
3650 * calendar/cal-move.el (calendar-scroll-left): Handle case when
3651 event-start is nil.
3652
3653 * calendar/calendar.el (calendar-mode-map): Fix typo.
3654
3655 2008-04-24 Tom Tromey <tromey@redhat.com>
3656
3657 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
3658 Document keywords. Add :suppress.
3659 * pcvs-defs.el (cvs-mode-map): Use :suppress.
3660
3661 * net/goto-addr.el (goto-address-unfontify): New function.
3662 (goto-address-fontify): Use it. Respect goto-address-prog-mode.
3663 (goto-address-fontify-region, goto-address-mode)
3664 (goto-address-prog-mode): New functions.
3665
3666 * progmodes/bug-reference.el: New file.
3667
3668 2008-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3669
3670 * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
3671
3672 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3673
3674 * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
3675 macros within lambdas.
3676
3677 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3678
3679 * minibuffer.el (completion-try-completion): Add `point' argument.
3680 Change return value.
3681 (completion-all-completions): Add `point' argument.
3682 (minibuffer-completion-help): Pass the new `point' argument.
3683 (completion--do-completion): Pass the whole field to try-completion.
3684 (completion--try-word-completion): Rewrite, making fewer assumptions.
3685 (completion-emacs21-try-completion, completion-emacs21-all-completions)
3686 (completion-emacs22-try-completion, completion-emacs22-all-completions)
3687 (completion-basic-try-completion, completion-basic-all-completions):
3688 New functions.
3689 (completion-styles-alist): Use them.
3690
3691 2008-04-23 Agustín Martín <agustin.martin@hispalinux.es>
3692
3693 * ispell.el (ispell-set-spellchecker-params): New function to make sure
3694 right params and dictionary alists are used after spellchecker changes.
3695 (ispell-aspell-dictionary-alist, ispell-last-program-name)
3696 (ispell-initialize-spellchecker-hook): New variables and hook.
3697 (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
3698 (ispell-maybe-find-aspell-dictionaries): Remove.
3699 Calls replaced by (ispell-set-spellchecker-params) calls.
3700 (ispell-have-aspell-dictionaries): Remove.
3701 * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by
3702 ispell-set-spellchecker-params.
3703
3704 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * complete.el (PC-do-completion): Be more robust in the presence of
3707 unexpected values in minibuffer-completion-predicate.
3708
3709 * minibuffer.el (read-file-name): Don't let-bind default-directory.
3710 Only abbreviate default-filename if it's a file.
3711
3712 * minibuffer.el (read-file-name-function, read-file-name-predicate)
3713 (read-file-name-completion-ignore-case, insert-default-directory):
3714 New vars, moved from fileio.c.
3715 (read-file-name): New fun, moved from fileio.c.
3716 * cus-start.el: Remove insert-default-directory and
3717 read-file-name-completion-ignore-case.
3718
3719 2008-04-23 Magnus Henoch <mange@freemail.hu>
3720
3721 * tar-mode.el (tar-untar-buffer): If the entry has directory
3722 link type, extract it as a directory even if its file name doesn't
3723 end with a slash. Fixes extraction of NetBSD tar archives.
3724
3725 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3726
3727 * server.el (server-start): Also don't get confused by CRs since we
3728 don't quote them.
3729
3730 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
3731
3732 * progmodes/gdb-ui.el (gdb-init-buffer): New function.
3733 (gdb-set-gud-minor-mode-existing-buffers)
3734 (gdb-info-breakpoints-custom, gdb-get-location)
3735 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
3736 Previously gdb-create-define-alist wasn't always run and added to
3737 after-save-hook.
3738
3739 * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer.
3740
3741 2008-04-23 Kevin Ryde <user42@zip.com.au>
3742
3743 * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
3744 comments like unindented ones.
3745
3746 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3747
3748 * term/mac-win.el (mac-ae-open-documents): Adjust selection range
3749 parameter origins.
3750
3751 2008-04-23 Kevin Ryde <user42@zip.com.au>
3752
3753 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3754 Bind print-level to ensure output forms aren't truncated if
3755 print-level is set to eval-expression-print-level when going via
3756 eval-defun and friends, or has been otherwise fiddled with.
3757
3758 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3759
3760 * progmodes/cc-mode.el (c-basic-common-init): Don't set
3761 font-lock-extend-after-change-region-function globally.
3762
3763 2008-04-23 Juanma Barranquero <lekktu@gmail.com>
3764
3765 * speedbar.el (speedbar-use-tool-tips-flag)
3766 (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
3767 (speedbar-file-regexp, speedbar-message, speedbar-item-info)
3768 (speedbar-files-item-info, speedbar-maybe-add-localized-support)
3769 (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
3770 (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
3771 (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
3772 (speedbar-separator-face): Fix typos in docstrings.
3773 (speedbar-stealthy-function-list, speedbar-verbosity-level)
3774 (speedbar-supported-extension-expressions, speedbar-update-current-file)
3775 (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
3776 (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
3777 (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
3778 (speedbar-show-info-under-mouse, speedbar-directory-buttons)
3779 (speedbar-check-vc-this-line, speedbar-files-line-directory)
3780 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
3781 (speedbar-buffers-line-directory, speedbar-recenter-to-top)
3782 (speedbar-recenter): Doc fixes.
3783 (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
3784 declaration and remove redundant info in docstring.
3785
3786 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
3787
3788 * vc-git.el (vc-git-status-printer): Deal with directories.
3789
3790 * vc.el (vc-next-action): Look at more than the first file to
3791 determine the state.
3792
3793 2008-04-23 Glenn Morris <rgm@gnu.org>
3794
3795 * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
3796 timers. Doc fix.
3797 (dframe-update-speed): Drop support for XEmacs < 20.
3798 (dframe-frame-mode): Drop support for Emacs < 20.
3799 (dframe-set-timer-internal): Drop support for Emacs without timers.
3800 (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
3801
3802 * ediff-init.el (ediff-check-version): Drop support for very old Emacs
3803 versions. Add doc-string. Mark as obsolete.
3804
3805 * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
3806
3807 * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
3808 rather than using an Emacs version test.
3809
3810 * tree-widget.el (tree-widget-image-enable): Use display-images-p
3811 rather than an Emacs version test.
3812
3813 * calendar/cal-china.el (holiday-chinese-qingming)
3814 (holiday-chinese-winter-solstice, holiday-chinese): New functions.
3815 * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
3816 * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
3817
3818 * calendar/cal-islam.el (holiday-islamic): Doc fix.
3819
3820 * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
3821 (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
3822 Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
3823
3824 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
3825
3826 * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
3827 (gdb-previous-frame-pc-address): ...to this.
3828 (gdb-get-selected-frame): Use MI command -stack-info-frame instead
3829 of "info frame" with Gdb 6.4+.
3830 (gdb-stack-list-frames-regexp): New regexp.
3831 (gdb-frame-handler-1): Parse output of -stack-info-frame.
3832
3833 2008-04-22 David Glasser <glasser@davidglasser.net> (tiny change)
3834
3835 * tar-mode.el (tar-prefix-offset): New constant.
3836 (tar-header-block-tokenize): Support paths with long names
3837 which use the "ustar" standard.
3838
3839 2008-04-22 Mathias Dahl <mathias.dahl@gmail.com>
3840
3841 * image-dired.el (image-dired-track-original-file)
3842 (image-dired-modify-mark-on-thumb-original-file):
3843 Use `dired-goto-file' instead of `search-forward'. This solves
3844 a bug with finding files where the file name is a subset of other
3845 file names. Doc fix.
3846
3847 2008-04-22 Juri Linkov <juri@jurta.org>
3848
3849 * menu-bar.el (buffers-menu-max-size): Move its definition down to
3850 the "Buffers Menu" section. Change group name `mouse' to `menu'.
3851 (yank-menu-length): Change group name `mouse' to `menu'.
3852 (buffers-menu-buffer-name-length): New user option.
3853 (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
3854 instead of the hard-coded number 27.
3855
3856 2008-04-22 Juri Linkov <juri@jurta.org>
3857
3858 * isearch.el (eval-when-compile): Require `help-macro'.
3859 (isearch-help-for-help-internal): Isearch specific Help screen
3860 created by `make-help-screen'.
3861 (isearch-help-map): New variable that binds "b", "k", "m" to
3862 isearch-specific commands, and binds other keys to
3863 isearch-other-control-char, thus allowing other Help keys to
3864 exit isearch mode and execute their global definitions.
3865 (isearch-help-for-help, isearch-describe-bindings)
3866 (isearch-describe-key, isearch-describe-mode): New commands.
3867 (isearch-mode-help): Define alias to isearch-describe-mode
3868 and remove its old function definition.
3869 (isearch-mode-map): Bind "\C-h" to isearch-help-map.
3870 Remove old comments because this issue is settled now.
3871 (isearch-forward): Describe three new Help commands in the docstring.
3872 (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
3873 leave the single sentence at the first line of the docstring,
3874 and prepend the word "function" before `isearch-forward'
3875 to make the Help link to the function instead of variable.
3876
3877 2008-04-22 Juri Linkov <juri@jurta.org>
3878
3879 * isearch.el (isearch-success-function): New variable with default
3880 to `isearch-success-function-default'.
3881 (isearch-search): Call a function from `isearch-success-function'
3882 instead of calling the hard-coded `isearch-range-invisible'.
3883 (isearch-success-function-default): New function that calls
3884 `isearch-range-invisible' and inverts its return value.
3885
3886 * info.el (Info-search): In two similar places that skip
3887 undesired search matches move code to Info-search-success-function,
3888 and call `isearch-success-function' instead.
3889 (Info-search-success-function): New function copied from code
3890 in Info-search. Replace isearch-range-invisible with
3891 text-property-not-all that checks for 'invisible and 'display
3892 properties to skip partially invisible matches (whose display
3893 properties were set by Info-fontify-node).
3894 (Info-mode): Set buffer-local isearch-success-function
3895 to Info-search-success-function.
3896
3897 2008-04-22 Juri Linkov <juri@jurta.org>
3898
3899 * minibuffer.el (internal-complete-buffer-except): New function.
3900
3901 * files.el (read-buffer-to-switch): New function.
3902 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
3903 Change interactive spec to call read-buffer-to-switch instead of
3904 using the letter "B".
3905
3906 * simple.el (minibuffer-default-add-shell-commands): New function.
3907 Use declare-function for mailcap-file-default-commands from "mailcap".
3908 (shell-command): Set local minibuffer-default-add-function to
3909 minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
3910 before calling read-shell-command. Set 4th arg default-value of
3911 read-shell-command to relative buffer-file-name in file buffers.
3912
3913 * dired-aux.el (dired-read-shell-command-default): Move it to
3914 gnus/mailcap.el and change its name to more general name
3915 mailcap-file-default-commands.
3916 (minibuffer-default-add-dired-shell-commands): New function.
3917 Use declare-function for mailcap-file-default-commands from "mailcap".
3918 (dired-read-shell-command): Set local minibuffer-default-add-function
3919 to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
3920 before calling read-shell-command. Remove dired-read-shell-command-default
3921 from the default value arg because default values are not set in
3922 minibuffer-default-add-dired-shell-commands. Doc fix.
3923
3924 * dired-x.el (dired-smart-shell-command): Sync arguments and
3925 interactive spec with changes in `shell-command'.
3926 Use dired-get-filename to get the dired file name at point
3927 as the default value in dired mode.
3928
3929 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
3930
3931 * info.el (Info-complete-menu-item): Add missing parenthesis.
3932
3933 2008-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3934
3935 * info.el (Info-complete-menu-item): Save point.
3936
3937 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
3938
3939 * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
3940
3941 2008-04-22 Andreas Schwab <schwab@suse.de>
3942
3943 * Makefile.in (emacs-deps): Define.
3944 Use it instead of $(lisp)/subdirs.el.
3945
3946 2008-04-22 Dan Nicolaescu <dann@ics.uci.edu>
3947
3948 * vc.el (vc-next-action): Do not consider directories when
3949 checking for state compatibility.
3950 (vc-transfer-file): Use when not if.
3951 (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
3952 (vc-dir-mark-file): Use them.
3953 (vc-deduce-fileset): Also return the backend.
3954 (vc-diff-internal): Take as argument the value returned by
3955 vc-deduce-fileset instead of just the fileset.
3956 (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
3957 (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
3958 (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
3959
3960 2008-04-22 Tassilo Horn <tassilo@member.fsf.org>
3961
3962 * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
3963 set-window-vscroll but image-scroll-down. Fixes a bug where a
3964 command following SPC scrolled up again.
3965
3966 2008-04-22 Nick Roberts <nickrob@snap.net.nz>
3967
3968 * progmodes/gdb-ui.el (gdb-locals-header): New variable.
3969 (gdb-locals-mode, gdb-registers-mode): Use it for header line.
3970 (gud-watch): Add "$" prefix when in registers buffer.
3971
3972 2008-04-22 Glenn Morris <rgm@gnu.org>
3973
3974 * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
3975
3976 * whitespace.el (whitespace-display-table)
3977 (whitespace-display-table-was-local): Move definitions before use.
3978
3979 * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
3980 (copyright-limit): Respect copyright-at-end-flag.
3981 (copyright-re-search, copyright-start-point)
3982 (copyright-offset-too-large-p): New functions.
3983 (copyright-update-year): Use copyright-re-search.
3984 (copyright-update, copyright-fix-years): Use copyright-start-point,
3985 and copyright-re-search.
3986 (copyright): Use copyright-offset-too-large-p.
3987 * add-log.el (change-log-mode): Set copyright-at-end-flag.
3988
3989 * add-log.el (top-level): Require 'cl when compiling.
3990
3991 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3992
3993 * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
3994 Treat minibuffer-completion-predicate as a predicate.
3995
3996 * minibuffer.el (completion--file-name-table): Accept both the old
3997 `dir' arg or the new `pred' arg.
3998
3999 * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
4000 `predicate' argument to pass non-predicate data.
4001 (ffap-read-url-internal, ffap-read-file-or-url-internal):
4002 Use second arg as proper predicate.
4003
4004 * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
4005 (vc-bzr-revision-completion-table): Use completion-table-with-context
4006 instead.
4007
4008 * simple.el (choose-completion-string): Use minibuffer-completion-table.
4009
4010 2008-04-21 Chong Yidong <cyd@stupidchicken.com>
4011
4012 * term.el (term-emulate-terminal): Perform redisplay after the
4013 process filter has finished running.
4014
4015 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
4016
4017 * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
4018
4019 * minibuffer.el (completion-try-completion): Change magic symbol
4020 property name. Rename from minibuffer-try-completion.
4021 (completion-all-completions): Rename from minibuffer-all-completions.
4022 Remove hide-spaces argument.
4023 (completion--do-completion): Rename from minibuffer--do-completion.
4024 (minibuffer-complete-and-exit): Call just try-completion rather than
4025 completion-try-completion to fix up the case.
4026 (completion--try-word-completion): Try to add space or hyphen before
4027 making `string' a prefix of `completion'.
4028 (completion--insert-strings): Rename from minibuffer--insert-strings.
4029
4030 2008-04-22 Naohiro Aota <nao.aota@gmail.com> (tiny change)
4031
4032 * net/tls.el (tls-program): Add -ign_eof argument to call the
4033 openssl commands.
4034 (tls-checktrust): Ditto.
4035
4036 2008-04-21 Dan Nicolaescu <dann@ics.uci.edu>
4037
4038 * vc-cvs.el (vc-cvs-status-extra-headers): New function.
4039
4040 * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
4041 (vc-check-master-templates, vc-file-not-found-hook)
4042 (vc-kill-buffer-hook):
4043 * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
4044 (vc-find-position-by-context, vc-buffer-context)
4045 (vc-restore-buffer-context, vc-responsible-backend)
4046 (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
4047 (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
4048 (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
4049 (vc-version-diff, vc-diff, vc-insert-headers)
4050 (vc-dired-buffers-for-dir, vc-dired-resynch-file)
4051 (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
4052 (vc-revert, vc-rollback, vc-version-backup-file)
4053 (vc-rename-master, vc-delete-file, vc-rename-file)
4054 (vc-branch-part, vc-default-retrieve-snapshot)
4055 (vc-annotate-display-autoscale, vc-annotate-display-select)
4056 (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
4057 (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
4058 (vc-dir-update): Handle directories.
4059 (vc-default-status-printer): Simplify.
4060
4061 * progmodes/asm-mode.el (asm-mode-map):
4062 * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
4063
4064 * progmodes/m4-mode.el (m4-mode-map): Add menu.
4065
4066 2008-04-21 Kenichi Handa <handa@m17n.org>
4067
4068 * select.el (xselect-convert-to-string): Send a C_STRING only if
4069 the polymorphic target TEXT is requested.
4070
4071 2008-04-21 Juanma Barranquero <lekktu@gmail.com>
4072
4073 * minibuffer.el (completion-setup-hook, display-completion-list)
4074 (completion--file-name-table): Fix typos in docstrings.
4075 (completion-table-dynamic): Fix typo, and reflow docstring.
4076
4077 2008-04-20 Andreas Schwab <schwab@suse.de>
4078
4079 * server.el (server-switch-buffer): Also consider clients in the
4080 selected frame.
4081
4082 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
4083
4084 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
4085 Select window clicked on first.
4086 (gdb): Display thread number in mode-line.
4087 (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
4088 (gdb-breakpoints-header): New variable.
4089 (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
4090
4091 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4092
4093 * vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
4094 (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
4095 (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
4096 (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
4097 (vc-sccs-print-log): Use it.
4098
4099 * vc-hooks.el (vc-path): Remove SCCS-specific hack.
4100
4101 * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
4102 * progmodes/scheme.el (scheme-mode-variables): Don't use it.
4103
4104 * tooltip.el (tooltip-previous-message): New var.
4105 (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
4106 the C code (avoid overwriting a minibuffer, restore previous echo
4107 message, ...).
4108 (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
4109 Simplify.
4110
4111 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
4112
4113 * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
4114 (gdb-init-1): Initialise it.
4115 (gdb-annotation-rules): New entry for "new-thread".
4116 (gdb-thread-identification): New function to customize
4117 mode-line-buffer-identification.
4118 (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
4119 (gdb-assembler-mode): Use it.
4120 (gdb-threads-mode): Force "info threads" onto queue.
4121
4122 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4123
4124 * files.el (locate-file-completion-table): Rename from
4125 locate-file-completion and make it use `pred' in the normal way.
4126 (locate-file-completion): New compatibility wrapper.
4127 (load-library): Use locate-file-completion-table.
4128 * finder.el (finder-commentary):
4129 * subr.el (locate-library):
4130 * emacs-lisp/find-func.el (find-library): Likewise.
4131 * info.el: Use with-current-buffer and inhibit-read-only.
4132 (Info-read-node-name-2): Change to use `predicate' in the normal way.
4133 (Info-read-node-name-1): Adjust uses accordingly.
4134
4135 * minibuffer.el (completion-table-with-context): Add support for `pred'.
4136 (completion-table-with-terminator): Don't use complete-with-action
4137 since we have to distinguish all three cases anyway.
4138 (completion-table-with-predicate): New function.
4139 (dynamic-completion-table): Add obsolete alias.
4140
4141 * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
4142
4143 2008-04-18 Sam Steingold <sds@gnu.org>
4144
4145 * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
4146 Use quit-window instead of bury-buffer.
4147
4148 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * minibuffer.el (completion-table-with-terminator): Fix last fix.
4151
4152 2008-04-18 Andreas Schwab <schwab@suse.de>
4153
4154 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
4155 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
4156 Depend on $(lisp)/subdirs.el.
4157
4158 2008-04-18 Juanma Barranquero <lekktu@gmail.com>
4159
4160 * descr-text.el (describe-char-after):
4161 Use `define-obsolete-function-alias'.
4162
4163 * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
4164
4165 * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
4166
4167 * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
4168 Remove redundant obsolescence info in docstring.
4169
4170 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
4171 (vc-header-alist): Add WHEN to obsolescence declaration.
4172 (vc-state): Fix typo in docstring.
4173
4174 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
4175 Use `define-obsolete-variable-alias'.
4176
4177 * emulation/tpu-edt.el (tpu-have-ispell):
4178 * international/codepage.el (codepage-setup):
4179 Fix typo in obsolescence declaration.
4180
4181 * international/mule.el (char-coding-system-table):
4182 Remove redundant obsolescence info in docstring.
4183 (charset-list, generic-char-p, set-char-table-default):
4184 Fix typos in obsolescence decarations.
4185
4186 * international/mule-diag.el (non-iso-charset-alist):
4187 Fix typo in obsolescence declaration.
4188 (decode-codepage-char): Remove redundant obsolescence info in docstring.
4189
4190 * font-core.el (font-lock-defaults-alist):
4191 * font-lock.el (font-lock-reference-face):
4192 * frame.el (screen-height, screen-width, set-screen-width)
4193 (set-screen-height):
4194 * hilit-chg.el (highlight-changes-initial-state):
4195 * isearch.el (isearch-return-char):
4196 * log-edit.el (cvs-commit-buffer-require-final-newline)
4197 (cvs-changelog-full-paragraphs):
4198 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
4199 (mouse-popup-menubar-stuff):
4200 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
4201 (mouse-wheel-click-button):
4202 * outline.el (outline-visible):
4203 * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
4204 * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
4205 * emacs-lisp/lisp-mode.el (lisp-comment-indent):
4206 * progmodes/compile.el (compile-internal):
4207 Add WHEN to obsolescence declarations.
4208
4209 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
4212 is not better anyway.
4213
4214 2008-04-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4215
4216 * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
4217 properly.
4218
4219 2008-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4220
4221 * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
4222 (python-use-skeletons): Remove, unused.
4223 (python-skeletons): Remove. Use the abbrev table instead.
4224 (python-mode-abbrev-table): Fix regexp;
4225 add enable-function and case-fixed.
4226 (def-python-skeleton): Simplify.
4227 (python-expand-template): Use the abbrev-table and abbrev-insert.
4228 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
4229 Remove.
4230 (python-mode): Don't set pre-abbrev-expand-hook.
4231
4232 * skeleton.el: Set coding-tag.
4233
4234 * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
4235 (expand-abbrev): Use it.
4236 (abbrev-table-menu): New function.
4237
4238 * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
4239
4240 * minibuffer.el (completion-table-with-terminator): Fix paren typo.
4241
4242 2008-04-17 Sam Steingold <sds@gnu.org>
4243
4244 * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
4245 idiosyncratic bury-buffer/delete-window logic.
4246
4247 2008-04-17 Juanma Barranquero <lekktu@gmail.com>
4248
4249 * emacs-lisp/crm.el (crm-completion-help, crm-complete)
4250 (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
4251
4252 2008-04-17 Kenichi Handa <handa@m17n.org>
4253
4254 * international/characters.el: Don't make the width of U+00AD to 0.
4255
4256 2008-04-17 Nick Roberts <nickrob@snap.net.nz>
4257
4258 * progmodes/gdb-ui.el (gdb-stack-update): New variable.
4259 (gdb, gdb-starting, gdb-frames-mode): Use it.
4260 (gdb-invalidate-frames): Advise to call "info stack" only if
4261 execution has occurred.
4262 (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
4263 selected frame if no execution has occurred.
4264 (gdb-frames-force-update): New interactive function.
4265 (gdb-frames-mode-map): Bind it to "F".
4266
4267 2008-04-17 Michael Olson <mwolson@gnu.org>
4268
4269 * textmodes/remember.el (remember-version): Release Remember 2.0.
4270
4271 2008-04-16 Yoni Rabkin <yoni@rabkins.net>
4272
4273 * textmodes/artist.el:
4274 * progmodes/vhdl-mode.el:
4275 * progmodes/verilog-mode.el:
4276 * progmodes/vera-mode.el:
4277 * progmodes/simula.el:
4278 * progmodes/ps-mode.el:
4279 * progmodes/cmacexp.el:
4280 * obsolete/hilit19.el:
4281 * emulation/viper.el:
4282 * ediff.el: Cleanup the bug-report email addresses and make sure the
4283 maintainer is still willing to handle bug reports.
4284
4285 2008-04-16 Dan Nicolaescu <dann@ics.uci.edu>
4286
4287 * vc.el (vc-dir-kill-query): Fix thinko.
4288
4289 2008-04-16 Glenn Morris <rgm@gnu.org>
4290
4291 * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
4292 by diary-sexp-entry.
4293
4294 2008-04-16 Markus Triska <markus.triska@gmx.at>
4295
4296 * proced.el (proced-command-alist): Add support for darwin.
4297
4298 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4299
4300 * proced.el (proced-mode): Redefine as just the major-mode.
4301 (proced): Separate it from proced-mode.
4302
4303 * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
4304
4305 2008-04-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4306
4307 * whitespace.el: Honor the `indent-tabs-mode' setting from user.
4308 Suggested by Stephen Deasey <sdeasey@gmail.com>. Honor also the
4309 `tab-width' setting from user. New version 10.0. Doc and docstring
4310 fix.
4311 (whitespace-style, whitespace-chars): Remove options.
4312 (whitespace-style-mark): New option, replace whitespace-style deleted
4313 option. Fix docstring.
4314 (whitespace-style-color): New option, replace whitespace-chars deleted
4315 option. Fix docstring.
4316 (whitespace-space, whitespace-hspace, whitespace-tab)
4317 (whitespace-newline, whitespace-trailing, whitespace-line)
4318 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
4319 (whitespace-space-after-tab, whitespace-hspace-regexp)
4320 (whitespace-space-regexp, whitespace-tab-regexp)
4321 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
4322 (whitespace-empty-at-eob-regexp, whitespace-line-column)
4323 (whitespace-toggle-option-alist): Fix docstring.
4324 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
4325 (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
4326 docstring and initialization.
4327 (global-whitespace-mode): Autoloaded global minor mode.
4328 (whitespace-chars-value-list, whitespace-style-value-list)
4329 (whitespace-active-chars, whitespace-active-style)
4330 (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
4331 (whitespace-color-value-list): New var, replace
4332 whitespace-chars-value-list removed var.
4333 (whitespace-mark-value-list): New var, replace
4334 whitespace-style-value-list removed var.
4335 (whitespace-active-color): New var, replace whitespace-active-chars
4336 removed var.
4337 (whitespace-active-mark): New var, replace whitespace-active-style
4338 removed var.
4339 (whitespace-toggle-color): New var, replace whitespace-toggle-chars
4340 removed var.
4341 (whitespace-toggle-mark): New var, replace whitespace-toggle-style
4342 removed var.
4343 (whitespace-toggle-option-alist, whitespace-report-list)
4344 (whitespace-report-text, whitespace-help-text): Fix initialization.
4345 (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
4346 (whitespace-toggle-options, global-whitespace-toggle-options)
4347 (whitespace-cleanup-region, whitespace-report-region)
4348 (whitespace-interactive-char): Fix docstring and code.
4349 (whitespace-cleanup, whitespace-report): Fix docstring.
4350 (whitespace-replace-spaces-by-tabs): Remove fun.
4351 (whitespace-replace-action): New fun, replace
4352 whitespace-replace-spaces-by-tabs removed fun.
4353 (whitespace-regexp, whitespace-indentation-regexp)
4354 (whitespace-space-after-tab-regexp, whitespace-insert-value)
4355 (whitespace-kill-buffer): New funs.
4356 (whitespace-insert-option-mark, whitespace-help-on)
4357 (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
4358 (whitespace-color-on, whitespace-color-off)
4359 (whitespace-display-char-on): Fix code.
4360
4361 2008-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4362
4363 * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
4364 (mouse-throw-magnifier-with-mouse-movement): Remove.
4365 (mouse-throw-magnifier-base): New const.
4366 (mouse-drag-scroll-delta): New fun.
4367 (mouse-drag-throw): Use it.
4368
4369 2008-04-15 Juanma Barranquero <lekktu@gmail.com>
4370
4371 * international/uni-bidi.el, international/uni-category.el:
4372 * international/uni-combining.el, international/uni-comment.el:
4373 * international/uni-decimal.el, international/uni-decomposition.el:
4374 * international/uni-digit.el, international/uni-lowercase.el:
4375 * international/uni-mirrored.el, international/uni-name.el:
4376 * international/uni-numeric.el, international/uni-old-name.el:
4377 * international/uni-titlecase.el, international/uni-uppercase.el:
4378 * international/charprop.el: Regenerate.
4379
4380 2008-04-15 Dan Nicolaescu <dann@ics.uci.edu>
4381
4382 * vc.el (vc-status-fileinfo): Add new member directoryp.
4383 (vc-default-status-printer): Print directories.
4384 (vc-status-update): Sort files before subdirectories.
4385
4386 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
4387 Add alternative implementation based on "cvs update".
4388
4389 2008-04-15 Tassilo Horn <tassilo@member.fsf.org>
4390
4391 * doc-view.el: Changed requirements section to tell that only one
4392 of dvipdf or dvipdfm is needed.
4393 (doc-view-already-converted-p): Fix bug that forced reconversion
4394 if doc was already converted.
4395
4396 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4397
4398 * minibuffer.el (minibuffer-message):
4399 Make sure we can put-text-property.
4400
4401 * emacs-lisp/crm.el: Complete rewrite.
4402
4403 * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
4404 (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
4405 case of an error in display-completion-list.
4406
4407 * filecache.el (file-cache-completions-keymap): Move init from
4408 file-cache-completion-setup-function into declaration.
4409 (file-cache-minibuffer-complete): Simplify.
4410 (file-cache-completion-setup-function): Use standard-output,
4411 preserve current-buffer.
4412
4413 * vc.el (vc-status-update): Fix typo.
4414 (vc-status-update): Set needs-update.
4415 (vc-status-refresh): η-reduce.
4416
4417 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
4418
4419 * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
4420 to image-eol.
4421
4422 2008-04-14 Alexandre Julliard <julliard@winehq.org>
4423
4424 * vc.el (vc-status-update): Undo the previous revert.
4425
4426 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4427
4428 * minibuffer.el (completion-table-with-terminator): Those completions
4429 are never valid w.r.t test-completion.
4430 (completion--file-name-table):
4431 Check completion-all-completions-with-base-size.
4432
4433 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
4434
4435 * doc-view.el (doc-view-dvipdf-program): New variable.
4436 (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
4437 (doc-view-mode-p): Check for doc-view-dvipdf-program as
4438 alternative for doc-view-dvipdfm-program.
4439 (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
4440
4441 * doc-view.el (doc-view-start-process): Don't set
4442 default-directory to "~/" if the current value is valid.
4443 This broke PS files that run other files in the same directory.
4444
4445 2008-04-14 Dan Nicolaescu <dann@ics.uci.edu>
4446
4447 * vc.el (vc-status-kill-query): New function.
4448 (vc-status-mode): Add it to kill-buffer-query-functions.
4449 (vc-status-show-fileentry): New function.
4450 (vc-status-menu-map): Bind it. Bind vc-next-action.
4451
4452 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4453
4454 * minibuffer.el (minibuffer-message): Put cursor at the right place.
4455
4456 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4457
4458 * proced.el (proced-send-signal): Fix error recognition.
4459
4460 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4461
4462 * proced.el (proced-command-alist): Remove sort column.
4463 (proced-command, proced-procname-column):
4464 Use make-variable-buffer-local.
4465 (proced-signal-function): Rename from proced-kill-program.
4466 Allow for elisp symbols and string values representing system calls.
4467 (proced-marker-regexp, proced-success-message): New functions.
4468 (proced): Use defalias. Add autoload cookie.
4469 (proced-unmark-backward, proced-toggle-marks)
4470 (proced-hide-processes): New commands.
4471 (proced-do-mark): Simplify code.
4472 (proced-insert-mark): Use optional arg BACKWARD instead of line number.
4473 (proced-update): Remove sorting.
4474 (proced-send-signal): Display number of processes to operate on.
4475 Allow for system calls or elisp functions to send signals.
4476 Check if signal was sent successfully.
4477
4478 2008-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4479
4480 * minibuffer.el (completion-all-completion-with-base-size): New var.
4481 (completion--some): New function.
4482 (completion-table-with-context, completion--file-name-table):
4483 Return the base-size if requested.
4484 (completion-table-in-turn): Generalize to multiple arguments.
4485 (complete-in-turn): Compatibility alias.
4486 (completion-styles-alist): New var.
4487 (completion-styles): New customization.
4488 (minibuffer-try-completion, minibuffer-all-completions):
4489 New functions.
4490 (minibuffer--do-completion, minibuffer-complete-and-exit)
4491 (minibuffer-try-word-completion): Use them.
4492 (display-completion-list, minibuffer-completion-help): Use them.
4493 Handle all-completions's new base-size info to set completion-base-size.
4494 * info.el (Info-read-node-name-1): Use completion-table-with-context,
4495 completion-table-with-terminator and complete-with-action.
4496 Remove the now obsolete completion-base-size-function property.
4497 * simple.el (completion-list-mode-map): Move init into declaration.
4498 (completion-list-mode): Use define-derived-mode.
4499 (completion-setup-function): Use any completion-base-size that may
4500 have been set before. Remove handling of completion-base-size-function.
4501 * loadup.el: Move abbrev.el up earlier.
4502
4503 2008-04-13 Alexandre Julliard <julliard@winehq.org>
4504
4505 * vc-git.el (vc-git-after-dir-status-stage)
4506 (vc-git-dir-status-goto-stage): New functions.
4507 (vc-git-after-dir-status-stage1)
4508 (vc-git-after-dir-status-stage1-empty-db)
4509 (vc-git-after-dir-status-stage2): Remove, functionality moved
4510 into the new generic stage functions.
4511 (vc-git-dir-status-files): New function.
4512
4513 * vc.el (vc-status-update): Revert an incorrect rewrite.
4514 Add some comments.
4515 (vc-status-refresh-files): New function.
4516 (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
4517 state of up-to-date files.
4518 (vc-default-dir-status-files): New function.
4519
4520 2008-04-13 Juanma Barranquero <lekktu@gmail.com>
4521
4522 * minibuffer.el (completion--embedded-envvar-table)
4523 (read-file-name-internal): Fix typos in 2008-04-11 change.
4524
4525 * faces.el (read-face-name): Use `completion-table-in-turn',
4526 not `complete-in-turn'.
4527
4528 2008-04-13 Andreas Schwab <schwab@suse.de>
4529
4530 * progmodes/etags.el: Require 'cl when compiling.
4531
4532 2008-04-12 Nick Roberts <nickrob@snap.net.nz>
4533
4534 * progmodes/gud.el (gud-menu-map): Expand tooltip.
4535
4536 * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
4537 (menu): Add/expand menu tooltips.
4538
4539 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
4540
4541 * progmodes/sh-script.el (sh-show-indent): Fix typo.
4542 (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
4543
4544 * vc-cvs.el (vc-cvs-registered): Allow removed files to be
4545 considered registered.
4546
4547 2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
4548
4549 * emacs-lisp/copyright.el (copyright-update-directory): New command.
4550
4551 * ediff-wind.el (ediff-split-window-function)
4552 (ediff-merge-split-window-function): Improve custom type.
4553
4554 2008-04-12 Eli Zaretskii <eliz@gnu.org>
4555
4556 * loadup.el ("minibuffer"): Move after "faces".
4557
4558 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4559
4560 * progmodes/hideif.el (hif-factor): Handle unary minus.
4561
4562 2008-04-12 Glenn Morris <rgm@gnu.org>
4563
4564 * calendar/cal-china.el (chinese-calendar-time-zone):
4565 Mark obsolete name as risky too.
4566
4567 * calendar/calendar.el (calendar-faces): New custom group.
4568 (calendar-today, diary, holiday): Doc fix.
4569 Move to calendar-faces group.
4570 * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
4571 (diary-button): Doc fix. Move to calendar-faces group.
4572
4573 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
4574 * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
4575 * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
4576 * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
4577 * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
4578 Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
4579 not in dumped files before the associated defcustom.
4580
4581 2008-04-11 Johan Bockgård <bojohan@gnu.org>
4582
4583 * minibuffer.el (lazy-completion-table): Fix debug spec.
4584
4585 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4586
4587 * minibuffer.el (complete-with-action, lazy-completion-table):
4588 Move from subr.el.
4589 (apply-partially, completion-table-dynamic)
4590 (completion-table-with-context, completion-table-with-terminator)
4591 (completion-table-in-turn): New funs.
4592 (completion--make-envvar-table, completion--embedded-envvar-table):
4593 New funs.
4594 (read-file-name-internal): Use them.
4595 (completion-setup-hook): Move from simple.el.
4596 * subr.el (complete-with-action, lazy-completion-table):
4597 * simple.el (completion-setup-hook): Move to minibuffer.el.
4598
4599 2008-04-11 Glenn Morris <rgm@gnu.org>
4600
4601 * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
4602
4603 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4604
4605 * progmodes/python.el (python-mode): Don't mess with hippie-expand.
4606
4607 * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
4608
4609 * textmodes/fill.el (fill-forward-paragraph-function): New var.
4610 (fill-forward-paragraph): New fun.
4611 (fill-paragraph, fill-region): Use it.
4612
4613 * vc.el: Change `dir-status' to not take (and pass) status-buffer.
4614 (vc-status-create-fileinfo): Make `extra' optional.
4615 (vc-status-busy): New fun.
4616 (vc-status-menu-map): Use it.
4617 (vc-status-crt-marked): Remove.
4618 (vc-status-update): Rename from vc-status-add-entries.
4619 Add argument so as to prevent addition of entries. Rewrite.
4620 (vc-update-vc-status-buffer): Remove.
4621 (vc-status-refresh): Don't remove old entries, set them to
4622 up-to-date instead. Also do it after the update is complete.
4623 (vc-status-marked-files): η-reduce.
4624
4625 * dired.el (dired-read-dir-and-switches): Use read-directory-name even
4626 for non-dialogs.
4627
4628 * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
4629
4630 * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
4631
4632 2008-04-11 Jan Djärv <jan.h.d@swipnet.se>
4633
4634 * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
4635 to t and don't truncate msg.
4636
4637 2008-04-11 Glenn Morris <rgm@gnu.org>
4638
4639 * calendar/calendar.el (diary, holidays):
4640 Move custom groups to other files.
4641 (holiday-general-holidays, holiday-oriental-holidays)
4642 (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
4643 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
4644 (holiday-hebrew-holidays, holiday-christian-holidays)
4645 (holiday-islamic-holidays, holiday-bahai-holidays)
4646 (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
4647 * calendar/diary-lib.el: Move custom group here from calendar.el.
4648 * calendar/holidays-lib.el: Move custom group and variables here
4649 from calendar.el.
4650
4651 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
4652
4653 * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
4654 Fix custom group.
4655 (calendar-current-time-zone-cache): Autoload riskiness.
4656
4657 * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
4658
4659 2008-04-11 Chong Yidong <cyd@stupidchicken.com>
4660
4661 * woman.el (woman2-TH): Use string-equal instead of string-match.
4662
4663 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4664
4665 * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
4666 (smerge-resolve): Merge the "2-way refinement" case with one half of
4667 the "mere whitespace" resolution.
4668
4669 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
4670
4671 * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
4672
4673 2008-04-10 Juanma Barranquero <lekktu@gmail.com>
4674
4675 * subr.el (assoc-ignore-case, assoc-ignore-representation):
4676 Add WHEN to obsolescence declaration.
4677
4678 * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
4679
4680 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
4681
4682 * vc-hooks.el (vc-state): Add new state `conflict'.
4683 (vc-after-save): Use when not if.
4684 (vc-default-mode-line-string): Deal with the conflict state.
4685 (vc-prefix-map, vc-menu-map): Bind vc-status instead of vc-directory.
4686
4687 * vc.el (vc-editable-p, vc-default-status-printer)
4688 (vc-next-action): Deal with the conflict state.
4689 (vc-mark-resolved): New function.
4690 (vc-status-mode): Fix mode name.
4691 (vc-default-comment-history): Use when not if.
4692 (Todo): Add new entries, remove old ones.
4693
4694 * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
4695 (vc-cvs-parse-status, vc-cvs-after-dir-status):
4696 * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
4697 Detect the conflict state.
4698
4699 * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
4700
4701 2008-04-10 Glenn Morris <rgm@gnu.org>
4702
4703 * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
4704 Respect truncate-partial-width-windows in non-full windows,
4705 with regards to :toggle and :enable state.
4706
4707 * simple.el (toggle-truncate-lines): Doc fix.
4708
4709 * Makefile.in (MH_E_DIR): New variable.
4710 (MH_E_SRC): Restore variable removed 2008-03-13.
4711 (mh-loaddefs.el): Depend on $MH_E_SRC.
4712 (CAL_DIR, CAL_SRC): New variables.
4713 (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
4714 Depend on CAL_SRC.
4715
4716 * calendar/calendar.el (calendar, diary): Add :prefix.
4717 (holidays): Change :prefix.
4718 (calendar-today, holiday, calendar-holiday-marker)
4719 (european-calendar-style): Change custom groups.
4720
4721 * calendar/calendar.el (diary-hook, diary-display-hook):
4722 Move to diary-lib.el.
4723 * calendar/diary-lib.el (diary-hook, diary-display-hook):
4724 Move here from calendar.el.
4725 * calendar/appt.el: Require diary-lib rather than calendar.
4726 * calendar/cal-x.el (diary-display-hook): Declare for compiler.
4727
4728 * calendar/appt.el (appt): Add :prefix.
4729
4730 * calendar/diary-lib.el (diary-hook): Doc fix.
4731 (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
4732
4733 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4734
4735 * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
4736 New functions.
4737
4738 * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
4739 the arg to recursive calls.
4740
4741 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
4742
4743 * minibuffer.el (completion-auto-help): Fix typo.
4744
4745 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4746
4747 * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
4748
4749 2008-04-09 Michael Albinus <michael.albinus@gmx.de>
4750
4751 * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
4752 (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
4753
4754 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4755
4756 * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
4757
4758 * minibuffer.el (minibuffer): Move group from cus-edit.el.
4759 (completion-auto-help): Move from C code.
4760 (minibuffer--maybe-completion-help): Remove.
4761 (minibuffer--bitset): New function.
4762 (minibuffer--do-completion): Rename from minibuffer-do-completion.
4763 Renumber a bit. Really complete on string *before* point.
4764 Add argument used for word-completion.
4765 Join trailing / in completion with following text, as done in
4766 minibuffer-complete-word.
4767 Handle new value `lazy' for completion-auto-help.
4768 (minibuffer-try-word-completion): New function extracted from
4769 minibuffer-complete-word.
4770 (minibuffer-complete-word): Use minibuffer--do-completion.
4771 (minibuffer--insert-strings): Rename from
4772 minibuffer-complete-insert-strings.
4773 (exit-minibuffer): Fix typo.
4774 * cus-edit.el (minibuffer): Move group to minibuffer.el.
4775 * cus-start.el: Remove completion-auto-help.
4776
4777 2008-04-09 Alexandre Julliard <julliard@winehq.org>
4778
4779 * vc.el (vc-status-add-entries): New function.
4780 (vc-status-add-entry): Remove.
4781 (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
4782 Use vc-status-add-entries.
4783
4784 * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
4785 order.
4786
4787 2008-04-09 Jason Rumney <jasonr@gnu.org>
4788
4789 * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
4790 ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
4791 (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
4792 (AUTOGENEL): New variable.
4793 (distclean, maintainer-clean): New targets.
4794
4795 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
4796
4797 * emacs-lisp/regexp-opt.el (regexp-opt):
4798 Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
4799
4800 2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
4801
4802 * nxml/nxml-mode.el (nxml-cleanup): New function.
4803 (nxml-mode): Add it to change-major-mode-hook.
4804
4805 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
4806
4807 * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
4808
4809 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
4810
4811 * calc/.cvsignore: New file.
4812
4813 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
4814
4815 * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
4816
4817 * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
4818 show-help-function when turning tooltip off.
4819 (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
4820 (tooltip-trunc-str, tooltip-show-help-non-mode): New.
4821
4822 2008-04-09 Alan Mackenzie <acm@muc.de>
4823
4824 * font-lock.el (font-lock-extend-after-change-region-function):
4825 Make it buffer local.
4826
4827 2008-04-09 Glenn Morris <rgm@gnu.org>
4828
4829 * calendar/calendar.el (diary-file, european-calendar-style):
4830 Remove autoload cookies.
4831
4832 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
4833
4834 * outline.el (outline-mode-menu-bar-map):
4835 * log-view.el (log-view-mode-menu):
4836 * log-edit.el (log-edit-menu): Add :help.
4837
4838 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
4839
4840 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4841 Use substring-no-properties for correct handling of unibyte strings.
4842
4843 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4844
4845 * add-log.el (change-log-next-buffer): Handle the case where version<
4846 signals an error.
4847
4848 * mouse.el (mouse-menu-major-mode-map): New fun extracted from
4849 mouse-major-mode-menu.
4850 (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
4851 (mouse-major-mode-menu, mouse-popup-menubar)
4852 (mouse-popup-menubar-stuff): Use them.
4853 (C-down-mouse-3): Bind to a dynamic map rather than to
4854 mouse-popup-menubar-stuff.
4855
4856 * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
4857 to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
4858
4859 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
4860
4861 * vc-svn.el (vc-svn-modify-change-comment): Add support for the
4862 file:// access method.
4863
4864 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4865
4866 * minibuffer.el: New file.
4867 * loadup.el: Load it.
4868
4869 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4870
4871 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
4872 rather than subdirs.el. It introduces an ugly circular dependency, tho.
4873
4874 * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
4875 (calc-mode-map, calc-digit-map, calc-dispatch-map):
4876 Move initialization into declaration.
4877 * calc/calc-yank.el:
4878 * calc/calc-misc.el:
4879 * calc/calc-embed.el:
4880 * calc/calc-aent.el: Add autoload cookies. Set generated-autoload-file.
4881
4882 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
4883
4884 * ps-samp.el (ps-add-printer, ps-remove-printer)
4885 (ps-make-dynamic-printer-menu): New functions.
4886
4887 * net/zeroconf.el: New file.
4888
4889 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4890
4891 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
4892
4893 2008-04-08 Dan Nicolaescu <dann@ics.uci.edu>
4894
4895 * vc-rcs.el (vc-rcs-modify-change-comment):
4896 * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
4897
4898 * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
4899
4900 2008-04-08 Juanma Barranquero <lekktu@gmail.com>
4901
4902 * international/mule-cmds.el (set-locale-environment): Don't warn if
4903 coding system doesn't agree with system locale (this reverts changes
4904 by Dave Love, dated 2002-10-27 and 2002-10-09).
4905
4906 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
4907 * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
4908
4909 * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
4910
4911 2008-04-08 Glenn Morris <rgm@gnu.org>
4912
4913 * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
4914 * textmodes/remember.el (remember-diary-convert-entry):
4915 Require calendar.
4916
4917 * textmodes/remember.el (remember-diary-extract-entries): Don't pass
4918 diary-file, since it is the default for make-diary-entry anyway.
4919
4920 * calendar/cal-menu.el (cal-menu-event-to-date):
4921 Rename calendar-event-to-date. Update callers.
4922 (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
4923 (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
4924 (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
4925 (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
4926 (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
4927 (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
4928 (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
4929 (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
4930 (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
4931 (calendar-mouse-tex-month-landscape):
4932 Rename cal-tex-mouse-month-landscape.
4933 (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
4934 (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
4935 (calendar-mouse-tex-year-landscape):
4936 Rename cal-tex-mouse-year-landscape.
4937 (cal-menu-context-mouse-menu): Update for above name changes.
4938
4939 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
4940 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
4941 * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
4942 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
4943 * calendar/holidays.el: Replace int-to-string with number-to-string.
4944
4945 2008-04-08 Chong Yidong <cyd@stupidchicken.com>
4946
4947 * mwheel.el (mwheel-scroll): Deactivate any temporarily active
4948 region if point moves.
4949
4950 2008-04-08 Kenichi Handa <handa@m17n.org>
4951
4952 * faces.el (font-slant-table): Change numeric values for `r',
4953 `roman', and `normal'.
4954
4955 2008-04-07 Vincent Belaïche <vincent.b.1@hotmail.fr>
4956
4957 * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
4958
4959 2008-04-07 Jay Belanger <jay.p.belanger@gmail.com>
4960
4961 * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
4962 `calcFunc-kron' to autoloads. Add keybinding for `calc-kron'.
4963
4964 2008-04-07 Michael Albinus <michael.albinus@gmx.de>
4965
4966 * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
4967 "pscp" and "psftp". Reported by Gilles Pion <gpion@lfdj.com>.
4968
4969 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * dired-aux.el (dired-read-shell-command): Use read-shell-command.
4972
4973 2008-04-07 Sam Steingold <sds@gnu.org>
4974
4975 * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
4976 Add helper functions.
4977 (lisp-do-defun): Extract the common part of lisp-eval-defun and
4978 lisp-compile-defun; DEFVAR forms reset the variables to the init
4979 values, just like in emacs-lisp mode eval-defun.
4980 (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
4981 (lisp-compile-region): Use lisp-compile-string.
4982
4983 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4984
4985 * subr.el (combine-and-quote-strings): Also quote strings that contain
4986 the separator.
4987
4988 * pcvs-util.el (cvs-map): Avoid recursion :-(
4989
4990 2008-04-07 Glenn Morris <rgm@gnu.org>
4991
4992 * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
4993
4994 * calendar.el (diary-view-entries-initially-flag): Rename
4995 view-diary-entries-initially. Keep old name as alias, update users.
4996 (calendar-mark-diary-entries-flag): Rename
4997 mark-diary-entries-in-calendar. Keep old name as alias, update users.
4998 (calendar-view-holidays-initially-flag): Rename
4999 view-calendar-holidays-initially. Keep old name as alias, update users.
5000 (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
5001 Keep old name as alias, update users.
5002 (calendar-initial-window-hook): Rename initial-calendar-window-hook.
5003 Keep old name as alias, update users.
5004 (calendar-today-visible-hook): Rename today-visible-calendar-hook.
5005 Keep old name as alias, update users.
5006 (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
5007 Keep old name as alias, update users.
5008 (diary-iso-date-forms): Rename iso-date-diary-pattern. Update users.
5009 (diary-american-date-forms): Rename american-date-diary-pattern.
5010 Keep old name as alias, update users.
5011 (diary-european-date-forms): Rename european-date-diary-pattern.
5012 Keep old name as alias, update users.
5013 (calendar-iso-date-display-form): Rename iso-calendar-display-form.
5014 Keep old name as alias, update users.
5015 (calendar-european-date-display-form): Rename
5016 european-calendar-display-form. Keep old name as alias, update users.
5017 (calendar-american-date-display-form): Rename
5018 european-calendar-display-form. Keep old name as alias, update users.
5019 (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
5020 Keep old name as alias, update users.
5021 (holiday-general-holidays): Rename general-holidays.
5022 Keep old name as alias, update users.
5023 (holiday-oriental-holidays): Rename oriental-holidays.
5024 Keep old name as alias, update users.
5025 (holiday-local-holidays): Rename local-holidays.
5026 Keep old name as alias, update users.
5027 (holiday-other-holidays): Rename other-holidays.
5028 Keep old name as alias, update users.
5029 (holiday-hebrew-holidays): Rename hebrew-holidays.
5030 Keep old name as alias, update users.
5031 (holiday-christian-holidays): Rename christian-holidays.
5032 Keep old name as alias, update users.
5033 (holiday-islamic-holidays): Rename islamic-holidays.
5034 Keep old name as alias, update users.
5035 (holiday-bahai-holidays): Rename bahai-holidays.
5036 Keep old name as alias, update users.
5037 (holiday-solar-holidays): Rename solar-holidays.
5038 Keep old name as alias, update users.
5039 (diary-fancy-buffer): Rename fancy-diary-buffer.
5040 Keep old name as alias, update users.
5041 (calendar-other-calendars-buffer): Rename other-calendars-buffer.
5042 Update users.
5043 (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
5044 Update users.
5045 (calendar-increment-month): Rename increment-calendar-month.
5046 Keep old name as alias, update callers.
5047 (calendar-increment-month-cons): Rename old calendar-increment-month.
5048 Update callers.
5049 (calendar-extract-month): Rename extract-calendar-month.
5050 Keep old name as alias, update callers.
5051 (calendar-extract-day): Rename extract-calendar-day.
5052 Keep old name as alias, update callers.
5053 (calendar-extract-year): Rename extract-calendar-year.
5054 Keep old name as alias, update callers.
5055 (calendar-generate-window): Rename generate-calendar-window.
5056 Update callers.
5057 (calendar-generate): Rename generate-calendar. Update callers.
5058 (calendar-generate-month): Rename generate-calendar-month.
5059 Update callers.
5060 (calendar-redraw): Rename redraw-calendar. Update callers.
5061 (calendar-describe-mode): Rename describe-calendar-mode. Update uses.
5062 (calendar-mouse-other-month): Rename mouse-calendar-other-month.
5063 Update callers.
5064 (calendar-update-mode-line): Rename update-calendar-mode-line.
5065 Update callers.
5066 (calendar-exit): Rename exit-calendar. Keep old name as alias,
5067 update callers.
5068 (calendar-mark-visible-date): Rename mark-visible-calendar-date.
5069 Keep old name as alias, update callers.
5070 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5071 * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
5072 * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
5073 * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
5074 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
5075 * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
5076 * calendar/solar.el: Update for calendar.el name changes.
5077 * org/org.el (org-agenda-format-date-aligned)
5078 (org-agenda-execute-calendar-command): Access date elements directly
5079 rather than using calendar functions.
5080 (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
5081 Also set calendar-view-diary-initially-flag,
5082 calendar-view-holidays-initially-flag.
5083 (org-get-entries-from-diary): Also set diary-fancy-buffer.
5084 (org-agenda-execute-calendar-command): No need to set displayed-day.
5085
5086 2008-04-06 Alan Mackenzie <acm@muc.de>
5087
5088 * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
5089 typo in the doc string.
5090
5091 * progmodes/cc-mode.el (c-basic-common-init):
5092 Set font-lock-extend-after-change-region-function.
5093 (c-extend-after-change-region): New function, used in
5094 font-lock-extend-after-change-region-function, thus superseding
5095 advice on the Font Lock after change functions.
5096 (c-advise-fl-for-region): Remove this macro.
5097
5098 2008-04-06 Reiner Steib <Reiner.Steib@gmx.de>
5099
5100 * textmodes/flyspell.el (flyspell-duplicate-distance):
5101 Improve custom type.
5102
5103 2008-04-06 Glenn Morris <rgm@gnu.org>
5104
5105 * calendar/diary-lib.el (diary-sexp-entry-symbol):
5106 Rename sexp-diary-entry-symbol. Keep old name as alias, update users.
5107 (diary-list-entries-hook): Rename list-diary-entries-hook.
5108 Keep old name as alias, update users.
5109 (diary-mark-entries-hook): Rename mark-diary-entries-hook.
5110 Keep old name as alias, update users.
5111 (diary-nongregorian-listing-hook): Rename
5112 nongregorian-diary-listing-hook. Keep old name as alias, update users.
5113 (diary-nongregorian-marking-hook): Rename
5114 nongregorian-diary-marking-hook. Keep old name as alias, update users.
5115 (diary-print-entries-hook): Rename print-diary-entries-hook.
5116 Keep old name as alias, update users.
5117 (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
5118 Keep old name as alias, update users.
5119 (diary-number-of-entries): Rename number-of-diary-entries.
5120 Keep old name as alias, update users.
5121 (view-diary-entries, list-diary-entries, show-all-diary-entries):
5122 Give version of obsolescence.
5123 (diary-view-other-diary-entries): Rename view-other-diary-entries.
5124 Keep old name as alias, update callers.
5125 (diary-add-to-list): Rename add-to-diary-list. Keep old name as alias,
5126 update callers.
5127 (diary-include-other-diary-files): Rename include-other-diary-files.
5128 Keep old name as alias, update callers.
5129 (diary-simple-display): Rename simple-diary-display.
5130 Keep old name as alias, update callers.
5131 (diary-fancy-display): Rename fancy-diary-display.
5132 Keep old name as alias, update callers.
5133 (diary-print-entries): Rename print-diary-entries.
5134 Keep old name as alias, update callers.
5135 (diary-marking-entries-flag): Rename marking-diary-entries.
5136 Update users.
5137 (diary-marking-entry-flag): Rename marking-diary-entry. Update users.
5138 (diary-mark-entries): Rename mark-diary-entries.
5139 Keep old name as alias, update callers.
5140 (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
5141 Keep old name as alias, update callers.
5142 (diary-mark-included-diary-files): Rename mark-included-diary-files.
5143 Keep old name as alias, update callers.
5144 (calendar-mark-days-named): Rename mark-calendar-days-named.
5145 Keep old name as alias, update callers.
5146 (calendar-mark-month): Rename mark-calendar-month.
5147 Keep old name as alias, update callers.
5148 (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
5149 Keep old name as alias, update callers.
5150 (diary-sort-entries): Rename sort-diary-entries.
5151 Keep old name as alias, update callers.
5152 (diary-list-sexp-entries): Rename list-sexp-diary-entries.
5153 Keep old name as alias, update callers.
5154 (diary-make-entry): Rename make-diary-entry. Keep old name as alias,
5155 update callers.
5156 (diary-insert-entry): Rename insert-diary-entry.
5157 Keep old name as alias.
5158 (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
5159 Keep old name as alias.
5160 (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
5161 Keep old name as alias.
5162 (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
5163 Keep old name as alias.
5164 (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
5165 Keep old name as alias.
5166 (diary-insert-block-entry): Rename insert-block-diary-entry.
5167 Keep old name as alias.
5168 (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
5169 Keep old name as alias.
5170 (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
5171 Keep old name as alias, update users.
5172 (diary-fancy-display-mode): Rename fancy-diary-display-mode.
5173 Keep old name as alias, update callers.
5174 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
5175 * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
5176 * calendar/icalendar.el: Update for diary-lib name changes.
5177
5178 2008-04-06 Chong Yidong <cyd@stupidchicken.com>
5179
5180 * dired-aux.el (dired-overwrite-confirmed): Revert last change.
5181
5182 * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
5183 for copy, move, and link operations.
5184
5185 2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
5186
5187 * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
5188 (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
5189
5190 * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
5191 'require' statements with 1-argument ones (wrapped in if's).
5192 For compatibility with the current stable version of XEmacs.
5193
5194 2008-04-06 Dan Nicolaescu <dann@ics.uci.edu>
5195
5196 * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
5197
5198 2008-04-06 Jason Rumney <jasonr@gnu.org>
5199
5200 * language/burmese.el ("Burmese"): Make sample text consistent with
5201 language name.
5202
5203 2008-04-06 Nick Roberts <nickrob@snap.net.nz>
5204
5205 * progmodes/gdb-ui.el (gdb): New group.
5206 (gdb-debug-log-max, gdb-enable-debug)
5207 (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
5208 (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
5209 (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
5210 (gdb-show-changed-values, gdb-max-children)
5211 (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
5212 (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
5213 (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
5214 (gdb-memory-unit): Move to new group from GUD group.
5215 (menu): Allow customization from GDB-UI menu-item.
5216
5217 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
5218
5219 * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
5220
5221 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
5222
5223 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
5224 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
5225 Revision numbers can include ".".
5226
5227 * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
5228 "+" lines not accounted for by counting "-" and context lines.
5229
5230 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5231
5232 * term/mac-win.el (mac-service-open-file): Use file URL instead of
5233 file name string.
5234
5235 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
5236
5237 * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
5238 (vc-bzr-annotate-time): Accept space used to preserve alignment.
5239
5240 2008-04-05 Richard Stallman <rms@gnu.org>
5241
5242 * emacs-lisp/advice.el (defadvice): Add usage pattern.
5243
5244 2008-04-05 Nick Roberts <nickrob@snap.net.nz>
5245
5246 * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
5247 thread in [h-e-w]).
5248
5249 2008-04-05 Juanma Barranquero <lekktu@gmail.com>
5250
5251 * files.el (abort-if-file-too-large): Fix typo in docstring.
5252
5253 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
5254
5255 * subr.el (functionp): Return nil for special forms.
5256
5257 2008-04-05 Glenn Morris <rgm@gnu.org>
5258
5259 * emacs-lisp/autoload.el (autoload-ensure-default-file):
5260 Provide a feature.
5261 * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
5262 Require loaddef file rather than loading it.
5263 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
5264 autoload-ensure-default-file provides a feature.
5265
5266 * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
5267 (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
5268 (compile, compile-always, recompile): Use $LOADDEFS.
5269 (cal-autoloads): Remove.
5270
5271 * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
5272 than buffer-live-p. Reported by David Koppelman <koppel@ece.lsu.edu>.
5273
5274 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
5275 (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
5276
5277 * calendar/calendar.el (diary-hebrew-entry-symbol):
5278 Rename hebrew-diary-entry-symbol. Keep old name as alias.
5279 (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
5280 Keep old name as alias.
5281 (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
5282 Keep old name as alias.
5283 * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
5284 to diary-bahai-entry-symbol.
5285 * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
5286 to diary-hebrew-entry-symbol.
5287 * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
5288 to diary-islamic-entry-symbol.
5289 * calendar/diary-lib.el: Update for diary-entry-symbol renames.
5290
5291 * calendar/solar.el (diary-sabbath-candles-minutes)
5292 (diary-sabbath-candles): Move to cal-hebrew.
5293 * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
5294 (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
5295 Doc fix. Keep old name as alias.
5296 (diary-hebrew-sabbath-candles): Simplify.
5297 (solar-setup, solar-sunrise-sunset, calendar-latitude)
5298 (calendar-longitude, calendar-time-zone): Declare for compiler.
5299 * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
5300 rename.
5301
5302 * calendar/cal-coptic.el (calendar-coptic-month-name-array):
5303 Rename coptic-calendar-month-name-array. Update callers.
5304 (calendar-coptic-epoch): Rename coptic-calendar-epoch. Update callers.
5305 (calendar-coptic-name): Rename coptic-name. Update callers.
5306 (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
5307 Update callers.
5308 (calendar-coptic-last-day-of-month):
5309 Rename coptic-calendar-last-day-of-month. Update callers.
5310 (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
5311 Keep old name as alias, update callers.
5312 (calendar-coptic-print-date): Rename calendar-print-coptic-date.
5313 Keep old name as alias, update callers.
5314 (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
5315 Keep old name as alias.
5316 (calendar-ethiopic-month-name-array):
5317 Rename ethiopic-calendar-month-name-array. Update callers.
5318 (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
5319 Update callers.
5320 (calendar-ethiopic-name): Rename ethiopic-name. Update callers.
5321 (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
5322 Keep old name as alias, update callers.
5323 (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
5324 Keep old name as alias, update callers.
5325 (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
5326 Keep old name as alias.
5327
5328 * calendar/cal-french.el (calendar-french-epoch):
5329 Rename french-calendar-epoch. Update callers.
5330 (calendar-french-month-name-array): Rename variable and function
5331 french-calendar-month-name-array. Update callers.
5332 (calendar-french-multibyte-month-name-array):
5333 Rename french-calendar-multibyte-month-name-array. Update callers.
5334 (calendar-french-day-name-array): Rename variable and function
5335 french-calendar-day-name-array. Update callers.
5336 (calendar-french-special-days-array): Rename variable and function
5337 french-calendar-special-days-array. Update callers.
5338 (calendar-french-multibyte-special-days-array):
5339 Rename french-calendar-multibyte-special-days-array. Update callers.
5340 (calendar-french-accents-p): Rename french-calendar-accents.
5341 Update callers.
5342 (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
5343 Update callers.
5344 (calendar-french-last-day-of-month):
5345 Rename french-calendar-last-day-of-month. Update callers.
5346 (calendar-french-to-absolute): Rename calendar-absolute-from-french.
5347 Keep old name as alias, update callers.
5348 (calendar-french-print-date): Rename calendar-print-french-date.
5349 Keep old name as alias, update callers.
5350 (calendar-french-goto-date): Rename calendar-goto-french-date.
5351 Keep old name as alias.
5352
5353 * calendar/cal-menu.el, calendar/calendar.el:
5354 Update for Coptic and French name changes.
5355
5356 * calendar/cal-china.el (calendar-chinese): Rename custom group
5357 from chinese-calendar. Update users.
5358 (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
5359 Keep old name as alias, update users.
5360 (calendar-chinese-location-name): Rename chinese-calendar-location-name.
5361 Keep old name as alias.
5362 (calendar-chinese-daylight-time-offset):
5363 Rename chinese-calendar-daylight-time-offset. Keep old name as alias,
5364 update users.
5365 (calendar-chinese-standard-time-zone-name):
5366 Rename chinese-calendar-standard-time-zone-name.
5367 Keep old name as alias, update users.
5368 (calendar-chinese-daylight-saving-start):
5369 Rename chinese-calendar-daylight-savings-starts.
5370 Keep old name as alias, update users.
5371 (calendar-chinese-daylight-saving-end):
5372 Rename chinese-calendar-daylight-savings-ends. Keep old name as alias,
5373 update users.
5374 (calendar-chinese-daylight-saving-start-time):
5375 Rename chinese-calendar-daylight-savings-starts-time.
5376 Keep old name as alias, update users.
5377 (calendar-chinese-daylight-saving-end-time):
5378 Rename chinese-calendar-daylight-savings-ends-time.
5379 Keep old name as alias, update users.
5380 (calendar-chinese-celestial-stem): Rename
5381 calendar-chinese-celestial-stem. Keep old name as alias, update users.
5382 (calendar-chinese-terrestrial-branch):
5383 Rename calendar-chinese-terrestrial-branch. Keep old name as alias,
5384 update users.
5385 (calendar-chinese-zodiac-sign-on-or-after):
5386 Rename chinese-zodiac-sign-on-or-after. Update callers.
5387 (calendar-chinese-new-moon-on-or-after):
5388 Rename chinese-new-moon-on-or-after. Update callers.
5389 (calendar-chinese-month-list): Rename chinese-month-list.
5390 Update callers.
5391 (calendar-chinese-number-months): Rename number-chinese-months.
5392 Update callers.
5393 (calendar-chinese-compute-year): Rename compute-chinese-year.
5394 Update callers.
5395 (calendar-chinese-year-cache): Rename chinese-year-cache. Update users.
5396 (calendar-chinese-year): Rename chinese-year. Update callers.
5397 (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
5398 (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
5399 Keep old name as alias, update callers.
5400 (calendar-chinese-print-date): Rename calendar-print-chinese-date.
5401 Keep old name as alias, update callers.
5402 (calendar-chinese-months-to-alist):
5403 Rename make-chinese-month-assoc-list. Update callers.
5404 (calendar-chinese-months): Rename chinese-months. Update callers.
5405 (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
5406 Keep old name as alias, update callers.
5407
5408 * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
5409 Rename hebrew-calendar-leap-year-p. Update callers.
5410 (calendar-hebrew-last-month-of-year):
5411 Rename hebrew-calendar-last-month-of-year. Update callers.
5412 (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
5413 Update callers.
5414 (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
5415 Update callers.
5416 (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
5417 Update callers.
5418 (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
5419 Update callers.
5420 (calendar-hebrew-last-day-of-month):
5421 Rename hebrew-calendar-last-day-of-month. Update callers.
5422 (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
5423 Keep old name as alias, update callers.
5424 (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
5425 Keep old name as alias, update callers.
5426 (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
5427 Keep old name as alias, update callers.
5428 (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
5429 Keep old name as alias.
5430 (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
5431 Keep old name as alias.
5432 (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
5433 Keep old name as alias.
5434 (holiday-hebrew-passover): Rename holiday-passover-etc.
5435 Keep old name as alias.
5436 (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
5437 Keep old name as alias, update callers.
5438 (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
5439 Keep old name as alias.
5440 (calendar-hebrew-mark-date-pattern):
5441 Rename mark-hebrew-calendar-date-pattern. Keep old name as alias,
5442 update callers.
5443 (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
5444 Keep old name as alias.
5445 (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
5446 Keep old name as alias.
5447 (diary-hebrew-insert-monthly-entry):
5448 Rename insert-monthly-hebrew-diary-entry. Keep old name as alias.
5449 (diary-hebrew-insert-yearly-entry):
5450 Rename insert-yearly-hebrew-diary-entry. Keep old name as alias.
5451 (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
5452 Keep old name as alias.
5453 (diary-hebrew-omer): Rename diary-omer. Keep old name as alias.
5454 (diary-hebrew-yahrzeit): Rename diary-yahrzeit. Keep old name as alias.
5455 (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
5456 Keep old name as alias.
5457 (calendar-hebrew-parashiot-names):
5458 Rename hebrew-calendar-parashiot-names. Update callers.
5459 (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
5460 (calendar-hebrew-year-Saturday-incomplete-Sunday):
5461 Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
5462 (calendar-hebrew-year-Saturday-complete-Tuesday):
5463 Rename hebrew-calendar-year-Saturday-complete-Tuesday.
5464 (calendar-hebrew-year-Monday-incomplete-Tuesday):
5465 Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
5466 (calendar-hebrew-year-Monday-complete-Thursday):
5467 Rename hebrew-calendar-year-Monday-complete-Thursday.
5468 (calendar-hebrew-year-Tuesday-regular-Thursday):
5469 Rename hebrew-calendar-year-Tuesday-regular-Thursday.
5470 (calendar-hebrew-year-Thursday-regular-Saturday):
5471 Rename hebrew-calendar-year-Thursday-regular-Saturday.
5472 (calendar-hebrew-year-Thursday-complete-Sunday):
5473 Rename hebrew-calendar-year-Thursday-complete-Sunday.
5474 (calendar-hebrew-year-Saturday-incomplete-Tuesday):
5475 Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
5476 (calendar-hebrew-year-Saturday-complete-Thursday):
5477 Rename hebrew-calendar-year-Saturday-complete-Thursday.
5478 (calendar-hebrew-year-Monday-incomplete-Thursday):
5479 Rename hebrew-calendar-year-Monday-incomplete-Thursday.
5480 (calendar-hebrew-year-Monday-complete-Saturday):
5481 Rename hebrew-calendar-year-Monday-complete-Saturday.
5482 (calendar-hebrew-year-Tuesday-regular-Saturday):
5483 Rename hebrew-calendar-year-Tuesday-regular-Saturday.
5484 (calendar-hebrew-year-Thursday-incomplete-Sunday):
5485 Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
5486 (calendar-hebrew-year-Thursday-complete-Tuesday):
5487 Rename hebrew-calendar-year-Thursday-complete-Tuesday.
5488 (diary-hebrew-parasha): Rename diary-parasha. Keep old name as alias.
5489 Update for above name changes of constants.
5490
5491 * calendar/cal-menu.el, calendar/calendar.el:
5492 Update for chinese and hebrew name changes.
5493 * calendar/diary-lib.el: Update for hebrew name changes.
5494
5495 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
5496
5497 * subr.el (keymap-canonicalize): Correct thinko.
5498
5499 * server.el: Undo part of the multi-tty change, which is only
5500 needed if server.el is preloaded, and broke server-running-p.
5501 (server-socket-dir): Initialize in the defvar, as before.
5502 (server-start): Remove initialization of server-socket-dir.
5503
5504 2008-04-05 Eli Zaretskii <eliz@gnu.org>
5505
5506 * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
5507 3-member cons cells.
5508
5509 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
5510
5511 * cus-face.el (custom-face-attributes): Handle roman slant.
5512
5513 * faces.el (default): Ensure the face-defface-spec property is set.
5514
5515 2008-04-05 Adrian Robert <Adrian.B.Robert@gmail.com>
5516
5517 * files.el (abort-if-file-too-large): New function.
5518 (find-file-noselect, insert-file-1): Use it.
5519
5520 2008-04-05 Reto Zimmermann <reto@gnu.org>
5521
5522 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
5523 Replace C-c[a-zA-Z] key bindings.
5524
5525 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
5526
5527 * progmodes/hideif.el (hif-token-alist): New var.
5528 (hif-token-regexp, hif-tokenize): Use it.
5529 (hif-mathify-binop): New macro.
5530 (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
5531 (hif-greater-equal, hif-less-equal): Use it.
5532 (hif-logior, hif-logand): New functions.
5533 (hif-math): Accept | and & as well.
5534
5535 * progmodes/etags.el: Fix problem with completion for buffer-local
5536 tables. Reported by Radey Shouman <shouman@comcast.net>.
5537 (tags-complete-tag): Remove.
5538 (tags-lazy-completion-table): New function to replace it.
5539 (find-tag-tag, complete-tag): Update users.
5540
5541 2008-04-04 Dan Nicolaescu <dann@ics.uci.edu>
5542
5543 * vc-rcs.el (vc-rcs-dir-status):
5544 * vc-sccs.el (vc-sccs-dir-status): New function.
5545
5546 * outline.el (outline-mode-menu-bar-map):
5547 * term.el (terminal-signal-menu): Add :help.
5548
5549 * net/eudc.el (eudc-mode-map): Declare and define in one step.
5550 (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
5551
5552 * emacs-lisp/re-builder.el (reb-mode-map):
5553 * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
5554
5555 * diff-mode.el (diff-file-junk-re): Recognize the git format for
5556 new files, deleted files and for changing permissions.
5557 (diff-mode): Set beginning-of-defun-function and
5558 end-of-defun-function.
5559
5560 * vc-bzr.el (vc-bzr-state): Use when instead of if.
5561
5562 * vc.el (vc-default-status-fileinfo-extra): New function.
5563 (vc-status-mark-buffer-changed): Use it.
5564 (vc-update-vc-status-buffer): Allow for partial updates.
5565
5566 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5567
5568 * net/tramp.el (after-init-hook): Don't wrap a lambda around
5569 tramp-register-completion-file-name-handler.
5570
5571 * subr.el (keymap-canonicalize): New function.
5572 * mouse.el (mouse-menu-non-singleton): Use it.
5573 (mouse-major-mode-menu): Remove hack made unnecessary.
5574
5575 * simple.el (set-fill-column): Prompt rather than error by default.
5576
5577 2008-04-04 Andreas Schwab <schwab@suse.de>
5578
5579 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
5580 Reset new-rules after each round.
5581
5582 * Makefile.in (cal-autoloads): New target.
5583 (compile, compile-always, recompile): Depend on it.
5584 ($(lisp)/calendar/cal-loaddefs.el)
5585 ($(lisp)/calendar/diary-loaddefs.el)
5586 ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
5587
5588 2008-04-04 Michael Kifer <kifer@cs.stonybrook.edu>
5589
5590 * ediff*.el: Replace load with require in eval-when-compile.
5591
5592 * ediff-hook: Delete all invocations of (autoload ...).
5593
5594 * ediff-util.el (ediff-setup): Make window-min-height a local variable
5595 in ediff control window, and set its min height to 2.
5596 (ediff-setup-control-buffer): Dedicate the control window.
5597 (ediff-toggle-multiframe): Undedicate control window.
5598 Work directly with ediff-setup-windows-multiframe and
5599 ediff-setup-windows-plain.
5600
5601 * ediff-wind (ediff-choose-window-setup-function-automatically):
5602 New function.
5603 (ediff-window-setup-function): Change initialization.
5604 (ediff-setup-windows-automatic): Delete.
5605 (ediff-setup-windows-plain-merge): Make control window dedicated.
5606 (ediff-destroy-control-frame): Do not skip frames if working in a
5607 single frame.
5608
5609 * emulation/viper-ex.el: Move provide's forward, prevent recursion in
5610 eval-when-compile.
5611
5612 * emulation/viper-util.el: Move provide's forward, prevent recursion in
5613 eval-when-compile.
5614
5615 2008-04-04 Glenn Morris <rgm@gnu.org>
5616
5617 * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
5618 calendar-absolute-from-bahai. Update callers, keep old name as alias.
5619
5620 * calendar/cal-islam.el (calendar-islamic-leap-year-p):
5621 Rename islamic-calendar-leap-year-p. Update callers.
5622 (calendar-islamic-last-day-of-month):
5623 Rename islamic-calendar-last-day-of-month. Update callers.
5624 (calendar-islamic-day-number):
5625 Rename islamic-calendar-day-number. Update callers.
5626 (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
5627 Update callers, keep old name as alias.
5628 (calendar-islamic-print-date): Rename calendar-print-islamic-date.
5629 Update callers, keep old name as alias.
5630 (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
5631 Keep old name as alias.
5632 (diary-islamic-list-entries): Rename list-islamic-diary-entries.
5633 Update callers, keep old name as alias.
5634 (calendar-islamic-mark-date-pattern):
5635 Rename mark-islamic-calendar-date-pattern. Update callers, keep old
5636 name as alias.
5637 (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
5638 Keep old name as alias.
5639 (diary-islamic-insert-monthly-entry):
5640 Rename insert-monthly-islamic-diary-entry. Keep old name as alias.
5641 (diary-islamic-insert-yearly-entry):
5642 Rename insert-yearly-islamic-diary-entry. Keep old name as alias.
5643
5644 * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
5645 calendar-absolute-from-iso. Update callers, keep old name as alias.
5646 (calendar-iso-print-date): Rename calendar-print-iso-date.
5647 Update callers, keep old name as alias.
5648 (calendar-iso-goto-date): Rename calendar-goto-iso-date.
5649 Keep old name as alias.
5650 (calendar-iso-goto-week): Rename calendar-goto-iso-week.
5651 Keep old name as alias.
5652
5653 * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
5654 calendar-absolute-from-julian. Update callers, keep old name as alias.
5655 (calendar-julian-print-date): Rename calendar-print-julian-date.
5656 Update callers, keep old name as alias.
5657 (calendar-julian-goto-date): Rename calendar-goto-julian-date.
5658 Update callers, keep old name as alias.
5659 (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
5660 Update callers, keep old name as alias.
5661 (calendar-astro-print-day-number):
5662 Rename calendar-print-astro-day-number. Update callers, keep old
5663 name as alias.
5664 (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
5665 Update callers, keep old name as alias.
5666
5667 * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
5668 Rename calendar-string-to-mayan-long-count. Update callers.
5669 (calendar-mayan-print-date): Rename calendar-print-mayan-date.
5670 Update callers, keep old name as alias.
5671 (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
5672 Update callers.
5673 (calendar-mayan-read-tzolkin-date):
5674 Rename calendar-read-mayan-tzolkin-date. Update callers.
5675 (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
5676 Keep old name as alias.
5677 (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
5678 Keep old name as alias.
5679 (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
5680 Keep old name as alias.
5681 (calendar-mayan-previous-tzolkin-date):
5682 Rename calendar-previous-tzolkin-date. Keep old name as alias.
5683 (calendar-mayan-next-round-date):
5684 Rename calendar-next-calendar-round-date. Keep old name as alias.
5685 (calendar-mayan-previous-round-date):
5686 Rename calendar-previous-calendar-round-date. Keep old name as alias.
5687 (calendar-mayan-long-count-to-absolute): Rename
5688 calendar-absolute-from-mayan-long-count. Keep old name as alias.
5689 (calendar-mayan-goto-long-count-date):
5690 Rename calendar-goto-mayan-long-count-date. Keep old name as alias.
5691
5692 * calendar/cal-persia.el (calendar-persian-month-name-array):
5693 Rename persian-calendar-month-name-array. Update callers.
5694 (calendar-persian-epoch): Rename persian-calendar-epoch.
5695 Update callers.
5696 (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
5697 Update callers.
5698 (calendar-persian-last-day-of-month):
5699 Rename persian-calendar-last-day-of-month. Update callers.
5700 (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
5701 Update callers, keep old name as alias.
5702 (calendar-persian-print-date): Rename calendar-print-persian-date.
5703 Update callers, keep old name as alias.
5704 (calendar-persian-goto-date): Rename calendar-goto-persian-date.
5705 Keep old name as alias.
5706
5707 * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
5708 * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
5709 * calendar/solar.el: Update for cal-julian name changes.
5710
5711 * calendar/cal-dst.el: Update for persian name changes.
5712
5713 * calendar/cal-menu.el, calendar/calendar.el:
5714 Update for islamic, iso, julian, mayan, persian name changes.
5715
5716 * calendar/diary-lib.el: Update for islamic name changes.
5717
5718 * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
5719 Rename all-hebrew-calendar-holidays. Update callers, keep old name
5720 as alias.
5721 (calendar-christian-all-holidays-flag):
5722 Rename all-christian-calendar-holidays. Update callers, keep old
5723 name as alias.
5724 (calendar-islamic-all-holidays-flag):
5725 Rename all-islamic-calendar-holidays. Update callers, keep old
5726 name as alias.
5727 (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
5728 Update callers, keep old name as alias.
5729 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
5730 Update for the above name changes.
5731
5732 2008-04-04 Juanma Barranquero <lekktu@gmail.com>
5733
5734 * hilit-chg.el (global-highlight-changes-mode)
5735 (highlight-changes-passive-string, highlight-changes-active-string):
5736 Mark as obsolete since 23.1, not 22.1.
5737
5738 2008-04-03 Juanma Barranquero <lekktu@gmail.com>
5739
5740 * hilit-chg.el (highlight-changes-visibility-initial-state)
5741 (hilit-chg-update, highlight-changes-mode-turn-on):
5742 Fix typos in docstrings.
5743
5744 2008-04-03 Stephen Berman <Stephen.Berman@gmx.net>
5745
5746 * newcomment.el (comment-enter-backward): Be careful to restore
5747 position changed during narrowing.
5748
5749 2008-04-03 Giuliano Procida <giuliano.procida@googlemail.com> (tiny change)
5750
5751 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5752 Recognize `sub ($$)'.
5753
5754 2008-04-03 Richard Sharman <rsharman@pobox.com>
5755
5756 * hilit-chg.el (highlight-changes-mode): Rename from
5757 highlight-changes; no longer uses sub-modes active and passive;
5758 implemented by define-minor-mode.
5759 (highlight-changes-toggle-visibility): New function, to replace
5760 the old passive/active submodes of global-highlight-changes-mode;
5761 implemented by define-minor-mode.
5762 (global-highlight-changes-mode): Rename from global-highlight-changes;
5763 rewrite using define-globalized-minor-mode.
5764 (hilit-chg-major-mode-hook, hilit-chg-check-global)
5765 (hilit-chg-post-command-hook, hilit-chg-check-global)
5766 (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
5767 to use of define-globalized-minor-mode.
5768 (highlight-changes-global-initial-state): Change to be boolean.
5769 (highlight-changes-visible-string, highlight-changes-invisible-string):
5770 Rename from highlight-changes-active-string and
5771 highlight-changes-passive-string.
5772 (hilit-chg-update, hilit-chg-set): Use them.
5773 (global-highlight-changes-mode): Rename from global-highlight-changes.
5774 (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
5775 docstring.
5776 (hilit-chg-hide-changes): Rewrite to use dolist.
5777 (hilit-chg-set-face-on-change, hilit-chg-update)
5778 (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
5779 variable instead of testing highlight-changes-mode.
5780 (highlight-markup-buffers): Add require ediff-util; argument on calls
5781 to highlight-changes-mode changed.
5782 (highlight-compare-with-file): Fix problems with interactive
5783 call giving invalid default file.
5784
5785 2008-04-03 Nick Roberts <nickrob@snap.net.nz>
5786
5787 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
5788 Fix in disassembly buffer (regression in 22.2).
5789
5790 2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
5791
5792 * emulation/viper-macs.el (viper-read-fast-keysequence):
5793 Use viper-read-event instead of viper-read-key.
5794
5795 * emulation/viper.el (viper-mode): Move the check for fundamental mode.
5796
5797 * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
5798 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
5799 let-statements.
5800
5801 * emulation/viper-ex.el, emulation/viper-macs.el:
5802 * emulation/viper-mous.el:
5803 Replace load with require in eval-when-compile.
5804
5805 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * files.el (auto-mode-alist): Use archive-mode for Debian packages.
5808
5809 * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
5810 (archive-try-jka-compr): New function.
5811 (archive-set-buffer-as-visiting-file): Use it.
5812
5813 * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
5814
5815 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
5816
5817 * simple.el (handle-shift-selection): New arg.
5818
5819 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5820
5821 * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
5822
5823 * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
5824
5825 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
5826
5827 * shell.el (shell-dynamic-complete-filename): New fun.
5828 (shell-dynamic-complete-functions): Use it.
5829
5830 * help-fns.el (describe-variable): Undo 2008-02-25 change.
5831
5832 2008-04-03 Kenichi Handa <handa@m17n.org>
5833
5834 * international/fontset.el (create-fontset-from-x-resource):
5835 Handle the error of X resource more gracefully.
5836
5837 * international/latin1-disp.el (latin1-display): Don't use make-char.
5838 Fix the argument to set-char-table-range.
5839 (latin1-display-identities): Don't use make-char.
5840 (latin1-display-reset): Use map-charset-chars instead of directly
5841 calling standard-display-default.
5842 (latin1-display-check-font): Don't use make-char.
5843 (latin1-display-setup): Likewise.
5844 (latin1-display-ucs-per-lynx): Likewise.
5845
5846 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5847
5848 * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
5849 name the fields, to make the code clearer.
5850 Rewrite all `aset' and `aref' using the defined accessors.
5851 (timer--time): New pseudo-field.
5852 (timer-set-time, timer-set-idle-time, timer-inc-time)
5853 (timer-set-time-with-usecs, with-timeout-suspend): Use it.
5854 (timer--time-less-p): New function.
5855 (timer--activate): New function, extracted from timer-activate.
5856 (timer-activate-when-idle, timer-activate): Use it.
5857 (cancel-function-timers): Use dolist.
5858
5859 2008-04-03 Glenn Morris <rgm@gnu.org>
5860
5861 * add-log.el (c-beginning-of-defun, c-end-of-defun):
5862 Remove declarations; no longer used.
5863 (c-cpp-define-name, c-defun-name): Declare as functions.
5864
5865 * calendar/cal-bahai.el (holiday-fixed): Autoload it.
5866 (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
5867
5868 * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
5869 (holiday-passover-etc, holiday-hanukkah): Doc fix.
5870 Add optional argument. Simplify.
5871 (holiday-tisha-b-av-etc): Use memq rather than unless.
5872 (holiday-julian): Autoload it.
5873 (holiday-hebrew-misc): New function.
5874
5875 * calendar/cal-islam.el (holiday-islamic-new-year): New function.
5876
5877 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
5878 (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
5879 (hebrew-holidays-2): Just use holiday-hanukkah now it respects
5880 all-hebrew-calendar-holidays.
5881 (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
5882 Simplify using new functions.
5883 (calendar-holidays): Doc fix.
5884 (generate-calendar-window): Use bound-and-true-p.
5885
5886 * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
5887
5888 * calendar/holidays.el (calendar-holiday-list): Fix previous change.
5889 (holiday-filter-visible-calendar): Doc fix. Use mapcar.
5890 (holiday-easter-etc): Fix nesting of result. Tweak holiday order.
5891 Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
5892
5893 * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
5894
5895 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5896
5897 * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
5898
5899 * vc-bzr.el (vc-bzr-checkout): Simplify.
5900
5901 * image-mode.el (image-mode-fit-frame): New command.
5902
5903 * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
5904 (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
5905 (keyboard-escape-quit): Check region-active-p i.s.o
5906 transient-mark-mode.
5907
5908 2008-04-02 Simon Josefsson <simon@josefsson.org>
5909
5910 * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
5911 (imap-message-copyuid-1): Use it.
5912 (imap-message-appenduid-1): Likewise. Based on patch by Nathan
5913 J. Williams in
5914 <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
5915
5916 2008-04-02 Alan Mackenzie <acm@muc.de>
5917
5918 * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
5919 New optimised functions to get the name of the current defun/macro.
5920
5921 * add-log.el (add-log-current-defun): Move the functionality which
5922 gets the current function name for C like modes to cc-cmds.el,
5923 thus optimising for speed.
5924
5925 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
5926
5927 * simple.el (deactivate-mark): When the mark is temporarily
5928 active, restore the original value of transient-mark-mode.
5929 (set-mark-command): First deactivate the mark if was temporarily active.
5930 (exchange-point-and-mark): Reactivate the mark if it was
5931 temporarily active.
5932 (handle-shift-selection): New fun.
5933 (transient-mark-mode): Move var documentation here from buffer.c.
5934 (next-line, previous-line, backward-word, move-end-of-line)
5935 (move-beginning-of-line, forward-to-indentation)
5936 (backward-to-indentation, back-to-indentation)
5937 (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
5938
5939 * mouse.el (mouse-set-region-1): Save the old value of
5940 transient-mark-mode.
5941 (mouse-drag-track): Ignore the now-obsolete value `identity' for
5942 transient-mark-mode.
5943
5944 * textmodes/paragraphs.el (forward-paragraph)
5945 (backward-paragraph, forward-sentence, backward-sentence): Add ^
5946 interactive spec.
5947
5948 * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
5949
5950 2008-04-02 Michael Albinus <michael.albinus@gmx.de>
5951
5952 * net/tramp.el (tramp-make-tramp-temp-file):
5953 Use `tramp-drop-volume-letter' for the local file name part.
5954
5955 2008-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5956
5957 * progmodes/sh-script.el (sh-mode-map): Rename the menu. Add :help.
5958 Add menu entries corresponding to all the key bindings.
5959
5960 * emacs-lisp/debug.el (debugger-mode-map):
5961 * textmodes/conf-mode.el (conf-mode-map): Add a menu.
5962 (conf-align-assignments): Only work on the region if it is active.
5963 (conf-quote-normal): Use when instead of if. Remove redundant test.
5964
5965 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
5966 for tracing and re-builder.
5967
5968 2008-04-02 Glenn Morris <rgm@gnu.org>
5969
5970 * calendar/appt.el (appt-disp-window-function): Doc fix.
5971 (appt-display-message): Move beep before display.
5972 (appt-check): Make interactive. Reduce the number of lets.
5973 Use string-equal to compare mode-line strings.
5974 (appt-disp-window): Pluralize "minute" as needed. Make appt buffer
5975 read-only.
5976 (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
5977 (appt-delete): Simplify.
5978
5979 * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
5980
5981 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
5982
5983 * calendar/cal-hebrew.el (list-yahrzeit-dates):
5984 * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
5985 (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
5986
5987 * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
5988 (calendar-holiday-marker, mark-visible-calendar-date):
5989 * calendar/diary-lib.el (fancy-diary-display):
5990 Check for font-lock-mode before using faces.
5991
5992 * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
5993 (calendar-gregorian-from-absolute): Reduce the number of lets.
5994 (hebrew-holidays-4, generate-calendar-window): Simplify.
5995 (calendar-for-loop): Make obsolete.
5996 (calendar-nth-named-day): Doc fix.
5997
5998 * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
5999 (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
6000 (calendar-mark-1, list-sexp-diary-entries, diary-remind):
6001 Reduce the number of lets.
6002 (mark-sexp-diary-entries, calendar-mark-complex):
6003 Expand calendar-for-loops.
6004
6005 2008-04-01 Chong Yidong <cyd@stupidchicken.com>
6006
6007 * find-dired.el (find-dired-filter): Fix last patch to handle
6008 multi-line process input. Pad link numbers too.
6009
6010 2008-04-01 Jari Aalto <jari.aalto@cante.net>
6011
6012 * find-dired.el (find-dired-filter): Align columns by padding file sizes.
6013
6014 2008-04-01 Jason Rumney <jasonr@gnu.org>
6015
6016 * international/characters.el (script-list): Add phonetic script,
6017 covering IPA (previously Latin), Phonetic Extensions and
6018 Phonetic Extensions Supplement (both previously unassigned).
6019
6020 * international/fontset.el (setup-default-fontset): Use unicode fonts
6021 that cover bopomofo script for bopomofo.
6022 Likewise for braille and mathematical.
6023 Use unicode scripts that cover the phonetic script for IPA.
6024
6025 2008-04-01 Johan Bockgård <bojohan@gnu.org>
6026
6027 * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
6028 return the assigned value.
6029
6030 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
6031
6032 * abbrev.el (abbrev-mode): Use define-minor-mode.
6033
6034 * mouse.el (mouse-major-mode-menu-prefix): Remove. Remove uses.
6035 (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
6036 Use map-keymap.
6037 (minor-mode-menu-from-indicator): Use it. Simplify.
6038
6039 * bindings.el (mode-line-mode-menu): Move before (new) first use.
6040 (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
6041 Bind the key directly to the menu.
6042 (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
6043
6044 2008-04-01 Daiki Ueno <ueno@unixuser.org>
6045
6046 * epa.el (epa-decrypt-region): Explain the reason why this
6047 function should not be used in Lisp programs.
6048 (epa-decrypt-armor-in-region): Ditto.
6049 (epa-verify-region): Ditto.
6050 (epa-verify-cleartext-in-region): Ditto.
6051 (epa-sign-region): Ditto.
6052 (epa-encrypt-region): Ditto.
6053
6054 * epg.el (epg-start-receive-keys): Fix typo in docstring.
6055
6056 * epa.el (epa-select-keys): Show menu even if there is no key in
6057 GnuPG's keyring.
6058
6059 2008-04-01 Glenn Morris <rgm@gnu.org>
6060
6061 * calendar/calendar.el (calendar-make-temp-face): New function.
6062 (mark-visible-calendar-date):
6063 * calendar/diary-lib.el (fancy-diary-display): Use it.
6064
6065 * vc-hooks.el (vc-responsible-backend): Declare as function.
6066
6067 * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
6068 * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
6069 * calendar/cal-julian.el (holiday-julian): Use it.
6070
6071 * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
6072 (calendar-hebrew-date-is-visible-p): Extract some common code into
6073 separate function.
6074 (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
6075
6076 * calendar/cal-menu.el (cal-menu-holidays-menu):
6077 * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
6078 rather than obsolete alias.
6079
6080 * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
6081 for mark characters.
6082 (calendar-unmark): Unmark by removing all overlays, rather than
6083 redrawing.
6084 (calendar-starred-day): Remove.
6085 (calendar-mode): Disable undo. Don't make calendar-starred-day local.
6086 (calendar-cursor-to-date): No need for special star handling now
6087 using overlays.
6088 (calendar-star-date): Use overlays.
6089
6090 * calendar/cal-french.el (calendar-goto-french-date):
6091 * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
6092 (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
6093 * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
6094 * calendar/cal-persia.el (calendar-persian-date-string):
6095 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6096 (cal-tex-cursor-month, cal-tex-LaTeXify-string):
6097 * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
6098 * calendar/solar.el (solar-equinoxes-solstices):
6099 Reduce nesting of some lets.
6100
6101 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
6102 (calendar-goto-mayan-long-count-date): Simplify.
6103
6104 * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
6105 Simplify by using mapcar.
6106 (calendar-list-holidays): Return holiday-list.
6107 (list-holidays): Use let rather than let*. Remove un-needed locals
6108 `d', `never'.
6109 (calendar-check-holidays): Return result from dolist.
6110 (holiday-float): Use a single let*. Simplify if-and to and.
6111 (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
6112 single let*.
6113
6114 2008-04-01 Jay Belanger <jay.p.belanger@gmail.com>
6115
6116 * calc/calc.el: Autoload `calc-yank'.
6117 (calc-mode-map): Add keybindings for `calc-yank'.
6118 * calc/calc-ext.el (calc-init-extensions): Remove keybinding
6119 assignments for `calc-yank'.
6120
6121 2008-03-31 Dan Nicolaescu <dann@ics.uci.edu>
6122
6123 * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
6124 (vc-status-mark-buffer-changed): Handle the extra field.
6125
6126 * vc-bzr.el (vc-bzr-after-dir-status):
6127 * vc-cvs.el (vc-cvs-after-dir-status):
6128 * vc-hg.el (vc-hg-after-dir-status):
6129 * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
6130
6131 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
6132
6133 * doc-view.el: Compute displayed pages first (in PDF).
6134 (doc-view-current-converter-processes): Rename from
6135 doc-view-current-converter-process. Update users.
6136 (doc-view-sentinel): Test buffer's liveness.
6137 (doc-view-pdf/ps->png-sentinel): Remove.
6138 (doc-view-start-process): New function.
6139 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
6140 (doc-view-ps->pdf): Use it.
6141 (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
6142 New functions.
6143 (doc-view-convert-current-doc, doc-view-goto-page): Use them.
6144 (doc-view-mode): Kill the processes when leaving the mode.
6145
6146 2008-03-31 Juanma Barranquero <lekktu@gmail.com>
6147
6148 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
6149 Use `byte-compile-warning-types'. Add docstring.
6150
6151 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
6152
6153 * smerge-mode.el (smerge-apply-resolution-patch): New fun.
6154 (smerge-resolve): Add various resolution heuristics.
6155
6156 * smerge-mode.el (smerge-refine): Allow highlighting other subparts
6157 in 3-way conflicts.
6158
6159 2008-03-31 Glenn Morris <rgm@gnu.org>
6160
6161 * calendar/cal-bahai.el (diary-bahai-mark-entries):
6162 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
6163 * calendar/cal-islam.el (mark-islamic-diary-entries):
6164 Fix argument order in call to diary-mark-entries-1.
6165
6166 * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
6167 pre-Bahai dates.
6168 (holiday-bahai): Use an algorithm actually relevant to this calendar
6169 system.
6170
6171 * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
6172
6173 * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
6174 Use and.
6175
6176 * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
6177 in the last fortnight in Julian October.
6178
6179 * calendar/calendar.el (increment-calendar-month): Optionally handle
6180 systems without 12 months per year.
6181
6182 (calendar-date-is-visible-p): Doc fix. Simplify.
6183
6184 * calendar/holidays.el (holiday-filter-visible-calendar): Return result
6185 from dolist.
6186
6187 2008-03-30 Juanma Barranquero <lekktu@gmail.com>
6188
6189 * hi-lock.el (hi-lock-mode): Fix typos in docstring.
6190 (hi-lock-unload-function): New function.
6191
6192 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
6193
6194 * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
6195 overwriting when NEWNAME is a local file.
6196
6197 * net/trampver.el: Update release number.
6198
6199 2008-03-30 Alexandre Julliard <julliard@winehq.org>
6200
6201 * vc-git.el: Make vc-status display information about copies,
6202 renames and permission changes.
6203 (vc-git-extra-fileinfo): New defstruct.
6204 (vc-git-escape-file-name, vc-git-file-type-as-string)
6205 (vc-git-rename-as-string, vc-git-permissions-as-string)
6206 (vc-git-status-printer): New functions.
6207 (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
6208 (vc-git-after-dir-status-stage1): Look for copies, renames and
6209 permission changes.
6210 (vc-git-after-dir-status-stage1-empty-db): Set permissions.
6211 (vc-git-dir-status): Ask for staged files and renames.
6212
6213 2008-03-30 Dan Nicolaescu <dann@ics.uci.edu>
6214
6215 * vc.el: Allow backends to display backend specific information in
6216 the vc-status listing.
6217 (vc-status-fileinfo): Add a field for backend specific information.
6218 (vc-status-printer): Rename to ...
6219 (vc-default-status-printer): ... this.
6220 (vc-status-printer): New function.
6221 (vc-update-vc-status-buffer): Set the backend specific file info
6222 if provided.
6223
6224 2008-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
6225
6226 * textmodes/remember.el (remember-diary-convert-entry): Revert last
6227 change (ill-conceived).
6228
6229 2008-03-29 Glenn Morris <rgm@gnu.org>
6230
6231 * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
6232 * calendar/cal-julian.el (holiday-julian): Simplify.
6233
6234 * calendar/holidays.el (list-holidays): Use or.
6235
6236 2008-03-29 Juri Linkov <juri@jurta.org>
6237
6238 * window.el (split-window-preferred-horizontally): New function.
6239
6240 * cus-start.el (split-window-preferred-function):
6241 Set choice for "vertically" to nil instead of split-window.
6242 Set choice for "horizontally" to split-window-preferred-horizontally
6243 instead of lambda.
6244
6245 2008-03-29 Juri Linkov <juri@jurta.org>
6246
6247 * simple.el (minibuffer-default-add-function): New variable with
6248 the default to minibuffer-default-add-completions.
6249 (minibuffer-default-add-done): New variable. Make it buffer-local.
6250 (minibuffer-default-add-completions): New function.
6251 (goto-history-element): Set minibuffer-default-add-done to t and
6252 call a function in minibuffer-default-add-function when the
6253 specified absolute history position is greater than the length of
6254 the minibuffer-default list and minibuffer-default-add-done is nil.
6255 Change "^End of history; no next item$" to "^End of defaults;
6256 no next item$".
6257
6258 * bindings.el (debug-ignored-errors): Change "^End of history;
6259 no next item$" to "^End of defaults; no next item$".
6260
6261 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
6262
6263 * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
6264
6265 * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
6266 to with-no-warnings.
6267
6268 2008-03-29 Michael Albinus <michael.albinus@gmx.de>
6269
6270 Sync with Tramp 2.1.13.
6271
6272 * net/tramp-ftp.el: Require 'cl when byte-compiling.
6273
6274 * net/trampver.el: Update release number.
6275
6276 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
6277
6278 * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
6279 the current backend.
6280
6281 * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
6282 (vc-status-refresh): Create a temporary buffer and call the
6283 `dir-status' backend function from that buffer.
6284
6285 * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
6286 (vc-bzr-after-dir-status): Don't kill the buffer.
6287
6288 * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
6289 (vc-cvs-after-dir-status): Don't kill the buffer.
6290
6291 * vc-git.el (vc-git-dir-status): Don't create a buffer.
6292 (vc-git-after-dir-status-stage2): Don't kill the buffer.
6293
6294 * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
6295 (vc-hg-after-dir-status): Don't kill the buffer.
6296
6297 * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
6298 (vc-svn-after-dir-status): Don't kill the buffer.
6299
6300 2008-03-29 Glenn Morris <rgm@gnu.org>
6301
6302 * calendar/calendar.el (diary-file, american-date-diary-pattern)
6303 (european-date-diary-pattern, european-calendar-display-form)
6304 (american-calendar-display-form, diary-display-hook): Doc fixes.
6305 (european-calendar-style): Doc fix. Use calendar-set-date-style for
6306 custom :set. Mark as obsolete.
6307 (calendar-date-style, iso-date-diary-pattern)
6308 (iso-calendar-display-form): New user variables.
6309 (diary-date-forms, calendar-date-display-form): Set using
6310 calendar-date-style. Doc fix.
6311 (calendar-set-date-style): New command.
6312 (european-calendar, american-calendar): Use calendar-set-date-style.
6313 Mark as obsolete.
6314
6315 * calendar/diary-lib.el (number): Move declaration where needed.
6316 (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
6317 (diary-make-date): New function.
6318 (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
6319 Use diary-make-date.
6320 (diary-date-display-form, diary-insert-entry-1): New functions.
6321 (insert-monthly-diary-entry, insert-yearly-diary-entry):
6322 Use diary-insert-entry-1.
6323 (insert-anniversary-diary-entry, insert-block-diary-entry)
6324 (insert-cyclic-diary-entry): Use diary-date-display-form.
6325
6326 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
6327 Autoload diary-insert-entry-1.
6328 * calendar/cal-bahai.el (diary-bahai-insert-entry)
6329 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
6330 * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
6331 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
6332 * calendar/cal-islam.el (insert-islamic-diary-entry)
6333 (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
6334 Use diary-insert-entry-1.
6335
6336 * calendar/cal-hebrew.el (diary-make-date): Autoload it.
6337 (diary-yahrzeit): Doc fix. Use diary-make-date.
6338
6339 * calendar/icalendar.el (icalendar--datetime-to-american-date):
6340 New name for icalendar--datetime-to-noneuropean-date. Make old name
6341 obsolete alias.
6342 (icalendar--datetime-to-iso-date): New function.
6343 (icalendar--datetime-to-diary-date): Doc fix. Respect
6344 calendar-date-style if bound.
6345
6346 * textmodes/remember.el (remember-diary-convert-entry):
6347 Respect calendar-date-style if bound.
6348
6349 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
6352 (xterm-mouse-handle-delete-frame): Delete.
6353
6354 * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
6355 (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
6356 (xterm-remove-modify-other-keys): Lookup terminal rather than frame
6357 in xterm-modify-other-keys-terminal-list.
6358
6359 * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
6360 are conflicts.
6361
6362 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
6363
6364 * vc.el (vc-update): Check if the buffer is unsaved only if it
6365 actually exists.
6366 (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
6367 vc-print-log.
6368
6369 2008-03-28 Magnus Henoch <mange@freemail.hu>
6370
6371 * net/dns.el (dns-write): Use set-buffer-multibyte.
6372
6373 2008-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
6374
6375 * vc-bzr.el (vc-bzr-sha1): New fun.
6376 (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
6377 (vc-bzr-registered): Use it.
6378
6379 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
6380
6381 * vc.el (vc-status-kill-dir-status-process): Simplify.
6382 (vc-status-refresh): Make sure the buffer is live.
6383 (ring): Don't require it, not used.
6384
6385 2008-03-28 Wilson Snyder <wsnyder@wsnyder.org>
6386
6387 * progmodes/verilog-mode.el (verilog-auto-inout-module):
6388 Add optional regular expression to AUTOINOUTMODULE.
6389 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
6390 (verilog-auto-inst-param, verilog-auto-reg)
6391 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
6392 (verilog-auto-output-every, verilog-auto-input)
6393 (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
6394 (verilog-auto-unused, verilog-auto): Update documentation to use
6395 more obvious instance module names versus cell names.
6396
6397 2008-03-28 Jan Djärv <jan.h.d@swipnet.se>
6398
6399 * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
6400 kill if a process is running.
6401
6402 * progmodes/grep.el (grep-mode-tool-bar-map): The same.
6403
6404 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
6405
6406 * vc.el: Add new backend function 'status-extra-headers.
6407 (vc-default-status-extra-headers): New function.
6408 (vc-status-headers): Call 'status-extra-headers. Add colors.
6409
6410 * vc-git.el (vc-git-status-extra-headers): New function.
6411
6412 2008-03-28 Glenn Morris <rgm@gnu.org>
6413
6414 * calendar/cal-menu.el (cal-menu-holidays-menu)
6415 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
6416 (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
6417 holiday-list is optional.
6418 (calendar-mouse-holidays): Remove un-needed local `l'.
6419
6420 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
6421 Remove un-needed local `date'.
6422 (calendar-cursor-to-visible-date): Use let rather than let*.
6423 Remove un-needed local `first-of-month-weekday'.
6424
6425 * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
6426
6427 * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
6428 Doc fixes.
6429 (abbreviated-calendar-year): Move here from calendar.el. Doc fix.
6430 (diary-header-line-flag, diary-header-line-format): Declare.
6431 (diary-pull-attrs): Check for multiple matches.
6432 (diary-list-entries-2): Simplify finding start of date.
6433 (diary-show-all-entries, make-diary-entry): Respect non-nil values of
6434 pop-up-frames.
6435 (diary-mark-entries-1): Re-use offset in abbreviated-year case.
6436 (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
6437
6438 2008-03-27 Dan Nicolaescu <dann@ics.uci.edu>
6439
6440 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
6441
6442 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
6443
6444 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6445
6446 * vc-hooks.el (vc-before-save): Don't prevent saving the file.
6447
6448 * image-mode.el (image-mode-reapply-winprops): Fix last change.
6449
6450 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
6451
6452 * international/mule-conf.el (define-iso-single-byte-charset):
6453 Don't make latin-iso8859-* supplementary.
6454 (#'set-charset-priority): Don't change the priority of charsets
6455 `unicode' and `emacs'.
6456
6457 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6458
6459 * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
6460 temp buffer.
6461
6462 2008-03-27 Glenn Morris <rgm@gnu.org>
6463
6464 * calendar/cal-bahai.el (diary-bahai-list-entries):
6465 * calendar/cal-hebrew.el (list-hebrew-diary-entries):
6466 * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
6467
6468 * calendar/calendar.el (diary-file): Doc fix.
6469
6470 * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
6471 (list-diary-entries-hook, mark-diary-entries-hook)
6472 (include-other-diary-files, diary-mail-entries)
6473 (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
6474 (diary-set-header): New function.
6475 (diary-header-line-flag, diary-header-line-format):
6476 Use diary-set-header for custom :set function.
6477 (diary-set-maybe-redraw): Use symbol-value rather than eval.
6478 (diary-attrtype-convert): Use intern-soft rather than read.
6479 (diary-display-no-entries): New function.
6480 (simple-diary-display, fancy-diary-display): Use it.
6481 (fancy-diary-display): Doc fix. Remove unneeded local entry-list.
6482 (diary-mark-entries-1): Fix position offsets in non-gregorian case.
6483
6484 * calendar/holidays.el (list-holidays): Doc fix.
6485
6486 2008-03-26 Jay Belanger <jay.p.belanger@gmail.com>
6487
6488 * calc/calc-store.el (calc-read-var-name-history): New variable.
6489 (calc-read-var-name): Use `calc-read-var-name-history'.
6490
6491 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6492
6493 * image-mode.el (image-mode-reapply-winprops): Simplify now that
6494 window-configuration-change-hook works buffer-locally.
6495
6496 2008-03-26 Johan Bockgård <bojohan@gnu.org>
6497
6498 * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
6499 for Emacs Lisp, not Lisp.
6500
6501 2008-03-26 Juanma Barranquero <lekktu@gmail.com>
6502
6503 * help-fns.el (describe-function-1, describe-variable):
6504 If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
6505
6506 * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
6507 replacement is provided, don't print "use nil instead".
6508
6509 2008-03-26 Johan Bockgård <bojohan@gnu.org>
6510
6511 * complete.el (PC-do-completion): Use regexp-quote.
6512
6513 2008-03-26 Dan Nicolaescu <dann@ics.uci.edu>
6514
6515 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
6516 Detect missing files.
6517
6518 * vc-git.el (vc-git-extra-menu-map): New key map.
6519 (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
6520 New functions.
6521
6522 * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
6523 and 'missing files.
6524
6525 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6526
6527 * calendar/holidays.el (list-holidays): Make Y2 optional.
6528
6529 * calendar/appt.el (appt-buffer-name): Don't use a leading space for
6530 buffers shown to the user.
6531 (appt-disp-window): Disable undo explicitly now that the leading space
6532 is gone.
6533
6534 * simple.el (activate-mark): New function.
6535 (set-mark-command): Use it with region-active-p to clean up the code.
6536 (exchange-point-and-mark): Invert the meaning of C-u when
6537 transient-mark-mode is active.
6538
6539 * dired-aux.el (dired-create-files): Use dolist.
6540
6541 * bindings.el (mode-line-change-eol): Use with-selected-window.
6542
6543 * apropos.el (apropos-command): Include macros.
6544
6545 2008-03-26 Glenn Morris <rgm@gnu.org>
6546
6547 * calendar/cal-bahai.el: Require calendar, not cal-julian.
6548 (calendar-bahai-epoch): Doc fix.
6549
6550 * calendar/cal-china.el: Explicitly require calendar.
6551
6552 * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
6553 Require calendar rather than cal-julian.
6554 Autoload calendar-absolute-from-julian.
6555 * calendar/cal-coptic.el (coptic-calendar-epoch):
6556 * calendar/cal-islam.el (calendar-islamic-epoch):
6557 * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
6558
6559 * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
6560
6561 * calendar/cal-dst.el: Don't require cal-persia.
6562 (calendar-absolute-from-persian): Autoload it.
6563 (dst-adjust-time): Doc fix.
6564
6565 * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
6566 cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
6567 calendar.
6568
6569 * calendar/cal-menu.el: Require calendar rather than declaring
6570 functions.
6571 * calendar/calendar.el: Provide calendar before requiring cal-menu.
6572
6573 * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
6574 calendar-after-frame-setup-hooks. Update callers, make old name an
6575 obsolete alias. Doc fix.
6576 (calendar-frame-1): Doc fix.
6577
6578 * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
6579
6580 * calendar/calendar.el (oriental-holidays, solar-holidays):
6581 * calendar/holidays.el (list-holidays): Assume atan always bound.
6582
6583 * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
6584 Explicitly require calendar, not cal-julian.
6585 * calendar/lunar.el: Explicitly require cal-dst.
6586
6587 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6588
6589 * autorevert.el (auto-revert-buffers): Use buffer-live-p.
6590
6591 * help-fns.el (describe-function-1, describe-variable): If no
6592 replacement is provided, don't print "use nil instead".
6593
6594 2008-03-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6595
6596 * proced.el: New file.
6597
6598 2008-03-25 Tetsurou Okazaki <okazaki@be.to> (tiny change)
6599
6600 * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
6601
6602 2008-03-25 Juri Linkov <juri@jurta.org>
6603
6604 * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
6605 in battery-mode-line-format.
6606
6607 * bindings.el (minibuffer-local-map): For the command
6608 file-cache-minibuffer-complete replace keymap minibuffer-local-map
6609 with map which is already locally bound to minibuffer-local-map.
6610
6611 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
6612
6613 * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
6614 Remove `sort-first' argument.
6615
6616 * subr.el (redisplay-end-trigger-functions)
6617 (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
6618 (process-filter-multibyte-p, set-process-filter-multibyte):
6619 Mark as obsolete.
6620
6621 2008-03-25 Juanma Barranquero <lekktu@gmail.com>
6622
6623 * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
6624 bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
6625 use the LOCAL arg of `add-hook'.
6626 (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
6627 Remove spurious * from defcustom docstrings.
6628 (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
6629 Fix typos in messages.
6630 (reb-mode-buffer-p): New function.
6631 (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'. Use `when'.
6632 (top, reb-show-subexp, reb-auto-update, reb-delete-overlays)
6633 (reb-cook-regexp, reb-update-regexp, reb-update-overlays):
6634 Use `unless', `when'.
6635 (re-builder-unload-function): New function.
6636
6637 2008-03-25 Dan Nicolaescu <dann@ics.uci.edu>
6638
6639 * vc-hooks.el (vc-state): Add documentation for 'missing.
6640
6641 2008-03-25 Wilson Snyder <wsnyder@wsnyder.org>
6642
6643 * progmodes/verilog-mode.el (verilog-auto-output)
6644 (verilog-auto-input, verilog-auto-inout, verilog-auto)
6645 (verilog-delete-auto): Add optional regular expression to
6646 AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
6647 (verilog-signals-matching-regexp): New internal function for
6648 signal matching.
6649
6650 2008-03-25 Johan Bockgård <bojohan@gnu.org>
6651
6652 * info.el (Info-isearch-search): Always return point.
6653
6654 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
6655
6656 * diff-mode.el (diff-remembered-defdir): New var.
6657 (diff-find-file-name): Use it to flush diff-remembered-files-alist.
6658
6659 2008-03-25 Glenn Morris <rgm@gnu.org>
6660
6661 * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
6662 calendar-bahai-prompt-for-date. Update callers, make old name an
6663 obsolete alias. Doc fix.
6664 * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
6665 coptic-prompt-for-date. Update callers, make old name an
6666 obsolete alias. Doc fix.
6667 * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
6668 calendar-hebrew-prompt-for-date. Update callers. Doc fix.
6669 * calendar/cal-islam.el (calendar-islamic-read-date): New name for
6670 calendar-islamic-prompt-for-date. Update callers. Doc fix.
6671 * calendar/cal-iso.el (calendar-iso-read-date): New name for
6672 calendar-iso-read-args. Update callers, make old name an obsolete
6673 alias.
6674 * calendar/cal-persia.el (calendar-persian-read-date): New name for
6675 persian-prompt-for-date. Update callers, make old name an
6676 obsolete alias. Doc fix. Move definition before use.
6677
6678 * calendar/cal-x.el (diary-frame-parameters)
6679 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
6680 (calendar-frame-1): Doc fixes.
6681 (make-fancy-diary-buffer): Remove declaration.
6682 (calendar-dedicate-diary): Replace call to deleted function
6683 make-fancy-diary-buffer.
6684 (calendar-frame-setup): New function.
6685 (calendar-one-frame-setup, calendar-only-one-frame-setup)
6686 (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
6687 work, and mark as obsolete.
6688 (special-display-buffer-names): Don't mess with this; it's not our
6689 business.
6690 (cal-x-load-hook): Defvar it, and mark as obsolete.
6691
6692 * calendar/calendar.el (calendar-remove-frame-by-deleting):
6693 Default to t. Add to 'calendar group.
6694 (calendar): Doc fix. Use calendar-frame-setup.
6695 (calendar-basic-setup): Doc fix. Add optional NODISPLAY argument.
6696 (generate-calendar-window): Doc fix.
6697
6698 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6699
6700 * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
6701
6702 2008-03-24 Drew Adams <drew.adams@oracle.com>
6703
6704 * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
6705 New variables.
6706 (finder-mode): Use finder-mode-syntax-table. Set font-lock-defaults.
6707 (finder-exit): Ignore errors rather than avoiding them.
6708 Kill *Finder-package* buffer also.
6709
6710 2008-03-24 Andreas Schwab <schwab@suse.de>
6711
6712 * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
6713
6714 2008-03-24 Dan Nicolaescu <dann@ics.uci.edu>
6715
6716 * vc-hg.el (vc-hg-after-dir-status):
6717 * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
6718
6719 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
6720 Detect removed files.
6721
6722 * vc.el (vc-status-printer): Use a different face for missing files.
6723 (vc-status-hide-up-to-date): Rename from
6724 vc-status-remove-up-to-date. Update all callers.
6725 (vc-status-mode-map): Bind C-m.
6726
6727 2008-03-24 Alexandre Julliard <julliard@winehq.org>
6728
6729 * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
6730 code ...
6731 (vc-git--state-code): ... to this new function.
6732 (vc-git-state): Use it.
6733
6734 2008-03-24 Trent Buck <trentbuck@gmail.com> (tiny change)
6735
6736 * textmodes/remember.el (remember-mail-date)
6737 (remember-store-in-mailbox): Write date and From line in such a
6738 way that Mutt can read it.
6739
6740 2008-03-23 Chong Yidong <cyd@stupidchicken.com>
6741
6742 * simple.el (transient-mark-mode): Turn on by default.
6743
6744 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
6745
6746 * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
6747 'unregistered for unregistered files.
6748
6749 * vc-hg.el (vc-hg-state): Return 'removed for removed files.
6750
6751 * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
6752
6753 * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
6754 subdirectories.
6755
6756 * vc.el (vc-status-prepare-status-buffer): Fix thinko.
6757 (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
6758 Add :enable for vc-status-refresh.
6759 (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
6760 (vc-status-tool-bar-map): Add binding for
6761 vc-status-kill-dir-status-process.
6762 Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
6763 (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
6764 Reset vc-status-process-buffer.
6765 (vc-status-refresh): Don't run two refreshes at a time.
6766 (vc-status): If the buffer is already in vc-status-mode only refresh.
6767 (vc-status-mark-buffer-changed): Add an optional file parameter.
6768 (vc-resynch-buffer): Use it.
6769 (vc-delete-file): Expand the file name before using it.
6770 Be careful to not create a new buffer with the old file contents.
6771 Update the VC state after performing the operation.
6772
6773 2008-03-23 Andreas Schwab <schwab@suse.de>
6774
6775 * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
6776 Fix radio button condition.
6777 [box]: Likewise.
6778 [customize]: Add radio button.
6779
6780 2008-03-23 Jay Belanger <jay.p.belanger@gmail.com>
6781
6782 * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
6783 (calc-user-parse-tables, calc-gnuplot-default-device)
6784 (calc-gnuplot-default-output, calc-gnuplot-print-device)
6785 (calc-gnuplot-print-output, calc-gnuplot-geometry)
6786 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
6787 (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
6788 (calc-undo-list, calc-redo-list, calc-main-buffer)
6789 (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
6790 (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
6791 (calc-said-hello, calc-executing-macro, calc-any-selections)
6792 (calc-help-phase, calc-full-help-flag, calc-refresh-count)
6793 (calc-display-dirty, calc-embedded-info, calc-embedded-active)
6794 (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
6795 (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
6796 (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
6797 (calc-create-buffer, calc-quit): Add docstrings.
6798
6799 2008-03-23 Juanma Barranquero <lekktu@gmail.com>
6800
6801 * makefile.w32-in (WINS_ALMOST): Add org.
6802
6803 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
6804
6805 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
6806 New functions to implement vc-status support.
6807
6808 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
6809
6810 * vc.el (vc-status-prepare-status-buffer): New function.
6811 (vc-status): Use it.
6812
6813 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
6814 appropriate.
6815
6816 2008-03-22 Alexandre Julliard <julliard@winehq.org>
6817
6818 * vc-git.el (vc-git--empty-db-p)
6819 (vc-git-after-dir-status-stage1-empty-db): New functions.
6820 (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
6821 Add support for empty repositories.
6822
6823 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
6824
6825 * vc-git.el (vc-git-annotate-extract-revision-at-line):
6826 Allow "^" in a version name.
6827
6828 * vc-mtn.el (vc-mtn-state): Support the added state.
6829
6830 2008-03-22 Carsten Dominik <dominik@science.uva.nl>
6831
6832 * org: New directory for Org-mode.
6833
6834 * org/org-export-latex.el: Moved from lisp/texmodes.
6835
6836 * org/org-irc.el: Moved from lisp/texmodes.
6837
6838 * org/org-mac-message.el: Moved from lisp/texmodes.
6839
6840 * org/org-mouse.el: Moved from lisp/texmodes.
6841
6842 * org/org-publish.el: Moved from lisp/texmodes.
6843
6844 2008-03-21 Juri Linkov <juri@jurta.org>
6845
6846 * comint.el (comint-dynamic-simple-complete):
6847 Use variable `stub' for the second arg `common-substring'
6848 of `comint-dynamic-list-completions'.
6849 (comint-dynamic-list-filename-completions):
6850 Use variable `filenondir' for the second arg `common-substring'
6851 of `comint-dynamic-list-completions'.
6852 (comint-dynamic-list-completions): Add new optional arg
6853 `common-substring'. Add `common-substring' as the second arg of
6854 the call to `display-completion-list'. Doc fix.
6855
6856 * comint.el (comint-dynamic-complete-as-filename)
6857 (comint-dynamic-list-filename-completions)
6858 (comint-dynamic-simple-complete): Use `minibuffer-message'
6859 to display message "No completions of %s" when a command
6860 is called in the minibuffer.
6861 (comint-dynamic-simple-complete): Don't display other
6862 completion messages when a command is called in the minibuffer.
6863 (comint-dynamic-list-completions): Use `minibuffer-message'
6864 to display message " [Type space to flush ...]" when a command
6865 is called in the minibuffer.
6866
6867 * shell.el (shell-dynamic-complete-command)
6868 (shell-dynamic-complete-environment-variable): Don't display
6869 completion messages when command is called in the minibuffer.
6870
6871 * emacs-lisp/lisp.el (lisp-complete-symbol):
6872 Use `minibuffer-message' to display message "No completions of %s"
6873 when this command is called in the minibuffer.
6874
6875 * bindings.el (standard-mode-line-modes): Put special help-echo
6876 tooltip on recursive edit %[ %] mode-line constructs.
6877
6878 * dabbrev.el (debug-ignored-errors): Remove $ from the end of
6879 "^No dynamic expansion for .* found$" to allow error messages like
6880 "No dynamic expansion for \"%s\" found in this-buffer".
6881
6882 2008-03-21 Michael Albinus <michael.albinus@gmx.de>
6883
6884 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
6885 "psftp".
6886
6887 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6888
6889 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
6890 * vc.el (vc-default-dired-state-info): Use just "modified".
6891 * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
6892 (vc-cvs-mode-line-string): Make use of the better default.
6893 (vc-cvs-parse-entry): Use the new `added'.
6894 (vc-cvs-dired-state-info): Remove.
6895 * vc-svn.el (vc-svn-dired-state-info): Remove.
6896 * vc-hg.el (vc-hg-dired-state-info): Remove.
6897 * vc-git.el (vc-git-dired-state-info): Remove.
6898
6899 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
6900
6901 * vc-git.el (vc-git-status-result): New variable.
6902 (vc-git-dir-status): Split out ...
6903 (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
6904 ... these new functions and work asynchronously.
6905
6906 2008-03-21 Alexandre Julliard <julliard@winehq.org>
6907
6908 * vc-git.el (vc-git-after-dir-status): Remove.
6909 (vc-git-dired-state-info): Reimplement.
6910
6911 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
6912
6913 * replace.el (occur-mode-map): Add :help.
6914
6915 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
6916 for disassemble.
6917
6918 * vc.el (vc-status-mark-buffer-changed): Better deal with files in
6919 the 'added state.
6920 (vc-status-remove-up-to-date): New function.
6921 (vc-status-mode-map, vc-status-menu-map): Bind it.
6922 (vc-status-printer): Use a different face up-to-date files.
6923 (vc-resynch-buffer): Update the vc-status buffer if it exists.
6924 (Todo): Remove solved entries.
6925
6926 * vc-hg.el (vc-hg-state):
6927 * vc-git.el (vc-git-state):
6928 * vc-cvs.el (vc-cvs-parse-status):
6929 * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
6930 state.
6931
6932 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6933
6934 * progmodes/compile.el (compile):
6935 * progmodes/grep.el (grep, grep-find): Use read-shell-command.
6936
6937 * simple.el (minibuffer-local-shell-command-map): New var.
6938 (minibuffer-complete-shell-command, read-shell-command): New funs.
6939 (shell-command, shell-command-on-region): Use them.
6940
6941 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
6942
6943 * vc.el (vc-status-mark-buffer-changed): New function to implement
6944 updating of the *vc-status* buffer when a buffer is saved.
6945 (vc-status-mode): Use it for after-change-hook.
6946 (vc-add-to-vc-status-buffer): Rename to ...
6947 (vc-status-add-entry): ... this.
6948 (Todo): Add new entry.
6949
6950 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6951
6952 * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
6953
6954 2008-03-20 Juanma Barranquero <lekktu@gmail.com>
6955
6956 * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
6957 (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
6958 Remove spurious * from defcustom docstrings.
6959 (icomplete-compute-delay): Fix docstring and remove spurious *.
6960 (icomplete-delay-completions-threshold): Fix typo in docstring and
6961 remove spurious *.
6962 (icomplete-completions): While collecting the list of prospective
6963 candidates, don't overshoot `icomplete-prospects-length'.
6964
6965 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
6966
6967 * textmodes/refbib.el:
6968 * textmodes/reftex.el:
6969 * textmodes/reftex-global.el:
6970 * textmodes/reftex-vars.el:
6971 * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
6972 compiler pacifying defvars.
6973 (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
6974 * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
6975 not needed.
6976
6977 2008-03-20 Wilson Snyder <wsnyder@wsnyder.org>
6978
6979 * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
6980 (verilog-stmt-menu, verilog-menu): Add :help and filter it.
6981 (verilog-customize, verilog-font-customize)
6982 (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
6983 (verilog-mode): Update documentation strings to match tool tips.
6984 (verilog-auto-search-do, verilog-auto-re-search-do)
6985 (verilog-skip-forward-comment-or-string): Fix verilog-auto
6986 expansion when a .* appears inside a string.
6987 (verilog-re-search-forward, verilog-re-search-backward):
6988 Add comment to recall how this works.
6989 (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
6990
6991 2008-03-20 Glenn Morris <rgm@gnu.org>
6992
6993 * calendar/calendar.el (calendar-other-dates): New function.
6994 (calendar-print-other-dates): Use calendar-other-dates.
6995 * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
6996 the declarations it replaces.
6997 (calendar-mouse-print-dates): Use calendar-other-dates.
6998
6999 * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
7000 (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
7001 (calendar-absolute-from-bahai): Fix the leap-year case.
7002 (calendar-bahai-from-absolute): Re-use the Gregorian month.
7003 (calendar-bahai-date-string, calendar-bahai-print-date):
7004 Handle pre-Bahai dates.
7005
7006 * calendar/cal-china.el (chinese-calendar-celestial-stem)
7007 (chinese-calendar-terrestrial-branch): Make defcustoms.
7008
7009 * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
7010 (calendar-mouse-view-diary-entries): Use or.
7011 (calendar-mouse-chinese-date): Remove unused command.
7012 (cal-menu-load-hook): Mark as obsolete.
7013
7014 * calendar/solar.el (calendar-location-name, calendar-latitude)
7015 (calendar-longitude, solar-arctan, sunrise-sunset)
7016 (solar-mean-equinoxes/solstices): Use the appropriate equality test.
7017
7018 2008-03-20 Jay Belanger <jay.p.belanger@gmail.com>
7019
7020 * calc/calc.el: Remove outdated comments.
7021 (defcalcmodevar, calc-mode-var-list-restore-default-values)
7022 (calc-mode-var-list-restore-saved-values, calc-autorange-units):
7023 Add docstrings.
7024
7025 2008-03-19 Jason Rumney <jasonr@gnu.org>
7026
7027 * w32-fns.el (x-alternatives-map): Add S-tab mapping.
7028
7029 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de>
7030
7031 * net/tls.el (open-tls-stream): Reindent.
7032
7033 2008-03-19 Michael Albinus <michael.albinus@gmx.de>
7034
7035 * net/tramp.el (tramp-let-maybe): Removed.
7036 (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
7037 It does not exist under XEmacs.
7038 (tramp-handle-file-truename, tramp-handle-expand-file-name)
7039 (tramp-completion-file-name-handler): Let-bind
7040 `directory-sep-char'.
7041
7042 * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
7043 `directory-sep-char'.
7044
7045 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7046
7047 * help-fns.el (describe-function-1): Don't signal "missing arglist"
7048 for autoloaded keymaps.
7049
7050 * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
7051 (electric-verilog-terminate-line, verilog-in-struct-region-p)
7052 (verilog-backward-ws&directives, verilog-forward-ws&directives)
7053 (verilog-in-comment-p, verilog-in-star-comment-p)
7054 (verilog-in-slash-comment-p, verilog-skip-backward-comments)
7055 (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
7056 (verilog-skip-forward-comment-or-string, verilog-in-paren)
7057 (verilog-skip-forward-comment-p): Use it.
7058
7059 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
7060
7061 * textmodes/org.el (org-link-store, org-link-follow, org-latex)
7062 (org-remember-templates, org-time-stamp-rounding-minutes)
7063 (org-back-over-empty-lines, org-find-base-buffer-visiting)
7064 (org-columns-new): Fix typos in docstrings.
7065
7066 2008-03-19 Glenn Morris <rgm@gnu.org>
7067
7068 * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
7069 (tramp-handle-shell-command): Use condition-case rather than
7070 ignore-errors.
7071
7072 2008-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7073
7074 * diff-mode.el (diff-header): Make the color louder.
7075 (diff-refine-change): Tone the color down.
7076
7077 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
7078
7079 * descr-text.el (describe-char): When `describe-char-unidata-list'
7080 is set to show all properties, list them in the right order.
7081
7082 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7083
7084 * international/mule.el (load-with-code-conversion): Avoid setting
7085 default-enable-multibyte-characters.
7086
7087 2008-03-19 Gustav HÃ¥llberg <gustav@virtutech.com> (tiny change)
7088
7089 * vc.el (vc-annotate-background): Fix custom type.
7090
7091 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7092
7093 * descr-text.el (describe-char-unidata-list): Allow specifying
7094 just all properties.
7095 (describe-char): Handle that new value.
7096
7097 * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
7098
7099 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
7100
7101 * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
7102 instead of file name extension to make docs with uncommon
7103 extensions work.
7104
7105 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
7106
7107 * doc-view.el (require): Require cl at compile time because
7108 `assert' needs it.
7109
7110 2008-03-18 Glenn Morris <rgm@gnu.org>
7111
7112 * calendar/calendar.el (initial-calendar-window-hook)
7113 (today-visible-calendar-hook): Doc fixes.
7114
7115 2008-03-17 Michael Albinus <michael.albinus@gmx.de>
7116
7117 * net/tramp.el (tramp-root-regexp): Simplify.
7118 (tramp-completion-file-name-regexp-separate): Don't insist on
7119 leading "[". This prevents method or user or host completion.
7120 (tramp-let-maybe): Autoload it.
7121 (tramp-drop-volume-letter): Don't autoload. When not on W32, it
7122 is an alias for `identity'.
7123 (tramp-handle-write-region): Protect `last-coding-system-used'
7124 over the trailing statements.
7125 (tramp-completion-file-name-handler-post-function): Remove.
7126 (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
7127 instead of calling `tramp-drop-volume-letter'.
7128
7129 * net/tramp.el:
7130 * net/tramp-uu.el:
7131 * net/trampver.el: Move coding cookie at the end.
7132
7133 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
7134
7135 * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
7136 elements which may be something else than characters.
7137
7138 2008-03-17 Dan Nicolaescu <dann@ics.uci.edu>
7139
7140 * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
7141 New functions to implement vc-status support.
7142
7143 * vc.el (vc-default-extra-status-menu)
7144 (vc-add-to-vc-status-buffer): New functions.
7145
7146 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
7147 for eldoc and ielm.
7148
7149 2008-03-17 Glenn Morris <rgm@gnu.org>
7150
7151 * calendar/cal-x.el (diary-frame-parameters)
7152 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
7153 Fix custom type; add options.
7154 (calendar-frame, diary-frame): Doc fixes.
7155 (calendar-dedicate-diary, calendar-frame-1): Extract common code into
7156 new functions.
7157 (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
7158 Use calendar-frame-1 and calendar-dedicate-diary.
7159 (calendar-one-frame-setup): Also handle only-one-frame case.
7160 (calendar-only-one-frame-setup): Doc fix. Just call
7161 calendar-one-frame-setup.
7162
7163 * calendar/diary-lib.el: Re-order some definitions before their use.
7164 (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
7165 (diary-list-entries): Doc fixes.
7166 (make-fancy-diary-display): Remove function.
7167
7168 * calendar/calendar.el (calendar-today-marker)
7169 (initial-calendar-window-hook, today-visible-calendar-hook)
7170 (today-invisible-calendar-hook, diary-file, calendar-basic-setup)
7171 (calendar-star-date, calendar-mark-today): Doc fixes.
7172 (today-visible-calendar-hook): Add options.
7173 (calendar-in-read-only-buffer): New macro.
7174 (calendar-basic-setup): Adapt for change in calendar-read-date.
7175 Place holiday let inside if.
7176 (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
7177 (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
7178 (calendar-print-other-dates): Use one let rather than many.
7179
7180 * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
7181 (calendar-print-other-dates):
7182 * calendar/cal-hebrew.el (list-yahrzeit-dates):
7183 * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
7184 * calendar/holidays.el (calendar-list-holidays, list-holidays)
7185 (calendar-cursor-holidays):
7186 * calendar/lunar.el (calendar-phases-of-moon): Use
7187 calendar-in-read-only-buffer to replace previous code and disable undo.
7188
7189 2008-03-16 Juri Linkov <juri@jurta.org>
7190
7191 * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
7192 and regexp-search-ring-yank-pointer for the HISTPOS argument of
7193 read-from-minibuffer to provide the correct initial minibuffer
7194 history position in isearch-edit-string when it is called from
7195 isearch-ring-adjust.
7196
7197 * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
7198 to check if the current buffer is the minibuffer, and in this case
7199 call abort-recursive-edit to kill the minibuffer. Doc fix.
7200 (kill-this-buffer-enabled-p): Allow this function to return non-nil
7201 when the current buffer is the minibuffer.
7202
7203 * simple.el (goto-line): Leave mark at previous position. Doc fix.
7204
7205 2008-03-16 Tassilo Horn <tassilo@member.fsf.org>
7206
7207 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
7208 Use non-nil PARENTS attribute of make-directory instead of
7209 explicitly checking existence the current cache directory.
7210
7211 2008-03-16 Daiki Ueno <ueno@unixuser.org>
7212
7213 * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
7214 M-x epa-file-select-keys.
7215
7216 2008-03-16 Kenichi Handa <handa@m17n.org>
7217
7218 * international/mule.el (auto-coding-alist):
7219 Use no-conversion-multibyte for archive files.
7220
7221 2008-03-16 Glenn Morris <rgm@gnu.org>
7222
7223 * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
7224 New functions.
7225 * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
7226 (calendar-bahai-mark-date-pattern): Add optional argument `color'.
7227 Use calendar-mark-1.
7228 * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
7229 (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
7230 Use calendar-mark-complex.
7231 * calendar/cal-islam.el (calendar-mark-1): Autoload it.
7232 (mark-islamic-calendar-date-pattern): Add optional argument `color'.
7233 Use calendar-mark-1.
7234
7235 * calendar/calendar.el (calendar-mod): Remove.
7236 * calendar/cal-china.el (calendar-chinese-from-absolute)
7237 (calendar-chinese-date-string): Expand calendar-mod calls.
7238 * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
7239 Expand calendar-mod calls.
7240
7241 * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
7242 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
7243 (diary-bahai-insert-yearly-entry): Use let rather than let*.
7244 Move obsolete aliases after the functions that replaced them.
7245
7246 * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
7247 (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
7248 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
7249 Use let rather than let*.
7250 (calendar-hebrew-prompt-for-date): New function.
7251 (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
7252 (holiday-tisha-b-av-etc): Use unless, let.
7253
7254 * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
7255 (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
7256
7257 * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
7258
7259 * calendar/calendar.el (calendar-for-loop): Add indent spec.
7260
7261 * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
7262 (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
7263 than concat.
7264 (diary): Remove un-needed let.
7265 (view-other-diary-entries): Rename argument.
7266 (diary-list-entries-2): New function.
7267 (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
7268 (print-diary-entries): Use unless.
7269 (diary-mark-entries-1): Change argument order, make all but
7270 markfunc optional. Handle the standard (Gregorian) case.
7271 Use match-string-no-properties. Handle marks.
7272 (mark-diary-entries): Use diary-mark-entries-1.
7273 (diary-font-lock-keywords-1): New macro.
7274 (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
7275
7276 2008-03-16 Ulf Jasper <ulf.jasper@web.de>
7277
7278 * icalendar.el (icalendar-version): Increase to 0.18.
7279 (icalendar-export-hidden-diary-entries): New variable.
7280 (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
7281 In case of error, insert full error-val.
7282 (icalendar-first-weekday-of-year): Remove `offset' argument. Doc fix.
7283 Use calendar-day-of-week. Return the day number.
7284 (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
7285
7286 2008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov>
7287
7288 * icalendar.el (icalendar-recurring-start-year): New variable.
7289 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
7290 (icalendar-export-region): Ignore hidden diary entries.
7291 (icalendar--convert-ordinary-to-ical): Fix case where event
7292 spans across midnight boundary.
7293 (icalendar-first-weekday-of-year): New function.
7294 (icalendar--convert-weekly-to-ical): Allow user-selectable start
7295 year for recurring events (Mozilla calendars do not propagate
7296 recurring events forever, so year 2000 start date was not working).
7297 (icalendar--convert-yearly-to-ical): Remove extra spaces in
7298 formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
7299
7300 2008-03-15 Michael Albinus <michael.albinus@gmx.de>
7301
7302 * net/tramp.el (tramp-root-regexp): New defconst.
7303 (tramp-completion-file-name-regexp-unified)
7304 (tramp-completion-file-name-regexp-separate)
7305 (tramp-completion-file-name-regexp-url): Use it.
7306 (tramp-do-copy-or-rename-file-via-buffer):
7307 Set `enable-multibyte-characters' to nil. Set `jka-compr-inhibit' to
7308 t for `insert-file-contents-literally'.
7309 (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
7310 Autoload it.
7311 (tramp-completion-file-name-handler-post-function): New defconst.
7312 (tramp-completion-file-name-handler): Use it.
7313 (tramp-maybe-open-connection): Update calls to
7314 `tramp-flush-connection-property' for removed 2nd argument.
7315
7316 2008-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
7317
7318 * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
7319 (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
7320 New functions.
7321
7322 2008-03-15 Glenn Morris <rgm@gnu.org>
7323
7324 * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
7325 New functions.
7326 * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
7327 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7328 (diary-list-entries-1, diary-mark-entries-1): Autoload.
7329 (diary-bahai-list-entries): Use diary-list-entries-1.
7330 (diary-bahai-mark-entries): Doc fix. Use diary-mark-entries-1.
7331 * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
7332 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7333 (diary-list-entries-1, diary-mark-entries-1): Autoload.
7334 (list-hebrew-diary-entries): Use diary-list-entries-1.
7335 (mark-hebrew-diary-entries): Doc fix. Use diary-mark-entries-1.
7336 * calendar/cal-islam.el (number, original-date, add-to-diary-list)
7337 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
7338 (diary-list-entries-1, diary-mark-entries-1): Autoload.
7339 (list-islamic-diary-entries): Use diary-list-entries-1.
7340 (mark-islamic-diary-entries): Doc fix. Use diary-mark-entries-1.
7341
7342 * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
7343
7344 * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
7345
7346 * calendar/cal-china.el (number-chinese-months)
7347 (calendar-chinese-from-absolute): Use nth, caar.
7348
7349 * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
7350
7351 * calendar/cal-french.el (french-calendar-accents): Doc fix.
7352
7353 * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
7354 (calendar-hebrew-month-name-array-leap-year)
7355 (hebrew-calendar-parashiot-names): Make constants.
7356 (diary-parasha): Move definition after constants it uses.
7357
7358 * calendar/cal-html.el (cal-html-insert-link-yearpage)
7359 (cal-html-htmlify-list): Doc fix.
7360 (cal-html-htmlify-entry): Use nth.
7361
7362 * calendar/cal-islam.el (calendar-islamic-month-name-array)
7363 (calendar-islamic-epoch): Make constants.
7364 (calendar-islamic-epoch): Doc fix.
7365
7366 * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
7367
7368 * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
7369 (cal-tex-month-name): Doc fix.
7370 (cal-tex-last-blank-p): Use zerop.
7371
7372 * calendar/calendar.el (european-calendar-style, calendar-for-loop)
7373 (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
7374 (calendar-cursor-to-date): Doc fix.
7375 (hebrew-holidays-1, hebrew-holidays-4): Simplify.
7376 (extract-calendar-day, extract-calendar-year): Use cadr, nth.
7377 (calendar-day-number): Use when.
7378 (generate-calendar-month): Use dotimes.
7379 (exit-calendar, calendar-print-other-dates): Use let rather than let*.
7380 (calendar-set-mark): Reverse conditional.
7381 (calendar-make-alist): Move definition before use.
7382
7383 * calendar/diary-lib.el (diary-face-attrs)
7384 (diary-glob-file-regexp-prefix, diary-selective-display)
7385 (number-of-diary-entries, diary-list-entries, diary-goto-entry)
7386 (list-sexp-diary-entries, diary-date, diary-block, diary-float)
7387 (diary-anniversary, diary-cyclic)
7388 (diary-fancy-font-lock-fontify-region-function): Doc fixes.
7389 (diary-header-line-format): Change wording.
7390 (diary-list-entries): Set `date-start' in let.
7391 (include-other-diary-files, mark-included-diary-files): Use format.
7392 (simple-diary-display, fancy-diary-display): Use cadr, unless.
7393 (mark-diary-entries): Use 1+.
7394 (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
7395 (mark-calendar-month): Use dotimes.
7396
7397 * calendar/holidays.el (displayed-month, displayed-year):
7398 Move declarations where needed.
7399 (calendar-list-holidays): Doc fix.
7400
7401 * calendar/parse-time.el (parse-time-string): Simplify.
7402
7403 * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
7404 Make constants.
7405 (solar-sunrise-sunset): Rename some local variables for clarity.
7406 (sunrise-sunset): Use zerop.
7407 (solar-mean-equinoxes/solstices): Doc fix.
7408
7409 * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
7410 Use nth.
7411 (timeclock-completing-read, timeclock-generate-report): Use zerop.
7412 (timeclock-mean, timeclock-generate-report): Use dolist.
7413
7414 * calendar/todo-mode.el (todo-add-category): Simplify.
7415 (todo-more-important-p, todo-delete-item, todo-file-item):
7416 Use unless, when.
7417 (todo-top-priorities): Use zerop.
7418
7419 2008-03-14 Nick Roberts <nickrob@snap.net.nz>
7420
7421 * buff-menu.el (list-buffers-noselect): Display buffer name in
7422 tooltip instead of mouse binding when it doesn't fit in the list.
7423
7424 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
7425
7426 * faces.el (xw-defined-colors):
7427 * simple.el (widget-convert, shell-mode): Declare as functions
7428 instead of autoloading.
7429
7430 * abbrev.el:
7431 * button.el:
7432 * cus-face.el:
7433 * ediff-hook.el:
7434 * emacs-lisp/backquote.el:
7435 * emacs-lisp/timer.el:
7436 * facemenu.el:
7437 * faces.el:
7438 * menu-bar.el:
7439 * simple.el:
7440 * subr.el:
7441 * textmodes/fill.el:
7442 * textmodes/paragraphs.el: Remove autoloads, redundant when the
7443 files are preloaded.
7444
7445 2008-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
7446
7447 * desktop.el (desktop-create-buffer): Don't catch errors if
7448 debug-on-error is set.
7449
7450 2008-03-14 Eli Zaretskii <eliz@gnu.org>
7451
7452 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7453 ($(lisp)/calendar/diary-loaddefs.el)
7454 ($(lisp)/calendar/hol-loaddefs.el): New targets.
7455 (LOADDEFS): New macro.
7456 (autoloads): Depend on $(LOADDEFS).
7457
7458 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
7459
7460 * font-lock.el (featurep): Remove test, not useful anymore.
7461 (facemenu-keymap): Move key binding ...
7462 * facemenu.el (facemenu-keymap): ... here.
7463
7464 * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log
7465 for each file in the list.
7466 (vc-bzr-log-view-mode): Recognize the file marker.
7467
7468 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
7469 for checkdoc and profiling.
7470
7471 2008-03-14 Bastien Guerry <bzg@altern.org>
7472
7473 * textmodes/flyspell.el (nxml-mode): Add the right
7474 `flyspell-mode-predicate'.
7475
7476 * wid-edit.el (link): Use 'mouse-face for :follow-link.
7477
7478 2008-03-14 Glenn Morris <rgm@gnu.org>
7479
7480 * calendar/solar.el: Reorder so that functions are defined before use.
7481 (displayed-month, displayed-year): Move declarations where needed.
7482 (solar-get-number): Move definition before use. Use unless.
7483 (solar-equatorial-coordinates): Simplify.
7484 (solar-sunrise-and-sunset): Use let rather than let*.
7485 (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
7486
7487 * startup.el (command-line-1): Rename -internal-script back to
7488 -scriptload (reverts previous change).
7489
7490 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
7491 (calendar-bahai-leap-base): Add doc strings.
7492 (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
7493 Move definition before use.
7494 (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
7495 (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
7496 variables outside the loop. Use dolist.
7497 (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
7498
7499 * calendar/cal-china.el: Re-order so that functions are defined before
7500 use.
7501 (displayed-month, displayed-year): Move declarations where needed.
7502 (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
7503 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
7504 Add doc strings.
7505 (chinese-year-cache): Recenter on 2010. Doc fix.
7506 (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
7507 Doc fix. Simplify.
7508 (chinese-year-cache-init): New function.
7509 (compute-chinese-year, holiday-chinese-new-year)
7510 (calendar-chinese-date-string, calendar-goto-chinese-date)
7511 (make-chinese-month-assoc-list): Use cadr, nth.
7512 (chinese-months): Remove un-needed let.
7513
7514 * calendar/cal-coptic.el (coptic-calendar-month-name-array)
7515 (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
7516 (coptic-prompt-for-date): Move definition before use.
7517
7518 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
7519 (calendar-dst-find-data, calendar-daylight-time-offset)
7520 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
7521 (calendar-daylight-savings-starts-time)
7522 (calendar-daylight-savings-ends-time): Use cadr, nth.
7523
7524 * calendar/cal-french.el (french-calendar-epoch)
7525 (calendar-goto-french-date): Doc fix.
7526 (french-calendar-month-name-array)
7527 (french-calendar-multibyte-month-name-array)
7528 (french-calendar-day-name-array, french-calendar-special-days-array):
7529 Add doc strings.
7530
7531 * calendar/cal-hebrew.el (displayed-month, displayed-year)
7532 (original-date): Move declarations where needed.
7533 (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
7534 Doc fix.
7535 (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
7536 constant variables outside the loop. Use dolist.
7537
7538 * calendar/cal-islam.el (displayed-month, displayed-year)
7539 (original-date): Move declarations where needed.
7540 (islamic-calendar-day-number): Remove unused local variable `day'.
7541 (calendar-goto-islamic-date): Doc fix.
7542 (holiday-islamic): Use unless.
7543 (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
7544 constant variables outside the loop. Use dolist.
7545 (mark-islamic-calendar-date-pattern): Move definition before use.
7546 Use unless.
7547 (mark-islamic-diary-entries): Doc fix.
7548 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
7549 (insert-yearly-islamic-diary-entry): Use let rather than let*.
7550
7551 * calendar/cal-julian.el (calendar-absolute-from-julian):
7552 Move definition before use. Remove un-needed local `day'.
7553 (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
7554
7555 * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
7556 (calendar-mayan-tzolkin-names-array): Add doc strings.
7557 (calendar-mayan-long-count-from-absolute): Use a single let.
7558 (calendar-string-to-mayan-long-count): Simplify.
7559 (calendar-next-haab-date, calendar-previous-haab-date)
7560 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
7561 (calendar-previous-calendar-round-date)
7562 (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
7563 Doc fix.
7564 (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
7565 (calendar-mayan-date-string, calendar-print-mayan-date)
7566 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
7567 (calendar-mayan-long-count-common-era): Move definitions before use.
7568
7569 * calendar/cal-menu.el (displayed-year): Move declaration where needed.
7570 (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
7571 Doc fix.
7572 (calendar-mouse-goto-date): Move definition before use.
7573
7574 * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
7575 Move definition before use.
7576 (calendar-cursor-to-visible-date): Move definition before use.
7577 (calendar-scroll-left): Use unless and zerop. Combine lets into one,
7578 and place inside the conditional.
7579 (calendar-forward-day): Simplify.
7580 (calendar-end-of-month): Use unless.
7581 (calendar-goto-day-of-year): Doc fix.
7582 Relocate obsolete aliases after their replacements.
7583
7584 * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
7585
7586 * calendar/diary-lib.el (mark-diary-entries): Move some constant
7587 variables outside the diary-date-forms loop.
7588
7589 * calendar/calendar.el (diary-file): Doc fix.
7590 (calendar-buffer-list): Return buffers rather than strings (fixes
7591 previous change).
7592 (hebrew-holidays-4): Fix typo.
7593
7594 * calendar/holidays.el (displayed-month, displayed-year):
7595 Move declarations where needed.
7596 (calendar-holiday-list, calendar-list-holidays)
7597 (holiday-filter-visible-calendar): Move definitions before use.
7598 (list-holidays): Use cadr.
7599 Relocate obsolete aliases after their replacements.
7600
7601 * calendar/lunar.el (date, displayed-month, displayed-year):
7602 Move declarations where needed.
7603 (lunar-phase-list): Move definition after functions it uses.
7604 (calendar-phases-of-moon, diary-phases-of-moon)
7605 (lunar-new-moon-on-or-after): Use cadr, nth.
7606 (lunar-new-moon-on-or-after): Doc fix.
7607
7608 * textmodes/org-irc.el (top-level): CL not required when compiling.
7609 (org-irc-visit-erc): Replace runtime CL functions.
7610
7611 * textmodes/org-publish.el (declare-function): Add compatibility stub.
7612 (org-publish-delete-dups): Declare as function.
7613
7614 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
7615
7616 * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
7617 (vc-bzr-show-log-entry): Make regexp match more cases.
7618 (vc-diff-switches-list): Remove autoload, not needed.
7619
7620 2008-03-14 Juri Linkov <juri@jurta.org>
7621
7622 * isearch.el (isearch-edit-string): Remove one call to
7623 `isearch-push-state' not to push an inconsistent state,
7624 but keep another correct call to `isearch-push-state'.
7625 (isearch-ring-adjust): Call `isearch-push-state' only when
7626 `search-ring-update' is non-nil since `isearch-edit-string'
7627 already pushes its state.
7628 (isearch-message): Improve matching the failed part by checking
7629 if the original message starts with the last successful message.
7630
7631 * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
7632 (dired-perm-write): Rename from `dired-warn-writable'.
7633 Change parent face from `font-lock-warning-face' to
7634 `font-lock-comment-delimiter-face'.
7635 (dired-warn-writable-face): Rename to `dired-perm-write-face'.
7636 (dired-perm-write-face): Rename from `dired-warn-writable-face'.
7637 (dired-font-lock-keywords): Replace `dired-warn-writable-face'
7638 with `dired-perm-write-face'.
7639
7640 2008-03-13 Tassilo Horn <tassilo@member.fsf.org>
7641
7642 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
7643 Create cache dir only if it doesn't already exist.
7644
7645 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
7646
7647 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
7648 of \ and '.
7649
7650 2008-03-13 Johan Bockgård <bojohan@gnu.org>
7651
7652 * net/browse-url.el (browse-url-text-xterm):
7653 Unquote browse-url-text-browser.
7654
7655 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
7656
7657 * textmodes/org-mouse.el: Version number change.
7658
7659 * textmodes/org-publish.el (org-publish-expand-components):
7660 Remove null projects from the list of components.
7661 (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
7662 Remove unused retrieval of the :publishing-directory property.
7663 (org-publish-file): Bugfix: when using a relative directory as the
7664 publishing directory, convert it to a directory filename.
7665 (org-publish-project): New alias.
7666 (org-publish-get-files): Protect against empty p.
7667 (org-publish-file): Send an error when file is not part of any project.
7668 (org-publish-file): Offer to refresh the list of files in known
7669 project when the current file is not part of any project.
7670 (org-publish-before-export-hook)
7671 (org-publish-after-export-hook): New hooks.
7672 (org-publish-org-to): Use new hooks and kill buffers.
7673 (org-publish-file): Remove the code for killing buffers.
7674 (org-publish-initialize-files-alist): Use interactive.
7675 (org-publish-file): If the publishing function creates a new
7676 buffer, kill it after publishing.
7677 (org-publish-timestamp-filename): Protect ":" in file name path
7678 under windows.
7679
7680 * textmodes/org-export-latex.el (org-export-as-latex): Revert the
7681 change that killed the LaTeX buffer.
7682
7683 * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
7684 in the decision tree.
7685 (org-select-remember-template): Clean the code.
7686 (org-prepare-dblock): Add the extra :content parameter.
7687 (org-write-agenda): New output type ".ics" files.
7688 (org-write-agenda): Call `org-icalendar-verify-function', both for
7689 time stamps and for TODO entries.
7690 (org-agenda-collect-markers, org-create-marker-find-array)
7691 (org-check-agenda-marker-table): New functions.
7692 (org-agenda-marker-table): New variable.
7693 (org-export-as-html): Revert the change that killed the html
7694 buffer. Side effects first need to be studied carefully.
7695 (org-get-tags-at): Fix the structure of the condition-case statement.
7696 (org-ts-regexp0, org-repeat-re, org-display-custom-time)
7697 (org-timestamp-change): Fix regulear expressions to swallow the
7698 extra character for repeat-shift control.
7699 (org-auto-repeat-maybe): Implement the new repeater mechanisms.
7700 (org-get-legal-level): Alias to `org-get-valid-level'.
7701 (org-dblock-write:clocktable): Add a :link parameter, linking
7702 headlines to their location in the Org agenda files.
7703 (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
7704 throwing an error when getting tags before headlines.
7705 (org-timestamp-change, org-modify-ts-extra)
7706 (org-ts-regexp1): Fix timestamp editing.
7707 (org-agenda-custom-commands-local-options): New constant.
7708 (org-agenda-custom-commands):
7709 Use `org-agenda-custom-commands-local-options' to improve customize
7710 type. "htmlize": Removed hack to fix face problem with htmlize,
7711 it no longer seem necessary.
7712 (org-follow-link-hook): New hook.
7713 (org-agenda-custom-commands): Add "Component" as a tag for each
7714 item in a command serie.
7715 (org-open-at-point): Run `org-follow-link-hook'.
7716 (org-agenda-schedule): Bugfix: don't display marker type when it
7717 is nil.
7718 (org-store-link): org-irc required.
7719 (org-set-regexps-and-options): Parse the new logging options.
7720 (org-extract-log-state-settings): New function.
7721 (org-todo): Handle the new ways of recording state change stuff.
7722 (org-local-logging): New function.
7723 (org-columns-open-link): Fix bug with opening link in column view.
7724 (org-local-logging): New function.
7725 (org-todo): Make sure that LOGGING properties are honoured.
7726 (org-todo-keywords): Improve docstring.
7727 (org-startup-options): Cleanup startup options.
7728 (org-set-regexps-and-options): Process the "!" markers.
7729 (org-todo): Respect the new logging stuff.
7730 (org-log-note-how): New variable.
7731 (org-add-log-maybe): New parameter HOW that defines how logging
7732 should be done and also overrides PURPOSE. Add a docstring.
7733 (org-add-log-note): Check if we really need to ask for a note.
7734 (org-get-current-options): Digest the new keyword.
7735 (org-agenda-reset-markers): Rename from
7736 `org-agenda-maybe-reset-markers'. Remove FORCE argument.
7737 (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
7738 function, without force argument.
7739 (org-buffer-property-keys): Bind local variables s and p.
7740 (org-make-tags-matcher): Allow "" to match an empty or
7741 non-existent property value.
7742 (org-export-as-html): Join unsorted lists when they directly
7743 follow each other. Such lists may be created by headlines that
7744 are converted to lists.
7745 (org-nofm-to-completion): New function.
7746 (org-export-as-html): Use :html-extension instead of
7747 org-export-html-extension.
7748 (org-store-link): Support for links from `rmail-summary-mode'.
7749 (org-columns-new, org-complete, org-set-property): Set the
7750 `include-columns' argument in the call to
7751 `org-buffer-property-keys'.
7752 (org-buffer-property-keys): New argument `include-columns', to
7753 include properties expected by any of the COLUMS formats in the
7754 current buffer.
7755 (org-cleaned-string-for-export): Get rid of drawers first, so that
7756 they will be removed also in the text before the first headline.
7757 (org-clock-report): Show the clocktable when found.
7758 (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
7759 (org-version): With prefix argument, insert `org-version' at point.
7760 (org-agenda-goto): Recenter the window after finding the target
7761 location, to make sure the correct position will be displayed.
7762 (org-agenda-get-deadlines): Don't scale priority with the warning
7763 period.
7764 (org-insert-heading): Don't break line in the middle of the line.
7765 (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
7766 be 0.
7767 (org-update-checkbox-count): Revamp to deal with hierarchical
7768 beckboxes. This was a patch from Miguel A. Figueroa-Villanueva.
7769 (org-remove-timestamp-with-keyword): New function.
7770 (org-schedule, org-deadline):
7771 Use `org-remove-timestamp-with-keyword' to make sure all such time
7772 stamps are removed.
7773 (org-mode): Support for `align'.
7774 (org-agenda-get-deadlines): Make sure priorities increase as the
7775 due date approaches and is passed.
7776 (org-remember-apply-template): Fix problem with tags that
7777 contain "_" or "@".
7778 (org-make-link-regexps): Improve the regular expression for plain links.
7779 (org-agenda-get-closed): List each clocking entry.
7780 (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
7781 (org-special-ctrl-k): New option.
7782 (org-kill-line): New function.
7783 (org-archive-all-done): Fix incorrect number of stars in regexp.
7784 (org-refile-get-location): New function.
7785 (org-refile-goto-last-stored): New function.
7786 (org-global-tags-completion-table): Add the value of org-tag-alist
7787 in each buffer, to make sure that also unused tags will be
7788 available for completion.
7789 (org-columns-edit-value)
7790 (org-columns-next-allowed-value): Only update if not in agenda.
7791 (org-clocktable-steps): New function.
7792 (org-dblock-write:clocktable): Call `org-clocktable-steps'.
7793 (org-archive-subtree): Add the outline tree context as a property.
7794 (org-closest-date): New optional argument `prefer'.
7795 (org-goto-auto-isearch): New option.
7796 (org-goto-map, org-get-location): Implement auto-isearch.
7797 (org-goto-local-auto-isearch-map): New variable.
7798 (org-goto-local-search-forward-headings)
7799 (org-goto-local-auto-isearch): New functions.
7800
7801 2008-03-13 Philip Jackson <emacs@shellarchive.co.uk>
7802
7803 * textmodes/org-irc.el: New file.
7804
7805 2008-03-13 John Wiegley <johnw@gnu.org>
7806
7807 * textmodes/org-mac-message.el: New file.
7808
7809 2008-03-13 Dan Nicolaescu <dann@ics.uci.edu>
7810
7811 * font-lock.el (font-lock-comment-face): Set the foreground for
7812 the light background 8 colors case.
7813
7814 2008-03-13 Glenn Morris <rgm@gnu.org>
7815
7816 * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
7817 generate-autoload-cookie patterns.
7818
7819 * startup.el (command-line-1): Rename -scriptload to -internal-script.
7820
7821 * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
7822 (MH_E_SRC): Remove variable.
7823 ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
7824 Simplify file header. Use $@ for generated-autoload-file.
7825
7826 * Makefile.in (LOADDEFS): New variable.
7827 (AUTOGENEL): Use $LOADDEFS.
7828 (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
7829 ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el)
7830 ($(lisp)/calendar/hol-loaddefs.el): New targets.
7831 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
7832 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
7833 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
7834 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
7835 * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
7836 * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
7837 Add calendar-specific autoload cookies, and remove any setting of
7838 generated-autoload-file.
7839 * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
7840 * calendar/diary-lib.el: Replace explicit autoloads with reading of
7841 diary-loaddefs.
7842 * calendar/holidays.el: Replace explicit autoloads with reading of
7843 hol-loaddefs.
7844
7845 * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
7846 (calendar-buffer-list): Simplify.
7847 (generate-calendar-window): Use calendar-mark-holidays rather than
7848 obsolete alias.
7849
7850 * calendar/cal-hebrew.el (list-yahrzeit-dates):
7851 Use cal-hebrew-yahrzeit-buffer.
7852
7853 * calendar/cal-x.el (calendar-only-one-frame-setup)
7854 (calendar-two-frame-setup): Doc fixes.
7855 (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
7856
7857 * calendar/appt.el (appt-mode-string): Mark as risky.
7858 (appt-check): Apply mode-line-emphasis face to appt-mode-string.
7859
7860 * calendar/cal-html.el (diary-list-entries):
7861 * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
7862 (calendar-iso-from-absolute): Fix autoloads.
7863
7864 * calendar/cal-iso.el (calendar-absolute-from-iso)
7865 (calendar-iso-read-args): Simplify.
7866 (calendar-iso-date-string, calendar-iso-read-args)
7867 (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
7868
7869 * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
7870 (displayed-month, displayed-year): Move declarations where needed.
7871 (calendar-print-astro-day-number): Doc fix.
7872
7873 * calendar/cal-persia.el (persian-calendar-month-name-array)
7874 (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
7875 (persian-prompt-for-date): Remove local variable `today'.
7876
7877 * calendar/diary-lib.el (mark-calendar-month): Use zerop.
7878
7879 * calendar/solar.el (solar-moment, solar-exact-local-noon)
7880 (solar-sunrise-sunset, solar-sunrise-sunset-string)
7881 (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time)
7882 (diary-sabbath-candles, solar-equinoxes/solstices)
7883 (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
7884 (solar-time-equation, solar-date-to-et): Simplify.
7885
7886 * mail/supercite.el: Remove the `function' in `(function (lambda'.
7887 Replace `(car (cdr' with cadr'.
7888
7889 * progmodes/f90.el (f90-font-lock-n): New function.
7890 (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
7891 Use f90-font-lock-n.
7892 (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
7893
7894 * progmodes/f90.el (f90-mode-abbrev-table):
7895 * progmodes/fortran.el (fortran-mode-abbrev-table):
7896 Use newer form of define-abbrev, where supported. No need to bind
7897 abbrevs-changed for system abbrevs.
7898
7899 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
7900
7901 * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
7902 delete-frame-functions.
7903
7904 * bookmark.el (Info-current-node): Remove.
7905
7906 2008-03-12 Juri Linkov <juri@jurta.org>
7907
7908 * help.el (describe-project): Remove defaliases for view-todo and
7909 describe-project that are now unnecessary after the merge from
7910 emacs--rel--22 that added define-obsolete-function-alias.
7911
7912 * startup.el (inhibit-startup-screen): Revert incomplete
7913 2008-03-10 merge from emacs--rel--22 that partly reverted
7914 2008-02-28 change that added initial message to *scratch* buffer
7915 regardless of the value of `inhibit-startup-screen'.
7916 Now keep this change in the trunk, but not in the 22 branch.
7917
7918 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7919
7920 * international/quail.el (quail-setup-completion-buf, quail-help):
7921 * mail/binhex.el (binhex-decode-region-internal):
7922 * mail/uudecode.el (uudecode-decode-region-internal):
7923 * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
7924 * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
7925 setting default-enable-multibyte-characters.
7926
7927 * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
7928
7929 * comint.el: Fix up indentation and comment style. Remove `function'.
7930
7931 * international/mule-cmds.el (reset-language-environment)
7932 (set-language-environment-nonascii-translation):
7933 Don't set-unibyte-charset.
7934
7935 * doc-view.el: Remove all cb-args, use closures instead.
7936 (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
7937 doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
7938 doing an incorrect check). Update all callers to use the new name.
7939 (doc-view-doc->txt): Add missing `txt' argument.
7940
7941 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
7942
7943 * doc-view.el (doc-view-current-cache-dir): Set buffer used for
7944 md5 sum calculation to single-byte.
7945
7946 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7947
7948 * doc-view.el (doc-view-new-window-function): Add assertion.
7949 (doc-view-doc-type): New var.
7950 (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
7951 (doc-view-intersection): New fun.
7952 (doc-view-mode): Use it to set the new var.
7953
7954 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
7955
7956 * doc-view.el (doc-view-doc->txt, doc-view-open-text)
7957 (doc-view-already-converted-p): New functions.
7958 (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
7959 (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
7960 (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
7961 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
7962 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
7963 (doc-view-convert-current-doc): Don't hardwire the functions the
7964 sentinels call. Now they're provided by two args CALLBACK and
7965 CB-ARGS to the functions.
7966 (doc-view-search): Use doc-view-doc->txt.
7967 (doc-view-initiate-display): Use doc-view-already-converted-p.
7968 Mention new binding C-c C-t if doc-view-mode doesn't work.
7969
7970 2008-03-12 Dan Nicolaescu <dann@ics.uci.edu>
7971
7972 * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
7973
7974 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7975
7976 * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
7977 Mark " outside of tags as punctuation.
7978
7979 2008-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
7980
7981 * menu-bar.el (minibuffer-local-map): Use the same command for the
7982 "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
7983 Prefer RET over C-j for exit-minibuffer.
7984
7985 * files.el (display-buffer-other-frame): Eliminate problematic code.
7986
7987 * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
7988 (menu-bar-select-buffer): Remove.
7989 (menu-bar-select-frame): Make non-interactive and take a frame arg.
7990 (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
7991
7992 2008-03-11 Juanma Barranquero <lekktu@gmail.com>
7993
7994 * icomplete.el (icomplete-completions): Remove obsolete code.
7995
7996 * net/net-utils.el (iwconfig-program-options): Doc fix.
7997 (net-utils-run-program, run-network-program): Define as functions.
7998
7999 2008-03-11 Dan Nicolaescu <dann@ics.uci.edu>
8000
8001 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
8002
8003 2008-03-11 Glenn Morris <rgm@gnu.org>
8004
8005 * faces.el (mode-line-emphasis): New face.
8006 * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
8007
8008 * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
8009
8010 2008-03-11 Chong Yidong <cyd@stupidchicken.com>
8011
8012 * simple.el (set-mark-command): Doc fix.
8013
8014 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8015
8016 * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
8017
8018 * emacs-lisp/autoload.el (autoload-find-destination):
8019 Don't force raw-text.
8020
8021 * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
8022 * calendar/cal-loaddefs.el: Don't version control.
8023
8024 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
8025
8026 * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
8027 entries and add :help to the existing ones.
8028
8029 2008-03-10 Glenn Morris <rgm@gnu.org>
8030
8031 * calendar/cal-hebrew.el (date, entry, number): Move declarations
8032 to where they are needed.
8033
8034 * calendar/calendar.el (diary-file, hebrew-holidays-1)
8035 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
8036 (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
8037 (calendar-version): Doc fixes.
8038 (calendar-absolute-from-gregorian): Use zerop.
8039 (calendar-mode-line-format): Make it a defcustom.
8040
8041 * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
8042 (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
8043 (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
8044 (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
8045 (mark-included-diary-files, mark-calendar-days-named)
8046 (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
8047 (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
8048 (insert-monthly-diary-entry, insert-yearly-diary-entry)
8049 (insert-anniversary-diary-entry, insert-block-diary-entry)
8050 (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
8051 (diary-font-lock-sexps): Doc fixes.
8052 (diary-remind-message, mark-calendar-month): Use zerop.
8053 (diary-attrtype-convert, diary-pull-attrs): Simplify.
8054 (diary-list-entries): Revert let to let* (previous change).
8055
8056 * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
8057
8058 2008-03-10 Kim F. Storm <storm@cua.dk>
8059
8060 * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
8061 function aliases for the old names.
8062
8063 2008-03-10 Juanma Barranquero <lekktu@gmail.com>
8064
8065 * iswitchb.el (iswitchb-use-faces): Doc fix.
8066 (iswitchb-buffer-ignore, iswitchb-read-buffer):
8067 Fix typos in docstrings.
8068
8069 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
8070
8071 * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
8072 Fix typo.
8073 (verilog-type-font-keywords): Reindent.
8074
8075 2008-03-10 Michael McNamara <mac@mail.brushroad.com>
8076
8077 * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
8078 grouping-keyword regular expression.
8079 (verilog-font-lock-keywords): Allow users to toggle special
8080 highlight of grouping-keywords.
8081 (verilog-highlight-grouping-keywords): The toggle for special
8082 highlighting of grouping keywords.
8083
8084 2008-03-10 Juri Linkov <juri@jurta.org>
8085
8086 * startup.el: Revert 2008-02-28 change that adds initial message
8087 to *scratch* buffer regardless of the value of
8088 `inhibit-startup-screen'.
8089
8090 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
8091
8092 * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
8093 * textmodes/bibtex-style.el (bibtex-style-indent-basic):
8094 * progmodes/verilog-mode.el (verilog-mode):
8095 * net/socks.el (socks):
8096 * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
8097
8098 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
8099
8100 * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
8101 (doc-view-bookmark-make-record): Use them.
8102 (doc-view-bookmark-jump): Use them. Fix find-file ->find-file-noselect.
8103 (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
8104
8105 * bookmark.el (bookmark-make-record-function): Change expected return
8106 value to include a suggested bookmark name.
8107 (bookmark-make): Split into bookmark-make-record and bookmark-store.
8108 Fix reversed `overwrite' semantics.
8109 (bookmark-set): Call bookmark-make-record before prompting the user.
8110 Then pass the result to bookmark-store later on.
8111 (bookmark-make-name-function): Remove.
8112 (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
8113 * info.el (bookmark-make-name-function): Remove.
8114 (Info-mode): Don't set it.
8115 (Info-bookmark-make-name): Remove.
8116 (Info-bookmark-make-record): Use Info-current-node as suggested default
8117 bookmark name.
8118
8119 * bookmark.el (bookmark-set): Make bookmark before reading annotations.
8120 I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
8121 (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
8122 (bookmark-annotation-buffer, bookmark-annotation-file)
8123 (bookmark-annotation-point, bookmark-send-annotation)
8124 (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
8125 (bookmark-edit-annotation-text-func): Rename from
8126 bookmark-read-annotation-text-func. Keep old name as an obsolete alias.
8127 (bookmark-edit-annotation-mode-map): Move initialization into
8128 declaration.
8129
8130 * bookmark.el: Remove spurious * in docstrings.
8131 (bookmark-minibuffer-read-name-map): New var.
8132 (bookmark-set): Use it. Also pass the default value as it should.
8133 (bookmark-send-edited-annotation): Take no chances with text properties.
8134 (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
8135 (bookmark-insert-buffer-name): Remove.
8136 (bookmark-buffer-file-name): Signal an error rather than returning nil.
8137
8138 2008-03-09 Thomas Hühn <xf27@arcor.de> (tiny change)
8139
8140 * tutorial.el (tutorial--default-keys): Update `C-l' binding.
8141
8142 2008-03-09 Dan Nicolaescu <dann@ics.uci.edu>
8143
8144 * diff-mode.el (diff-mode-menu): Add :help.
8145
8146 2008-03-09 Glenn Morris <rgm@gnu.org>
8147
8148 * calendar/calendar.el (general-holidays, oriental-holidays)
8149 (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
8150 (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
8151 (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
8152 (calendar-holidays): Restore autoload cookies, because people are
8153 used to using these variables without loading calendar.el.
8154
8155 * calendar/cal-islam.el (diary-islamic-date): Move to end.
8156 (date, number): Declare where needed.
8157
8158 * calendar/diary-lib.el (nongregorian-diary-marking-hook)
8159 (list-sexp-diary-entries): Doc fixes.
8160 (diary-list-entries): Doc fix. Remove free variable `entry'.
8161 (fancy-diary-display): Use dolist, bobp. Remove free variable `entry'.
8162 Simplify setting of `date-holiday-list'.
8163 (mark-diary-entries): Remove free variable `entry'.
8164 (diary-list-entries, include-other-diary-files, fancy-diary-display):
8165 Use let where let* is not needed.
8166
8167 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
8168
8169 * bookmark.el (bookmark-make): Don't pass the `annotation' to the
8170 make-record function, instead paste it in afterwards.
8171 (bookmark-make-record-for-text-file):
8172 * doc-view.el (doc-view-bookmark-make-record):
8173 * info.el (Info-bookmark-make-record): Don't mess with annotations.
8174
8175 2008-03-08 Glenn Morris <rgm@gnu.org>
8176
8177 * calendar/diary-lib.el (entry): Declare for compiler part-way through.
8178
8179 2008-03-08 Stefan Monnier <monnier@iro.umontreal.ca>
8180
8181 * calendar/diary-lib.el (diary-list-entries)
8182 (include-other-diary-files, mark-diary-entries)
8183 (mark-sexp-diary-entries, mark-included-diary-files)
8184 (diary-entry-time, list-sexp-diary-entries): Remove the special
8185 handling of ^M that dates back to the use of selective-display.
8186 (simple-diary-display): Obey setting of pop-up-frames.
8187 (body, entry): Remove unnecessary declarations.
8188
8189 * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
8190 (bookmark-get-annotation, bookmark-set-annotation)
8191 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
8192 (bookmark-set-position, bookmark-get-front-context-string)
8193 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
8194 (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
8195 * info.el (Info-bookmark-make-record): Don't bother recording point.
8196 (bookmark-get-filename, bookmark-get-front-context-string)
8197 (bookmark-get-rear-context-string, bookmark-get-position):
8198 Don't declare any more.
8199 (bookmark-get-info-node): Remove.
8200 (bookmark-prop-get): Declare.
8201 (Info-bookmark-jump): Use it.
8202
8203 2008-03-08 Johan Bockgård <bojohan@gnu.org>
8204
8205 * subr.el (while-no-input): Don't splice BODY directly into the
8206 `or' form.
8207
8208 2008-03-08 Dan Nicolaescu <dann@ics.uci.edu>
8209
8210 * diff-mode.el (diff-ignore-whitespace-hunk):
8211 Bind inhibit-read-only before trying to change the buffer.
8212
8213 2008-03-08 Glenn Morris <rgm@gnu.org>
8214
8215 * calendar/appt.el (appt): Move custom group here from calendar.el.
8216 (appt-disp-window, appt-convert-time): Doc fixes.
8217
8218 * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
8219 (calendar-bahai-mark-date-pattern):
8220 * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
8221 * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
8222 * calendar/cal-julian.el (calendar-absolute-from-julian):
8223 * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
8224
8225 * calendar/cal-china.el (chinese-calendar): Move custom group here from
8226 calendar.el.
8227 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
8228 Make constants.
8229 (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
8230 (chinese-calendar-daylight-savings-starts)
8231 (chinese-calendar-daylight-savings-ends)
8232 (chinese-calendar-daylight-savings-starts-time)
8233 (chinese-calendar-daylight-savings-ends-time)
8234 (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
8235 Doc fixes.
8236
8237 * calendar/cal-coptic.el (coptic-name): Add doc string.
8238
8239 * calendar/cal-french.el (french-calendar-month-name-array)
8240 (french-calendar-day-name-array, french-calendar-special-days-array):
8241 Add doc strings.
8242
8243 * calendar/cal-bahai.el (diary-bahai-mark-entries)
8244 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
8245 (diary-bahai-insert-yearly-entry):
8246 * calendar/cal-dst.el (calendar-next-time-zone-transition)
8247 (calendar-time-zone):
8248 * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
8249 (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
8250 (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
8251 (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
8252 (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
8253 * calendar/cal-islam.el (islamic-calendar-leap-year-p)
8254 (list-islamic-diary-entries, mark-islamic-diary-entries)
8255 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
8256 (insert-yearly-islamic-diary-entry):
8257 * calendar/cal-iso.el (calendar-iso-read-args):
8258 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
8259 (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
8260 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
8261 (calendar-next-calendar-round-date)
8262 (calendar-mayan-long-count-common-era):
8263 * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
8264 (cal-menu-x-popup-menu, calendar-mouse-holidays)
8265 (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
8266 (calendar-mouse-goto-date):
8267 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
8268 * calendar/holidays.el (holidays):
8269 * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
8270 * calendar/time-date.el (date-to-time, time-subtract, time-add)
8271 (safe-date-to-time): Doc fixes.
8272
8273 * calendar/cal-persia.el (persian-calendar-month-name-array)
8274 (persian-calendar-epoch): Make constants.
8275
8276 * calendar/cal-tex.el (calendar-tex): Move custom group here from
8277 calendar.el.
8278
8279 * calendar/cal-x.el (diary-frame-parameters)
8280 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
8281 (calendar-after-frame-setup-hooks): Make defcustoms.
8282 (calendar-one-frame-setup, calendar-only-one-frame-setup)
8283 (calendar-two-frame-setup): Doc fix.
8284
8285 * calendar/cal-loaddefs.el: New file.
8286
8287 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
8288 * calendar/cal-french.el, calendar/cal-html.el:
8289 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
8290 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
8291 * calendar/cal-tex.el, calendar/cal-x.el:
8292 Unquote lambda functions. Add autoload cookies to functions formerly
8293 autoloaded in calendar.el. Set `generated-autoload-file' to
8294 "cal-loaddefs.el".
8295
8296 * calendar/calendar.el: Move many autoloads to separate file,
8297 cal-loaddefs.el. Move defcustoms to start and re-order.
8298 (calendar-month-name-array, calendar-starred-day): No need to
8299 declare for compiler.
8300 (cal-loaddefs): Require it.
8301 (appt, chinese-calendar, calendar-tex): Move custom groups to the
8302 appropriate file.
8303 (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
8304 Reverse logic.
8305 (diary-face, diary-file-name-prefix-function, diary-include-string)
8306 (diary-glob-file-regexp-prefix, diary-face-attrs)
8307 (diary-file-name-prefix, sexp-diary-entry-symbol)
8308 (print-diary-entries-hook, list-diary-entries-hook)
8309 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
8310 (nongregorian-diary-marking-hook, diary-list-include-blanks):
8311 Move to diary-lib.
8312 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
8313 (all-bahai-calendar-holidays): Doc fix.
8314 (calendar-insert-indented): Doc fix. Use when rather than if.
8315 (exit-calendar): Use mapc rather than mapcar.
8316 (calendar-cursor-to-date): Use zerop.
8317 (calendar-mark-ring): Add doc-string.
8318 (calendar-starred-day): Defvar it.
8319 (calendar-mode): Make calendar-starred-day local.
8320 (calendar-star-date): No need to make calendar-starred-day local.
8321
8322 * calendar/diary-lib.el: Move defcustoms to start.
8323 (diary-include-string, diary-list-include-blanks)
8324 (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
8325 (diary-file-name-prefix, diary-file-name-prefix-function)
8326 (sexp-diary-entry-symbol, list-diary-entries-hook)
8327 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
8328 (nongregorian-diary-marking-hook, print-diary-entries-hook):
8329 Move here from calendar.el.
8330 (diary-file-name-prefix-function): Use 'identity.
8331 (diary-face): Make it a defcustom, and mark as obsolete.
8332 (top-level): No need to require cal-hebrew, cal-islam when compiling.
8333 (calendar-hebrew-month-name-array-leap-year)
8334 (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
8335 Define for compiler.
8336 (diary-font-lock-keywords): Use format rather than concat.
8337 Add bahai-diary-entry-symbol.
8338
8339 * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
8340 * calendar/solar.el: Unquote lambda functions.
8341
8342 * calendar/solar.el (calendar-location-name, calendar-latitude)
8343 (calendar-longitude, solar-setup, solar-sin-degrees)
8344 (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
8345 (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
8346 (solar-sunrise-and-sunset, solar-moment, solar-daylight)
8347 (solar-exact-local-noon, solar-julian-ut-centuries)
8348 (solar-ephemeris-time, solar-date-next-longitude)
8349 (solar-horizontal-coordinates, solar-equatorial-coordinates)
8350 (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
8351 (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
8352 (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
8353 Doc fixes.
8354 (solar-horizontal-coordinates, solar-equatorial-coordinates)
8355 (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
8356 (solar-ecliptic-coordinates): Use unless.
8357 (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
8358 Use or.
8359
8360 * calendar/timeclock.el: Add doc-strings to all functions.
8361 (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
8362 (timeclock-entry-list-length, timeclock-entry-list-projects)
8363 (timeclock-day-list-projects, timeclock-day-list): Use dolist.
8364
8365 * calendar/todo-mode.el: Remove un-needed eval-when-compile.
8366
8367 * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
8368 (org-get-entries-from-diary): Require diary-lib.
8369
8370 2008-03-08 Juanma Barranquero <lekktu@gmail.com>
8371
8372 * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
8373 Pacify byte-compiler.
8374
8375 2008-03-07 Alan Mackenzie <acm@muc.de>
8376
8377 * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
8378 paren/bracket pairs parsed, to solve performance problem.
8379
8380 2008-03-07 Bastien Guerry <bzg@altern.org>
8381
8382 * bookmark.el (bookmark-set): Don't check for
8383 `bookmark-make-name-function' since `bookmark-buffer-file-name'
8384 already takes care of this.
8385 (bookmark-buffer-name, bookmark-buffer-file-name):
8386 Remove Info-mode specific code.
8387
8388 * info.el (bookmark-get-info-node): Define this function in
8389 info.el, not in bookmark.el.
8390 (Info-mode): Set `bookmark-make-name-function' to
8391 `Info-bookmark-make-name' locally.
8392 (Info-bookmark-make-name): New function.
8393
8394 * bookmark.el (bookmark-make-name-function): New variable.
8395
8396 2008-03-07 Karl Fogel <kfogel@red-bean.com>
8397
8398 * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
8399 buffer-local, not `bookmark-make-cell-function' (the old name).
8400
8401 2008-03-07 Tassilo Horn <tassilo@member.fsf.org>
8402
8403 * doc-view.el (doc-view-bookmark-make-record):
8404 * image-mode.el (image-bookmark-make-record):
8405 * info.el (Info-bookmark-make-record): Delete obsolete second arg.
8406
8407 2008-03-07 Jan Djärv <jan.h.d@swipnet.se>
8408
8409 * vc.el (vc-status-menu-map-filter): Return orig-binding if
8410 boundp 'vc-ignore-menu-filter.
8411 (vc-status-tool-bar-map): Make it defvar.
8412 (vc-status-mode): vc-status-tool-bar-map now variable.
8413 (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
8414
8415 2008-03-07 Karl Fogel <kfogel@red-bean.com>
8416
8417 Give a better name to part of the bookmark interface.
8418
8419 This was originally a much larger change, but halfway through I
8420 updated and discovered that Stefan Monnier had done the rest.
8421 It looks like he anticipated the new name too, because he used
8422 `the-record' instead of `the-cell' for some internal variable names.
8423
8424 * bookmark.el (bookmark-make-record-function): Was
8425 `bookmark-make-cell-function'.
8426 (bookmark-make, bookmark-send-annotation): Update for above.
8427 (bookmark-make-record-for-text-file):
8428 Was `bookmark-make-cell-for-text-file'. Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
8429
8430 * info.el: Adjust accordingly.
8431 (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
8432
8433 * image-mode.el: Adjust accordingly.
8434 (image-bookmark-make-record): Was `image-bookmark-make-cell'.
8435
8436 * doc-view.el: Adjust accordingly.
8437 (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
8438
8439 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
8442 Move initialization into declaration.
8443 (bookmark-get-info-node, bookmark-set-info-node): Remove.
8444 (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
8445 (bookmark-info-current-node): Remove.
8446 (bookmark-jump-noselect): Rename from bookmark-jump-internal.
8447 Add relocation fallback. Set bookmark-current-bookmark.
8448 (bookmark-default-handler): Rename from bookmark-jump-noselect.
8449 Remove relocation fallback. Don't set bookmark-current-bookmark.
8450 (bookmark-set): Let it be used even if there's no buffer-file-name
8451 as long as there is a bookmark-make-cell-function.
8452 * info.el (Info-bookmark-jump): Remove relocation fallback.
8453 Don't set bookmark-current-bookmark.
8454
8455 2008-03-07 Glenn Morris <rgm@gnu.org>
8456
8457 * calendar/appt.el (appt-issue-message)
8458 (appt-message-warning-time, appt-audible, appt-visible)
8459 (appt-msg-window, appt-display-mode-line, appt-display-duration)
8460 (appt-display-diary): Remove autoload cookies.
8461
8462 * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
8463 Remove leading `*' from defcustom doc-strings.
8464
8465 * calendar/cal-dst.el (calendar-dst): New custom group.
8466 (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
8467 (calendar-time-zone, calendar-daylight-time-offset)
8468 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
8469 (calendar-daylight-savings-starts-time)
8470 (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
8471 (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
8472 Move to start.
8473
8474 * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
8475
8476 * calendar/calendar.el (calendar-version): Use emacs-version and
8477 make it obsolete. Move to end.
8478 (calendar-offset, view-diary-entries-initially)
8479 (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
8480 (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
8481 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
8482 (all-bahai-calendar-holidays, calendar-load-hook)
8483 (initial-calendar-window-hook, today-visible-calendar-hook)
8484 (today-invisible-calendar-hook, calendar-move-hook)
8485 (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
8486 (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
8487 (diary-include-string, sexp-diary-entry-symbol)
8488 (abbreviated-calendar-year, american-date-diary-pattern)
8489 (european-date-diary-pattern, european-calendar-display-form)
8490 (american-calendar-display-form, print-diary-entries-hook)
8491 (list-diary-entries-hook, diary-hook, diary-display-hook)
8492 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
8493 (nongregorian-diary-marking-hook, diary-list-include-blanks)
8494 (holidays-in-diary-buffer, general-holidays, oriental-holidays)
8495 (local-holidays, other-holidays, hebrew-holidays-1)
8496 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
8497 (hebrew-holidays, christian-holidays, islamic-holidays)
8498 (bahai-holidays, solar-holidays, calendar-setup)
8499 (calendar-week-start-day): Remove autoload cookies.
8500 (diary-glob-file-regexp-prefix): Doc fix.
8501 (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
8502 (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
8503 (calendar-week-start-day, calendar-debug-sexp): Move to start.
8504
8505 * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
8506 (calendar-time-display-form, calendar-latitude)
8507 (calendar-longitude, solar-equinoxes-solstices): Remove autoload
8508 cookies.
8509 (calendar-latitude, calendar-longitude): Move functions after
8510 variables.
8511 (diary-sabbath-candles-minutes): Move to start.
8512 (solar-setup): Use or rather than if.
8513 (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
8514 Remove condition-case.
8515 (solar-atn2): Use zerop.
8516 (solar-equinoxes-solstices): Doc fix.
8517
8518 * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
8519 (sc-mode-map-prefix): Doc fix. Make it a defcustom.
8520
8521 * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
8522 (calendar-longitude, calendar-latitude, calendar-location-name):
8523 Declare for compiler.
8524
8525 2008-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
8526
8527 * arc-mode.el (archive-ar-file-header-re): New const.
8528 (archive-ar-summarize, archive-ar-extract): New funs.
8529 (archive-find-type): Recognize ar archives.
8530
8531 * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
8532 New functions.
8533
8534 * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
8535
8536 2008-03-06 Lennart Borgman <lennart.borgman@gmail.com>
8537
8538 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
8539 Replace :enable (mark-active) with :enable mark-active.
8540
8541 2008-03-06 Juanma Barranquero <lekktu@gmail.com>
8542
8543 * vms-patch.el (make-legal-file-name): New obsolete alias.
8544 (make-valid-file-name): Rename from `make-legal-file-name'.
8545 (make-auto-save-file-name): Use it.
8546
8547 * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
8548 (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
8549 (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
8550
8551 * textmodes/org.el (org-export-html-style): Doc fix.
8552 (org-get-legal-level): New obsolete alias.
8553 (org-get-valid-level): Rename from `org-get-legal-level'.
8554 (org-promote, org-demote, org-archive-subtree)
8555 (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
8556
8557 2008-03-06 Jan Djärv <jan.h.d@swipnet.se>
8558
8559 * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
8560
8561 * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
8562 (vc-status-toggle-mark): New functions.
8563 (vc-status-mode): Set tool bar map.
8564
8565 2008-03-05 Chong Yidong <cyd@stupidchicken.com>
8566
8567 * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
8568 Reported by Drew Adams <drew.adams@oracle.com>.
8569
8570 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
8571
8572 * subr.el (read-quoted-char): Resolve modifers of the character
8573 event.
8574
8575 * comint.el (comint-exec-1): Don't change the coding-system for
8576 decoding to dos-like EOL.
8577 (comint-carriage-motion): Fully rewrite.
8578
8579 2008-03-05 Juanma Barranquero <lekktu@gmail.com>
8580
8581 * epg.el (epg-context-include-certs): Reflow docstring.
8582 (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
8583 (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
8584 (epg-context-set-signers, epg-context-set-sig-notations)
8585 (epg-make-import-status, epg-make-import-result)
8586 (epg-start-delete-keys): Fix typos in docstrings.
8587 (epg-start-sign-keys, epg-sign-keys):
8588 Fix typos in obsolescence declarations.
8589
8590 * iswitchb.el: Don't check for `cadr' and `last'.
8591 (iswitchb-define-mode-map, iswitchb-default-keybindings):
8592 Add obsolescence declaration and remove redundant info from docstring.
8593 (iswitchb-set-common-completion, iswitchb-set-matches)
8594 (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
8595 (recentf-list, most-len, most-is-exact):
8596 Don't wrap defvars within `eval-when-compile'.
8597
8598 2008-03-05 Glenn Morris <rgm@gnu.org>
8599
8600 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
8601 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
8602 * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
8603 * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
8604 ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
8605
8606 * ediff-hook.el (ediff-window-setup-function): Don't autoload
8607 declaration for compiler.
8608 (ediff-xemacs-init-menus): Use when rather than if.
8609
8610 * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
8611 if+and to just and.
8612 (ediff-read-event, ediff-overlayp, ediff-make-overlay)
8613 (ediff-delete-overlay): Move the XEmacs test inside the definition.
8614
8615 * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
8616
8617 * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
8618 test inside XEmacs test.
8619 (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
8620 since it was doing nothing on Emacs.
8621 (ediff-make-bullet-proof-overlay): Use when rather than if.
8622
8623 * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
8624 (ediff-setup-control-frame): Remove
8625 ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
8626 a (featurep 'xemacs) test.
8627
8628 2008-03-05 Jay Belanger <jay.p.belanger@gmail.com>
8629
8630 * calc/calc-ext.el (calc-extended-command-history): New variable.
8631 (calc-exectute-extended-command): Use `calc-extended-command-history'.
8632
8633 2008-03-05 Dan Nicolaescu <dann@ics.uci.edu>
8634
8635 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
8636 (standard-mode-line-position): Add mouse-face.
8637
8638 * progmodes/compile.el (compilation-menu-map, compilation-mode-map):
8639 * progmodes/grep.el (grep-mode-map): Add :help.
8640
8641 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
8642 initialize in one step. Add :help. Use :enable to activate menu
8643 items. Show the key binding for edebug-defun.
8644 (lisp-interaction-mode-map): Add a menu.
8645
8646 * term.el (term-mode-map): Define and initialize in one step.
8647
8648 * ediff-init.el (ediff-color-display-p): Simplify.
8649 (Xor): Remove unused function.
8650 (ediff-with-syntax-table): Simplify for Emacs.
8651
8652 * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
8653 menu-bar being loaded, it always is.
8654
8655 2008-03-05 Glenn Morris <rgm@gnu.org>
8656
8657 * textmodes/tex-mode.el (tex-mode): Suppress warning about
8658 multiple definitions when compiling.
8659
8660 2008-03-04 Alan Mackenzie <acm@muc.de>
8661
8662 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
8663
8664 * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
8665 doc-string, "c-old-LEN" -> "c-old-END".
8666
8667 2008-03-04 Jason Rumney <jasonr@gnu.org>
8668
8669 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
8670 namespaces.
8671
8672 2008-03-04 Glenn Morris <rgm@gnu.org>
8673
8674 * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
8675
8676 * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
8677 than mapcar.
8678
8679 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
8680
8681 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8682 (byte-compile-nilconstp): Can't use recursion in a defsubst.
8683
8684 * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
8685 so that M-q can fill comments.
8686 (tex-executable-exists-p, tex-compile): Extend with special syntax for
8687 commands implemented in elisp.
8688 (tex-compile-commands): Add an entry to use doc-view for pdf files.
8689 (tex-format-cmd): New function.
8690 (tex-compile): Use it to let the user specify default arguments.
8691 (tex-cmd-bibtex-args): New var.
8692 (tex-cmd-doc-view): New function.
8693
8694 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
8695
8696 * faces.el (face-spec-set): Fix typos in docstring.
8697
8698 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
8699
8700 * bindings.el (mode-line-column-line-number-mode-map): New variable.
8701 (standard-mode-line-position): Use it to add a menu for toggling
8702 column number and line number display.
8703
8704 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
8705
8706 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
8707 Remove optimization that was working around the form-code-walker bug.
8708
8709 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8710 Walk into the body of lambdas after byte-compile-unfold-lambda.
8711
8712 2008-03-03 Glenn Morris <rgm@gnu.org>
8713
8714 * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
8715 value, if set, over frame value.
8716
8717 * simple.el (transient-mark-mode): Don't turn on by default.
8718
8719 * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
8720 accidentally removed by the 2007-12-05 merge from Gnus.
8721
8722 2008-03-02 Dan Nicolaescu <dann@ics.uci.edu>
8723
8724 * progmodes/compile.el (compilation-menu-map): Add menu entries
8725 for useful options.
8726
8727 2008-03-01 Dan Nicolaescu <dann@ics.uci.edu>
8728 Glenn Morris <rgm@gnu.org>
8729
8730 * emacs-lisp/bytecomp.el (byte-recompile-directory)
8731 (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
8732 Give a `bytecomp-' prefix to local variables with common names.
8733
8734 2008-03-01 Glenn Morris <rgm@gnu.org>
8735
8736 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
8737 code commented out 2007-11-10.
8738
8739 * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
8740
8741 * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
8742 Delete macro.
8743 * emulation/viper-cmd.el, emulation/viper-ex.el:
8744 * emulation/viper-init.el, emulation/viper-keym.el:
8745 * emulation/viper-mous.el, emulation/viper-util.el:
8746 * emulation/viper.el:
8747 Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
8748 featurep test.
8749
8750 Replace obselete frame-local variables with frame-parameters.
8751 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
8752 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
8753 (viper-vi-state-cursor-color): Only call make-variable-frame-local
8754 on XEmacs.
8755 * emulation/viper-util.el (viper-frame-value): New macro.
8756 * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
8757 (viper-R-state-post-command-sentinel)
8758 (viper-replace-state-post-command-sentinel)
8759 (viper-change-state-to-insert, viper-change-state-to-emacs):
8760 * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
8761 (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
8762 (viper-get-saved-cursor-color-in-insert-mode)
8763 (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
8764 Use viper-frame-value for viper-replace-overlay-cursor-color,
8765 viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
8766 viper-vi-state-cursor-color values.
8767
8768 * emulation/viper-cmd.el (zmacs-region-stays):
8769 * emulation/viper-util.el (zmacs-region-stays): No need to define
8770 for compiler.
8771
8772 * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
8773 mapcar on Emacs.
8774
8775 * emulation/viper-mous.el (viper-counting-clicks-p): Only define
8776 on XEmacs.
8777
8778 * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
8779 rather than if.
8780
8781 2008-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8782
8783 * whitespace.el: New version 9.3. As the glyph code generation was
8784 fixed, it is possible now to use character code above ?\x1FFFF in the
8785 display table. Fix `whitespace-indentation-regexp' to not include an
8786 extra ending character. Reported by Michael Welsh Duggan
8787 <mwd@cert.org>. Added hook actions when buffer is written or killed as
8788 the original whitespace package had. Suggested by Eric Cooper
8789 <ecc@cmu.edu>. Doc fix.
8790 (whitespace-action): New option.
8791 (whitespace-display-mappings): Changed default newline visualization to
8792 display downwards arrow, as the glyph code generation was fixed.
8793 (whitespace-unload-function): Assure that all local whitespace mode is
8794 turned off.
8795 (whitespace-global-modes): Fix type customization.
8796 (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
8797 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
8798 (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
8799 Fix code.
8800 (whitespace-buffer): Command removed.
8801 (whitespace-trailing-regexp, whitespace-mark-x)
8802 (whitespace-display-window, whitespace-action-when-on)
8803 (whitespace-add-local-hook, whitespace-remove-local-hook)
8804 (whitespace-write-file-hook, whitespace-kill-buffer-hook)
8805 (whitespace-action): New funs.
8806 (whitespace-report-list, whitespace-report-text)
8807 (whitespace-report-buffer-name): New consts.
8808 (whitespace-report, whitespace-report-region): New commands.
8809
8810 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
8811
8812 * disp-table.el (make-glyph-code): Don't test the result of
8813 `face-id', which already signals an error for invalid faces.
8814 (glyph-face): Simplify.
8815
8816 * desktop.el (desktop-read): Set `desktop-dirname' to nil before
8817 running `desktop-not-loaded-hook' to allow modifying it.
8818 Don't show warning message if `desktop-dirname' was modified.
8819
8820 2008-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
8821
8822 * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
8823 we still expect more lines.
8824
8825 * textmodes/fill.el (fill-comment-paragraph): Don't try to do
8826 comment-paragraph filling if the commark doesn't match
8827 comment-start-skip.
8828
8829 2008-03-01 Daiki Ueno <ueno@unixuser.org>
8830
8831 * international/utf-7.el (utf-7-encode): Never skip the trailing - for
8832 the `imap' variant.
8833
8834 2008-03-01 Jason Rumney <jasonr@gnu.org>
8835
8836 * files.el (make-auto-save-file-name): Encode more characters in
8837 non-file buffer names. Use url-encoding.
8838
8839 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
8840
8841 * net/net-utils.el (ftp-program): Fix typo in docstring.
8842 (ifconfig-program-options, netstat-program-options)
8843 (arp-program-options, route-program-options, nslookup-program-options)
8844 (ftp-program-options, smbclient-program-options)
8845 (dns-lookup-program-options, arp, route): Doc fixes.
8846
8847 * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
8848 (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
8849 (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
8850 Fix typos in docstrings.
8851 (gdb-pending-triggers): Reflow docstring.
8852 (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
8853
8854 2008-03-01 Alan Mackenzie <acm@muc.de>
8855
8856 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
8857 typing "#" at EOB.
8858
8859 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
8860
8861 * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
8862
8863 2008-02-29 Kim F. Storm <storm@cua.dk>
8864
8865 * emulation/cua-base.el (cua-remap-control-v)
8866 (cua-remap-control-z): New defcustoms.
8867 (cua-mode): Add them to set-after property.
8868 (cua--init-keymaps): Use them.
8869 Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
8870
8871 * help.el (view-emacs-todo): Rename from view-todo.
8872 (describe-gnu-project): Rename from describe-project. Users changed.
8873 (view-help-file): New helper function.
8874 (describe-distribution, describe-copying, describe-gnu-project)
8875 (view-todo, view-order-manuals, view-emacs-problems): Use it.
8876 (view-emacs-debugging, view-external-packages): New commands.
8877 (help-map): Move describe-distribution to C-h C-o (ordering).
8878 Move view-emacs-problems to C-h C-p (problems).
8879 Bind view-emacs-debugging to C-h C-d (debugging).
8880 Bind view-external-packages to C-h C-e (extras).
8881 (help-for-help-internal): Cleanup and align descriptions.
8882 Remove command names to reduce clutter.
8883
8884 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
8885
8886 * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
8887 and quieter face (not a warning).
8888
8889 2008-02-29 Dan Nicolaescu <dann@ics.uci.edu>
8890
8891 * vc.el (vc-status-crt-marked): New variable.
8892 (vc-status-mode): Make it local.
8893 (vc-status-refresh): Use it to save the marked files.
8894 (vc-update-vc-status-buffer): Use it to restore the marked files.
8895
8896 * vc-svn.el (vc-svn-after-dir-status):
8897 * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
8898
8899 2008-02-29 Glenn Morris <rgm@gnu.org>
8900
8901 * allout.el (allout-topic-encryption-bullet)
8902 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
8903 (allout-encrypt-unencrypted-on-saves): Change defcustom :version
8904 from 22.0 to 22.1.
8905
8906 * net/imap.el (imap-ping-server):
8907 * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
8908 Change defcustom :version from 23.0 to 23.1.
8909
8910 2008-02-29 Juanma Barranquero <lekktu@gmail.com>
8911
8912 * desktop.el (desktop-save): Save the buffer name if the
8913 uniquified base name is empty.
8914
8915 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
8916
8917 * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
8918 correctly when user has "set print address off".
8919
8920 2008-02-28 Juanma Barranquero <lekktu@gmail.com>
8921
8922 * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
8923 version number of the next major Emacs release, not 23.0.
8924
8925 * longlines.el (longlines-unload-function): New function.
8926
8927 2008-02-28 Juri Linkov <juri@jurta.org>
8928
8929 * startup.el (normal-splash-screen): Add argument `concise'.
8930 Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
8931 to the created buffer. If `concise' is non-nil, call
8932 `display-buffer', otherwise `switch-to-buffer'. Doc fix.
8933 (display-startup-screen): Add argument `concise' to the call to
8934 `normal-splash-screen'.
8935
8936 2008-02-28 Kim F. Storm <storm@cua.dk>
8937
8938 * startup.el (startup-echo-area-message): Check for about-emacs.
8939
8940 2008-02-28 Juri Linkov <juri@jurta.org>
8941
8942 * startup.el: Always add initial message to *scratch* buffer if
8943 `initial-scratch-message' is non-nil regardless of the value of
8944 `inhibit-startup-screen'.
8945 (inhibit-startup-screen, initial-scratch-message): Doc fix.
8946 (command-line-1): Move code that inserts `initial-scratch-message'
8947 up before the if-form that checks for `inhibit-startup-screen'.
8948 Suggested by Jonathan Rockway <jon@jrock.us>.
8949
8950 2008-02-28 Juri Linkov <juri@jurta.org>
8951
8952 * cus-edit.el (custom-mode-map, custom-mode-link-map):
8953 Rename `custom-mode' to `Custom-mode' in docstrings.
8954 (custom-buffer-create-internal, customize-browse):
8955 Rename `custom-mode' to `Custom-mode'.
8956 (custom-mode-hook): Rename to `Custom-mode-hook'.
8957 (Custom-mode-hook): Renamed from `custom-mode-hook'.
8958 (custom-mode): Rename to `Custom-mode'.
8959 (Custom-mode): Renamed from `custom-mode'. Doc fix.
8960 (custom-mode): Add backward-compatible non-interactive variant of
8961 `Custom-mode' that simply calls `Custom-mode'. Mark it obsoleted.
8962 (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
8963
8964 * info-look.el: Rename `custom-mode' to `Custom-mode'.
8965
8966 * emulation/viper.el (viper-emacs-state-mode-list):
8967 Rename `custom-mode' to `Custom-mode'.
8968
8969 * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
8970 Capitalize "Tagged Files".
8971 (minibuffer-local-map): Add menu items for next/previous
8972 history elements and isearch history forward/backward.
8973
8974 * progmodes/hideshow.el (hs-minor-mode-menu): Compare
8975 `hs-isearch-open' with t instead of `comment' in :selected
8976 for "Code and Comment blocks" menu item.
8977
8978 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
8979
8980 * uniquify.el (uniquify-buffer-base-name): Undo last change.
8981 Should be done in desktop.el instead.
8982
8983 2008-02-28 Glenn Morris <rgm@gnu.org>
8984
8985 * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
8986
8987 * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
8988
8989 * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
8990 (Info-menu, Info-goto-node): Remove declarations.
8991 (report-emacs-bug-info): Use info rather than Info-goto-node.
8992
8993 * progmodes/idlwave.el (Info-goto-node): Remove declaration.
8994 (idlwave-convert-xml-system-routine-info): Don't require xml.
8995 (idlwave-show-commentary, idlwave-shell-show-commentary):
8996 Don't require finder.
8997 (idlwave-info): Don't require info. Use info rather than
8998 Info-goto-node.
8999
9000 * textmodes/org.el (Info-goto-node): Remove declaration.
9001 (org-info): Use info rather than Info-goto-node.
9002
9003 * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
9004 (reftex-info): Don't require info. Use info rather than Info-goto-node.
9005
9006 2008-02-28 Dan Nicolaescu <dann@ics.uci.edu>
9007
9008 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
9009 the menu.
9010
9011 * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
9012 (vc-finish-logentry): Check for vc-status-mode, not only for
9013 vc-dired-mode.
9014
9015 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
9016
9017 * isearch.el (isearch-printing-char): Don't check
9018 keyboard-coding-system.
9019 Call isearch-process-search-multibyte-characters only when
9020 current-input-method is non-nil.
9021
9022 2008-02-27 Kim F. Storm <storm@cua.dk>
9023
9024 * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
9025 (glyph-char, glyph-face): Handle cons encoding.
9026
9027 2008-02-27 Juanma Barranquero <lekktu@gmail.com>
9028
9029 * uniquify.el (uniquify-buffer-base-name): If the base name is an
9030 empty string, return nil to allow the caller to default to the
9031 buffer name. Reported by Martin Fischer <parozusa@web.de>.
9032
9033 * tool-bar.el (tool-bar-setup): Doc fix.
9034
9035 * mail/supercite.el (sc-describe):
9036 Fix typos in obsolescence declaration.
9037
9038 2008-02-27 Glenn Morris <rgm@gnu.org>
9039
9040 * autoinsert.el (auto-insert-alist): Change permission text to
9041 match FSF's GPLv3 form.
9042
9043 * mail/supercite.el (sc-cite-original): Doc fix.
9044 (sc-version): Make obsolete.
9045 (sc-describe): Show the SC info page. Make obsolete.
9046
9047 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
9050 when using transient-mark-mode.
9051 (default-indicate-unused-lines): Remove unused var.
9052
9053 2008-02-26 Jan Djärv <jan.h.d@swipnet.se>
9054
9055 * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
9056 and previous.
9057
9058 * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
9059
9060 2008-02-26 Glenn Morris <rgm@gnu.org>
9061
9062 * net/net-utils.el (top-level): Don't require comint when compiling.
9063 (nslookup-font-lock-keywords): Don't require font-lock.
9064 Use font-lock faces rather than variables.
9065 (nslookup, ftp, smbclient, network-service-connection):
9066 Don't require comint.
9067 (comint-prompt-regexp, comint-input-autoexpand)
9068 (comint-input-ring): Declare for compiler.
9069 (comint-mode, ffap-string-at-point, comint-exec): Autoload.
9070 (dns-lookup-host): Don't require ffap. Remove `with-no-warnings'.
9071
9072 * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
9073 doc-string.
9074
9075 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
9076
9077 * doc-view.el (doc-view-current-page): Add a `win' argument.
9078
9079 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
9080
9081 * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
9082 Demote it to plain defvar.
9083 (doc-view-conversion-refresh-interval): Reduce interval.
9084 (doc-view-goto-page): Allow moving to pages not yet rendered.
9085 (doc-view-goto-page): Construct a file name rather than extracting it
9086 from doc-view-current-files.
9087 (doc-view-kill-proc): Ignore errors from kill-process.
9088 (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
9089 (doc-view-insert-image): Use appropriate text if the page hasn't been
9090 rendered yet. Adjust scrolling so the text is displayed.
9091 (doc-view-display): Detect not just that a page is available, but also
9092 that it wasn't available before, so as to avoid refreshing all pages
9093 repeatedly.
9094 (doc-view-mode): Make doc-view-cache-directory if needed.
9095
9096 2008-02-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9097
9098 * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
9099 toggle-read-only.
9100
9101 * textmodes/bibtex.el (bibtex-format-entry): Handle error message
9102 refering to a missing required field with the OPT prefix.
9103 Make unwindform more robust.
9104
9105 * textmodes/bibtex.el: Remove support for hideshow minor mode as
9106 it duplicates the bibtex support in progmodes/hideshow.el.
9107 * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
9108 entries that do not start at the beginning of a line.
9109
9110 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
9111
9112 * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
9113
9114 2008-02-25 Robert J. Chassell <bob@rattlesnake.com>
9115
9116 * help-fns.el (describe-variable): Add phrases about
9117 initialization file with and without customization;
9118 use new button type help-info-variable.
9119
9120 * help-mode.el (help-info-variable):
9121 New button able to read Info files for help-fns.el.
9122
9123 2008-02-25 Jan Djärv <jan.h.d@swipnet.se>
9124
9125 * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
9126 (grep-mode): Use grep-mode-tool-bar-map.
9127
9128 * progmodes/compile.el (tool-bar): Require tool-bar.
9129 (compilation-mode-tool-bar-map): New variable.
9130 (compilation-mode): Use compilation-mode-tool-bar-map.
9131
9132 * term/x-win.el (x-gtk-stock-map): Add cancel. Remove extensions.
9133
9134 2008-02-25 Glenn Morris <rgm@gnu.org>
9135
9136 * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
9137
9138 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
9139
9140 * diff-mode.el (diff-file-junk-re): New const.
9141 (diff-beginning-of-file-and-junk): Use it.
9142 (diff-file-kill): Make sure we were really inside a file diff.
9143
9144 * diff-mode.el: Make it more robust in the presence of empty context
9145 lines in unified hunks.
9146 (diff-valid-unified-empty-line): New var.
9147 (diff-unified->context, diff-sanity-check-hunk): Obey it.
9148 (diff-end-of-hunk): Obey it. New arg `donttrustheader'.
9149 (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
9150 (diff-hunk-header-re-unified): New const.
9151 (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
9152 (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
9153 (diff-sanity-check-hunk): Use it.
9154
9155 * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
9156 Index: line, don't search backward for the previous one.
9157
9158 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
9159
9160 * international/fontset.el (setup-default-fontset): Add non-OTF
9161 lao font for lao script.
9162
9163 * language/tibetan.el: Register tibetan-composition-function in
9164 composition-function-table.
9165
9166 * language/tibet-util.el (tibetan-composition-function):
9167 Adjust for the new calling way (argument changed). Try font-shape-text
9168 if possible.
9169
9170 * language/lao.el: Register lao-composition-function in
9171 composition-function-table.
9172
9173 * language/lao-util.el (lao-composition-function): Adjust for the new
9174 calling way (argument changed). Try font-shape-text if possible.
9175
9176 2008-02-25 Jason Rumney <jasonr@gnu.org>
9177
9178 * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
9179
9180 2008-02-25 Juri Linkov <juri@jurta.org>
9181
9182 * isearch.el (isearch-fail): Use "RosyBrown1" for a light
9183 background, "red4" for a dark background, "red" for 16 and
9184 8 colors, "grey" for grayscale, and inverse video otherwise.
9185 Add :version tag.
9186 (isearch-message): Keep the original isearch-message intact, and
9187 add text properties to it where necessary. Add `isearch-error' to
9188 the condition that checks if isearch is unsuccessful.
9189
9190 2008-02-24 Juri Linkov <juri@jurta.org>
9191
9192 * progmodes/compile.el (compilation-handle-exit):
9193 Use compilation-error face instead of font-lock-warning-face.
9194 Display the same message in the minibuffer as is inserted
9195 at the end of the compilation buffer.
9196
9197 2008-02-24 Glenn Morris <rgm@gnu.org>
9198
9199 * vc-cvs.el (vc-cvs-register): Fix registering of directories in
9200 multiple file case.
9201
9202 * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
9203
9204 * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
9205 multiple file case. Use a single `let' rather than two.
9206
9207 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
9208
9209 * progmodes/compile.el (compilation-start): Specify a face for
9210 mode-line-process.
9211 (compilation-handle-exit): Specify a face and a tooltip for
9212 mode-line-process.
9213
9214 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9215
9216 * hilit-chg.el: Remove spurious * in defcustom docstrings.
9217 (hilit-chg-make-ov): Simplify.
9218 (hilit-chg-fixup): Use remove-overlays.
9219 (hilit-chg-set-face-on-change): Remove redundant call to
9220 `remove-text-properties'.
9221
9222 * dired.el (dired-mark-prompt): Don't count/display the t element.
9223 Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
9224
9225 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
9226
9227 * progmodes/verilog-mode.el (eval-when-compile): Don't define
9228 add-submenu.
9229 (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
9230 Remove. Move contents to the only use ...
9231 (verilog-menu): ... here.
9232 (verilog-statement-menu): Remove. Move contents to the only use ...
9233 (verilog-stmt-menu): ... here.
9234 (verilog-mark-defun): Simply call mark-defun for emacs.
9235 (occur-pos-list): Declare for byte compiler.
9236 (mode-popup-menu): Don't defvar.
9237 (verilog-add-statement-menu): Remove.
9238 (verilog-mode-hook): Don't add verilog-add-statement-menu.
9239 (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
9240
9241 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
9242
9243 * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
9244 conditional.
9245 (verilog-font-grouping-keywords-face): Make the begin..end
9246 keywords standout more than other verilog keywords.
9247 (verilog-type-font-keywords): Move the begin..end out of this list
9248 to facilitate making them to (potentially) stand out more.
9249 (verilog-backward-token): Fix indent of bare always{_*}?, initial,
9250 function & task blocks.
9251 (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
9252 initial, function & task blocks.
9253 (verilog-forward-sexp): Handle the new "disable fork" statement of
9254 IEEE-1800 Verilog.
9255 (verilog-beg-block-re-ordered): Handle the new "disable fork"
9256 statement of IEEE-1800 Verilog.
9257 (verilog-calc-1): Handle the new "disable fork" statement of
9258 IEEE-1800 Verilog.
9259 (verilog-disable-fork-re): Add const to help handle the new
9260 "disable fork" statement of IEEE-1800 Verilog.
9261 (verilog-declaration-core-re): Add port directions by themselves,
9262 with no qualification, as base item of a declaration.
9263 (verilog-pretty-declarations): Add new flag to ask it to refrain
9264 from printing to the message buffer.
9265 (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
9266 printing to the message buffer. Improve handling of the many
9267 types of expression line up.
9268 (verilog-just-one-space): Remove printing of an empty message.
9269 (verilog-get-lineup-indent): Rework to support the better handling
9270 of expression lineup for verilog-pretty-expr.
9271 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
9272
9273 2008-02-24 Alan Mackenzie <acm@muc.de>
9274
9275 * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
9276 yesterday's commit.
9277
9278 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
9279
9280 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
9281 to mouse-set-point in buffers that aren't associated with files.
9282
9283 * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
9284
9285 2008-02-24 Alan Mackenzie <acm@muc.de>
9286
9287 Set of changes so that "obtrusive" syntactic elements in a
9288 C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
9289 unmatched paren) don't interact syntactically with stuff outside
9290 the CPP line.
9291
9292 * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
9293 Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
9294 off-by-one bug.
9295 (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
9296 a bit of refactoring.
9297 (c-awk-extend-and-syntax-tablify-region): Takes some of the
9298 functionality of c-awk-advise-fl-for-awk-region, which has been
9299 refactored away.
9300
9301 * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
9302 (c-clear-char-property-with-value): New function and macro which
9303 remove text-properties `equal' to a supplied value.
9304
9305 * progmodes/cc-engine.el: Comment about text properties amended.
9306
9307 * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
9308 parens around "error\\|warning".
9309
9310 * progmodes/cc-langs.el (c-get-state-before-change-function)
9311 (c-before-font-lock-function, c-anchored-cpp-prefix):
9312 New language variables.
9313 (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
9314
9315 * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
9316 syntax-table text properties.
9317 (c-common-init): Call language specific before/after-change
9318 functions at mode initialisation.
9319 (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
9320 (c-extend-region-for-CPP, c-neutralize-CPP-line)
9321 (c-neutralize-syntax-in-CPP): New functions.
9322 (c-before-change, c-after-change): Call the new language specific
9323 change functions defined in cc-langs.el.
9324 (c-advise-fl-for-region): New macro.
9325 (awk-mode): Remove AWK specific stuff which has been refactored
9326 into language independent stuff.
9327
9328 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
9329
9330 * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
9331 (gdb): (Re)set gdb-flush-pending-output to nil here...
9332 (gdb-init-1): ...instead of here (before gdb-prompt).
9333
9334 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9335
9336 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
9337 Recognize ''' just like any other char-constant.
9338
9339 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9340
9341 * vc-hooks.el (vc-find-root): Remove initial loop because it's not
9342 careful enough. Detect the uid-change all within the main loop.
9343
9344 2008-02-24 Stefan Monnier <monnier@pastel.home>
9345
9346 * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
9347
9348 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9349
9350 * hilit-chg.el (highlight-save-buffer-state): New macro.
9351 (highlight-save-buffer-state, hilit-chg-set-face-on-change)
9352 (hilit-chg-clear): Use it to preserve the modified-p flag.
9353 (highlight-changes-rotate-faces): Don't mess with the undo-list.
9354
9355 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9356
9357 * font-lock.el (font-lock-set-defaults): Unset previously set variables
9358 when needed.
9359
9360 2008-02-24 Ævar Arnfjörð Bjarmason <avar@cpan.org> (tiny change)
9361
9362 * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
9363 from gnus-button-url-regexp.
9364
9365 2008-02-24 Eli Zaretskii <eliz@gnu.org>
9366
9367 * progmodes/compile.el (compilation-next-error): Doc fix.
9368 (compilation-find-file): Doc fix.
9369
9370 2008-02-24 Glenn Morris <rgm@gnu.org>
9371
9372 * net/net-utils.el (ipconfig-program, ipconfig-program-options):
9373 Add obsolete aliases to the old names.
9374
9375 2008-02-24 Richard Stallman <rms@gnu.org>
9376
9377 * net/net-utils.el (ifconfig): Rename from ipconfig.
9378 (ipconfig): Alias to ifconfig.
9379 (ifconfig-program): Rename from ipconfig-program.
9380 (ifconfig-program-options): Rename from ipconfig-program-options.
9381
9382 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
9383
9384 * progmodes/verilog-mode.el (verilog-declaration-core-re):
9385 Add port directions by themselves, with no qualification, as base
9386 item of a declaration.
9387 (verilog-pretty-declarations): Add new flag that inhibits printing
9388 to the message buffer.
9389 (verilog-pretty-expr): Add new flag that inhibits printing to the
9390 message buffer. Improve handling of the many types of expression
9391 line up.
9392 (verilog-just-one-space): Don't print an empty message.
9393 (verilog-get-lineup-indent): Rework to support the better handling
9394 of expression lineup for verilog-pretty-expr.
9395 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
9396 (verilog-mode-version, verilog-mode-release-date): Update.
9397
9398 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9399
9400 * subr.el (cancel-change-group): Don't move point.
9401
9402 2008-02-23 Markus Triska <markus.triska@gmx.at>
9403
9404 * linum.el (linum-after-config): Update all visible windows.
9405
9406 2008-02-23 Glenn Morris <rgm@gnu.org>
9407
9408 * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
9409 Add :help for Solitaire and Tetris.
9410
9411 * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
9412
9413 * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
9414 (smtpmail-code-conv-from): Doc fix. Fix custom type.
9415 (smtpmail-queue-index-file): Make it a defcustom.
9416 (smtpmail-queue-index): Delete.
9417 (smtpmail-send-it, smtpmail-send-queued-mail):
9418 Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
9419 smtpmail-queue-index.
9420
9421 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
9422 Add :version.
9423
9424 2008-02-23 Yoni Rabkin <yoni@rabkins.net> (tiny change)
9425
9426 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
9427 New variables.
9428 (iwconfig): New function.
9429
9430 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu>
9431
9432 * vc.el (vc-find-revision): Make vc-parent-buffer local before
9433 setting it.
9434 (vc-status-menu-map): Do not define using easy-menu.
9435 (vc-status-menu-map): New defalias.
9436 (vc-status-mode-map): Hook up the menu.
9437 (top-level): Update TODO.
9438
9439 * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
9440
9441 * vc-bzr.el (vc-bzr-init-version): Rename to ...
9442 (vc-bzr-init-revision): ... this.
9443
9444 2008-02-23 Jason Rumney <jasonr@gnu.org>
9445
9446 * makefile.w32-in (WINS_ALMOST): Remove term.
9447 (WINS): Add term here.
9448 (custom-deps, finder-data): Use WINS_ALMOST.
9449
9450 2008-02-22 Juanma Barranquero <lekktu@gmail.com>
9451
9452 * faces.el (font-weight-table): Fix value of `semi-light'.
9453
9454 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
9455
9456 * faces.el (font-weight-table, font-slant-table, font-swidth-table):
9457 Make those tables bijective.
9458
9459 2008-02-22 Ken Manheimer <ken.manheimer@gmail.com>
9460
9461 Finish pdbtrack integration cleanup, settling missing-functions
9462 byte compiler warnings appropriately.
9463
9464 * progmodes/python.el (python-point): Remove this - beginning-of-line
9465 was all that was necessary for `python-pdbtrack-overlay-arrow'.
9466 (python-end-of-def-or-class, python-beginning-of-def-or-class)
9467 (python-goto-initial-line): Drop these - they were only needed for
9468 python-point.
9469 (python-comint-output-filter-function): Use condition-case and
9470 beginning-of-line directly, instead of python-mode.el functions
9471 which require all sorts of baggage.
9472 (point-safe): Unnecessary - we're using condition-case directly,
9473 instead.
9474 (python-execute-file): Include for python-shell, which I'm leaving
9475 in keeping despite it being unnecessary for pdb tracking.
9476
9477 2008-02-22 Peter Danenberg <pcd@wikitex.org> (tiny change)
9478
9479 * progmodes/scheme.el (scheme-font-lock-keywords-2):
9480 Add SRFI 11 support.
9481 (let-values, let*-values): Specify scheme-indent-function.
9482
9483 2008-02-22 Dan Nicolaescu <dann@ics.uci.edu>
9484
9485 * vc.el (vc-exec-after): Move setting mode-line-process in the
9486 busy case ...
9487 (vc-set-mode-line-busy-indicator): ... in this new function.
9488 (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
9489 (vc-update-vc-status-buffer): Reset mode-line-process.
9490 (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
9491 mark/unmark all the files with the same state as the current one.
9492 With a prefix argument mark/unmark all files.
9493 (vc-status-mode-menu): Adjust strings.
9494 (vc-update-vc-status-buffer): Only do something when the argument
9495 is not nil.
9496 (vc-status-kill-dir-status-process): New function.
9497 (vc-status-mode-map): Bind it.
9498 (vc-status-process-buffer): New variable.
9499 (vc-status-mode): Make it local.
9500 (vc-status-refresh): Set it.
9501
9502 * vc-hg.el (vc-hg-dir-status):
9503 * vc-git.el (vc-git-dir-status):
9504 * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
9505 command is run.
9506
9507 2008-02-22 Glenn Morris <rgm@gnu.org>
9508
9509 * json.el (top-level): No need to require thingatpt.
9510 (json-read-keyword): Use thing-at-point rather than word-at-point.
9511
9512 * time.el (top-level): No need to require time-date when compiling.
9513
9514 * emacs-lisp/copyright.el (copyright-update-year):
9515 Fix subexpression numbering for the case when years are split over
9516 lines, and for the replace case.
9517
9518 * emulation/tpu-edt.el (tpu-have-ispell): Doc fix. Make obsolete.
9519 (tpu-caar, tpu-cadr): Delete functions.
9520 (zmacs-regions): No need to declare for compiler.
9521 (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
9522 (tpu-spell-check): Rewrite, and handle mark after point.
9523 (tpu-special-insert): Use or rather than if.
9524
9525 * emulation/vip.el (vip-special-prefix-com): Use ispell-region
9526 rather than spell-region.
9527
9528 * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
9529 warnings about spell-region.
9530
9531 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
9532
9533 * ldefs-boot.el: Regenerated.
9534
9535 * loadup.el: Don't load language/devanagari, language/kannada,
9536 language/malayalam, and language/tamil. Load language/sinhala.
9537
9538 * language/indian.el (indian-font-foundry)
9539 (indian-script-language-alist, indian-font-char-index-table)
9540 (indian-font-char, indian-font-char-range, indian-script-table)
9541 (indian-default-script, indian-composable-pattern): Delete them.
9542 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
9543 language environments moved to here.
9544 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
9545 New language environments.
9546
9547 * language/devanagari.el, language/devan-util.el,
9548 * language/kannada.el, language/knd-util.el, language/malayalam.el,
9549 * language/mlm-util.el, language/tamil.el, language/tml-util.el:
9550 Delete them.
9551
9552 * language/sinhala.el: New file.
9553
9554 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com>
9555
9556 Update Nick Robert's port of pdb tracking from python-mode.el.
9557
9558 * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
9559 Clarify docstring.
9560 (python-pdbtrack-minor-mode-string): A sign indicating that pdb
9561 tracking is happening.
9562 (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
9563 (python-pdbtrack-input-prompt): Better recognize PDB prompts.
9564 (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
9565 Tracking is plugged in to all comint buffers once python.el is loaded.
9566 (python-pdbtrack-overlay-arrow): Toggle activation of
9567 `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
9568 (python-pdbtrack-track-stack-file): Use new
9569 `python-pdbtrack-get-source-buffer' for more flexible access to
9570 debugging source files.
9571 (python-pdbtrack-get-source-buffer): Identify debugging target buffer
9572 according to pdb stack trace, optionally using new
9573 `python-pdbtrack-grub-for-buffer' if file is not locally available.
9574 (python-pdbtrack-grub-for-buffer): Find most recent python-mode
9575 named buffer, or having function with indicated name.
9576 (python-shell): Remove comint-output-filter-functions hook
9577 addition, it's being done elsewhere. Wrap long line.
9578
9579 2008-02-21 Michael Olson <mwolson@gnu.org>
9580
9581 * json.el: Replace XEmacs compatibility code to get rid of
9582 compiler warnings.
9583
9584 * time.el: Fix compiler warning.
9585
9586 2008-02-21 Edward O'Connor <ted@oconnor.cx>
9587
9588 * json.el: New file (JavaScript Object Notation parser / generator).
9589
9590 2008-02-21 Dave Love <fx@gnu.org>
9591
9592 * progmodes/sym-comp.el: New file.
9593
9594 * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
9595 Require sym-comp. Add Python buffer to same-window-buffer-names.
9596 Fixup whitespaces.
9597 (python-font-lock-keywords): Add highlighting for Python builtins.
9598 (python-font-lock-syntactic-keywords): Rewrite.
9599 (python-quote-syntax): Use syntax-ppss-context instead of parsing
9600 ppss directly.
9601 (python-mode-map): Add binding for python-find-function.
9602 (python-calculate-indentation): Clean up the logic.
9603 (python-beginning-of-defun): Explicitly set return value.
9604 (python-beginning-of-statement): Stop looping if we get stuck
9605 going backwards.
9606 (python-next-statement): Stop looping if we somehow end up inside
9607 a string while advancing.
9608 (python-preoutput-continuation, python-version-checked): New vars.
9609 (python-check-version): New function.
9610 (run-python): Set default command to python-command instead of
9611 python-python-command.
9612 (run-python): Use python-check-version. Give PYTHONPATH
9613 precedence over data-directory in the process environment.
9614 Load function definitions in python process after.
9615 (python-check-comint-prompt): New function.
9616 (python-send-command, python-send-receive): Use it.
9617 (python-complete-symbol, python-try-complete): Functions deleted.
9618 Use symbol-complete instead of python-complete-symbol throughout.
9619 (python-fill-paragraph): Further refine the fenced-string regexp.
9620 (def-python-skeleton): Expand to the original abbrev instead if in
9621 a comment or string. Tweak skeletons for `if', `while', `for',
9622 `try/except', `try/finally', `name'.
9623 (python-pea-hook, python-abbrev-pc-hook): New functions.
9624 (python-abbrev-syntax-table): New var.
9625 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
9626 Use symbol-completion-try-complete for hippie expansion.
9627 Turn on font lock unconditionally.
9628 (python-mode-hook): Defcustom it. No need to use make-local
9629 variable on indent-tabs-mode in "Turn off Indent Tabs mode"
9630 option, since it's buffer-local.
9631
9632 2008-02-21 Juanma Barranquero <lekktu@gmail.com>
9633
9634 * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
9635
9636 2008-02-21 Drew Adams <drew.adams@oracle.com>
9637
9638 * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
9639 "Turn off" and a "Help" entry when the minor mode has no menu.
9640
9641 2008-02-21 Dan Nicolaescu <dann@ics.uci.edu>
9642
9643 * vc.el (vc-status-mark, vc-status-unmark): New functions.
9644 (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
9645 vc-status-mark-file and vc-status-unmark-file.
9646 (vc-status-mark-unmark): New function.
9647 (vc-status-previous-line, vc-status-next-line): No longer interactive.
9648
9649 2008-02-21 Glenn Morris <rgm@gnu.org>
9650
9651 * composite.el (encode-composition-rule): Fix typo in error message.
9652 (composition-function-table, auto-composition-mode): Doc fixes.
9653
9654 * subr.el (sit-for): Fix obsolete form for nil second argument.
9655
9656 * textmodes/spell.el (spell-buffer, spell-word, spell-region)
9657 (spell-string): Make obsolete, in favor of ispell.
9658
9659 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
9660
9661 * language/devanagari.el: Don't setup composition-function-table
9662 here.
9663 ("Devanagari"): Change charset, coding-system, coding-priority to
9664 Unicode-based ones. Don't require the feature devan-util.
9665
9666 * composite.el (compose-chars-after): Fix arguments for a function
9667 in composition-function-table.
9668 (auto-compose-region): Likewise.
9669
9670 * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
9671 for Ethiopic.
9672 (ps-mule-plot-string): Ignore glyph-string based compositions.
9673
9674 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
9675
9676 * doc-view.el: Allow different windows to show different pages.
9677 (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
9678 (doc-view-current-image, doc-view-current-overlay): Remove variables,
9679 add them back as macros instead, using image-mode-winprops instead.
9680 Update all users of those variables.
9681 (doc-view-new-window-function): New function to create a new overlay
9682 for each new window.
9683 (doc-view-mode): Use it and image-mode-setup-winprops.
9684 (doc-view-clone-buffer-hook): Rewrite accordingly.
9685
9686 * image-mode.el: Extend [hv]scroll support to per-window properties.
9687 (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
9688 (image-mode-winprops-alist): New var to replace them.
9689 (image-mode-new-window-functions): New hook.
9690 (image-mode-winprops, image-mode-window-get, image-mode-window-put):
9691 New funs.
9692 (image-set-window-vscroll, image-set-window-hscroll): Use them.
9693 Remove the `window' argument, update callers.
9694 (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
9695 Use the new functions.
9696 (image-mode-reapply-winprops): New fun.
9697 (image-mode): Use it.
9698
9699 2008-02-20 Jay Belanger <jay.p.belanger@gmail.com>
9700
9701 * calc/calc-math.el (math-sin-raw): Add optional argument
9702 to keep track of original argument.
9703 (math-cos-raw): Use optional argument when calling math-sin-raw.
9704 (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
9705 with close to original precision.
9706
9707 2008-02-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9708
9709 * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
9710 args in calls of sit-for.
9711
9712 2008-02-20 Juanma Barranquero <lekktu@gmail.com>
9713
9714 * vc-svn.el (vc-svn-program): Fix typo in docstring.
9715 (vc-svn-checkin): Fix typo in error message.
9716
9717 * help-mode.el: Require easymenu when compiling.
9718
9719 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu>
9720
9721 * help-mode.el (help-mode-menu): New menu.
9722
9723 2008-02-20 Glenn Morris <rgm@gnu.org>
9724
9725 * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
9726 on Windows.
9727
9728 2008-02-20 Kenichi Handa <handa@ni.aist.go.jp>
9729
9730 * ps-mule.el (ps-mule-encode-region): Return a single string.
9731 (ps-mule-plot-string): Adjust for the above change.
9732 (ps-mule-encode-header-string): Likewise.
9733
9734 * international/latin1-disp.el (latin1-display): Don't use
9735 ucs-mule-8859-to-mule-unicode. Fix the way of resetting
9736 standard-display-table.
9737 (latin1-display-identities): Adjust for the change of what is
9738 returned by (get-language-info charset 'charset).
9739
9740 * international/mule-util.el (char-displayable-p): Fix for Latin-1
9741 characters and terminal case.
9742
9743 2008-02-19 Ken Manheimer <ken.manheimer@gmail.com>
9744
9745 Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
9746
9747 * progmodes/python.el: Also require comint when loading.
9748 (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
9749 Replace python-shell with run-python on menu bar.
9750 (python-shell-map): New map.
9751 (python-default-interpreter, python-python-command-args)
9752 (python-jython-command-args, python-pdbtrack-do-tracking-p):
9753 New options.
9754 (python-which-shell, python-which-args, python-which-bufname):
9755 New buffer local variables.
9756 (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
9757
9758 * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
9759 (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
9760 New constants.
9761
9762 Pdbtrack features:
9763
9764 (python-point, python-end-of-def-or-class)
9765 (python-beginning-of-def-or-class, python-goto-initial-line)
9766 (python-comint-output-filter-function)
9767 (python-pdbtrack-overlay-arrow)
9768 (python-pdbtrack-track-stack-file, python-toggle-shells)
9769 (python-shell, python-pdbtrack-toggle-stack-tracking)
9770 (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
9771 New functions.
9772
9773 2008-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
9774
9775 * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
9776 when the argument is nil.
9777
9778 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
9779
9780 * vc.el (dir-status): Add a brief description.
9781
9782 2008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org>
9783
9784 * vc-hooks.el (vc-find-root): Take optional arg INVERT.
9785 If non-nil, reverse the sense of the check.
9786
9787 * vc-rcs.el (vc-rcs-root): New func.
9788 * vc-cvs.el (vc-cvs-root): New func.
9789 * vc-svn.el (vc-svn-root): New func.
9790 * vc-sccs.el (vc-sccs-root): New func.
9791
9792 2008-02-18 Kenichi Handa <handa@ni.aist.go.jp>
9793
9794 * language/japan-util.el (setup-japanese-environment-internal):
9795 Call use-cjk-char-width-table.
9796
9797 * language/japanese.el ("Japanese"): Set exit-function to
9798 use-default-char-width-table.
9799
9800 * international/characters.el: Delete occurrences of non-Unicode
9801 tibetan and ethiopic characters.
9802 (cjk-char-width-table): New variable.
9803 (use-cjk-char-width-table, use-default-char-width-table):
9804 New functions.
9805
9806 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
9807
9808 * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
9809 (vc-status-mode-menu): Add a :filter.
9810 (vc-status-printer): Add faces.
9811
9812 * vc-hg.el (vc-hg-extra-status-menu): New function.
9813 (vc-hg-dir-status): Clean up the buffer before using it.
9814
9815 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
9816
9817 * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
9818 (gdb): Initialize it here instead.
9819
9820 * files.el (locate-dominating-file): Fix thinko in last change.
9821 Reported by Bruce Stephens <bruce.stephens@isode.com>.
9822
9823 2008-02-18 Dan Nicolaescu <dann@ics.uci.edu>
9824
9825 * vc.el (vc-status-mode-menu): New menu for vc-status.
9826
9827 2008-02-18 Juanma Barranquero <lekktu@gmail.com>
9828
9829 * progmodes/verilog-mode.el (customize): Fix typo in error message.
9830 (verilog-mode, verilog-mode-indent, verilog-mode-actions)
9831 (verilog-mode-auto, verilog-indent-level-module)
9832 (verilog-minimum-comment-distance, verilog-library-flags)
9833 (verilog-library-directories, verilog-library-files)
9834 (verilog-auto-reset-widths, verilog-imenu-generic-expression)
9835 (verilog-xemacs-menu, verilog-set-compile-command)
9836 (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
9837 (verilog-get-expr, verilog-strip-comments, verilog-one-line)
9838 (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
9839 (verilog-batch-inject-auto, verilog-batch-indent)
9840 (verilog-continued-line, verilog-type-keywords)
9841 (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
9842 (verilog-read-inst-pins, verilog-read-arg-pins)
9843 (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
9844 (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
9845 (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
9846 (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
9847 (verilog-sk-datadef, verilog-colorize-include-files-buffer)
9848 (verilog-mode-version, verilog-mode-release-date)
9849 (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
9850 (verilog-simulator, verilog-compiler)
9851 (verilog-auto-sense-defines-constant, verilog-company)
9852 (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
9853 Fix typos in docstrings.
9854 (verilog-set-auto-endcomments, verilog-calculate-indent)
9855 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
9856 Reflow docstrings.
9857 (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
9858 (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
9859 (electric-verilog-forward-sexp, verilog-in-case-region-p)
9860 (verilog-in-struct-region-p, verilog-in-generate-region-p)
9861 (verilog-leap-to-head, verilog-current-indent-level)
9862 (verilog-case-indent-level, verilog-cpp-keywords)
9863 (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
9864 (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
9865 (verilog-signals-not-in, verilog-symbol-detick-text)
9866 (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
9867 (verilog-forward-close-paren, verilog-backward-open-paren)
9868 (verilog-backward-open-bracket): Doc fixes.
9869
9870 * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
9871 (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
9872 (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
9873 (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
9874 (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
9875 Fix typos in docstrings.
9876
9877 * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
9878
9879 2008-02-18 Bastien Guerry <Bastien.Guerry@ens.fr>
9880
9881 * info.el (Info-read-node-name): Removed unused `default' arg.
9882
9883 2008-02-18 Thien-Thi Nguyen <ttn@gnuvola.org>
9884
9885 * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
9886
9887 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
9888
9889 * image-mode.el (image-get-display-property): New fun.
9890 (image-forward-hscroll, image-next-line, image-eol, image-eob)
9891 (image-mode, image-minor-mode, image-toggle-display-text)
9892 (image-toggle-display): Use it.
9893
9894 2008-02-18 Jason Rumney <jasonr@gnu.org>
9895
9896 * international/mule.el (xml-find-file-coding-system): Don't warn
9897 about utf-16 with BOM.
9898
9899 * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
9900
9901 * international/mule.el (sgml-xml-auto-coding-function): Detect and
9902 warn if file encoding is not utf-8 and encoding not specified.
9903 (xml-find-file-coding-system): New function.
9904 * international/mule-conf.el (file-coding-system-alist): Use it.
9905
9906 2008-02-17 Glenn Morris <rgm@gnu.org>
9907
9908 * international/mule-cmds.el (set-locale-environment):
9909 Pass `frame' to getenv for LC_MESSAGES.
9910
9911 2008-02-17 Juri Linkov <juri@jurta.org>
9912
9913 * time.el (emacs-init-time): Use format instead of format-seconds.
9914
9915 2008-02-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9916
9917 * textmodes/bibtex.el (bibtex-search-entry): Rename from
9918 bibtex-find-entry. Add autoload cookie.
9919 (bibtex-find-entry): Alias for bibtex-search-entry.
9920 (bibtex-search-crossref): Rename from bibtex-find-crossref.
9921 (bibtex-find-crossref): Alias for bibtex-search-crossref.
9922 (bibtex-clean-entry): atomic-change-group removed.
9923 (bibtex-format-entry): Use atomic-change-group. Use unwind-protect
9924 to locate buffer location where error occurred.
9925 Make error messages more specific.
9926 (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
9927
9928 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
9929
9930 * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
9931 top level.
9932
9933 * simple.el (transient-mark-mode): Add an :init-value.
9934
9935 * startup.el (command-line): Use custom-reevaluate-setting for
9936 transient-mark-mode.
9937
9938 2008-02-17 Michaël Cadilhac <michael@cadilhac.name>
9939
9940 * wdired.el (wdired-allow-to-change-permissions): Fix typo.
9941
9942 2008-02-16 Juri Linkov <juri@jurta.org>
9943
9944 * startup.el (after-init-time): New variable.
9945 (command-line): Set `after-init-time' to the current time.
9946
9947 * time.el (emacs-init-time): New function.
9948
9949 2008-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
9950
9951 * files.el (locate-dominating-file): Remove initial loop because it's
9952 not careful enough. Detect the uid-change all within the main loop.
9953
9954 2008-02-16 Lawrence Mitchell <wence@gmx.li> (tiny change)
9955
9956 * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
9957
9958 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
9959
9960 * vc.el (vc-annotate): Add new argument.
9961 (vc-annotate-warp-revision): Pass the current line to vc-annotate.
9962
9963 * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
9964 Move make-variable-buffer-local code after the corresponding defvar.
9965 (hs-minor-mode-map): Define and initialize in one step.
9966 (hs-minor-mode): Change from defun to define-minor-mode.
9967
9968 2008-02-16 Nick Roberts <nickrob@snap.net.nz>
9969
9970 * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
9971 (gdb-ready): Move declaration...
9972
9973 * progmodes/gdb-ui.el (gdb-ready): ...to here.
9974 (gdb-early-user-input): New variable.
9975 (gdb): Reset gdb-flush-pending-output to nil and set
9976 comint-input-sender here (before gdb-prompt), instead of...
9977 (gdb-init-1): ...here.
9978 (gdb-send): If Emacs is not ready, defer user input to...
9979 (gdb-prompt): ...here.
9980
9981 2008-02-16 Glenn Morris <rgm@gnu.org>
9982
9983 * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
9984
9985 * startup.el (emacs-startup-time): Rename to `before-init-time'.
9986 (before-init-time): New name for `emacs-startup-time'.
9987 (command-line): Use before-init-time rather than emacs-startup-time.
9988 * time.el (emacs-uptime): Use before-init-time rather than
9989 emacs-startup-time.
9990
9991 * composite.el (composition-function-table): Doc fix.
9992
9993 * calendar/time-date.el (format-seconds): Remove `nonzero' argument
9994 in favor of `%z' specifier.
9995 (emacs-uptime): Move to time.el.
9996 * time.el (emacs-uptime): Move here from time-date.el. Add optional
9997 `format' argument. Doc fix. Use `%z' rather than removed `nonzero'
9998 argument of format-seconds.
9999
10000 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
10001
10002 * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
10003
10004 2008-02-15 Lawrence Mitchell <wence@gmx.li> (tiny change)
10005
10006 * ielm.el (ielm-is-whitespace): Remove.
10007 (ielm-is-whitespace-or-comment): New function.
10008 (ielm-eval-input): Use it.
10009
10010 2008-02-15 Jason Rumney <jasonr@gnu.org>
10011
10012 * term/mac-win.el: Fix coding tag.
10013
10014 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
10015
10016 * vc-hooks.el (vc-menu-map):
10017 * bindings.el (mode-line-mode-menu): Add tooltips.
10018
10019 * bindings.el (help-echo): Add more tooltips. Use a less
10020 telegraphic style for existing tooltips.
10021
10022 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
10023
10024 * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
10025 from the auto-generated one.
10026
10027 2008-02-14 Glenn Morris <rgm@gnu.org>
10028
10029 * mail/rmail-spam-filter.el (rmail-spam-filter):
10030 Let-bind message-spam-status.
10031
10032 * mail/smtpmail.el (password-cache-add): Declare as function.
10033
10034 2008-02-14 Justus Piater <Justus-bulk@Piater.name> (tiny change)
10035
10036 * mail/smtpmail.el: Use password-cache.
10037
10038 2008-02-14 Juanma Barranquero <lekktu@gmail.com>
10039
10040 * uniquify.el (uniquify-buffer-base-name): New function.
10041 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10042
10043 * desktop.el (uniquify-managed): Don't defvar.
10044 (desktop-buffer-info): Use `uniquify-buffer-base-name', not
10045 `uniquify-managed'. Return also the buffer's base name.
10046 (desktop-save): When saving the buffer info, filter out the base name,
10047 and save it as buffer name if the buffer is managed by uniquify.
10048 (uniquify-item-base): Don't declare; not called anymore.
10049
10050 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu>
10051
10052 * vc.el (vc-annotate-find-revision-at-line): New function.
10053 (vc-annotate-mode-map): Bind it.
10054 (vc-annotate-mode-menu): Add a menu entry for it. Add :help for
10055 some entries.
10056
10057 2008-02-14 Glenn Morris <rgm@gnu.org>
10058
10059 * calendar/time-date.el (format-seconds): New function.
10060 (emacs-uptime): Use format-seconds.
10061
10062 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
10063 Remove `LC_ALL=C', since it's included in $(emacs) now.
10064
10065 2008-02-14 Zhang Wei <id.brep@gmail.com>
10066
10067 * textmodes/org-publish.el (org-publish-timestamp-filename):
10068 Replace colon characters in filename too.
10069
10070 2008-02-13 Bastien Guerry <bzg@altern.org>
10071
10072 * mail/rmail.el (rmail-header-name): New face.
10073 (rmail-font-lock-keywords): Use rmail-header-name.
10074
10075 * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
10076 against X-Spam-Status header field.
10077 (rmail-spam-filter): Also check X-Spam-Status header field.
10078
10079 2008-02-14 Mark A. Hershberger <mah@everybody.org>
10080
10081 * progmodes/flymake.el (flymake-allowed-file-name-masks):
10082 Add support for .pm files and .php files.
10083 (flymake-err-line-patterns): Add pattern for PHP errors.
10084 (flymake-php-init): New function. PHP support for flymake.
10085
10086 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10087 Add regular expression for PHP errors.
10088
10089 2008-02-13 Michael Albinus <michael.albinus@gmx.de>
10090
10091 * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
10092 This DTRT even on w32 machines.
10093 (ange-ftp-cf1): Quote FILENAME.
10094
10095 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
10096
10097 * smerge-mode.el (smerge-auto-combine-max-separation): New var.
10098 (smerge-auto-combine): New fun.
10099
10100 2008-02-12 Juri Linkov <juri@jurta.org>
10101
10102 * startup.el (fancy-startup-screen, normal-splash-screen):
10103 Set default-directory to command-line-default-directory.
10104
10105 * desktop.el (after-init-hook): Set inhibit-startup-screen to t
10106 after reading the desktop.
10107
10108 * progmodes/compile.el (compilation-auto-jump):
10109 Call compile-goto-error only when compilation-auto-jump-to-first-error
10110 is non-nil.
10111 (compilation-scroll-output): Replace :type 'boolean with a choice
10112 that has three options including a third option `first-error'.
10113 Doc fix.
10114 (compilation-start, compilation-forget-errors): Add an alternate
10115 condition comparing compilation-scroll-output with `first-error'
10116 in addition to compilation-auto-jump-to-first-error (to call
10117 compilation-auto-jump in the proper place).
10118
10119 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
10120
10121 * international/mule.el (sgml-html-meta-auto-coding-function):
10122 Make sure the search limit is ahead.
10123
10124 * tar-mode.el: Fix broken indentation.
10125 (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
10126 Use with-current-buffer.
10127
10128 2008-02-12 Juanma Barranquero <lekktu@gmail.com>
10129
10130 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
10131 it is already automatically buffer-local.
10132
10133 2008-02-11 Drew Adams <drew.adams@oracle.com>
10134
10135 * help.el (describe-key): Join some split lines to facilitate filling.
10136 * help-fns.el (describe-function-1): Fill text of overlong lines.
10137
10138 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp>
10139
10140 * emacs-lisp/bytecomp.el (byte-compile-lapcode):
10141 Use unibyte-string instead of string-make-unibyte.
10142
10143 * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
10144
10145 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
10146
10147 * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
10148 works also for buffers w/o buffer-file-name. Update callers.
10149 (doc-view-clone-buffer-hook): New fun.
10150 (doc-view-mode): Use it for indirect clones. Mark the overlays with
10151 the `doc-view' property so they can be recognized.
10152
10153 * simple.el (clone-indirect-buffer-hook): New hook.
10154 (clone-indirect-buffer): Run it.
10155
10156 2008-02-11 Daiki Ueno <ueno@unixuser.org>
10157
10158 * epa.el (epa-menu-mode): Merge into epa-mode.
10159 (epa-menu-items): Rename the label "EasyPG Assistant" to
10160 "Encryption/Decryption".
10161
10162 * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
10163 (epa-dired-mode-map): Rename from epa-dired-map.
10164 (epa-global-dired-mode): Rename the global minor mode.
10165
10166 2008-02-11 Drew Adams <drew.adams@oracle.com>
10167
10168 * isearch.el (isearch-fail): New face.
10169 (isearch-message): Highlight failure part of input.
10170
10171 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
10172
10173 * ibuffer.el (ibuffer-header-line-format): New var.
10174 (ibuffer-mode): Set it instead of header-line-format.
10175 (ibuffer-update): Use it to set header-line-format.
10176
10177 * international/mule-cmds.el (ucs-insert): Inherit surrounding
10178 properties like self-insert-command.
10179
10180 2008-02-11 Drew Adams <drew.adams@oracle.com>
10181
10182 * progmodes/etags.el: Add many doc strings.
10183
10184 2008-02-11 Jason Rumney <jasonr@gnu.org>
10185
10186 * ldefs-boot.el: Regenerated.
10187
10188 2008-02-11 Glenn Morris <rgm@gnu.org>
10189
10190 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10191 Shorten some names.
10192
10193 * ffap.el (ffap-rfc-directories): Add :version.
10194
10195 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com>
10196
10197 * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
10198 files, and backup files of same.
10199
10200 2008-02-11 Kevin Ryde <user42@zip.com.au>
10201
10202 * ffap.el (ffap-rfc-directories): New variable.
10203 (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
10204
10205 * info.el (Info-next-reference, Info-prev-reference)
10206 (Info-try-follow-nearest-node): Move to and follow https:// links too.
10207
10208 * simple.el (completion-list-mode): Show full completion-list-mode-map
10209 in the docstring.
10210
10211 2008-02-11 Sam Steingold <sds@gnu.org>
10212
10213 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
10214
10215 2008-02-11 Glenn Morris <rgm@gnu.org>
10216
10217 * startup.el (emacs-startup-time): New variable.
10218 (command-line): Set emacs-startup-time.
10219
10220 * calendar/time-date.el (emacs-uptime): New function.
10221
10222 2008-02-10 Bastien Guerry <bzg@altern.org>
10223
10224 * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
10225 (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
10226 it is nil.
10227
10228 2008-02-10 Daiki Ueno <ueno@unixuser.org>
10229
10230 * epg-config.el: Expand the contents of epg-package-info.el.
10231 (epg-package-name): New constant.
10232 (epg-version-number): New constant.
10233 (epg-bug-report-address): New constant.
10234
10235 * epa-mail.el (epa-mail-mode): Add autoload cookie.
10236 (epa-global-mail-mode): New global minor mode.
10237
10238 * epa-file.el (epa-file-mode): New global minor mode.
10239
10240 * epa-dired.el (epa-dired-mode): New global minor mode.
10241
10242 * epa.el (epa-menu): New variable.
10243 (epa-menu-items): New variable.
10244 (epa-menu-mode): New global minor mode.
10245 (epa-global-minor-modes): New user option.
10246 (epa-mode): New global minor mode.
10247
10248 2008-02-10 Michael Albinus <michael.albinus@gmx.de>
10249
10250 * net/dbus.el: Remove `no-byte-compile' cookie.
10251 (dbus-call-method, dbus-register-signal, dbus-debug)
10252 (dbus-registered-functions-table): Declare them with
10253 `declare-function' or `defvar', respectively.
10254 (top): Don't assert any longer. Require 'cl when compiling.
10255 Apply `ignore-errors' but `dbus-ignore-errors'.
10256
10257 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
10258
10259 * diff-mode.el (diff-add-change-log-entries-other-window):
10260 Use add-change-log-entry.
10261
10262 2008-02-09 Jason Rumney <jasonr@gnu.org>
10263
10264 * button.el (button-map):
10265 * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
10266 * ldefs-boot.el: Regenerate.
10267
10268 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
10269
10270 * epa.el (epa-faces, epa):
10271 * epa-file.el (epa-file):
10272 * epg-config.el (epg): Add :version.
10273
10274 2008-02-09 Thien-Thi Nguyen <ttn@gnuvola.org>
10275
10276 * vc.el (vc-exec-after): Append CODE to previous fragments.
10277 (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
10278 take MESSAGES instead of VERBOSE; use it when non-nil.
10279 (vc-diff-internal): Compute messages once; use them;
10280 update call to vc-diff-finish.
10281
10282 2008-02-09 Michael Olson <mwolson@gnu.org>
10283
10284 * net/tramp.el (tramp-process-sentinel): Avoid error when process
10285 buffer has been killed, such as by
10286 `tramp-cleanup-all-connections'.
10287
10288 2008-02-09 Miles Bader <miles@gnu.org>
10289
10290 * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
10291
10292 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
10293
10294 * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
10295 splitter in context hunks.
10296
10297 2008-02-08 Kenichi Handa <handa@ni.aist.go.jp>
10298
10299 * international/fontset.el (setup-default-fontset): Fix arabic otf
10300 font specification.
10301
10302 2008-02-08 Daiki Ueno <ueno@unixuser.org>
10303
10304 * epa-dired.el:
10305 * epa-file.el:
10306 * epa-mail.el:
10307 * epa-setup.el:
10308 * epa.el:
10309 * epg-config.el:
10310 * epg-package-info.el:
10311 * epg.el: Initial check-in of EasyPG.
10312
10313 2008-02-08 Glenn Morris <rgm@gnu.org>
10314
10315 * woman.el (woman-locale): New defcustom.
10316 (woman-expand-locale, woman-manpath-add-locales): New functions.
10317 (woman-manpath): Call woman-manpath-add-locales. Bump :version.
10318
10319 * international/mule-cmds.el (locale-translate): New function,
10320 with old code extracted from set-locale-environment.
10321 (set-locale-environment): Use locale-translate. Set woman-locale.
10322
10323 * cus-start.el (selection-coding-system): Remove, since it's now
10324 defined in select.el rather than in xselect.c.
10325 * select.el (selection-coding-system): Make it a defcustom, and
10326 add the properties from cus-start.el. Bump :version.
10327
10328 * custom.el (custom-theme-set-variables): Sort symbols that are
10329 dependencies before symbols that depend on them.
10330 (custom-enabled-themes): Set after custom-theme-directory.
10331
10332 * pcmpl-unix.el (top-level): Move provide statement to end.
10333 (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
10334 `*' from doc-string. Allow to be nil.
10335 (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
10336 Allow to be nil. Add :version.
10337 (pcmpl-ssh-hosts): Move definition before use. Handle lines
10338 without hostnames, and multiple hostnames per line.
10339
10340 * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
10341
10342 2008-02-08 Phil Hagelberg <phil@evri.com>
10343
10344 * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
10345 (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
10346
10347 2008-02-07 Timo Savola <timo.savola@iki.fi>
10348
10349 * startup.el (command-line-x-option-alist): Add --parent-id.
10350
10351 * term/x-win.el (x-handle-parent-id): New function.
10352
10353 2008-02-07 Chris Moore <christopher.ian.moore@gmail.com>
10354
10355 * mouse.el (x-fixed-font-alist): Use consistent capitalization for
10356 "Font Menu".
10357
10358 2008-02-06 Michael Albinus <michael.albinus@gmx.de>
10359
10360 * net/dbus.el (dbus-interface-peer): New defconst.
10361 (dbus-ping): New defun.
10362
10363 2008-02-06 Sam Steingold <sds@gnu.org>
10364
10365 * vc-hooks.el (vc-prefix-key): New user-customizable variable.
10366
10367 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
10368
10369 * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
10370 Just return nil and let the C code provide a fallback.
10371
10372 2008-02-05 Glenn Morris <rgm@gnu.org>
10373
10374 * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
10375 tramp-flush-connection-property for removed 2nd argument.
10376
10377 2008-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
10378
10379 * diff-mode.el (diff-add-change-log-entries-other-window):
10380 Rename from diff-create-changelog. Change users.
10381 Minor change to hopefully work with plain diffs.
10382 (diff-mode-map): Add binding for it.
10383
10384 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
10385
10386 * diff-mode.el: Add new TODO entry.
10387 (diff-create-changelog): New function.
10388 (diff-mode-menu): Bind it.
10389
10390 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
10391
10392 * international/mule-diag.el (print-fontset-element): Handle the
10393 case of inhibiting the fallback fonts.
10394
10395 2008-02-04 Kim F. Storm <storm@cua.dk>
10396
10397 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
10398 (ido-magic-delete-char): Use prefix arg.
10399
10400 2008-02-03 Juanma Barranquero <lekktu@gmail.com>
10401
10402 * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
10403 because the latter is in fact a 1.2.8 build distributed with GTK+ (as
10404 of today, the most recent libpng is 1.2.24).
10405
10406 2008-02-03 Michael Albinus <michael.albinus@gmx.de>
10407
10408 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
10409
10410 * net/dbus.el (top): Check (featurep 'dbusbind).
10411
10412 * net/tramp.el (tramp-process-sentinel): New defun.
10413 (tramp-do-copy-or-rename-file-out-of-band)
10414 (tramp-maybe-open-connection): Use it as process sentinel.
10415 (tramp-handle-delete-directory): Don't use the "-f" option; it
10416 isn't portable.
10417 (tramp-handle-start-file-process): Echo `tramp-end-of-output'
10418 after the command.
10419 (tramp-handle-shell-command): Set `mode-line-process' in the
10420 asynchronous case.
10421
10422 * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
10423
10424 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
10425 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10426 Use `tramp-process-sentinel' as process sentinel.
10427
10428 2008-02-02 Juanma Barranquero <lekktu@gmail.com>
10429
10430 * whitespace.el (global-whitespace-mode): Revert last change.
10431 (whitespace-unload-function): Force `global-whitespace-mode'
10432 to deactivate local modes in a slightly less intrusive way.
10433
10434 2008-02-02 Eli Zaretskii <eliz@gnu.org>
10435
10436 * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
10437
10438 2008-02-02 Glenn Morris <rgm@gnu.org>
10439
10440 * international/latin1-disp.el (latin1-display):
10441 * progmodes/fortran.el (fortran-comment-indent-char):
10442 * progmodes/idlw-shell.el (top-level):
10443 * term/mac-win.el (mac-keyboard-translate-char):
10444 * whitespace.el (whitespace-char-valid-p):
10445 * wid-edit.el (widget-key-sequence-read-event):
10446 Use characterp rather than char-valid-p.
10447
10448 * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
10449 to capitalized-find-word-boundary. Doc fix. Update callers.
10450 (capitalized-next-word-boundary-function-table): Rename to
10451 capitalized-find-word-boundary-function-table. Doc fix. Update users.
10452
10453 * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
10454 string-to-int.
10455
10456 * ps-def.el (declare-function): Add compatibility definition.
10457 (ps-plot-with-face, ps-plot-string): Declare as functions.
10458 (ps-bold-faces, ps-italic-faces): Declare variables.
10459
10460 * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
10461 (ps-mule-end-job): Declare as functions.
10462
10463 * wid-edit.el (widget-string-complete): Use assoc-string rather
10464 than assoc-ignore-case.
10465
10466 See ChangeLog.13 for earlier changes.
10467
10468 ;; Local Variables:
10469 ;; coding: utf-8
10470 ;; add-log-time-zone-rule: t
10471 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
10472 ;; End:
10473
10474 Copyright (C) 2008 Free Software Foundation, Inc.
10475
10476 This file is part of GNU Emacs.
10477
10478 GNU Emacs is free software: you can redistribute it and/or modify
10479 it under the terms of the GNU General Public License as published by
10480 the Free Software Foundation, either version 3 of the License, or
10481 (at your option) any later version.
10482
10483 GNU Emacs is distributed in the hope that it will be useful,
10484 but WITHOUT ANY WARRANTY; without even the implied warranty of
10485 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10486 GNU General Public License for more details.
10487
10488 You should have received a copy of the GNU General Public License
10489 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
10490
10491 ;; arch-tag: c241c1f9-d668-48bf-920a-2897ed0340bc