Fix typo.
[bpt/emacs.git] / lisp / ChangeLog
1 2008-05-03 Dave Love <fx@gnu.org>
2
3 * progmodes/python.el (python-beginning-of-statement):
4 Loop at least once (fixes 2008-02-21 change).
5
6 2008-05-03 Eli Zaretskii <eliz@gnu.org>
7
8 * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
9 instead of `length' for comparing length of user and group names.
10
11 2008-05-03 Eric S. Raymond <esr@snark.thyrsus.com>
12
13 * vc-dispatcher.el: New file, separates out the UI and command
14 execution machinery from VCS-specific logic left in vc.el. The
15 separation is not yet completely clean, but it's a good start.
16 * vc.el: This file is about 1700 lines shorter now. Obsolete
17 logentry-check is removed from the backend API.
18 * vc-sccs.el: Obsolete vc-sccs-logentry-check removed. This was
19 was the only implementation of the logentry-check method, and
20 it guarded against a log length limit that has probably been
21 obsolete for 15 years (!).
22
23 2008-05-02 Sam Steingold <sds@gnu.org>
24
25 * progmodes/compile.el (compilation-start): Move setting of
26 compilation-directory after (funcall mode) as that resets local
27 variables, this fixes recompile in grep buffers.
28 * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c).
29
30 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
31
32 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
33 vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
34 vc-svn.el, vc.el: (vc-*-checkout-model): Make sure every backend
35 has one of these and that all are called in compatible ways.
36 * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
37 vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
38 vc-svn.el, vc.el: (vc-*-revision-granularity): Make sure every
39 backend has one of these.
40
41 2008-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
42
43 * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
44 initialization into define-abbrev-table. Use :regexp.
45 (octave-mode-syntax-table): Don't set word syntax for `.
46
47 * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
48 than only value.
49
50 * dired.el (dired-read-dir-and-switches):
51 Set minibuffer-completing-file-name and call substitute-in-file-name.
52 (dired-format-columns-of-files): Use completion--insert-strings.
53
54 * minibuffer.el (completion-hilit-commonality): Revert last change:
55 the leftover code was actually useful.
56 (completion--insert-strings): Use string-width rather than length.
57
58 2008-05-02 Sam Steingold <sds@gnu.org>
59
60 * vc.el (vc-dir-mode-map): Enable mouse bindings.
61 (vc-at-event): New macro: run the body at the even location.
62 (vc-dir-menu, vc-dir-toggle-mark): Use it.
63 (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
64 * subr.el (mouse-event-p): Check if the even is mouse-related.
65
66 2008-05-02 Nick Roberts <nickrob@snap.net.nz>
67
68 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
69 Don't throw error if no file is found.
70
71 2008-05-02 Juanma Barranquero <lekktu@gmail.com>
72
73 * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
74 (vc-default-state-heuristic): Doc fix.
75
76 2008-05-02 Richard Sharman <rsharman@pobox.com>
77
78 * hilit-chg.el (highlight-changes-mode): Remove references to
79 hooks that no longer exist. Because define-minor-mode is used the
80 hook highlight-changes-mode-hook exists and can do what both the
81 old hooks used to do. The documentation at the top of the file
82 was updated to demonstrate this.
83 (highlight-changes-mode): Remove commented out call to a hook
84 function that is no longer there.
85 (hilit-chg-set): Remove running of highlight-changes-enable-hook.
86
87 2008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
88
89 * vc.el (vc-default-dired-state-info): Change name of primitive
90 to prettify-state-info, in preparation for ripping out dired mode.
91 * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
92 to prettify-state-info, in preparation for ripping out dired mode.
93 * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
94 tries this on a version-controlled buffer. It will do useless or
95 actively bad things on any version control system newer than RCS.
96 * vc-hooks.el (vc-dired-resynch-file):
97 * vc.el (vc-dired-resynch-file): Change name of primitive to
98 vc-directory-resynch-file, preparing to remove dired.
99
100 2008-05-02 Dan Nicolaescu <dann@ics.uci.edu>
101
102 * vc-rcs.el (vc-rcs-state): Fix typos.
103
104 * vc.el (vc-register): Change argument order so that the prefix
105 argument is assigned correctly.
106 (vc-next-action, vc-dir-register): Update for the above change.
107
108 2008-05-01 Juri Linkov <juri@jurta.org>
109
110 * replace.el (occur-read-primary-args): Set default to the car of
111 regexp-history and display it in the prompt, but don't add to the
112 list of minibuffer defaults. Bind history-add-new-input to nil to
113 not add automatically `default'. For empty input return `default'.
114 Otherwise, add `input' to regexp-history and return it.
115 (occur-1): Signal an error for the empty regexp.
116
117 * progmodes/compile.el (compilation-auto-jump):
118 Set window point to `pos' explicitly.
119
120 2008-05-01 Eric S. Raymond <esr@snark.thyrsus.com>
121
122 * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
123 when appropriate.
124 * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
125 we report the 'unregistered state reliably.
126 * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
127 we report the 'unregistered state reliably.
128 * vc-git.el (vc-git-state): Call vc-git-unregistered so
129 we report the 'unregistered state reliably.
130 * vc-hooks (vc-state): Document that vc-unregistered is
131 now expected to be returned reliably.
132 * vc.el (vc-default-dired-state): Change needs-patch state to
133 needs-update, since the name now shows up in dir-status listings
134 and was somewhat misleading.
135 * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
136 immediately after removing the file.
137 * vc.el (vc-next-action): More informative messages when a fileset
138 is in a mixed state or files are missing.
139
140 2008-05-01 Sam Steingold <sds@gnu.org>
141
142 * vc.el (vc-delete-file): Check if the file has uncommitted changes.
143
144 2008-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
145
146 * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
147
148 2008-05-01 Daiki Ueno <ueno@unixuser.org>
149
150 * epa-file-hook.el: New file split from epa-file.el.
151 * epa-file.el: Require 'epa-file-hook.
152 (epa-file-handler): Add autoload cookie.
153 * loadup.el: Load epa-file-hook.
154 * startup.el (command-line): Eval the body of auto-encryption-mode.
155
156 2008-05-01 Dan Nicolaescu <dann@ics.uci.edu>
157
158 * vc.el (vc-dir-mode-map): Don't bind "r".
159
160 * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
161 (vc-hg-status-printer): New function.
162 (vc-hg-after-dir-status): Deal with copied and renamed files.
163 (vc-hg-dir-status): Add flag to show copied files.
164
165 2008-05-01 John Paul Wallington <jpw@pobox.com>
166
167 * ibuffer.el (ibuffer-last-sorting-mode): New variable.
168 (ibuffer-do-sort-by-recency): Reverse sorting order if last
169 sorting mode was recency.
170
171 * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
172 reverse sorting order if last sorting mode was the sorter's.
173
174 2008-05-01 Jason Rumney <jasonr@gnu.org>
175
176 * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
177
178 2008-04-30 John Paul Wallington <jpw@pobox.com>
179
180 * ibuffer.el (define-ibuffer-column filename): When the major mode
181 is `vc-dir-mode' show the buffer's default directory.
182
183 * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
184 major mode is `vc-dir-mode' use the buffer's default directory.
185
186 2008-04-30 Sam Steingold <sds@gnu.org>
187
188 * vc.el (vc-dir-delete-file): Add.
189 (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
190 (vc-delete-file): Do not barf when the file has been already deleted.
191
192 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
193
194 * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
195
196 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
197
198 * progmodes/octave-mod.el (octave-help): New function.
199 * progmodes/octave-hlp.el: Delete.
200 * info-look.el (octave-mode): Add operator index.
201
202 * vc.el (vc-checkout): Typo.
203
204 2008-04-30 Dan Nicolaescu <dann@ics.uci.edu>
205
206 * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
207 Add "..." in the appropriate places.
208
209 * epa.el (epa-key-list-mode-map): Add more menu entries.
210 Add "..." in the appropriate places.
211
212 * dired.el (dired-mode-map): Add :help.
213
214 * vc.el (vc-deduce-fileset): Add new parameter.
215 (vc-dir-marked-only-files): New function.
216 (vc-next-action): Don't ignore directories, look at the files
217 inside them.
218 (vc-dir-mode): Document how the mark/unmark commands work.
219
220 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
221
222 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
223 Rule out trailing spaces in file and directory names as well.
224
225 * minibuffer.el (completion--do-completion): Move point even if the
226 completion makes no change.
227 (completion-pcm-try-completion): Fix computation of new point.
228
229 2008-04-30 David Hansen <david.hansen@gmx.net>
230
231 * dired.el: Require 'cl.
232
233 2008-04-30 Nick Roberts <nickrob@snap.net.nz>
234
235 * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
236 hollow if not in innermost frame.
237
238 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
239
240 Make `checkout-model' apply to filesets.
241 * vc-hooks.el (vc-checkout-model): Rewrite.
242 (vc-before-save, vc-after-save): Adjust callers accordingly.
243 * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
244 (vc-transfer-file): Adjust callers accordingly.
245 * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
246 (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
247 (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
248 instead of vc-checkout-model.
249 * vc-mcvs.el (vc-mcvs-revert):
250 Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
251 * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
252 (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
253 * vc-svn.el (vc-svn-checkout-model):
254 * vc-hg.el (vc-hg-checkout-model):
255 * vc-git.el (vc-git-checkout-model):
256 * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
257
258 * dired.el (dired-read-dir-and-switches): Replace last change with
259 a new approach that mixes read-file-name and read-directory-name.
260
261 * files.el (read-buffer-to-switch):
262 Avoid making assumptions about `other-buffer'.
263
264 2008-04-29 Sam Steingold <sds@gnu.org>
265
266 * vc.el (vc-dir-mode-hook): Add normal hook.
267 (vc-dir-mode): Run it.
268
269 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
270
271 * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
272 Always split windows.
273 (gdb-speedbar-timer-fn): Only raise frame after user input.
274 (gdb-same-frame): Reverse initial value.
275 (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
276
277 * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
278 gdb-speedbar-timer-fn.
279
280 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
281
282 * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
283
284 2008-04-29 Daiki Ueno <ueno@unixuser.org>
285
286 * epa.el (epa-key-list-mode-map): Add menu.
287 (epa-delete-keys, epa-import-keys): Fix typo.
288
289 2008-04-29 Glenn Morris <rgm@gnu.org>
290
291 * find-cmd.el (top-level): Does not need cl when compiling.
292
293 2008-04-29 Phil Jackson <phil@shellarchive.co.uk>
294
295 * find-cmd.el: New file.
296
297 2008-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
298
299 * minibuffer.el (completion-hilit-commonality): Remove leftover code.
300 (completion-pcm--pattern->regex): Let `group' be a list of symbols.
301 (completion-pcm--hilit-commonality): New function.
302 (completion-pcm-all-completions): Use it.
303
304 * minibuffer.el (completion-common-substring): Mark obsolete.
305 (completions-first-difference, completions-common-part):
306 Move from simple.el.
307 (completion-hilit-commonality): New fun.
308 (display-completion-list, completion-emacs21-all-completions)
309 (completion-emacs22-all-completions): Use it.
310 * simple.el (completions-first-difference, completions-common-part):
311 Move to minibuffer.el.
312 (choose-completion-string): Use field functions and minibufferp.
313 (completion-setup-function): Don't set completions faces.
314
315 2008-04-29 Glenn Morris <rgm@gnu.org>
316
317 * calendar/calendar.el (calendar-nth-named-absday)
318 (calendar-nth-named-day):
319 * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
320 * calendar/holidays.el (holiday-float): Doc fixes.
321
322 * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
323 the `full' case.
324
325 * org/org-agenda.el (calendar-iso-from-absolute):
326 * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
327 Fix declarations.
328
329 2008-04-28 Nick Roberts <nickrob@snap.net.nz>
330
331 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
332 icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
333 (gdb-goto-breakpoint): Likewise for visiting breakpoints.
334 (gdb-assembler-custom): Be careful not to match other addresses.
335
336 2008-04-29 Jason Rumney <jasonr@gnu.org>
337
338 * battery.el (battery-status-function): Use w32-battery-status
339 on Windows.
340 (battery-echo-area-format): Make apm format the general case.
341 (battery-mode-line-format): Merge apm and pmset formats as the
342 general case.
343
344 2008-04-29 Nick Roberts <nickrob@snap.net.nz>
345
346 * progmodes/gdb-ui.el (gdb-info-stack-custom):
347 Use gud-tool-bar-item-visible-no-fringe.
348 (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
349 is already visible in frame. Remove optional size parameter
350 and add optional frame parameter.
351
352 * progmodes/gud.el (gud-display-line): Only consider visible
353 frames when looking for source buffer.
354
355 2008-04-28 Chong Yidong <cyd@stupidchicken.com>
356
357 * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
358 argument to get-char-property, in case the current buffer hasn't
359 been assigned to that window yet.
360 (doc-view-display): Default to selected window if the current
361 buffer hasn't been assigned to a window yet.
362
363 2008-04-28 Vinicius Jose Latorre <bzg@altern.org>
364
365 * whitespace.el (whitespace-trailing-regexp): Fix docstring.
366
367 2008-04-28 Sam Steingold <sds@gnu.org>
368
369 * vc-hg.el (vc-hg-rename-file): Fix argument order.
370
371 2008-04-28 Bastien Guerry <bzg@altern.org>
372
373 * whitespace.el (whitespace-trailing): Fix typo.
374
375 2008-04-28 Sam Steingold <sds@gnu.org>
376
377 * textmodes/remember.el (diary-make-entry): Update the autoload.
378
379 2008-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
380
381 * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
382 all-completions.
383
384 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
385
386 * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
387
388 2008-04-27 Dan Nicolaescu <dann@ics.uci.edu>
389
390 * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
391 (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
392 (vc-dir-mark-file): Add an optional argument.
393 (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
394
395 2008-04-27 Daiki Ueno <ueno@unixuser.org>
396
397 * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
398 rather than obsolete alias find-file-hooks.
399 (auto-encryption-mode): Rename from epa-file-mode. Default to on.
400 Use find-file-hook rather than obsolete alias find-file-hooks.
401 Add to find-file-not-found-functions.
402 (epa-file-handler): Put 'safe-magic and 'operations properties.
403
404 * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
405 (epa-menu-items): Remove.
406
407 * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
408 (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
409 (epa-dired-mode, epa-global-dired-mode): Remove.
410
411 * dired.el (dired-mode-map): Bind encryption/decryption commands.
412
413 * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
414
415 * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
416
417 2008-04-27 Glenn Morris <rgm@gnu.org>
418
419 * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
420 Remove un-needed local `orig-list'. Replace cl `copy-list'.
421
422 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
423
424 * org/org.el (org-html-level-start): Always have id's in HTML.
425 (org-export-as-html): Use `org-link-protocols' to
426 retrieve the export form of the link.
427 (org-add-link-type): Final parameter renamed from PUBLISH.
428 Better documentation of how it is to be used. Avoid double entries for
429 the same link type.
430 (org-add-link-props): New function.
431 (org-modules-loaded): New variable.
432 (org-load-modules-maybe, org-set-modules): New function.
433 (org-modules): New option.
434 (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
435 (orgtbl-mode, org-store-link, org-insert-link-global)
436 (org-open-at-point): Call `org-load-modules-maybe'.
437 (org-search-view): Add more text properties.
438 (org-agenda-schedule, org-agenda-deadline): Allow also in
439 search-type agendas.
440 (org-search-view): Order of arguments has been changed.
441 Interpret prefix-arg as TODO-ONLY.
442 (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
443 Take new argument order of `org-search-view' into account.
444 (org-todo-only): New variable.
445 (org-search-syntax-table): New variable and function.
446 (org-search-view): Do the search with the special syntax table.
447 (define-obsolete-function-alias): Make work with XEmacs.
448 (org-add-planning-info): Use old date as default when modifying an
449 existing deadline or scheduled item.
450 (org-agenda-compute-time-span): Make argument N optional.
451 (org-agenda-format-date-aligned): Require `cal-iso'.
452 (org-agenda-list): Include week into into agenda heading, don't
453 list it at each date (only on Mondays).
454 (org-read-date-analyze): Define local variable `iso-date'.
455 (org-agenda-format-date-aligned): Remove dependency on
456 `calendar-time-from-absolute'.
457 (org-remember-apply-template, org-go-to-remember-target):
458 Interpret filenames relative to `org-directory'.
459 (org-complete): Silently fail when trying to complete
460 keywords that don't have a default value.
461 (org-get-current-options): Add a #+DATE: option.
462 (org-additional-option-like-keywords): Remove "DATE:" from the
463 list of additional keywords.
464 (org-export-as-html): Remove (current-time) as unnecessary second
465 argument of `format-time-string'.
466 (org-clock-find-position): Handle special case at end of buffer.
467 (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
468 `org-agenda-change-time-span'.
469 (org-agenda-week-view): New argument ISO-WEEK, pass it on to
470 `org-agenda-change-time-span'.
471 (org-agenda-month-view): New argument MONTH, pass it on to
472 `org-agenda-change-time-span'.
473 (org-agenda-year-view): New argument YEAR, pass it on to
474 `org-agenda-change-time-span'.
475 (org-agenda-change-time-span): New optional argument N, pass it on
476 to `org-agenda-compute-time-span'.
477 (org-agenda-compute-time-span): New argument N, interpret it by
478 changing the starting day.
479 (org-small-year-to-year): New function.
480 (org-scheduled-past-days): Respect `org-scheduled-past-days'.
481 (org-auto-repeat-maybe): Make sure that repeating dates are pushed
482 into the future, and that the shift is at least one interval, never 0.
483 (org-update-checkbox-count): Fix bug with checkbox counting.
484 (org-add-note): New command.
485 (org-add-log-setup): Rename from `org-add-log-maybe'.
486 (org-log-note-headings): New entry for plain notes (i.e. notes not
487 related to state changes or clocking).
488 (org-get-org-file): Check for availability of `remember-data-file'.
489 (org-cached-entry-get): Allow a regexp value for
490 `org-use-property-inheritance'.
491 (org-use-property-inheritance): Allow regexp value. Fix bug in
492 customization type.
493 (org-use-tag-inheritance): Allow a list and a regexp value for
494 this variable.
495 (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
496 (org-entry-get): Respect value `selective' for the INHERIT argument.
497 (org-tag-inherit-p, org-property-inherit-p): New functions.
498 (org-agenda-format-date-aligned): Allow 10 characters for
499 weekday, to acomodate German locale.
500 (org-add-archive-files): New function.
501 (org-agenda-files): New argument `ext', to get archive files as well.
502 (org-tbl-menu): Protect the use of variables that
503 are only available when org-table.el gets loaded.
504 (org-read-agenda-file-list): Error if `org-agenda-files' is a
505 single directory.
506 (org-open-file): Allow a batch process to trigger
507 waiting after executing a system command.
508 (org-store-link): Link to headline when there is not
509 target and no region in an org-mode buffer when creating a link.
510 (org-link-types-re): New variable.
511 (org-make-link-regexps): Compute `org-link-types-re'.
512 (org-make-link-description-function): New option.
513 (org-agenda-date, org-agenda-date-weekend): New faces.
514 (org-archive-sibling-heading): New option.
515 (org-archive-to-archive-sibling): New function.
516 (org-iswitchb): New command.
517 (org-buffer-list): New function.
518 (org-agenda-columns): Also try the #+COLUMNS line in
519 the buffer associated with the entry at point (or with the first
520 entry in the agenda view).
521 (org-modules): Add entry for org-bibtex.el.
522 (org-completion-fallback-command): Move into `org-completion' group.
523 (org-clock-heading-function): Move to `org-progress' group.
524 (org-auto-repeat-maybe): Make sure that a note can
525 be enforces if `org-log-repeat' is `note'.
526 (org-modules): Allow additional symbols for external packages.
527 (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
528 (org-clock-goto): Hide drawers after showing an
529 entry with `org-clock-goto.'
530 (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
531 Try also a clocktable block shift.
532 (org-clocktable-try-shift): New function.
533 (org-columns-hscoll-title): New function.
534 (org-columns-previous-hscroll): New variable.
535 (org-columns-full-header-line-format): New variable.
536 (org-columns-display-here-title, org-columns-remove-overlays):
537 Install `org-columns-hscoll-title' in post-command-hook.
538
539 * org/org.el: Split into many small files.
540
541 * org/org-agenda.el: New file, split off from org.el.
542
543 * org/org-archive.el: New file, split off from org.el.
544
545 * org/org-bbdb.el: New file.
546
547 * org/org-bibtex.el: New file, split off from org.el.
548
549 * org/org-clock.el: New file, split off from org.el.
550
551 * org/org-colview.el: New file, split off from org.el.
552
553 * org/org-compat.el: New file, split off from org.el.
554
555 * org/org-exp.el: New file, split off from org.el.
556
557 * org/org-faces.el: New file, split off from org.el.
558
559 * org/org-gnus.el: New file, split off from org.el.
560
561 * org/org-info.el: New file, split off from org.el.
562
563 * org/org-infojs.el: New file.
564
565 * org/org-irc.el: New file.
566
567 * org/org-macs.el: New file, split off from org.el.
568
569 * org/org-mew.el: New file.
570
571 * org/org-mhe.el: New file, split off from org.el.
572
573 * org/org-publish.el: New file, split off from org.el.
574
575 * org/org-remember.el: New file, split off from org.el.
576
577 * org/org-rmail.el: New file, split off from org.el.
578
579 * org/org-table.el: New file, split off from org.el.
580
581 * org/org-vm.el: New file, split off from org.el.
582
583 * org/org-wl.el: New file, split off from org.el.
584
585 2008-04-27 Jason Riedy <jason@acm.org>
586
587 * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
588 parameter that supresses lines that evaluate to NIL.
589 (orgtbl-get-fmt): New inline function for
590 picking apart formats that may be lists.
591 (orgtbl-apply-fmt): New inline function for applying formats that
592 may be functions.
593 (orgtbl-eval-str): New inline function for strings that may be
594 functions.
595 (orgtbl-format-line, orgtbl-to-generic): Use and document.
596 (orgtbl-to-latex, orgtbl-to-texinfo): Document.
597 (*orgtbl-llfmt*, *orgtbl-llstart*)
598 (*orgtbl-llend*): Dynamic variables for last-line formatting.
599 (orgtbl-format-section): Shift formatting to support detecting the
600 last line and formatting it specially.
601 (orgtbl-to-generic): Document :ll* formats. Set to the non-ll
602 formats unless overridden.
603 (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
604 (*orgtbl-table*, *orgtbl-rtn*): Dynamically
605 bound variables to hold the input collection of lines and output
606 formatted text.
607 (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
608 (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
609 format parameters.
610 (orgtbl-format-line): New function encapsulating formatting for a
611 single line.
612 (orgtbl-format-section): Similar for each section. Rebinding the
613 dynamic vars customizes the formatting for each section.
614 (orgtbl-to-generic): Use orgtbl-format-line and
615 orgtbl-format-section.
616 (org-get-param): Now unused, so delete.
617 (orgtbl-gather-send-defs): New function to
618 gather all the SEND definitions before a table.
619 (orgtbl-send-replace-tbl): New function to find the RECEIVE
620 corresponding to the current name.
621 (orgtbl-send-table): Use the previous two functions and implement
622 multiple destinations for each table.
623
624 * doc/org.texi (A LaTeX example): Note that fmt may be a
625 one-argument function, and efmt may be a two-argument function.
626 (Radio tables): Document multiple destinations.
627
628 2008-04-27 Carsten Dominik <dominik@science.uva.nl>
629
630 * org/org-agenda.el (org-add-to-diary-list): New function.
631 (org-prefix-has-effort): New variable.
632 (org-sort-agenda-noeffort-is-high): New option.
633 (org-agenda-columns-show-summaries)
634 (org-agenda-columns-compute-summary-properties): New options.
635 (org-format-agenda-item): Compute the duration of the item.
636 (org-agenda-weekend-days): New variable.
637 (org-agenda-list, org-timeline): Use the proper faces for dates in
638 the agenda and timeline buffers.
639 (org-agenda-archive-to-archive-sibling): New command.
640 (org-agenda-start-with-clockreport-mode): New option.
641 (org-agenda-clockreport-parameter-plist): New option.
642 (org-agenda-clocktable-mode): New variable.
643 (org-agenda-deadline-leaders): Allow a function value for the
644 deadline leader.
645 (org-agenda-get-deadlines): Deal with new function value.
646
647 * lisp/org-clock.el (org-clock): New customization group.
648 (org-clock-into-drawer, org-clock-out-when-done)
649 (org-clock-in-switch-to-state, org-clock-heading-function):
650 Move into the new group.
651 (org-clock-out-remove-zero-time-clocks): New option.
652 (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
653 (org-dblock-write:clocktable): Allow a Lisp form for the scope
654 parameter.
655 (org-dblock-write:clocktable): Fix bug with total time calculation.
656 (org-dblock-write:clocktable): Request the unrestricted list of files.
657 (org-get-clocktable): New function.
658 (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
659 be strings but also integers (an absolute day number) and lists (m d y).
660
661 * org/org-colview.el (org-columns-next-allowed-value)
662 (org-columns-edit-value): Limit the effort for updating in the
663 agenda to recomputing a single file.
664 (org-columns-compute): Only write property value if it has changed.
665 This avoids raising the buffer-change-flag unnecessarily.
666 (org-agenda-colview-summarize)
667 (org-agenda-colview-compute): New functions.
668 (org-agenda-columns): Call `org-agenda-colview-summarize'.
669
670 * org/org-exp.el (org-export-run-in-background): New option.
671 (org-export-icalendar): Allow a batch process to trigger waiting
672 after executing a system command.
673 (org-export-preprocess-string): Rename from
674 `org-cleaned-string-for-export'.
675 (org-export-html-style): Made target class look like normal text.
676 (org-export-as-html): Make use of the better proprocessing in
677 `org-cleaned-string-for-export'.
678 (org-cleaned-string-for-export): Better treatment of heuristic
679 targets, many more internal links will now work in HTML export.
680 (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
681 (org-export-inbuffer-options-extra): New variable.
682 (org-export-options-filters): New hook.
683 (org-infile-export-plist): Find also the settings keywords in
684 `org-export-inbuffer-options-extra'.
685 (org-infile-export-plist): Allow multiple #+OPTIONS lines and
686 multiple #+INFOJS_OPT lines.
687 (org-export-html-handle-js-options): New function.
688 (org-export-html-infojs-setup): New option.
689 (org-export-as-html): Call `org-export-html-handle-js-options'.
690 Add autoload to all entry points.
691 (org-skip-comments): Function removed.
692
693 * org/org-table.el (org-table-make-reference): Extra parenthesis
694 around single fields, to make sure that algebraic formulas get
695 correctly interpreted by calc.
696 (org-table-current-column): No longer interactive.
697
698 * org/org-export-latex.el (org-export-latex-preprocess):
699 Rename from `org-export-latex-cleaned-string'.
700
701 2008-04-27 Bastien Guerry <bzg@altern.org>
702
703 * org/org-publish.el (org-publish-get-base-files-1): New function.
704 (org-publish-get-base-files): Use it.
705 (org-publish-temp-files): New variable.
706 Don't require 'dired-aux anymore.
707 (org-publish-initial-buffer): New variable.
708 (org-publish-org-to, org-publish): Use it.
709 (org-publish-get-base-files-1): Bug fix: get
710 the proper list of files when recursing thru a directory.
711 (org-publish-get-base-files): Use the :exclude property to skip
712 both files and directories.
713
714 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
715
716 * net/tramp.el (tramp-handle-make-symbolic-link)
717 (tramp-handle-file-name-directory)
718 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
719 (tramp-do-copy-or-rename-file-directly)
720 (tramp-handle-insert-directory, tramp-handle-expand-file-name)
721 (tramp-handle-substitute-in-file-name)
722 (tramp-handle-insert-file-contents, tramp-handle-write-region)
723 * net/tramp-cache.el (tramp-get-file-property)
724 (tramp-set-file-property, tramp-flush-file-property)
725 (tramp-flush-directory-property)
726 * net/tramp-compat.el (tramp-compat-make-temp-file)
727 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
728 Disable `file-name-handler-alist' when handling localname.
729 It could have a remote file syntax, like a VMS file name.
730
731 2008-04-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
732
733 * whitespace.el: New version 11.1.
734 (whitespace-trailing-regexp): Option fix, now trailing regexp must be
735 enclosed by \\( and \\)$. Docstring fix.
736 (whitespace-trailing-regexp): Fun removed.
737 (whitespace-report-list): Const initialization fix.
738 (whitespace-color-on): Code fix.
739
740 2008-04-27 Andreas Schwab <schwab@suse.de>
741
742 * Makefile.el: Unbreak bootstrap.
743
744 2008-04-27 Michael Albinus <michael.albinus@gmx.de>
745
746 * net/tramp.el (tramp-replace-environment-variables): New defun.
747 (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
748 Use it.
749
750 2008-04-27 Glenn Morris <rgm@gnu.org>
751
752 * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
753
754 * calculator.el (calculator-expt): Replace cl function `oddp'.
755
756 2008-04-27 Johan Bockgård <bojohan@gnu.org>
757
758 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
759 Simplify. Collect `defun' and `autoload' entries.
760 Avoid modifying load-history.
761
762 2008-04-26 Glenn Morris <rgm@gnu.org>
763
764 * textmodes/ispell.el (ispell-insert-word): Revert previous change.
765
766 * simple.el (quoted-insert, zap-to-char): Revert previous change.
767
768 2008-04-26 John Paul Wallington <jpw@pobox.com>
769
770 * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
771 `hexl-mode-old-eldoc-documentation-function'.
772 (hexl-mode-exit): Restore it.
773 (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
774
775 * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
776
777 2008-04-26 Juanma Barranquero <lekktu@gmail.com>
778
779 * minibuffer.el (completion-pcm-word-delimiters): Add :group.
780 (completion-pcm--all-completions): Doc fix.
781 (completion-styles-alist, completion-all-completions):
782 Fix typos in docstrings.
783
784 2008-04-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
785
786 * whitespace.el: There is now only one variable (whitespace-style) to
787 specify which kind of blank is visualized. Doc and docstring fix.
788 New version 11.0.
789 (whitespace-style): New option, replace whitespace-style-mark and
790 whitespace-style-color.
791 (whitespace-style-mark, whitespace-style-color): Options removed.
792 (whitespace-hspace, whitespace-tab, whitespace-newline)
793 (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
794 (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
795 (whitespace-hspace-regexp, whitespace-space-regexp)
796 (whitespace-tab-regexp, whitespace-trailing-regexp)
797 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
798 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
799 (whitespace-space-after-tab-regexp, whitespace-line-column)
800 (whitespace-display-mappings, whitespace-report): Docstring fix.
801 (whitespace-color-value-list, whitespace-mark-value-list)
802 (whitespace-active-color, whitespace-active-mark)
803 (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
804 (whitespace-style-value-list, whitespace-active-style)
805 (whitespace-toggle-style): New vars.
806 (whitespace-toggle-option-alist, whitespace-help-text):
807 Var initialization and docstring fix.
808 (whitespace-toggle-options, global-whitespace-toggle-options)
809 (whitespace-cleanup, whitespace-cleanup-region)
810 (whitespace-report-region, whitespace-interactive-char)
811 (whitespace-toggle-list): Docstring and code fix.
812 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
813 (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
814 (whitespace-display-char-on, whitespace-display-char-off): Code fix.
815 (whitespace-style-face-p, whitespace-style-mark-p): New fun.
816
817 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
818
819 * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
820 (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
821 (diff-sanity-check-hunk): Adjust code accordingly.
822
823 2008-04-26 Glenn Morris <rgm@gnu.org>
824
825 * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
826
827 * forms-d2.dat: Move to ../etc.
828 * forms-d2.el (forms-file): Adapt for above change.
829
830 * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
831 `translation-table-for-input'.
832
833 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
834 (byte-compile-obsolete, byte-compile-variable-ref): Use it.
835
836 * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
837 to punctuation now it's not needed for abbrevs.
838 (fortran-mode-abbrev-table): Remove defvar, make use of new
839 define-abbrev-table :regexp feature.
840
841 * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
842 insert, now that translation-table-for-input is not needed.
843
844 2008-04-26 Johannes Weiner <hannes@saeurebad.de>
845
846 * emacs-lisp/pp.el (pp-display-expression): New function,
847 extracted from pp-eval-expression.
848 (pp-eval-expression): Use pp-display-expression.
849 (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
850 (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
851 (pp-eval-last-sexp): Use pp-last-sexp.
852
853 2008-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
854
855 * abbrev.el (define-abbrev-table): Apply props even if the table
856 exists already.
857
858 * minibuffer.el (completion-table-with-context): Fix `pred' for the
859 various kinds of completion tables.
860 (completion-emacs22-try-completion): Place cursor after the /, as was
861 done in Emacs-22's minibuffer-complete-word.
862 Fix bug reported by David Hansen <david.hansen@gmx.net>.
863 (completion-emacs22-try-completion): Merge all mergable text rather
864 than just /.
865 (completion-pcm--delim-wild-regex): New var.
866 (completion-pcm-word-delimiters): New custom.
867 (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
868 (completion-pcm--string->pattern, completion-pcm--pattern->regex)
869 (completion-pcm--all-completions, completion-pcm-all-completions)
870 (completion-pcm--merge-completions, completion-pcm--pattern->string)
871 (completion-pcm-try-completion): New functions.
872 (completion-styles-alist): Add them.
873 (completion-styles): Add it to the default.
874
875 2008-04-25 Nick Roberts <nickrob@snap.net.nz>
876
877 * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
878 (gdb-var-create-handler): ...until here when there are values.
879 (gdb-post-prompt): Don't do -var-update with no watch expressions.
880 (gdb-info-locals-handler): Don't match "struct {...}" as an array.
881
882 2008-04-25 Eli Zaretskii <eliz@gnu.org>
883
884 * ls-lisp.el (ls-lisp-format): Fix last change.
885 (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
886 (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
887 (ls-lisp-filesize-f-fmt): New defvars.
888 (ls-lisp-insert-directory): Dynamically compute format specifiers
889 for displaying UID, GID, and file size, and store them in the
890 above variables.
891 (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
892 ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
893 instead of constant format strings.
894 (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
895 ls-lisp-filesize-d-fmt instead of constant format strings.
896
897 2008-04-24 Nick Roberts <nickrob@snap.net.nz>
898
899 * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
900 value of addresses rather than (partial) string value.
901 (gdb-frame-handler): Change regexp according to above change.
902 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
903 (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
904 (gdb-assembler-mode): Disable undo in these buffers.
905
906 2008-04-24 Michael Albinus <michael.albinus@gmx.de>
907
908 * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
909 Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
910
911 2008-04-24 Sam Steingold <sds@gnu.org>
912
913 * textmodes/remember.el (remember-diary-extract-entries): Use
914 diary-make-entry instead of the obsolete make-diary-entry.
915
916 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
917
918 * subr.el (translation-table-for-input): Mark as obsolete.
919
920 * isearch.el (isearch-search-string): Avoid string-bytes and aset.
921
922 * international/quail.el (quail-build-decode-map): Avoid string-bytes.
923
924 * textmodes/ispell.el (ispell-dictionary-alist-1)
925 (ispell-dictionary-alist-2, ispell-dictionary-alist-3):
926 (ispell-dictionary-alist-4, ispell-dictionary-alist-5):
927 (ispell-dictionary-alist-6): Remove.
928 (ispell-dictionary-base-alist): New var, merges the above.
929 (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
930 Use it.
931 (ispell-dictionary-alist): Default to nil. Remove autoload.
932 (ispell-local-dictionary-alist): Remove autoload.
933
934 * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
935 (f90-mode-abbrev-table): Use the new :regexp feature.
936 Merge defvar and mapc into define-abbrev-table.
937 (f90-imenu-type-matcher): Remove unused `l'.
938 (f90-imenu-generic-expression): Remove unused `not-ib'.
939 (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
940 (f90-change-keywords): Use restore-buffer-modified-p.
941
942 2008-04-24 Glenn Morris <rgm@gnu.org>
943
944 * net/goto-addr.el (goto-address-prog-mode):
945 * progmodes/bug-reference.el (bug-reference-prog-mode):
946 Define for compiler.
947
948 * minibuffer.el (x-file-dialog): Declare as function.
949
950 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
951 dframe-update-speed rather than obsolete alias speedbar-update-speed.
952
953 * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
954 (cal-menu-scroll-menu): Use commands rather than key macros, which don't
955 work with easymenu. Add :keys where needed.
956
957 * calendar/cal-move.el (calendar-scroll-left): Handle case when
958 event-start is nil.
959
960 * calendar/calendar.el (calendar-mode-map): Fix typo.
961
962 2008-04-24 Tom Tromey <tromey@redhat.com>
963
964 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
965 Document keywords. Add :suppress.
966 * pcvs-defs.el (cvs-mode-map): Use :suppress.
967
968 * net/goto-addr.el (goto-address-unfontify): New function.
969 (goto-address-fontify): Use it. Respect goto-address-prog-mode.
970 (goto-address-fontify-region, goto-address-mode)
971 (goto-address-prog-mode): New functions.
972
973 * progmodes/bug-reference.el: New file.
974
975 2008-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
976
977 * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
978
979 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
980
981 * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
982 macros within lambdas.
983
984 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
985
986 * minibuffer.el (completion-try-completion): Add `point' argument.
987 Change return value.
988 (completion-all-completions): Add `point' argument.
989 (minibuffer-completion-help): Pass the new `point' argument.
990 (completion--do-completion): Pass the whole field to try-completion.
991 (completion--try-word-completion): Rewrite, making fewer assumptions.
992 (completion-emacs21-try-completion, completion-emacs21-all-completions)
993 (completion-emacs22-try-completion, completion-emacs22-all-completions)
994 (completion-basic-try-completion, completion-basic-all-completions):
995 New functions.
996 (completion-styles-alist): Use them.
997
998 2008-04-23 Agustin Martin <agustin.martin@hispalinux.es>
999
1000 * ispell.el (ispell-set-spellchecker-params): New function to make sure
1001 right params and dictionary alists are used after spellchecker changes.
1002 (ispell-aspell-dictionary-alist, ispell-last-program-name)
1003 (ispell-initialize-spellchecker-hook): New variables and hook.
1004 (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
1005 (ispell-maybe-find-aspell-dictionaries): Remove.
1006 Calls replaced by (ispell-set-spellchecker-params) calls.
1007 (ispell-have-aspell-dictionaries): Remove.
1008 * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by
1009 ispell-set-spellchecker-params.
1010
1011 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1012
1013 * complete.el (PC-do-completion): Be more robust in the presence of
1014 unexpected values in minibuffer-completion-predicate.
1015
1016 * minibuffer.el (read-file-name): Don't let-bind default-directory.
1017 Only abbreviate default-filename if it's a file.
1018
1019 * minibuffer.el (read-file-name-function, read-file-name-predicate)
1020 (read-file-name-completion-ignore-case, insert-default-directory):
1021 New vars, moved from fileio.c.
1022 (read-file-name): New fun, moved from fileio.c.
1023 * cus-start.el: Remove insert-default-directory and
1024 read-file-name-completion-ignore-case.
1025
1026 2008-04-23 Magnus Henoch <mange@freemail.hu>
1027
1028 * tar-mode.el (tar-untar-buffer): If the entry has directory
1029 link type, extract it as a directory even if its file name doesn't
1030 end with a slash. Fixes extraction of NetBSD tar archives.
1031
1032 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1033
1034 * server.el (server-start): Also don't get confused by CRs since we
1035 don't quote them.
1036
1037 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
1038
1039 * progmodes/gdb-ui.el (gdb-init-buffer): New function.
1040 (gdb-set-gud-minor-mode-existing-buffers)
1041 (gdb-info-breakpoints-custom, gdb-get-location)
1042 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
1043 Previously gdb-create-define-alist wasn't always run and added to
1044 after-save-hook.
1045
1046 * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer
1047
1048 2008-04-23 Kevin Ryde <user42@zip.com.au>
1049
1050 * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
1051 comments like unindented ones.
1052
1053 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1054
1055 * term/mac-win.el (mac-ae-open-documents): Adjust selection range
1056 parameter origins.
1057
1058 2008-04-23 Kevin Ryde <user42@zip.com.au>
1059
1060 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1061 Bind print-level to ensure output forms aren't truncated if
1062 print-level is set to eval-expression-print-level when going via
1063 eval-defun and friends, or has been otherwise fiddled with.
1064
1065 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1066
1067 * progmodes/cc-mode.el (c-basic-common-init): Don't set
1068 font-lock-extend-after-change-region-function globally.
1069
1070 2008-04-23 Juanma Barranquero <lekktu@gmail.com>
1071
1072 * speedbar.el (speedbar-use-tool-tips-flag)
1073 (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
1074 (speedbar-file-regexp, speedbar-message, speedbar-item-info)
1075 (speedbar-files-item-info, speedbar-maybe-add-localized-support)
1076 (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
1077 (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
1078 (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
1079 (speedbar-separator-face): Fix typos in docstrings.
1080 (speedbar-stealthy-function-list, speedbar-verbosity-level)
1081 (speedbar-supported-extension-expressions, speedbar-update-current-file)
1082 (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
1083 (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
1084 (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
1085 (speedbar-show-info-under-mouse, speedbar-directory-buttons)
1086 (speedbar-check-vc-this-line, speedbar-files-line-directory)
1087 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
1088 (speedbar-buffers-line-directory, speedbar-recenter-to-top)
1089 (speedbar-recenter): Doc fixes.
1090 (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
1091 declaration and remove redundant info in docstring.
1092
1093 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1094
1095 * vc-git.el (vc-git-status-printer): Deal with directories.
1096
1097 * vc.el (vc-next-action): Look at more than the first file to
1098 determine the state.
1099
1100 2008-04-23 Glenn Morris <rgm@gnu.org>
1101
1102 * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
1103 timers. Doc fix.
1104 (dframe-update-speed): Drop support for XEmacs < 20.
1105 (dframe-frame-mode): Drop support for Emacs < 20.
1106 (dframe-set-timer-internal): Drop support for Emacs without timers.
1107 (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
1108
1109 * ediff-init.el (ediff-check-version): Drop support for very old Emacs
1110 versions. Add doc-string. Mark as obsolete.
1111
1112 * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
1113
1114 * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
1115 rather than using an Emacs version test.
1116
1117 * tree-widget.el (tree-widget-image-enable): Use display-images-p
1118 rather than an Emacs version test.
1119
1120 * calendar/cal-china.el (holiday-chinese-qingming)
1121 (holiday-chinese-winter-solstice, holiday-chinese): New functions.
1122 * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
1123 * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
1124
1125 * calendar/cal-islam.el (holiday-islamic): Doc fix.
1126
1127 * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
1128 (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
1129 Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
1130
1131 2008-04-23 Nick Roberts <nickrob@snap.net.nz>
1132
1133 * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
1134 (gdb-previous-frame-pc-address): ...to this.
1135 (gdb-get-selected-frame): Use MI command -stack-info-frame instead
1136 of "info frame" with Gdb 6.4+.
1137 (gdb-stack-list-frames-regexp): New regexp.
1138 (gdb-frame-handler-1): Parse output of -stack-info-frame
1139
1140 2008-04-22 David Glasser <glasser@davidglasser.net> (tiny change)
1141
1142 * tar-mode.el (tar-prefix-offset): New constant.
1143 (tar-header-block-tokenize): Support paths with long names
1144 which use the "ustar" standard.
1145
1146 2008-04-22 Mathias Dahl <mathias.dahl@gmail.com>
1147
1148 * image-dired.el (image-dired-track-original-file)
1149 (image-dired-modify-mark-on-thumb-original-file):
1150 Use `dired-goto-file' instead of `search-forward'. This solves
1151 a bug with finding files where the file name is a subset of other
1152 file names. Doc fix.
1153
1154 2008-04-22 Juri Linkov <juri@jurta.org>
1155
1156 * menu-bar.el (buffers-menu-max-size): Move its definition down to
1157 the "Buffers Menu" section. Change group name `mouse' to `menu'.
1158 (yank-menu-length): Change group name `mouse' to `menu'.
1159 (buffers-menu-buffer-name-length): New user option.
1160 (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
1161 instead of the hard-coded number 27.
1162
1163 2008-04-22 Juri Linkov <juri@jurta.org>
1164
1165 * isearch.el (eval-when-compile): Require `help-macro'.
1166 (isearch-help-for-help-internal): Isearch specific Help screen
1167 created by `make-help-screen'.
1168 (isearch-help-map): New variable that binds "b", "k", "m" to
1169 isearch-specific commands, and binds other keys to
1170 isearch-other-control-char, thus allowing other Help keys to
1171 exit isearch mode and execute their global definitions.
1172 (isearch-help-for-help, isearch-describe-bindings)
1173 (isearch-describe-key, isearch-describe-mode): New commands.
1174 (isearch-mode-help): Define alias to isearch-describe-mode
1175 and remove its old function definition.
1176 (isearch-mode-map): Bind "\C-h" to isearch-help-map.
1177 Remove old comments because this issue is settled now.
1178 (isearch-forward): Describe three new Help commands in the docstring.
1179 (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
1180 leave the single sentence at the first line of the docstring,
1181 and prepend the word "function" before `isearch-forward'
1182 to make the Help link to the function instead of variable.
1183
1184 2008-04-22 Juri Linkov <juri@jurta.org>
1185
1186 * isearch.el (isearch-success-function): New variable with default
1187 to `isearch-success-function-default'.
1188 (isearch-search): Call a function from `isearch-success-function'
1189 instead of calling the hard-coded `isearch-range-invisible'.
1190 (isearch-success-function-default): New function that calls
1191 `isearch-range-invisible' and inverts its return value.
1192
1193 * info.el (Info-search): In two similar places that skip
1194 undesired search matches move code to Info-search-success-function,
1195 and call `isearch-success-function' instead.
1196 (Info-search-success-function): New function copied from code
1197 in Info-search. Replace isearch-range-invisible with
1198 text-property-not-all that checks for 'invisible and 'display
1199 properties to skip partially invisible matches (whose display
1200 properties were set by Info-fontify-node).
1201 (Info-mode): Set buffer-local isearch-success-function
1202 to Info-search-success-function.
1203
1204 2008-04-22 Juri Linkov <juri@jurta.org>
1205
1206 * minibuffer.el (internal-complete-buffer-except): New function.
1207
1208 * files.el (read-buffer-to-switch): New function.
1209 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
1210 Change interactive spec to call read-buffer-to-switch instead of
1211 using the letter "B".
1212
1213 * simple.el (minibuffer-default-add-shell-commands): New function.
1214 Use declare-function for mailcap-file-default-commands from "mailcap".
1215 (shell-command): Set local minibuffer-default-add-function to
1216 minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
1217 before calling read-shell-command. Set 4th arg default-value of
1218 read-shell-command to relative buffer-file-name in file buffers.
1219
1220 * dired-aux.el (dired-read-shell-command-default): Move it to
1221 gnus/mailcap.el and change its name to more general name
1222 mailcap-file-default-commands.
1223 (minibuffer-default-add-dired-shell-commands): New function.
1224 Use declare-function for mailcap-file-default-commands from "mailcap".
1225 (dired-read-shell-command): Set local minibuffer-default-add-function
1226 to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
1227 before calling read-shell-command. Remove dired-read-shell-command-default
1228 from the default value arg because default values are not set in
1229 minibuffer-default-add-dired-shell-commands. Doc fix.
1230
1231 * dired-x.el (dired-smart-shell-command): Sync arguments and
1232 interactive spec with changes in `shell-command'.
1233 Use dired-get-filename to get the dired file name at point
1234 as the default value in dired mode.
1235
1236 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
1237
1238 * info.el (Info-complete-menu-item): Add missing parenthesis.
1239
1240 2008-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1241
1242 * info.el (Info-complete-menu-item): Save point.
1243
1244 2008-04-22 Juanma Barranquero <lekktu@gmail.com>
1245
1246 * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
1247
1248 2008-04-22 Andreas Schwab <schwab@suse.de>
1249
1250 * Makefile.in (emacs-deps): Define.
1251 Use it instead of $(lisp)/subdirs.el.
1252
1253 2008-04-22 Dan Nicolaescu <dann@ics.uci.edu>
1254
1255 * vc.el (vc-next-action): Do not consider directories when
1256 checking for state compatibility.
1257 (vc-transfer-file): Use when not if.
1258 (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
1259 (vc-dir-mark-file): Use them.
1260 (vc-deduce-fileset): Also return the backend.
1261 (vc-diff-internal): Take as argument the value returned by
1262 vc-deduce-fileset instead of just the fileset.
1263 (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
1264 (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
1265 (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
1266
1267 2008-04-22 Tassilo Horn <tassilo@member.fsf.org>
1268
1269 * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
1270 set-window-vscroll but image-scroll-down. Fixes a bug where a
1271 command following SPC scrolled up again.
1272
1273 2008-04-22 Nick Roberts <nickrob@snap.net.nz>
1274
1275 * progmodes/gdb-ui.el (gdb-locals-header): New variable.
1276 (gdb-locals-mode, gdb-registers-mode): Use it for header line.
1277 (gud-watch): Add "$" prefix when in registers buffer.
1278
1279 2008-04-22 Glenn Morris <rgm@gnu.org>
1280
1281 * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
1282
1283 * whitespace.el (whitespace-display-table)
1284 (whitespace-display-table-was-local): Move definitions before use.
1285
1286 * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
1287 (copyright-limit): Respect copyright-at-end-flag.
1288 (copyright-re-search, copyright-start-point)
1289 (copyright-offset-too-large-p): New functions.
1290 (copyright-update-year): Use copyright-re-search.
1291 (copyright-update, copyright-fix-years): Use copyright-start-point,
1292 and copyright-re-search.
1293 (copyright): Use copyright-offset-too-large-p.
1294 * add-log.el (change-log-mode): Set copyright-at-end-flag.
1295
1296 * add-log.el (top-level): Require 'cl when compiling.
1297
1298 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1299
1300 * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
1301 Treat minibuffer-completion-predicate as a predicate.
1302
1303 * minibuffer.el (completion--file-name-table): Accept both the old
1304 `dir' arg or the new `pred' arg.
1305
1306 * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
1307 `predicate' argument to pass non-predicate data.
1308 (ffap-read-url-internal, ffap-read-file-or-url-internal):
1309 Use second arg as proper predicate.
1310
1311 * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
1312 (vc-bzr-revision-completion-table): Use completion-table-with-context
1313 instead.
1314
1315 * simple.el (choose-completion-string): Use minibuffer-completion-table.
1316
1317 2008-04-21 Chong Yidong <cyd@stupidchicken.com>
1318
1319 * term.el (term-emulate-terminal): Perform redisplay after the
1320 process filter has finished running.
1321
1322 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1323
1324 * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
1325
1326 * minibuffer.el (completion-try-completion): Change magic symbol
1327 property name. Rename from minibuffer-try-completion.
1328 (completion-all-completions): Rename from minibuffer-all-completions.
1329 Remove hide-spaces argument.
1330 (completion--do-completion): Rename from minibuffer--do-completion.
1331 (minibuffer-complete-and-exit): Call just try-completion rather than
1332 completion-try-completion to fix up the case.
1333 (completion--try-word-completion): Try to add space or hyphen before
1334 making `string' a prefix of `completion'.
1335 (completion--insert-strings): Rename from minibuffer--insert-strings.
1336
1337 2008-04-22 Naohiro Aota <nao.aota@gmail.com> (tiny change)
1338
1339 * net/tls.el (tls-program): Add -ign_eof argument to call the
1340 openssl commands.
1341 (tls-checktrust): Ditto.
1342
1343 2008-04-21 Dan Nicolaescu <dann@ics.uci.edu>
1344
1345 * vc-cvs.el (vc-cvs-status-extra-headers): New function.
1346
1347 * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
1348 (vc-check-master-templates, vc-file-not-found-hook)
1349 (vc-kill-buffer-hook):
1350 * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
1351 (vc-find-position-by-context, vc-buffer-context)
1352 (vc-restore-buffer-context, vc-responsible-backend)
1353 (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
1354 (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
1355 (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
1356 (vc-version-diff, vc-diff, vc-insert-headers)
1357 (vc-dired-buffers-for-dir, vc-dired-resynch-file)
1358 (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
1359 (vc-revert, vc-rollback, vc-version-backup-file)
1360 (vc-rename-master, vc-delete-file, vc-rename-file)
1361 (vc-branch-part, vc-default-retrieve-snapshot)
1362 (vc-annotate-display-autoscale, vc-annotate-display-select)
1363 (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
1364 (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
1365 (vc-dir-update): Handle directories.
1366 (vc-default-status-printer): Simplify.
1367
1368 * progmodes/asm-mode.el (asm-mode-map):
1369 * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
1370
1371 * progmodes/m4-mode.el (m4-mode-map): Add menu.
1372
1373 2008-04-21 Kenichi Handa <handa@m17n.org>
1374
1375 * select.el (xselect-convert-to-string): Send a C_STRING only if
1376 the polymorphic target TEXT is requested.
1377
1378 2008-04-21 Juanma Barranquero <lekktu@gmail.com>
1379
1380 * minibuffer.el (completion-setup-hook, display-completion-list)
1381 (completion--file-name-table): Fix typos in docstrings.
1382 (completion-table-dynamic): Fix typo, and reflow docstring.
1383
1384 2008-04-20 Andreas Schwab <schwab@suse.de>
1385
1386 * server.el (server-switch-buffer): Also consider clients in the
1387 selected frame.
1388
1389 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
1390
1391 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
1392 Select window clicked on first.
1393 (gdb): Display thread number in mode-line.
1394 (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
1395 (gdb-breakpoints-header): New variable.
1396 (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
1397
1398 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
1401 (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
1402 (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
1403 (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
1404 (vc-sccs-print-log): Use it.
1405
1406 * vc-hooks.el (vc-path): Remove SCCS-specific hack.
1407
1408 * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
1409 * progmodes/scheme.el (scheme-mode-variables): Don't use it.
1410
1411 * tooltip.el (tooltip-previous-message): New var.
1412 (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
1413 the C code (avoid overwriting a minibuffer, restore previous echo
1414 message, ...).
1415 (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
1416 Simplify.
1417
1418 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
1419
1420 * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
1421 (gdb-init-1): Initialise it.
1422 (gdb-annotation-rules): New entry for "new-thread".
1423 (gdb-thread-identification): New function to customize
1424 mode-line-buffer-identification.
1425 (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
1426 (gdb-assembler-mode): Use it.
1427 (gdb-threads-mode): Force "info threads" onto queue.
1428
1429 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1430
1431 * files.el (locate-file-completion-table): Rename from
1432 locate-file-completion and make it use `pred' in the normal way.
1433 (locate-file-completion): New compatibility wrapper.
1434 (load-library): Use locate-file-completion-table.
1435 * finder.el (finder-commentary):
1436 * subr.el (locate-library):
1437 * emacs-lisp/find-func.el (find-library): Likewise.
1438 * info.el: Use with-current-buffer and inhibit-read-only.
1439 (Info-read-node-name-2): Change to use `predicate' in the normal way.
1440 (Info-read-node-name-1): Adjust uses accordingly.
1441
1442 * minibuffer.el (completion-table-with-context): Add support for `pred'.
1443 (completion-table-with-terminator): Don't use complete-with-action
1444 since we have to distinguish all three cases anyway.
1445 (completion-table-with-predicate): New function.
1446 (dynamic-completion-table): Add obsolete alias.
1447
1448 * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
1449
1450 2008-04-18 Sam Steingold <sds@gnu.org>
1451
1452 * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
1453 Use quit-window instead of bury-buffer.
1454
1455 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1456
1457 * minibuffer.el (completion-table-with-terminator): Fix last fix.
1458
1459 2008-04-18 Andreas Schwab <schwab@suse.de>
1460
1461 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
1462 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
1463 Depend on $(lisp)/subdirs.el.
1464
1465 2008-04-18 Juanma Barranquero <lekktu@gmail.com>
1466
1467 * descr-text.el (describe-char-after):
1468 Use `define-obsolete-function-alias'.
1469
1470 * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
1471
1472 * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
1473
1474 * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
1475 Remove redundant obsolescence info in docstring.
1476
1477 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
1478 (vc-header-alist): Add WHEN to obsolescence declaration.
1479 (vc-state): Fix typo in docstring.
1480
1481 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
1482 Use `define-obsolete-variable-alias'.
1483
1484 * emulation/tpu-edt.el (tpu-have-ispell):
1485 * international/codepage.el (codepage-setup):
1486 Fix typo in obsolescence declaration.
1487
1488 * international/mule.el (char-coding-system-table):
1489 Remove redundant obsolescence info in docstring.
1490 (charset-list, generic-char-p, set-char-table-default):
1491 Fix typos in obsolescence decarations.
1492
1493 * international/mule-diag.el (non-iso-charset-alist):
1494 Fix typo in obsolescence declaration.
1495 (decode-codepage-char): Remove redundant obsolescence info in docstring.
1496
1497 * font-core.el (font-lock-defaults-alist):
1498 * font-lock.el (font-lock-reference-face):
1499 * frame.el (screen-height, screen-width, set-screen-width)
1500 (set-screen-height):
1501 * hilit-chg.el (highlight-changes-initial-state):
1502 * isearch.el (isearch-return-char):
1503 * log-edit.el (cvs-commit-buffer-require-final-newline)
1504 (cvs-changelog-full-paragraphs):
1505 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
1506 (mouse-popup-menubar-stuff):
1507 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
1508 (mouse-wheel-click-button):
1509 * outline.el (outline-visible):
1510 * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
1511 * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
1512 * emacs-lisp/lisp-mode.el (lisp-comment-indent):
1513 * progmodes/compile.el (compile-internal):
1514 Add WHEN to obsolescence declarations.
1515
1516 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1517
1518 * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
1519 is not better anyway.
1520
1521 2008-04-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1522
1523 * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
1524 properly.
1525
1526 2008-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
1529 (python-use-skeletons): Remove, unused.
1530 (python-skeletons): Remove. Use the abbrev table instead.
1531 (python-mode-abbrev-table): Fix regexp;
1532 add enable-function and case-fixed.
1533 (def-python-skeleton): Simplify.
1534 (python-expand-template): Use the abbrev-table and abbrev-insert.
1535 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
1536 Remove.
1537 (python-mode): Don't set pre-abbrev-expand-hook.
1538
1539 * skeleton.el: Set coding-tag.
1540
1541 * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
1542 (expand-abbrev): Use it.
1543 (abbrev-table-menu): New function.
1544
1545 * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
1546
1547 * minibuffer.el (completion-table-with-terminator): Fix paren typo.
1548
1549 2008-04-17 Sam Steingold <sds@gnu.org>
1550
1551 * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
1552 idiosyncratic bury-buffer/delete-window logic.
1553
1554 2008-04-17 Juanma Barranquero <lekktu@gmail.com>
1555
1556 * emacs-lisp/crm.el (crm-completion-help, crm-complete)
1557 (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
1558
1559 2008-04-17 Kenichi Handa <handa@m17n.org>
1560
1561 * international/characters.el: Don't make the width of U+00AD to 0.
1562
1563 2008-04-17 Nick Roberts <nickrob@snap.net.nz>
1564
1565 * progmodes/gdb-ui.el (gdb-stack-update): New variable.
1566 (gdb, gdb-starting, gdb-frames-mode): Use it.
1567 (gdb-invalidate-frames): Advise to call "info stack" only if
1568 execution has occurred.
1569 (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
1570 selected frame if no execution has occurred.
1571 (gdb-frames-force-update): New interactive function.
1572 (gdb-frames-mode-map): Bind it to "F".
1573
1574 2008-04-17 Michael Olson <mwolson@gnu.org>
1575
1576 * textmodes/remember.el (remember-version): Release Remember 2.0.
1577
1578 2008-04-16 Yoni Rabkin <yoni@rabkins.net>
1579
1580 * textmodes/artist.el:
1581 * progmodes/vhdl-mode.el:
1582 * progmodes/verilog-mode.el:
1583 * progmodes/vera-mode.el:
1584 * progmodes/simula.el:
1585 * progmodes/ps-mode.el:
1586 * progmodes/cmacexp.el:
1587 * obsolete/hilit19.el:
1588 * emulation/viper.el:
1589 * ediff.el: Cleanup the bug-report email addresses and make sure the
1590 maintainer is still willing to handle bug reports.
1591
1592 2008-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1593
1594 * vc.el (vc-dir-kill-query): Fix thinko.
1595
1596 2008-04-16 Glenn Morris <rgm@gnu.org>
1597
1598 * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
1599 by diary-sexp-entry.
1600
1601 2008-04-16 Markus Triska <markus.triska@gmx.at>
1602
1603 * proced.el (proced-command-alist): Add support for darwin.
1604
1605 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1606
1607 * proced.el (proced-mode): Redefine as just the major-mode.
1608 (proced): Separate it from proced-mode.
1609
1610 * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
1611
1612 2008-04-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1613
1614 * whitespace.el: Honor the `indent-tabs-mode' setting from user.
1615 Suggested by Stephen Deasey <sdeasey@gmail.com>. Honor also the
1616 `tab-width' setting from user. New version 10.0. Doc and docstring
1617 fix.
1618 (whitespace-style, whitespace-chars): Remove options.
1619 (whitespace-style-mark): New option, replace whitespace-style deleted
1620 option. Fix docstring.
1621 (whitespace-style-color): New option, replace whitespace-chars deleted
1622 option. Fix docstring.
1623 (whitespace-space, whitespace-hspace, whitespace-tab)
1624 (whitespace-newline, whitespace-trailing, whitespace-line)
1625 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
1626 (whitespace-space-after-tab, whitespace-hspace-regexp)
1627 (whitespace-space-regexp, whitespace-tab-regexp)
1628 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
1629 (whitespace-empty-at-eob-regexp, whitespace-line-column)
1630 (whitespace-toggle-option-alist): Fix docstring.
1631 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
1632 (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
1633 docstring and initialization.
1634 (global-whitespace-mode): Autoloaded global minor mode.
1635 (whitespace-chars-value-list, whitespace-style-value-list)
1636 (whitespace-active-chars, whitespace-active-style)
1637 (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
1638 (whitespace-color-value-list): New var, replace
1639 whitespace-chars-value-list removed var.
1640 (whitespace-mark-value-list): New var, replace
1641 whitespace-style-value-list removed var.
1642 (whitespace-active-color): New var, replace whitespace-active-chars
1643 removed var.
1644 (whitespace-active-mark): New var, replace whitespace-active-style
1645 removed var.
1646 (whitespace-toggle-color): New var, replace whitespace-toggle-chars
1647 removed var.
1648 (whitespace-toggle-mark): New var, replace whitespace-toggle-style
1649 removed var.
1650 (whitespace-toggle-option-alist, whitespace-report-list)
1651 (whitespace-report-text, whitespace-help-text): Fix initialization.
1652 (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
1653 (whitespace-toggle-options, global-whitespace-toggle-options)
1654 (whitespace-cleanup-region, whitespace-report-region)
1655 (whitespace-interactive-char): Fix docstring and code.
1656 (whitespace-cleanup, whitespace-report): Fix docstring.
1657 (whitespace-replace-spaces-by-tabs): Remove fun.
1658 (whitespace-replace-action): New fun, replace
1659 whitespace-replace-spaces-by-tabs removed fun.
1660 (whitespace-regexp, whitespace-indentation-regexp)
1661 (whitespace-space-after-tab-regexp, whitespace-insert-value)
1662 (whitespace-kill-buffer): New funs.
1663 (whitespace-insert-option-mark, whitespace-help-on)
1664 (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
1665 (whitespace-color-on, whitespace-color-off)
1666 (whitespace-display-char-on): Fix code.
1667
1668 2008-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
1669
1670 * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
1671 (mouse-throw-magnifier-with-mouse-movement): Remove.
1672 (mouse-throw-magnifier-base): New const.
1673 (mouse-drag-scroll-delta): New fun.
1674 (mouse-drag-throw): Use it.
1675
1676 2008-04-15 Juanma Barranquero <lekktu@gmail.com>
1677
1678 * international/uni-bidi.el, international/uni-category.el:
1679 * international/uni-combining.el, international/uni-comment.el:
1680 * international/uni-decimal.el, international/uni-decomposition.el:
1681 * international/uni-digit.el, international/uni-lowercase.el:
1682 * international/uni-mirrored.el, international/uni-name.el:
1683 * international/uni-numeric.el, international/uni-old-name.el:
1684 * international/uni-titlecase.el, international/uni-uppercase.el:
1685 * international/charprop.el: Regenerate.
1686
1687 2008-04-15 Dan Nicolaescu <dann@ics.uci.edu>
1688
1689 * vc.el (vc-status-fileinfo): Add new member directoryp.
1690 (vc-default-status-printer): Print directories.
1691 (vc-status-update): Sort files before subdirectories.
1692
1693 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
1694 Add alternative implementation based on "cvs update".
1695
1696 2008-04-15 Tassilo Horn <tassilo@member.fsf.org>
1697
1698 * doc-view.el: Changed requirements section to tell that only one
1699 of dvipdf or dvipdfm is needed.
1700 (doc-view-already-converted-p): Fix bug that forced reconversion
1701 if doc was already converted.
1702
1703 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1704
1705 * minibuffer.el (minibuffer-message):
1706 Make sure we can put-text-property.
1707
1708 * emacs-lisp/crm.el: Complete rewrite.
1709
1710 * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
1711 (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
1712 case of an error in display-completion-list.
1713
1714 * filecache.el (file-cache-completions-keymap): Move init from
1715 file-cache-completion-setup-function into declaration.
1716 (file-cache-minibuffer-complete): Simplify.
1717 (file-cache-completion-setup-function): Use standard-output,
1718 preserve current-buffer.
1719
1720 * vc.el (vc-status-update): Fix typo.
1721 (vc-status-update): Set needs-update.
1722 (vc-status-refresh): η-reduce.
1723
1724 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
1725
1726 * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
1727 to image-eol.
1728
1729 2008-04-14 Alexandre Julliard <julliard@winehq.org>
1730
1731 * vc.el (vc-status-update): Undo the previous revert.
1732
1733 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1734
1735 * minibuffer.el (completion-table-with-terminator): Those completions
1736 are never valid w.r.t test-completion.
1737 (completion--file-name-table):
1738 Check completion-all-completions-with-base-size.
1739
1740 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
1741
1742 * doc-view.el (doc-view-dvipdf-program): New variable.
1743 (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
1744 (doc-view-mode-p): Check for doc-view-dvipdf-program as
1745 alternative for doc-view-dvipdfm-program.
1746 (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
1747
1748 * doc-view.el (doc-view-start-process): Don't set
1749 default-directory to "~/" if the current value is valid.
1750 This broke PS files that run other files in the same directory.
1751
1752 2008-04-14 Dan Nicolaescu <dann@ics.uci.edu>
1753
1754 * vc.el (vc-status-kill-query): New function.
1755 (vc-status-mode): Add it to kill-buffer-query-functions.
1756 (vc-status-show-fileentry): New function.
1757 (vc-status-menu-map): Bind it. Bind vc-next-action.
1758
1759 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1760
1761 * minibuffer.el (minibuffer-message): Put cursor at the right place.
1762
1763 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1764
1765 * proced.el (proced-send-signal): Fix error recognition.
1766
1767 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1768
1769 * proced.el (proced-command-alist): Remove sort column.
1770 (proced-command, proced-procname-column):
1771 Use make-variable-buffer-local.
1772 (proced-signal-function): Rename from proced-kill-program.
1773 Allow for elisp symbols and string values representing system calls.
1774 (proced-marker-regexp, proced-success-message): New functions.
1775 (proced): Use defalias. Add autoload cookie.
1776 (proced-unmark-backward, proced-toggle-marks)
1777 (proced-hide-processes): New commands.
1778 (proced-do-mark): Simplify code.
1779 (proced-insert-mark): Use optional arg BACKWARD instead of line number.
1780 (proced-update): Remove sorting.
1781 (proced-send-signal): Display number of processes to operate on.
1782 Allow for system calls or elisp functions to send signals.
1783 Check if signal was sent successfully.
1784
1785 2008-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1786
1787 * minibuffer.el (completion-all-completion-with-base-size): New var.
1788 (completion--some): New function.
1789 (completion-table-with-context, completion--file-name-table):
1790 Return the base-size if requested.
1791 (completion-table-in-turn): Generalize to multiple arguments.
1792 (complete-in-turn): Compatibility alias.
1793 (completion-styles-alist): New var.
1794 (completion-styles): New customization.
1795 (minibuffer-try-completion, minibuffer-all-completions):
1796 New functions.
1797 (minibuffer--do-completion, minibuffer-complete-and-exit)
1798 (minibuffer-try-word-completion): Use them.
1799 (display-completion-list, minibuffer-completion-help): Use them.
1800 Handle all-completions's new base-size info to set completion-base-size.
1801 * info.el (Info-read-node-name-1): Use completion-table-with-context,
1802 completion-table-with-terminator and complete-with-action.
1803 Remove the now obsolete completion-base-size-function property.
1804 * simple.el (completion-list-mode-map): Move init into declaration.
1805 (completion-list-mode): Use define-derived-mode.
1806 (completion-setup-function): Use any completion-base-size that may
1807 have been set before. Remove handling of completion-base-size-function.
1808 * loadup.el: Move abbrev.el up earlier.
1809
1810 2008-04-13 Alexandre Julliard <julliard@winehq.org>
1811
1812 * vc-git.el (vc-git-after-dir-status-stage)
1813 (vc-git-dir-status-goto-stage): New functions.
1814 (vc-git-after-dir-status-stage1)
1815 (vc-git-after-dir-status-stage1-empty-db)
1816 (vc-git-after-dir-status-stage2): Remove, functionality moved
1817 into the new generic stage functions.
1818 (vc-git-dir-status-files): New function.
1819
1820 * vc.el (vc-status-update): Revert an incorrect rewrite.
1821 Add some comments.
1822 (vc-status-refresh-files): New function.
1823 (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
1824 state of up-to-date files.
1825 (vc-default-dir-status-files): New function.
1826
1827 2008-04-13 Juanma Barranquero <lekktu@gmail.com>
1828
1829 * minibuffer.el (completion--embedded-envvar-table)
1830 (read-file-name-internal): Fix typos in 2008-04-11 change.
1831
1832 * faces.el (read-face-name): Use `completion-table-in-turn',
1833 not `complete-in-turn'.
1834
1835 2008-04-13 Andreas Schwab <schwab@suse.de>
1836
1837 * progmodes/etags.el: Require 'cl when compiling.
1838
1839 2008-04-12 Nick Roberts <nickrob@snap.net.nz>
1840
1841 * progmodes/gud.el (gud-menu-map): Expand tooltip.
1842
1843 * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
1844 (menu): Add/expand menu tooltips.
1845
1846 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1847
1848 * progmodes/sh-script.el (sh-show-indent): Fix typo.
1849 (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
1850
1851 * vc-cvs.el (vc-cvs-registered): Allow removed files to be
1852 considered registered.
1853
1854 2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
1855
1856 * emacs-lisp/copyright.el (copyright-update-directory): New command.
1857
1858 * ediff-wind.el (ediff-split-window-function)
1859 (ediff-merge-split-window-function): Improve custom type.
1860
1861 2008-04-12 Eli Zaretskii <eliz@gnu.org>
1862
1863 * loadup.el ("minibuffer"): Move after "faces".
1864
1865 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1866
1867 * progmodes/hideif.el (hif-factor): Handle unary minus.
1868
1869 2008-04-12 Glenn Morris <rgm@gnu.org>
1870
1871 * calendar/cal-china.el (chinese-calendar-time-zone):
1872 Mark obsolete name as risky too.
1873
1874 * calendar/calendar.el (calendar-faces): New custom group.
1875 (calendar-today, diary, holiday): Doc fix.
1876 Move to calendar-faces group.
1877 * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
1878 (diary-button): Doc fix. Move to calendar-faces group.
1879
1880 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
1881 * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
1882 * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
1883 * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
1884 * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
1885 Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
1886 not in dumped files before the associated defcustom.
1887
1888 2008-04-11 Johan Bockgård <bojohan@gnu.org>
1889
1890 * minibuffer.el (lazy-completion-table): Fix debug spec.
1891
1892 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1893
1894 * minibuffer.el (complete-with-action, lazy-completion-table):
1895 Move from subr.el.
1896 (apply-partially, completion-table-dynamic)
1897 (completion-table-with-context, completion-table-with-terminator)
1898 (completion-table-in-turn): New funs.
1899 (completion--make-envvar-table, completion--embedded-envvar-table):
1900 New funs.
1901 (read-file-name-internal): Use them.
1902 (completion-setup-hook): Move from simple.el.
1903 * subr.el (complete-with-action, lazy-completion-table):
1904 * simple.el (completion-setup-hook): Move to minibuffer.el.
1905
1906 2008-04-11 Glenn Morris <rgm@gnu.org>
1907
1908 * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
1909
1910 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * progmodes/python.el (python-mode): Don't mess with hippie-expand.
1913
1914 * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
1915
1916 * textmodes/fill.el (fill-forward-paragraph-function): New var.
1917 (fill-forward-paragraph): New fun.
1918 (fill-paragraph, fill-region): Use it.
1919
1920 * vc.el: Change `dir-status' to not take (and pass) status-buffer.
1921 (vc-status-create-fileinfo): Make `extra' optional.
1922 (vc-status-busy): New fun.
1923 (vc-status-menu-map): Use it.
1924 (vc-status-crt-marked): Remove.
1925 (vc-status-update): Rename from vc-status-add-entries.
1926 Add argument so as to prevent addition of entries. Rewrite.
1927 (vc-update-vc-status-buffer): Remove.
1928 (vc-status-refresh): Don't remove old entries, set them to
1929 up-to-date instead. Also do it after the update is complete.
1930 (vc-status-marked-files): η-reduce.
1931
1932 * dired.el (dired-read-dir-and-switches): Use read-directory-name even
1933 for non-dialogs.
1934
1935 * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
1936
1937 * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
1938
1939 2008-04-11 Jan Djärv <jan.h.d@swipnet.se>
1940
1941 * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
1942 to t and don't truncate msg.
1943
1944 2008-04-11 Glenn Morris <rgm@gnu.org>
1945
1946 * calendar/calendar.el (diary, holidays):
1947 Move custom groups to other files.
1948 (holiday-general-holidays, holiday-oriental-holidays)
1949 (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
1950 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
1951 (holiday-hebrew-holidays, holiday-christian-holidays)
1952 (holiday-islamic-holidays, holiday-bahai-holidays)
1953 (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
1954 * calendar/diary-lib.el: Move custom group here from calendar.el.
1955 * calendar/holidays-lib.el: Move custom group and variables here
1956 from calendar.el.
1957
1958 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
1959
1960 * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
1961 Fix custom group.
1962 (calendar-current-time-zone-cache): Autoload riskiness.
1963
1964 * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
1965
1966 2008-04-11 Chong Yidong <cyd@stupidchicken.com>
1967
1968 * woman.el (woman2-TH): Use string-equal instead of string-match.
1969
1970 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
1973 (smerge-resolve): Merge the "2-way refinement" case with one half of
1974 the "mere whitespace" resolution.
1975
1976 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
1977
1978 * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
1979
1980 2008-04-10 Juanma Barranquero <lekktu@gmail.com>
1981
1982 * subr.el (assoc-ignore-case, assoc-ignore-representation):
1983 Add WHEN to obsolescence declaration.
1984
1985 * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
1986
1987 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
1988
1989 * vc-hooks.el (vc-state): Add new state `conflict'.
1990 (vc-after-save): Use when not if.
1991 (vc-default-mode-line-string): Deal with the conflict state.
1992 (vc-prefix-map):
1993 (vc-menu-map): Bind vc-status instead of vc-directory.
1994
1995 * vc.el (vc-editable-p):
1996 (vc-default-status-printer):
1997 (vc-next-action): Deal with the conflict state.
1998 (vc-mark-resolved): New function.
1999 (vc-status-mode): Fix mode name.
2000 (vc-default-comment-history): Use when not if.
2001 (Todo): Add new entries, remove old ones.
2002
2003 * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
2004 (vc-cvs-parse-status):
2005 (vc-cvs-after-dir-status):
2006 * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2007 Detect the conflict state.
2008
2009 * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
2010
2011 2008-04-10 Glenn Morris <rgm@gnu.org>
2012
2013 * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
2014 Respect truncate-partial-width-windows in non-full windows,
2015 with regards to :toggle and :enable state.
2016
2017 * simple.el (toggle-truncate-lines): Doc fix.
2018
2019 * Makefile.in (MH_E_DIR): New variable.
2020 (MH_E_SRC): Restore variable removed 2008-03-13.
2021 (mh-loaddefs.el): Depend on $MH_E_SRC.
2022 (CAL_DIR, CAL_SRC): New variables.
2023 (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
2024 Depend on CAL_SRC.
2025
2026 * calendar/calendar.el (calendar, diary): Add :prefix.
2027 (holidays): Change :prefix.
2028 (calendar-today, holiday, calendar-holiday-marker)
2029 (european-calendar-style): Change custom groups.
2030
2031 * calendar/calendar.el (diary-hook, diary-display-hook):
2032 Move to diary-lib.el.
2033 * calendar/diary-lib.el (diary-hook, diary-display-hook):
2034 Move here from calendar.el.
2035 * calendar/appt.el: Require diary-lib rather than calendar.
2036 * calendar/cal-x.el (diary-display-hook): Declare for compiler.
2037
2038 * calendar/appt.el (appt): Add :prefix.
2039
2040 * calendar/diary-lib.el (diary-hook): Doc fix.
2041 (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
2042
2043 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
2044
2045 * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
2046 New functions.
2047
2048 * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
2049 the arg to recursive calls.
2050
2051 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
2052
2053 * minibuffer.el (completion-auto-help): Fix typo.
2054
2055 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2056
2057 * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
2058
2059 2008-04-09 Michael Albinus <michael.albinus@gmx.de>
2060
2061 * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
2062 (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
2063
2064 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2065
2066 * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
2067
2068 * minibuffer.el (minibuffer): Move group from cus-edit.el.
2069 (completion-auto-help): Move from C code.
2070 (minibuffer--maybe-completion-help): Remove.
2071 (minibuffer--bitset): New function.
2072 (minibuffer--do-completion): Rename from minibuffer-do-completion.
2073 Renumber a bit. Really complete on string *before* point.
2074 Add argument used for word-completion.
2075 Join trailing / in completion with following text, as done in
2076 minibuffer-complete-word.
2077 Handle new value `lazy' for completion-auto-help.
2078 (minibuffer-try-word-completion): New function extracted from
2079 minibuffer-complete-word.
2080 (minibuffer-complete-word): Use minibuffer--do-completion.
2081 (minibuffer--insert-strings): Rename from
2082 minibuffer-complete-insert-strings.
2083 (exit-minibuffer): Fix typo.
2084 * cus-edit.el (minibuffer): Move group to minibuffer.el.
2085 * cus-start.el: Remove completion-auto-help.
2086
2087 2008-04-09 Alexandre Julliard <julliard@winehq.org>
2088
2089 * vc.el (vc-status-add-entries): New function.
2090 (vc-status-add-entry): Remove.
2091 (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
2092 Use vc-status-add-entries.
2093
2094 * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
2095 order.
2096
2097 2008-04-09 Jason Rumney <jasonr@gnu.org>
2098
2099 * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
2100 ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
2101 (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
2102 (AUTOGENEL): New variable.
2103 (distclean, maintainer-clean): New targets.
2104
2105 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
2106
2107 * emacs-lisp/regexp-opt.el (regexp-opt):
2108 Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
2109
2110 2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
2111
2112 * nxml/nxml-mode.el (nxml-cleanup): New function.
2113 (nxml-mode): Add it to change-major-mode-hook.
2114
2115 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
2116
2117 * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
2118
2119 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
2120
2121 * calc/.cvsignore: New file.
2122
2123 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
2124
2125 * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
2126
2127 * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
2128 show-help-function when turning tooltip off.
2129 (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
2130 (tooltip-trunc-str, tooltip-show-help-non-mode): New.
2131
2132 2008-04-09 Alan Mackenzie <acm@muc.de>
2133
2134 * font-lock.el (font-lock-extend-after-change-region-function):
2135 Make it buffer local.
2136
2137 2008-04-09 Glenn Morris <rgm@gnu.org>
2138
2139 * calendar/calendar.el (diary-file, european-calendar-style):
2140 Remove autoload cookies.
2141
2142 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
2143
2144 * outline.el (outline-mode-menu-bar-map):
2145 * log-view.el (log-view-mode-menu):
2146 * log-edit.el (log-edit-menu): Add :help.
2147
2148 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
2149
2150 * emacs-lisp/regexp-opt.el (regexp-opt-group):
2151 Use substring-no-properties for correct handling of unibyte strings.
2152
2153 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2154
2155 * add-log.el (change-log-next-buffer): Handle the case where version<
2156 signals an error.
2157
2158 * mouse.el (mouse-menu-major-mode-map): New fun extracted from
2159 mouse-major-mode-menu.
2160 (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
2161 (mouse-major-mode-menu, mouse-popup-menubar)
2162 (mouse-popup-menubar-stuff): Use them.
2163 (C-down-mouse-3): Bind to a dynamic map rather than to
2164 mouse-popup-menubar-stuff.
2165
2166 * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
2167 to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
2168
2169 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
2170
2171 * vc-svn.el (vc-svn-modify-change-comment): Add support for the
2172 file:// access method.
2173
2174 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2175
2176 * minibuffer.el: New file.
2177 * loadup.el: Load it.
2178
2179 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
2180
2181 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
2182 rather than subdirs.el. It introduces an ugly circular dependency, tho.
2183
2184 * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
2185 (calc-mode-map, calc-digit-map, calc-dispatch-map):
2186 Move initialization into declaration.
2187 * calc/calc-yank.el:
2188 * calc/calc-misc.el:
2189 * calc/calc-embed.el:
2190 * calc/calc-aent.el: Add autoload cookies. Set generated-autoload-file.
2191
2192 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
2193
2194 * ps-samp.el (ps-add-printer, ps-remove-printer)
2195 (ps-make-dynamic-printer-menu): New functions.
2196
2197 * net/zeroconf.el: New file.
2198
2199 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
2202
2203 2008-04-08 Dan Nicolaescu <dann@ics.uci.edu>
2204
2205 * vc-rcs.el (vc-rcs-modify-change-comment):
2206 * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
2207
2208 * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
2209
2210 2008-04-08 Juanma Barranquero <lekktu@gmail.com>
2211
2212 * international/mule-cmds.el (set-locale-environment): Don't warn if
2213 coding system doesn't agree with system locale (this reverts changes
2214 by Dave Love, dated 2002-10-27 and 2002-10-09).
2215
2216 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2217 * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
2218
2219 * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
2220
2221 2008-04-08 Glenn Morris <rgm@gnu.org>
2222
2223 * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
2224 * textmodes/remember.el (remember-diary-convert-entry):
2225 Require calendar.
2226
2227 * textmodes/remember.el (remember-diary-extract-entries): Don't pass
2228 diary-file, since it is the default for make-diary-entry anyway.
2229
2230 * calendar/cal-menu.el (cal-menu-event-to-date):
2231 Rename calendar-event-to-date. Update callers.
2232 (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
2233 (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
2234 (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
2235 (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
2236 (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
2237 (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
2238 (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
2239 (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
2240 (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
2241 (calendar-mouse-tex-month-landscape):
2242 Rename cal-tex-mouse-month-landscape.
2243 (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
2244 (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
2245 (calendar-mouse-tex-year-landscape):
2246 Rename cal-tex-mouse-year-landscape.
2247 (cal-menu-context-mouse-menu): Update for above name changes.
2248
2249 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2250 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2251 * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
2252 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
2253 * calendar/holidays.el: Replace int-to-string with number-to-string.
2254
2255 2008-04-08 Chong Yidong <cyd@stupidchicken.com>
2256
2257 * mwheel.el (mwheel-scroll): Deactivate any temporarily active
2258 region if point moves.
2259
2260 2008-04-08 Kenichi Handa <handa@m17n.org>
2261
2262 * faces.el (font-slant-table): Change numeric values for `r',
2263 `roman', and `normal'.
2264
2265 2008-04-07 Vincent Belaïche <vincent.b.1@hotmail.fr>
2266
2267 * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
2268
2269 2008-04-07 Jay Belanger <jay.p.belanger@gmail.com>
2270
2271 * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
2272 `calcFunc-kron' to autoloads. Add keybinding for `calc-kron'.
2273
2274 2008-04-07 Michael Albinus <michael.albinus@gmx.de>
2275
2276 * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
2277 "pscp" and "psftp". Reported by Gilles Pion <gpion@lfdj.com>.
2278
2279 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2280
2281 * dired-aux.el (dired-read-shell-command): Use read-shell-command.
2282
2283 2008-04-07 Sam Steingold <sds@gnu.org>
2284
2285 * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
2286 Add helper functions.
2287 (lisp-do-defun): Extract the common part of lisp-eval-defun and
2288 lisp-compile-defun; DEFVAR forms reset the variables to the init
2289 values, just like in emacs-lisp mode eval-defun.
2290 (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
2291 (lisp-compile-region): Use lisp-compile-string.
2292
2293 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2294
2295 * subr.el (combine-and-quote-strings): Also quote strings that contain
2296 the separator.
2297
2298 * pcvs-util.el (cvs-map): Avoid recursion :-(
2299
2300 2008-04-07 Glenn Morris <rgm@gnu.org>
2301
2302 * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
2303
2304 * calendar.el (diary-view-entries-initially-flag): Rename
2305 view-diary-entries-initially. Keep old name as alias, update users.
2306 (calendar-mark-diary-entries-flag): Rename
2307 mark-diary-entries-in-calendar. Keep old name as alias, update users.
2308 (calendar-view-holidays-initially-flag): Rename
2309 view-calendar-holidays-initially. Keep old name as alias, update users.
2310 (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
2311 Keep old name as alias, update users.
2312 (calendar-initial-window-hook): Rename initial-calendar-window-hook.
2313 Keep old name as alias, update users.
2314 (calendar-today-visible-hook): Rename today-visible-calendar-hook.
2315 Keep old name as alias, update users.
2316 (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
2317 Keep old name as alias, update users.
2318 (diary-iso-date-forms): Rename iso-date-diary-pattern. Update users.
2319 (diary-american-date-forms): Rename american-date-diary-pattern.
2320 Keep old name as alias, update users.
2321 (diary-european-date-forms): Rename european-date-diary-pattern.
2322 Keep old name as alias, update users.
2323 (calendar-iso-date-display-form): Rename iso-calendar-display-form.
2324 Keep old name as alias, update users.
2325 (calendar-european-date-display-form): Rename
2326 european-calendar-display-form. Keep old name as alias, update users.
2327 (calendar-american-date-display-form): Rename
2328 european-calendar-display-form. Keep old name as alias, update users.
2329 (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
2330 Keep old name as alias, update users.
2331 (holiday-general-holidays): Rename general-holidays.
2332 Keep old name as alias, update users.
2333 (holiday-oriental-holidays): Rename oriental-holidays.
2334 Keep old name as alias, update users.
2335 (holiday-local-holidays): Rename local-holidays.
2336 Keep old name as alias, update users.
2337 (holiday-other-holidays): Rename other-holidays.
2338 Keep old name as alias, update users.
2339 (holiday-hebrew-holidays): Rename hebrew-holidays.
2340 Keep old name as alias, update users.
2341 (holiday-christian-holidays): Rename christian-holidays.
2342 Keep old name as alias, update users.
2343 (holiday-islamic-holidays): Rename islamic-holidays.
2344 Keep old name as alias, update users.
2345 (holiday-bahai-holidays): Rename bahai-holidays.
2346 Keep old name as alias, update users.
2347 (holiday-solar-holidays): Rename solar-holidays.
2348 Keep old name as alias, update users.
2349 (diary-fancy-buffer): Rename fancy-diary-buffer.
2350 Keep old name as alias, update users.
2351 (calendar-other-calendars-buffer): Rename other-calendars-buffer.
2352 Update users.
2353 (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
2354 Update users.
2355 (calendar-increment-month): Rename increment-calendar-month.
2356 Keep old name as alias, update callers.
2357 (calendar-increment-month-cons): Rename old calendar-increment-month.
2358 Update callers.
2359 (calendar-extract-month): Rename extract-calendar-month.
2360 Keep old name as alias, update callers
2361 (calendar-extract-day): Rename extract-calendar-day.
2362 Keep old name as alias, update callers.
2363 (calendar-extract-year): Rename extract-calendar-year.
2364 Keep old name as alias, update callers.
2365 (calendar-generate-window): Rename generate-calendar-window.
2366 Update callers.
2367 (calendar-generate): Rename generate-calendar. Update callers.
2368 (calendar-generate-month): Rename generate-calendar-month.
2369 Update callers.
2370 (calendar-redraw): Rename redraw-calendar. Update callers.
2371 (calendar-describe-mode): Rename describe-calendar-mode. Update uses.
2372 (calendar-mouse-other-month): Rename mouse-calendar-other-month.
2373 Update callers.
2374 (calendar-update-mode-line): Rename update-calendar-mode-line.
2375 Update callers.
2376 (calendar-exit): Rename exit-calendar. Keep old name as alias,
2377 update callers.
2378 (calendar-mark-visible-date): Rename mark-visible-calendar-date.
2379 Keep old name as alias, update callers.
2380 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2381 * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
2382 * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
2383 * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
2384 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
2385 * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
2386 * calendar/solar.el: Update for calendar.el name changes.
2387 * org/org.el (org-agenda-format-date-aligned)
2388 (org-agenda-execute-calendar-command): Access date elements directly
2389 rather than using calendar functions.
2390 (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
2391 Also set calendar-view-diary-initially-flag,
2392 calendar-view-holidays-initially-flag
2393 (org-get-entries-from-diary): Also set diary-fancy-buffer.
2394 (org-agenda-execute-calendar-command): No need to set displayed-day.
2395
2396 2008-04-06 Alan Mackenzie <acm@muc.de>
2397
2398 * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
2399 typo in the doc string.
2400
2401 * progmodes/cc-mode.el (c-basic-common-init):
2402 Set font-lock-extend-after-change-region-function.
2403 (c-extend-after-change-region): New function, used in
2404 font-lock-extend-after-change-region-function, thus superseding
2405 advice on the Font Lock after change functions.
2406 (c-advise-fl-for-region): Remove this macro.
2407
2408 2008-04-06 Reiner Steib <Reiner.Steib@gmx.de>
2409
2410 * textmodes/flyspell.el (flyspell-duplicate-distance):
2411 Improve custom type.
2412
2413 2008-04-06 Glenn Morris <rgm@gnu.org>
2414
2415 * calendar/diary-lib.el (diary-sexp-entry-symbol):
2416 Rename sexp-diary-entry-symbol. Keep old name as alias, update users.
2417 (diary-list-entries-hook): Rename list-diary-entries-hook.
2418 Keep old name as alias, update users.
2419 (diary-mark-entries-hook): Rename mark-diary-entries-hook.
2420 Keep old name as alias, update users.
2421 (diary-nongregorian-listing-hook): Rename
2422 nongregorian-diary-listing-hook. Keep old name as alias, update users.
2423 (diary-nongregorian-marking-hook): Rename
2424 nongregorian-diary-marking-hook. Keep old name as alias, update users.
2425 (diary-print-entries-hook): Rename print-diary-entries-hook.
2426 Keep old name as alias, update users.
2427 (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
2428 Keep old name as alias, update users.
2429 (diary-number-of-entries): Rename number-of-diary-entries.
2430 Keep old name as alias, update users.
2431 (view-diary-entries, list-diary-entries, show-all-diary-entries):
2432 Give version of obsolescence.
2433 (diary-view-other-diary-entries): Rename view-other-diary-entries.
2434 Keep old name as alias, update callers.
2435 (diary-add-to-list): Rename add-to-diary-list. Keep old name as alias,
2436 update callers.
2437 (diary-include-other-diary-files): Rename include-other-diary-files.
2438 Keep old name as alias, update callers.
2439 (diary-simple-display): Rename simple-diary-display.
2440 Keep old name as alias, update callers.
2441 (diary-fancy-display): Rename fancy-diary-display.
2442 Keep old name as alias, update callers.
2443 (diary-print-entries): Rename print-diary-entries.
2444 Keep old name as alias, update callers.
2445 (diary-marking-entries-flag): Rename marking-diary-entries.
2446 Update users.
2447 (diary-marking-entry-flag): Rename marking-diary-entry. Update users.
2448 (diary-mark-entries): Rename mark-diary-entries.
2449 Keep old name as alias, update callers.
2450 (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
2451 Keep old name as alias, update callers.
2452 (diary-mark-included-diary-files): Rename mark-included-diary-files.
2453 Keep old name as alias, update callers.
2454 (calendar-mark-days-named): Rename mark-calendar-days-named.
2455 Keep old name as alias, update callers.
2456 (calendar-mark-month): Rename mark-calendar-month.
2457 Keep old name as alias, update callers.
2458 (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
2459 Keep old name as alias, update callers.
2460 (diary-sort-entries): Rename sort-diary-entries.
2461 Keep old name as alias, update callers.
2462 (diary-list-sexp-entries): Rename list-sexp-diary-entries.
2463 Keep old name as alias, update callers.
2464 (diary-make-entry): Rename make-diary-entry. Keep old name as alias,
2465 update callers.
2466 (diary-insert-entry): Rename insert-diary-entry.
2467 Keep old name as alias.
2468 (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
2469 Keep old name as alias.
2470 (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
2471 Keep old name as alias.
2472 (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
2473 Keep old name as alias.
2474 (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
2475 Keep old name as alias.
2476 (diary-insert-block-entry): Rename insert-block-diary-entry.
2477 Keep old name as alias.
2478 (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
2479 Keep old name as alias.
2480 (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
2481 Keep old name as alias, update users.
2482 (diary-fancy-display-mode): Rename fancy-diary-display-mode.
2483 Keep old name as alias, update callers.
2484 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2485 * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
2486 * calendar/icalendar.el: Update for diary-lib name changes.
2487
2488 2008-04-06 Chong Yidong <cyd@stupidchicken.com>
2489
2490 * dired-aux.el (dired-overwrite-confirmed): Revert last change.
2491
2492 * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
2493 for copy, move, and link operations.
2494
2495 2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
2496
2497 * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
2498 (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
2499
2500 * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
2501 'require' statements with 1-argument ones (wrapped in if's).
2502 For compatibility with the current stable version of XEmacs.
2503
2504 2008-04-06 Dan Nicolaescu <dann@ics.uci.edu>
2505
2506 * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
2507
2508 2008-04-06 Jason Rumney <jasonr@gnu.org>
2509
2510 * language/burmese.el ("Burmese"): Make sample text consistent with
2511 language name.
2512
2513 2008-04-06 Nick Roberts <nickrob@snap.net.nz>
2514
2515 * progmodes/gdb-ui.el (gdb): New group.
2516 (gdb-debug-log-max, gdb-enable-debug)
2517 (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
2518 (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
2519 (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
2520 (gdb-show-changed-values, gdb-max-children)
2521 (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
2522 (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
2523 (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
2524 (gdb-memory-unit): Move to new group from GUD group.
2525 (menu): Allow customization from GDB-UI menu-item.
2526
2527 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
2528
2529 * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
2530
2531 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2532
2533 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
2534 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
2535 Revision numbers can include ".".
2536
2537 * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
2538 "+" lines not accounted for by counting "-" and context lines.
2539
2540 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2541
2542 * term/mac-win.el (mac-service-open-file): Use file URL instead of
2543 file name string.
2544
2545 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2546
2547 * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
2548 (vc-bzr-annotate-time): Accept space used to preserve alignment.
2549
2550 2008-04-05 Richard Stallman <rms@gnu.org>
2551
2552 * emacs-lisp/advice.el (defadvice): Add usage pattern.
2553
2554 2008-04-05 Nick Roberts <nickrob@snap.net.nz>
2555
2556 * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
2557 thread in [h-e-w]).
2558
2559 2008-04-05 Juanma Barranquero <lekktu@gmail.com>
2560
2561 * files.el (abort-if-file-too-large): Fix typo in docstring.
2562
2563 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2564
2565 * subr.el (functionp): Return nil for special forms.
2566
2567 2008-04-05 Glenn Morris <rgm@gnu.org>
2568
2569 * emacs-lisp/autoload.el (autoload-ensure-default-file):
2570 Provide a feature.
2571 * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
2572 Require loaddef file rather than loading it.
2573 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
2574 autoload-ensure-default-file provides a feature.
2575
2576 * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
2577 (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
2578 (compile, compile-always, recompile): Use $LOADDEFS.
2579 (cal-autoloads): Remove.
2580
2581 * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
2582 than buffer-live-p. Reported by David Koppelman <koppel@ece.lsu.edu>.
2583
2584 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
2585 (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
2586
2587 * calendar/calendar.el (diary-hebrew-entry-symbol):
2588 Rename hebrew-diary-entry-symbol. Keep old name as alias.
2589 (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
2590 Keep old name as alias.
2591 (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
2592 Keep old name as alias.
2593 * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
2594 to diary-bahai-entry-symbol.
2595 * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
2596 to diary-hebrew-entry-symbol.
2597 * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
2598 to diary-islamic-entry-symbol.
2599 * calendar/diary-lib.el: Update for diary-entry-symbol renames.
2600
2601 * calendar/solar.el (diary-sabbath-candles-minutes)
2602 (diary-sabbath-candles): Move to cal-hebrew.
2603 * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
2604 (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
2605 Doc fix. Keep old name as alias.
2606 (diary-hebrew-sabbath-candles): Simplify.
2607 (solar-setup, solar-sunrise-sunset, calendar-latitude)
2608 (calendar-longitude, calendar-time-zone): Declare for compiler.
2609 * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
2610 rename.
2611
2612 * calendar/cal-coptic.el (calendar-coptic-month-name-array):
2613 Rename coptic-calendar-month-name-array. Update callers.
2614 (calendar-coptic-epoch): Rename coptic-calendar-epoch. Update callers.
2615 (calendar-coptic-name): Rename coptic-name. Update callers.
2616 (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
2617 Update callers.
2618 (calendar-coptic-last-day-of-month):
2619 Rename coptic-calendar-last-day-of-month. Update callers.
2620 (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
2621 Keep old name as alias, update callers.
2622 (calendar-coptic-print-date): Rename calendar-print-coptic-date.
2623 Keep old name as alias, update callers.
2624 (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
2625 Keep old name as alias.
2626 (calendar-ethiopic-month-name-array):
2627 Rename ethiopic-calendar-month-name-array. Update callers.
2628 (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
2629 Update callers.
2630 (calendar-ethiopic-name): Rename ethiopic-name. Update callers.
2631 (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
2632 Keep old name as alias, update callers.
2633 (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
2634 Keep old name as alias, update callers.
2635 (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
2636 Keep old name as alias.
2637
2638 * calendar/cal-french.el (calendar-french-epoch):
2639 Rename french-calendar-epoch. Update callers.
2640 (calendar-french-month-name-array): Rename variable and function
2641 french-calendar-month-name-array. Update callers.
2642 (calendar-french-multibyte-month-name-array):
2643 Rename french-calendar-multibyte-month-name-array. Update callers.
2644 (calendar-french-day-name-array): Rename variable and function
2645 french-calendar-day-name-array. Update callers.
2646 (calendar-french-special-days-array): Rename variable and function
2647 french-calendar-special-days-array. Update callers.
2648 (calendar-french-multibyte-special-days-array):
2649 Rename french-calendar-multibyte-special-days-array. Update callers.
2650 (calendar-french-accents-p): Rename french-calendar-accents.
2651 Update callers.
2652 (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
2653 Update callers.
2654 (calendar-french-last-day-of-month):
2655 Rename french-calendar-last-day-of-month. Update callers.
2656 (calendar-french-to-absolute): Rename calendar-absolute-from-french.
2657 Keep old name as alias, update callers.
2658 (calendar-french-print-date): Rename calendar-print-french-date.
2659 Keep old name as alias, update callers.
2660 (calendar-french-goto-date): Rename calendar-goto-french-date.
2661 Keep old name as alias.
2662
2663 * calendar/cal-menu.el, calendar/calendar.el:
2664 Update for Coptic and French name changes.
2665
2666 * calendar/cal-china.el (calendar-chinese): Rename custom group
2667 from chinese-calendar. Update users.
2668 (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
2669 Keep old name as alias, update users.
2670 (calendar-chinese-location-name): Rename chinese-calendar-location-name.
2671 Keep old name as alias.
2672 (calendar-chinese-daylight-time-offset):
2673 Rename chinese-calendar-daylight-time-offset. Keep old name as alias,
2674 update users.
2675 (calendar-chinese-standard-time-zone-name):
2676 Rename chinese-calendar-standard-time-zone-name.
2677 Keep old name as alias, update users.
2678 (calendar-chinese-daylight-saving-start):
2679 Rename chinese-calendar-daylight-savings-starts.
2680 Keep old name as alias, update users.
2681 (calendar-chinese-daylight-saving-end):
2682 Rename chinese-calendar-daylight-savings-ends. Keep old name as alias,
2683 update users.
2684 (calendar-chinese-daylight-saving-start-time):
2685 Rename chinese-calendar-daylight-savings-starts-time.
2686 Keep old name as alias, update users.
2687 (calendar-chinese-daylight-saving-end-time):
2688 Rename chinese-calendar-daylight-savings-ends-time.
2689 Keep old name as alias, update users.
2690 (calendar-chinese-celestial-stem): Rename
2691 calendar-chinese-celestial-stem. Keep old name as alias, update users.
2692 (calendar-chinese-terrestrial-branch):
2693 Rename calendar-chinese-terrestrial-branch. Keep old name as alias,
2694 update users.
2695 (calendar-chinese-zodiac-sign-on-or-after):
2696 Rename chinese-zodiac-sign-on-or-after. Update callers.
2697 (calendar-chinese-new-moon-on-or-after):
2698 Rename chinese-new-moon-on-or-after. Update callers.
2699 (calendar-chinese-month-list): Rename chinese-month-list.
2700 Update callers.
2701 (calendar-chinese-number-months): Rename number-chinese-months.
2702 Update callers.
2703 (calendar-chinese-compute-year): Rename compute-chinese-year.
2704 Update callers.
2705 (calendar-chinese-year-cache): Rename chinese-year-cache. Update users.
2706 (calendar-chinese-year): Rename chinese-year. Update callers.
2707 (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
2708 (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
2709 Keep old name as alias, update callers.
2710 (calendar-chinese-print-date): Rename calendar-print-chinese-date.
2711 Keep old name as alias, update callers.
2712 (calendar-chinese-months-to-alist):
2713 Rename make-chinese-month-assoc-list. Update callers.
2714 (calendar-chinese-months): Rename chinese-months. Update callers.
2715 (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
2716 Keep old name as alias, update callers.
2717
2718 * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
2719 Rename hebrew-calendar-leap-year-p. Update callers.
2720 (calendar-hebrew-last-month-of-year):
2721 Rename hebrew-calendar-last-month-of-year. Update callers.
2722 (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
2723 Update callers.
2724 (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
2725 Update callers.
2726 (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
2727 Update callers.
2728 (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
2729 Update callers.
2730 (calendar-hebrew-last-day-of-month):
2731 Rename hebrew-calendar-last-day-of-month. Update callers.
2732 (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
2733 Keep old name as alias, update callers.
2734 (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
2735 Keep old name as alias, update callers.
2736 (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
2737 Keep old name as alias, update callers.
2738 (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
2739 Keep old name as alias.
2740 (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
2741 Keep old name as alias.
2742 (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
2743 Keep old name as alias.
2744 (holiday-hebrew-passover): Rename holiday-passover-etc.
2745 Keep old name as alias.
2746 (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
2747 Keep old name as alias, update callers.
2748 (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
2749 Keep old name as alias.
2750 (calendar-hebrew-mark-date-pattern):
2751 Rename mark-hebrew-calendar-date-pattern. Keep old name as alias,
2752 update callers.
2753 (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
2754 Keep old name as alias.
2755 (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
2756 Keep old name as alias.
2757 (diary-hebrew-insert-monthly-entry):
2758 Rename insert-monthly-hebrew-diary-entry. Keep old name as alias.
2759 (diary-hebrew-insert-yearly-entry):
2760 Rename insert-yearly-hebrew-diary-entry. Keep old name as alias.
2761 (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
2762 Keep old name as alias.
2763 (diary-hebrew-omer): Rename diary-omer. Keep old name as alias.
2764 (diary-hebrew-yahrzeit): Rename diary-yahrzeit. Keep old name as alias.
2765 (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
2766 Keep old name as alias.
2767 (calendar-hebrew-parashiot-names):
2768 Rename hebrew-calendar-parashiot-names. Update callers.
2769 (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
2770 (calendar-hebrew-year-Saturday-incomplete-Sunday):
2771 Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
2772 (calendar-hebrew-year-Saturday-complete-Tuesday):
2773 Rename hebrew-calendar-year-Saturday-complete-Tuesday.
2774 (calendar-hebrew-year-Monday-incomplete-Tuesday):
2775 Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
2776 (calendar-hebrew-year-Monday-complete-Thursday):
2777 Rename hebrew-calendar-year-Monday-complete-Thursday.
2778 (calendar-hebrew-year-Tuesday-regular-Thursday):
2779 Rename hebrew-calendar-year-Tuesday-regular-Thursday.
2780 (calendar-hebrew-year-Thursday-regular-Saturday):
2781 Rename hebrew-calendar-year-Thursday-regular-Saturday.
2782 (calendar-hebrew-year-Thursday-complete-Sunday):
2783 Rename hebrew-calendar-year-Thursday-complete-Sunday.
2784 (calendar-hebrew-year-Saturday-incomplete-Tuesday):
2785 Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
2786 (calendar-hebrew-year-Saturday-complete-Thursday):
2787 Rename hebrew-calendar-year-Saturday-complete-Thursday.
2788 (calendar-hebrew-year-Monday-incomplete-Thursday):
2789 Rename hebrew-calendar-year-Monday-incomplete-Thursday.
2790 (calendar-hebrew-year-Monday-complete-Saturday):
2791 Rename hebrew-calendar-year-Monday-complete-Saturday.
2792 (calendar-hebrew-year-Tuesday-regular-Saturday):
2793 Rename hebrew-calendar-year-Tuesday-regular-Saturday.
2794 (calendar-hebrew-year-Thursday-incomplete-Sunday):
2795 Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
2796 (calendar-hebrew-year-Thursday-complete-Tuesday):
2797 Rename hebrew-calendar-year-Thursday-complete-Tuesday.
2798 (diary-hebrew-parasha): Rename diary-parasha. Keep old name as alias.
2799 Update for above name changes of constants.
2800
2801 * calendar/cal-menu.el, calendar/calendar.el:
2802 Update for chinese and hebrew name changes.
2803 * calendar/diary-lib.el: Update for hebrew name changes.
2804
2805 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2806
2807 * subr.el (keymap-canonicalize): Correct thinko.
2808
2809 * server.el: Undo part of the multi-tty change, which is only
2810 needed if server.el is preloaded, and broke server-running-p.
2811 (server-socket-dir): Initialize in the defvar, as before.
2812 (server-start): Remove initialization of server-socket-dir.
2813
2814 2008-04-05 Eli Zaretskii <eliz@gnu.org>
2815
2816 * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
2817 3-member cons cells.
2818
2819 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
2820
2821 * cus-face.el (custom-face-attributes): Handle roman slant.
2822
2823 * faces.el (default): Ensure the face-defface-spec property is set.
2824
2825 2008-04-05 Adrian Robert <Adrian.B.Robert@gmail.com>
2826
2827 * files.el (abort-if-file-too-large): New function.
2828 (find-file-noselect, insert-file-1): Use it.
2829
2830 2008-04-05 Reto Zimmermann <reto@gnu.org>
2831
2832 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
2833 Replace C-c[a-zA-Z] key bindings.
2834
2835 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
2836
2837 * progmodes/hideif.el (hif-token-alist): New var.
2838 (hif-token-regexp, hif-tokenize): Use it.
2839 (hif-mathify-binop): New macro.
2840 (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
2841 (hif-greater-equal, hif-less-equal): Use it.
2842 (hif-logior, hif-logand): New functions.
2843 (hif-math): Accept | and & as well.
2844
2845 * progmodes/etags.el: Fix problem with completion for buffer-local
2846 tables. Reported by Radey Shouman <shouman@comcast.net>.
2847 (tags-complete-tag): Remove.
2848 (tags-lazy-completion-table): New function to replace it.
2849 (find-tag-tag, complete-tag): Update users.
2850
2851 2008-04-04 Dan Nicolaescu <dann@ics.uci.edu>
2852
2853 * vc-rcs.el (vc-rcs-dir-status):
2854 * vc-sccs.el (vc-sccs-dir-status): New function.
2855
2856 * outline.el (outline-mode-menu-bar-map):
2857 * term.el (terminal-signal-menu): Add :help.
2858
2859 * net/eudc.el (eudc-mode-map): Declare and define in one step.
2860 (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
2861
2862 * emacs-lisp/re-builder.el (reb-mode-map):
2863 * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
2864
2865 * diff-mode.el (diff-file-junk-re): Recognize the git format for
2866 new files, deleted files and for changing permissions.
2867 (diff-mode): Set beginning-of-defun-function and
2868 end-of-defun-function.
2869
2870 * vc-bzr.el (vc-bzr-state): Use when instead of if.
2871
2872 * vc.el (vc-default-status-fileinfo-extra): New function.
2873 (vc-status-mark-buffer-changed): Use it.
2874 (vc-update-vc-status-buffer): Allow for partial updates.
2875
2876 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2877
2878 * net/tramp.el (after-init-hook): Don't wrap a lambda around
2879 tramp-register-completion-file-name-handler.
2880
2881 * subr.el (keymap-canonicalize): New function.
2882 * mouse.el (mouse-menu-non-singleton): Use it.
2883 (mouse-major-mode-menu): Remove hack made unnecessary.
2884
2885 * simple.el (set-fill-column): Prompt rather than error by default.
2886
2887 2008-04-04 Andreas Schwab <schwab@suse.de>
2888
2889 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
2890 Reset new-rules after each round.
2891
2892 * Makefile.in (cal-autoloads): New target.
2893 (compile, compile-always, recompile): Depend on it.
2894 ($(lisp)/calendar/cal-loaddefs.el)
2895 ($(lisp)/calendar/diary-loaddefs.el)
2896 ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
2897
2898 2008-04-04 Michael Kifer <kifer@cs.stonybrook.edu>
2899
2900 * ediff*.el: Replace load with require in eval-when-compile.
2901
2902 * ediff-hook: Delete all invocations of (autoload ...).
2903
2904 * ediff-util.el (ediff-setup): Make window-min-height a local variable
2905 in ediff control window, and set its min height to 2.
2906 (ediff-setup-control-buffer): Dedicate the control window.
2907 (ediff-toggle-multiframe): Undedicate control window.
2908 Work directly with ediff-setup-windows-multiframe and
2909 ediff-setup-windows-plain.
2910
2911 * ediff-wind (ediff-choose-window-setup-function-automatically):
2912 New function.
2913 (ediff-window-setup-function): Change initialization.
2914 (ediff-setup-windows-automatic): Delete.
2915 (ediff-setup-windows-plain-merge): Make control window dedicated.
2916 (ediff-destroy-control-frame): Do not skip frames if working in a
2917 single frame.
2918
2919 * emulation/viper-ex.el: Move provide's forward, prevent recursion in
2920 eval-when-compile.
2921
2922 * emulation/viper-util.el: Move provide's forward, prevent recursion in
2923 eval-when-compile.
2924
2925 2008-04-04 Glenn Morris <rgm@gnu.org>
2926
2927 * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
2928 calendar-absolute-from-bahai. Update callers, keep old name as alias.
2929
2930 * calendar/cal-islam.el (calendar-islamic-leap-year-p):
2931 Rename islamic-calendar-leap-year-p. Update callers.
2932 (calendar-islamic-last-day-of-month):
2933 Rename islamic-calendar-last-day-of-month. Update callers.
2934 (calendar-islamic-day-number):
2935 Rename islamic-calendar-day-number. Update callers.
2936 (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
2937 Update callers, keep old name as alias.
2938 (calendar-islamic-print-date): Rename calendar-print-islamic-date.
2939 Update callers, keep old name as alias.
2940 (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
2941 Keep old name as alias.
2942 (diary-islamic-list-entries): Rename list-islamic-diary-entries.
2943 Update callers, keep old name as alias.
2944 (calendar-islamic-mark-date-pattern):
2945 Rename mark-islamic-calendar-date-pattern. Update callers, keep old
2946 name as alias.
2947 (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
2948 Keep old name as alias.
2949 (diary-islamic-insert-monthly-entry):
2950 Rename insert-monthly-islamic-diary-entry. Keep old name as alias.
2951 (diary-islamic-insert-yearly-entry):
2952 Rename insert-yearly-islamic-diary-entry. Keep old name as alias.
2953
2954 * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
2955 calendar-absolute-from-iso. Update callers, keep old name as alias.
2956 (calendar-iso-print-date): Rename calendar-print-iso-date.
2957 Update callers, keep old name as alias.
2958 (calendar-iso-goto-date): Rename calendar-goto-iso-date.
2959 Keep old name as alias.
2960 (calendar-iso-goto-week): Rename calendar-goto-iso-week.
2961 Keep old name as alias.
2962
2963 * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
2964 calendar-absolute-from-julian. Update callers, keep old name as alias.
2965 (calendar-julian-print-date): Rename calendar-print-julian-date.
2966 Update callers, keep old name as alias.
2967 (calendar-julian-goto-date): Rename calendar-goto-julian-date.
2968 Update callers, keep old name as alias.
2969 (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
2970 Update callers, keep old name as alias.
2971 (calendar-astro-print-day-number):
2972 Rename calendar-print-astro-day-number. Update callers, keep old
2973 name as alias.
2974 (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
2975 Update callers, keep old name as alias.
2976
2977 * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
2978 Rename calendar-string-to-mayan-long-count. Update callers.
2979 (calendar-mayan-print-date): Rename calendar-print-mayan-date.
2980 Update callers, keep old name as alias.
2981 (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
2982 Update callers.
2983 (calendar-mayan-read-tzolkin-date):
2984 Rename calendar-read-mayan-tzolkin-date. Update callers.
2985 (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
2986 Keep old name as alias.
2987 (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
2988 Keep old name as alias.
2989 (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
2990 Keep old name as alias.
2991 (calendar-mayan-previous-tzolkin-date):
2992 Rename calendar-previous-tzolkin-date. Keep old name as alias.
2993 (calendar-mayan-next-round-date):
2994 Rename calendar-next-calendar-round-date. Keep old name as alias.
2995 (calendar-mayan-previous-round-date):
2996 Rename calendar-previous-calendar-round-date. Keep old name as alias.
2997 (calendar-mayan-long-count-to-absolute): Rename
2998 calendar-absolute-from-mayan-long-count. Keep old name as alias.
2999 (calendar-mayan-goto-long-count-date):
3000 Rename calendar-goto-mayan-long-count-date. Keep old name as alias.
3001
3002 * calendar/cal-persia.el (calendar-persian-month-name-array):
3003 Rename persian-calendar-month-name-array. Update callers.
3004 (calendar-persian-epoch): Rename persian-calendar-epoch.
3005 Update callers.
3006 (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
3007 Update callers.
3008 (calendar-persian-last-day-of-month):
3009 Rename persian-calendar-last-day-of-month. Update callers.
3010 (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
3011 Update callers, keep old name as alias.
3012 (calendar-persian-print-date): Rename calendar-print-persian-date.
3013 Update callers, keep old name as alias.
3014 (calendar-persian-goto-date): Rename calendar-goto-persian-date.
3015 Keep old name as alias.
3016
3017 * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
3018 * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
3019 * calendar/solar.el: Update for cal-julian name changes.
3020
3021 * calendar/cal-dst.el: Update for persian name changes.
3022
3023 * calendar/cal-menu.el, calendar/calendar.el:
3024 Update for islamic, iso, julian, mayan, persian name changes.
3025
3026 * calendar/diary-lib.el: Update for islamic name changes.
3027
3028 * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
3029 Rename all-hebrew-calendar-holidays. Update callers, keep old name
3030 as alias.
3031 (calendar-christian-all-holidays-flag):
3032 Rename all-christian-calendar-holidays. Update callers, keep old
3033 name as alias.
3034 (calendar-islamic-all-holidays-flag):
3035 Rename all-islamic-calendar-holidays. Update callers, keep old
3036 name as alias.
3037 (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
3038 Update callers, keep old name as alias.
3039 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
3040 Update for the above name changes.
3041
3042 2008-04-04 Juanma Barranquero <lekktu@gmail.com>
3043
3044 * hilit-chg.el (global-highlight-changes-mode)
3045 (highlight-changes-passive-string, highlight-changes-active-string):
3046 Mark as obsolete since 23.1, not 22.1.
3047
3048 2008-04-03 Juanma Barranquero <lekktu@gmail.com>
3049
3050 * hilit-chg.el (highlight-changes-visibility-initial-state)
3051 (hilit-chg-update, highlight-changes-mode-turn-on):
3052 Fix typos in docstrings.
3053
3054 2008-04-03 Stephen Berman <Stephen.Berman@gmx.net>
3055
3056 * newcomment.el (comment-enter-backward): Be careful to restore
3057 position changed during narrowing.
3058
3059 2008-04-03 Giuliano Procida <giuliano.procida@googlemail.com> (tiny change)
3060
3061 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3062 Recognize `sub ($$)'.
3063
3064 2008-04-03 Richard Sharman <rsharman@pobox.com>
3065
3066 * hilit-chg.el (highlight-changes-mode): Rename from
3067 highlight-changes; no longer uses sub-modes active and passive;
3068 implemented by define-minor-mode.
3069 (highlight-changes-toggle-visibility): New function, to replace
3070 the old passive/active submodes of global-highlight-changes-mode;
3071 implemented by define-minor-mode.
3072 (global-highlight-changes-mode): Rename from global-highlight-changes;
3073 rewrite using define-globalized-minor-mode.
3074 (hilit-chg-major-mode-hook, hilit-chg-check-global)
3075 (hilit-chg-post-command-hook, hilit-chg-check-global)
3076 (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
3077 to use of define-globalized-minor-mode.
3078 (highlight-changes-global-initial-state): Change to be boolean.
3079 (highlight-changes-visible-string, highlight-changes-invisible-string):
3080 Rename from highlight-changes-active-string and
3081 highlight-changes-passive-string.
3082 (hilit-chg-update, hilit-chg-set): Use them.
3083 (global-highlight-changes-mode): Rename from global-highlight-changes.
3084 (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
3085 docstring.
3086 (hilit-chg-hide-changes): Rewrite to use dolist.
3087 (hilit-chg-set-face-on-change, hilit-chg-update)
3088 (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
3089 variable instead of testing highlight-changes-mode.
3090 (highlight-markup-buffers): Add require ediff-util; argument on calls
3091 to highlight-changes-mode changed.
3092 (highlight-compare-with-file): Fix problems with interactive
3093 call giving invalid default file.
3094
3095 2008-04-03 Nick Roberts <nickrob@snap.net.nz>
3096
3097 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
3098 Fix in disassembly buffer (regression in 22.2).
3099
3100 2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
3101
3102 * emulation/viper-macs.el (viper-read-fast-keysequence):
3103 Use viper-read-event instead of viper-read-key.
3104
3105 * emulation/viper.el (viper-mode): Move the check for fundamental mode.
3106
3107 * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
3108 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
3109 let-statements.
3110
3111 * emulation/viper-ex.el, emulation/viper-macs.el:
3112 * emulation/viper-mous.el:
3113 Replace load with require in eval-when-compile.
3114
3115 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3116
3117 * files.el (auto-mode-alist): Use archive-mode for Debian packages.
3118
3119 * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
3120 (archive-try-jka-compr): New function.
3121 (archive-set-buffer-as-visiting-file): Use it.
3122
3123 * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
3124
3125 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
3126
3127 * simple.el (handle-shift-selection): New arg.
3128
3129 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3130
3131 * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
3132
3133 * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
3134
3135 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
3136
3137 * shell.el (shell-dynamic-complete-filename): New fun.
3138 (shell-dynamic-complete-functions): Use it.
3139
3140 * help-fns.el (describe-variable): Undo 2008-02-25 change.
3141
3142 2008-04-03 Kenichi Handa <handa@m17n.org>
3143
3144 * international/fontset.el (create-fontset-from-x-resource):
3145 Handle the error of X resource more gracefully.
3146
3147 * international/latin1-disp.el (latin1-display): Don't use make-char.
3148 Fix the argument to set-char-table-range.
3149 (latin1-display-identities): Don't use make-char.
3150 (latin1-display-reset): Use map-charset-chars instead of directly
3151 calling standard-display-default.
3152 (latin1-display-check-font): Don't use make-char.
3153 (latin1-display-setup): Likewise.
3154 (latin1-display-ucs-per-lynx): Likewise.
3155
3156 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3157
3158 * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
3159 name the fields, to make the code clearer.
3160 Rewrite all `aset' and `aref' using the defined accessors.
3161 (timer--time): New pseudo-field.
3162 (timer-set-time, timer-set-idle-time, timer-inc-time)
3163 (timer-set-time-with-usecs, with-timeout-suspend): Use it.
3164 (timer--time-less-p): New function.
3165 (timer--activate): New function, extracted from timer-activate.
3166 (timer-activate-when-idle, timer-activate): Use it.
3167 (cancel-function-timers): Use dolist.
3168
3169 2008-04-03 Glenn Morris <rgm@gnu.org>
3170
3171 * add-log.el (c-beginning-of-defun, c-end-of-defun):
3172 Remove declarations; no longer used.
3173 (c-cpp-define-name, c-defun-name): Declare as functions.
3174
3175 * calendar/cal-bahai.el (holiday-fixed): Autoload it.
3176 (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
3177
3178 * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
3179 (holiday-passover-etc, holiday-hanukkah): Doc fix.
3180 Add optional argument. Simplify.
3181 (holiday-tisha-b-av-etc): Use memq rather than unless.
3182 (holiday-julian): Autoload it.
3183 (holiday-hebrew-misc): New function.
3184
3185 * calendar/cal-islam.el (holiday-islamic-new-year): New function.
3186
3187 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
3188 (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
3189 (hebrew-holidays-2): Just use holiday-hanukkah now it respects
3190 all-hebrew-calendar-holidays.
3191 (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
3192 Simplify using new functions.
3193 (calendar-holidays): Doc fix.
3194 (generate-calendar-window): Use bound-and-true-p.
3195
3196 * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
3197
3198 * calendar/holidays.el (calendar-holiday-list): Fix previous change.
3199 (holiday-filter-visible-calendar): Doc fix. Use mapcar.
3200 (holiday-easter-etc): Fix nesting of result. Tweak holiday order.
3201 Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
3202
3203 * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
3204
3205 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3206
3207 * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
3208
3209 * vc-bzr.el (vc-bzr-checkout): Simplify.
3210
3211 * image-mode.el (image-mode-fit-frame): New command.
3212
3213 * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
3214 (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
3215 (keyboard-escape-quit): Check region-active-p i.s.o
3216 transient-mark-mode.
3217
3218 2008-04-02 Simon Josefsson <simon@josefsson.org>
3219
3220 * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
3221 (imap-message-copyuid-1): Use it.
3222 (imap-message-appenduid-1): Likewise. Based on patch by Nathan
3223 J. Williams in
3224 <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3225
3226 2008-04-02 Alan Mackenzie <acm@muc.de>
3227
3228 * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
3229 New optimised functions to get the name of the current defun/macro.
3230
3231 * add-log.el (add-log-current-defun): Move the functionality which
3232 gets the current function name for C like modes to cc-cmds.el,
3233 thus optimising for speed.
3234
3235 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
3236
3237 * simple.el (deactivate-mark): When the mark is temporarily
3238 active, restore the original value of transient-mark-mode.
3239 (set-mark-command): First deactivate the mark if was temporarily active.
3240 (exchange-point-and-mark): Reactivate the mark if it was
3241 temporarily active.
3242 (handle-shift-selection): New fun.
3243 (transient-mark-mode): Move var documentation here from buffer.c.
3244 (next-line, previous-line, backward-word, move-end-of-line)
3245 (move-beginning-of-line, forward-to-indentation)
3246 (backward-to-indentation, back-to-indentation)
3247 (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
3248
3249 * mouse.el (mouse-set-region-1): Save the old value of
3250 transient-mark-mode.
3251 (mouse-drag-track): Ignore the now-obsolete value `identity' for
3252 transient-mark-mode.
3253
3254 * textmodes/paragraphs.el (forward-paragraph)
3255 (backward-paragraph, forward-sentence, backward-sentence): Add ^
3256 interactive spec.
3257
3258 * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
3259
3260 2008-04-02 Michael Albinus <michael.albinus@gmx.de>
3261
3262 * net/tramp.el (tramp-make-tramp-temp-file):
3263 Use `tramp-drop-volume-letter' for the local file name part.
3264
3265 2008-04-02 Dan Nicolaescu <dann@ics.uci.edu>
3266
3267 * progmodes/sh-script.el (sh-mode-map): Rename the menu. Add :help.
3268 Add menu entries corresponding to all the key bindings.
3269
3270 * emacs-lisp/debug.el (debugger-mode-map):
3271 * textmodes/conf-mode.el (conf-mode-map): Add a menu.
3272 (conf-align-assignments): Only work on the region if it is active.
3273 (conf-quote-normal): Use when instead of if. Remove redundant test.
3274
3275 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
3276 for tracing and re-builder.
3277
3278 2008-04-02 Glenn Morris <rgm@gnu.org>
3279
3280 * calendar/appt.el (appt-disp-window-function): Doc fix.
3281 (appt-display-message): Move beep before display.
3282 (appt-check): Make interactive. Reduce the number of lets.
3283 Use string-equal to compare mode-line strings.
3284 (appt-disp-window): Pluralize "minute" as needed. Make appt buffer
3285 read-only.
3286 (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
3287 (appt-delete): Simplify.
3288
3289 * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
3290
3291 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
3292
3293 * calendar/cal-hebrew.el (list-yahrzeit-dates):
3294 * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
3295 (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
3296
3297 * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
3298 (calendar-holiday-marker, mark-visible-calendar-date):
3299 * calendar/diary-lib.el (fancy-diary-display):
3300 Check for font-lock-mode before using faces.
3301
3302 * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
3303 (calendar-gregorian-from-absolute): Reduce the number of lets.
3304 (hebrew-holidays-4, generate-calendar-window): Simplify.
3305 (calendar-for-loop): Make obsolete.
3306 (calendar-nth-named-day): Doc fix.
3307
3308 * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
3309 (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
3310 (calendar-mark-1, list-sexp-diary-entries, diary-remind):
3311 Reduce the number of lets.
3312 (mark-sexp-diary-entries, calendar-mark-complex):
3313 Expand calendar-for-loops.
3314
3315 2008-04-01 Chong Yidong <cyd@stupidchicken.com>
3316
3317 * find-dired.el (find-dired-filter): Fix last patch to handle
3318 multi-line process input. Pad link numbers too.
3319
3320 2008-04-01 Jari Aalto <jari.aalto@cante.net>
3321
3322 * find-dired.el (find-dired-filter): Align columns by padding file sizes.
3323
3324 2008-04-01 Jason Rumney <jasonr@gnu.org>
3325
3326 * international/characters.el (script-list): Add phonetic script,
3327 covering IPA (previously Latin), Phonetic Extensions and
3328 Phonetic Extensions Supplement (both previously unassigned).
3329
3330 * international/fontset.el (setup-default-fontset): Use unicode fonts
3331 that cover bopomofo script for bopomofo.
3332 Likewise for braille and mathematical.
3333 Use unicode scripts that cover the phonetic script for IPA.
3334
3335 2008-04-01 Johan Bockgård <bojohan@gnu.org>
3336
3337 * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
3338 return the assigned value.
3339
3340 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
3341
3342 * abbrev.el (abbrev-mode): Use define-minor-mode.
3343
3344 * mouse.el (mouse-major-mode-menu-prefix): Remove. Remove uses.
3345 (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
3346 Use map-keymap.
3347 (minor-mode-menu-from-indicator): Use it. Simplify.
3348
3349 * bindings.el (mode-line-mode-menu): Move before (new) first use.
3350 (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
3351 Bind the key directly to the menu.
3352 (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
3353
3354 2008-04-01 Daiki Ueno <ueno@unixuser.org>
3355
3356 * epa.el (epa-decrypt-region): Explain the reason why this
3357 function should not be used in Lisp programs.
3358 (epa-decrypt-armor-in-region): Ditto.
3359 (epa-verify-region): Ditto.
3360 (epa-verify-cleartext-in-region): Ditto.
3361 (epa-sign-region): Ditto.
3362 (epa-encrypt-region): Ditto.
3363
3364 * epg.el (epg-start-receive-keys): Fix typo in docstring.
3365
3366 * epa.el (epa-select-keys): Show menu even if there is no key in
3367 GnuPG's keyring.
3368
3369 2008-04-01 Glenn Morris <rgm@gnu.org>
3370
3371 * calendar/calendar.el (calendar-make-temp-face): New function.
3372 (mark-visible-calendar-date):
3373 * calendar/diary-lib.el (fancy-diary-display): Use it.
3374
3375 * vc-hooks.el (vc-responsible-backend): Declare as function.
3376
3377 * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
3378 * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
3379 * calendar/cal-julian.el (holiday-julian): Use it.
3380
3381 * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
3382 (calendar-hebrew-date-is-visible-p): Extract some common code into
3383 separate function.
3384 (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
3385
3386 * calendar/cal-menu.el (cal-menu-holidays-menu):
3387 * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
3388 rather than obsolete alias.
3389
3390 * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
3391 for mark characters.
3392 (calendar-unmark): Unmark by removing all overlays, rather than
3393 redrawing.
3394 (calendar-starred-day): Remove.
3395 (calendar-mode): Disable undo. Don't make calendar-starred-day local.
3396 (calendar-cursor-to-date): No need for special star handling now
3397 using overlays.
3398 (calendar-star-date): Use overlays.
3399
3400 * calendar/cal-french.el (calendar-goto-french-date):
3401 * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
3402 (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
3403 * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
3404 * calendar/cal-persia.el (calendar-persian-date-string):
3405 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
3406 (cal-tex-cursor-month, cal-tex-LaTeXify-string):
3407 * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
3408 * calendar/solar.el (solar-equinoxes-solstices):
3409 Reduce nesting of some lets.
3410
3411 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count):
3412 (calendar-goto-mayan-long-count-date): Simplify.
3413
3414 * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
3415 Simplify by using mapcar.
3416 (calendar-list-holidays): Return holiday-list.
3417 (list-holidays): Use let rather than let*. Remove un-needed locals
3418 `d', `never'.
3419 (calendar-check-holidays): Return result from dolist.
3420 (holiday-float): Use a single let*. Simplify if-and to and.
3421 (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
3422 single let*.
3423
3424 2008-04-01 Jay Belanger <jay.p.belanger@gmail.com>
3425
3426 * calc/calc.el: Autoload `calc-yank'.
3427 (calc-mode-map): Add keybindings for `calc-yank'.
3428 * calc/calc-ext.el (calc-init-extensions): Remove keybinding
3429 assignments for `calc-yank'.
3430
3431 2008-03-31 Dan Nicolaescu <dann@ics.uci.edu>
3432
3433 * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
3434 (vc-status-mark-buffer-changed): Handle the extra field.
3435
3436 * vc-bzr.el (vc-bzr-after-dir-status):
3437 * vc-cvs.el (vc-cvs-after-dir-status):
3438 * vc-hg.el (vc-hg-after-dir-status):
3439 * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
3440
3441 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3442
3443 * doc-view.el: Compute displayed pages first (in PDF).
3444 (doc-view-current-converter-processes): Rename from
3445 doc-view-current-converter-process. Update users.
3446 (doc-view-sentinel): Test buffer's liveness.
3447 (doc-view-pdf/ps->png-sentinel): Remove.
3448 (doc-view-start-process): New function.
3449 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
3450 (doc-view-ps->pdf): Use it.
3451 (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
3452 New functions.
3453 (doc-view-convert-current-doc, doc-view-goto-page): Use them.
3454 (doc-view-mode): Kill the processes when leaving the mode.
3455
3456 2008-03-31 Juanma Barranquero <lekktu@gmail.com>
3457
3458 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
3459 Use `byte-compile-warning-types'. Add docstring.
3460
3461 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3462
3463 * smerge-mode.el (smerge-apply-resolution-patch): New fun.
3464 (smerge-resolve): Add various resolution heuristics.
3465
3466 * smerge-mode.el (smerge-refine): Allow highlighting other subparts
3467 in 3-way conflicts.
3468
3469 2008-03-31 Glenn Morris <rgm@gnu.org>
3470
3471 * calendar/cal-bahai.el (diary-bahai-mark-entries):
3472 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
3473 * calendar/cal-islam.el (mark-islamic-diary-entries):
3474 Fix argument order in call to diary-mark-entries-1.
3475
3476 * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
3477 pre-Bahai dates.
3478 (holiday-bahai): Use an algorithm actually relevant to this calendar
3479 system.
3480
3481 * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
3482
3483 * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
3484 Use and.
3485
3486 * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
3487 in the last fortnight in Julian October.
3488
3489 * calendar/calendar.el (increment-calendar-month): Optionally handle
3490 systems without 12 months per year.
3491
3492 (calendar-date-is-visible-p): Doc fix. Simplify.
3493
3494 * calendar/holidays.el (holiday-filter-visible-calendar): Return result
3495 from dolist.
3496
3497 2008-03-30 Juanma Barranquero <lekktu@gmail.com>
3498
3499 * hi-lock.el (hi-lock-mode): Fix typos in docstring.
3500 (hi-lock-unload-function): New function.
3501
3502 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
3503
3504 * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
3505 overwriting when NEWNAME is a local file.
3506
3507 * net/trampver.el: Update release number.
3508
3509 2008-03-30 Alexandre Julliard <julliard@winehq.org>
3510
3511 * vc-git.el: Make vc-status display information about copies,
3512 renames and permission changes.
3513 (vc-git-extra-fileinfo): New defstruct.
3514 (vc-git-escape-file-name, vc-git-file-type-as-string)
3515 (vc-git-rename-as-string, vc-git-permissions-as-string)
3516 (vc-git-status-printer): New functions.
3517 (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
3518 (vc-git-after-dir-status-stage1): Look for copies, renames and
3519 permission changes.
3520 (vc-git-after-dir-status-stage1-empty-db): Set permissions.
3521 (vc-git-dir-status): Ask for staged files and renames.
3522
3523 2008-03-30 Dan Nicolaescu <dann@ics.uci.edu>
3524
3525 * vc.el: Allow backends to display backend specific information in
3526 the vc-status listing.
3527 (vc-status-fileinfo): Add a field for backend specific information.
3528 (vc-status-printer): Rename to ...
3529 (vc-default-status-printer): ... this.
3530 (vc-status-printer): New function.
3531 (vc-update-vc-status-buffer): Set the backend specific file info
3532 if provided.
3533
3534 2008-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
3535
3536 * textmodes/remember.el (remember-diary-convert-entry): Revert last
3537 change (ill-conceived).
3538
3539 2008-03-29 Glenn Morris <rgm@gnu.org>
3540
3541 * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
3542 * calendar/cal-julian.el (holiday-julian): Simplify.
3543
3544 * calendar/holidays.el (list-holidays): Use or.
3545
3546 2008-03-29 Juri Linkov <juri@jurta.org>
3547
3548 * window.el (split-window-preferred-horizontally): New function.
3549
3550 * cus-start.el (split-window-preferred-function):
3551 Set choice for "vertically" to nil instead of split-window.
3552 Set choice for "horizontally" to split-window-preferred-horizontally
3553 instead of lambda.
3554
3555 2008-03-29 Juri Linkov <juri@jurta.org>
3556
3557 * simple.el (minibuffer-default-add-function): New variable with
3558 the default to minibuffer-default-add-completions.
3559 (minibuffer-default-add-done): New variable. Make it buffer-local.
3560 (minibuffer-default-add-completions): New function.
3561 (goto-history-element): Set minibuffer-default-add-done to t and
3562 call a function in minibuffer-default-add-function when the
3563 specified absolute history position is greater than the length of
3564 the minibuffer-default list and minibuffer-default-add-done is nil.
3565 Change "^End of history; no next item$" to "^End of defaults;
3566 no next item$".
3567
3568 * bindings.el (debug-ignored-errors): Change "^End of history;
3569 no next item$" to "^End of defaults; no next item$".
3570
3571 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
3572
3573 * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
3574
3575 * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
3576 to with-no-warnings.
3577
3578 2008-03-29 Michael Albinus <michael.albinus@gmx.de>
3579
3580 Sync with Tramp 2.1.13.
3581
3582 * net/tramp-ftp.el: Require 'cl when byte-compiling.
3583
3584 * net/trampver.el: Update release number.
3585
3586 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
3587
3588 * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
3589 the current backend.
3590
3591 * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
3592 (vc-status-refresh): Create a temporary buffer and call the
3593 `dir-status' backend function from that buffer.
3594
3595 * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
3596 (vc-bzr-after-dir-status): Don't kill the buffer.
3597
3598 * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
3599 (vc-cvs-after-dir-status): Don't kill the buffer.
3600
3601 * vc-git.el (vc-git-dir-status): Don't create a buffer.
3602 (vc-git-after-dir-status-stage2): Don't kill the buffer.
3603
3604 * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
3605 (vc-hg-after-dir-status): Don't kill the buffer.
3606
3607 * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
3608 (vc-svn-after-dir-status): Don't kill the buffer.
3609
3610 2008-03-29 Glenn Morris <rgm@gnu.org>
3611
3612 * calendar/calendar.el (diary-file, american-date-diary-pattern)
3613 (european-date-diary-pattern, european-calendar-display-form)
3614 (american-calendar-display-form, diary-display-hook): Doc fixes.
3615 (european-calendar-style): Doc fix. Use calendar-set-date-style for
3616 custom :set. Mark as obsolete.
3617 (calendar-date-style, iso-date-diary-pattern)
3618 (iso-calendar-display-form): New user variables.
3619 (diary-date-forms, calendar-date-display-form): Set using
3620 calendar-date-style. Doc fix.
3621 (calendar-set-date-style): New command.
3622 (european-calendar, american-calendar): Use calendar-set-date-style.
3623 Mark as obsolete.
3624
3625 * calendar/diary-lib.el (number): Move declaration where needed.
3626 (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
3627 (diary-make-date): New function.
3628 (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
3629 Use diary-make-date.
3630 (diary-date-display-form, diary-insert-entry-1): New functions.
3631 (insert-monthly-diary-entry, insert-yearly-diary-entry):
3632 Use diary-insert-entry-1.
3633 (insert-anniversary-diary-entry, insert-block-diary-entry)
3634 (insert-cyclic-diary-entry): Use diary-date-display-form.
3635
3636 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
3637 Autoload diary-insert-entry-1.
3638 * calendar/cal-bahai.el (diary-bahai-insert-entry)
3639 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
3640 * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
3641 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
3642 * calendar/cal-islam.el (insert-islamic-diary-entry)
3643 (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
3644 Use diary-insert-entry-1.
3645
3646 * calendar/cal-hebrew.el (diary-make-date): Autoload it.
3647 (diary-yahrzeit): Doc fix. Use diary-make-date.
3648
3649 * calendar/icalendar.el (icalendar--datetime-to-american-date):
3650 New name for icalendar--datetime-to-noneuropean-date. Make old name
3651 obsolete alias.
3652 (icalendar--datetime-to-iso-date): New function.
3653 (icalendar--datetime-to-diary-date): Doc fix. Respect
3654 calendar-date-style if bound.
3655
3656 * textmodes/remember.el (remember-diary-convert-entry):
3657 Respect calendar-date-style if bound.
3658
3659 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
3660
3661 * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
3662 (xterm-mouse-handle-delete-frame): Delete.
3663
3664 * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
3665 (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
3666 (xterm-remove-modify-other-keys): Lookup terminal rather than frame
3667 in xterm-modify-other-keys-terminal-list.
3668
3669 * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
3670 are conflicts.
3671
3672 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
3673
3674 * vc.el (vc-update): Check if the buffer is unsaved only if it
3675 actually exists.
3676 (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
3677 vc-print-log.
3678
3679 2008-03-28 Magnus Henoch <mange@freemail.hu>
3680
3681 * net/dns.el (dns-write): Use set-buffer-multibyte.
3682
3683 2008-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3684
3685 * vc-bzr.el (vc-bzr-sha1): New fun.
3686 (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
3687 (vc-bzr-registered): Use it.
3688
3689 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
3690
3691 * vc.el (vc-status-kill-dir-status-process): Simplify.
3692 (vc-status-refresh): Make sure the buffer is live.
3693 (ring): Don't require it, not used.
3694
3695 2008-03-28 Wilson Snyder <wsnyder@wsnyder.org>
3696
3697 * progmodes/verilog-mode.el (verilog-auto-inout-module):
3698 Add optional regular expression to AUTOINOUTMODULE.
3699 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
3700 (verilog-auto-inst-param, verilog-auto-reg)
3701 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
3702 (verilog-auto-output-every, verilog-auto-input)
3703 (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
3704 (verilog-auto-unused, verilog-auto): Update documentation to use
3705 more obvious instance module names versus cell names.
3706
3707 2008-03-28 Jan Djärv <jan.h.d@swipnet.se>
3708
3709 * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
3710 kill if a process is running.
3711
3712 * progmodes/grep.el (grep-mode-tool-bar-map): The same.
3713
3714 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
3715
3716 * vc.el: Add new backend function 'status-extra-headers.
3717 (vc-default-status-extra-headers): New function.
3718 (vc-status-headers): Call 'status-extra-headers. Add colors.
3719
3720 * vc-git.el (vc-git-status-extra-headers): New function.
3721
3722 2008-03-28 Glenn Morris <rgm@gnu.org>
3723
3724 * calendar/cal-menu.el (cal-menu-holidays-menu)
3725 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
3726 (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
3727 holiday-list is optional.
3728 (calendar-mouse-holidays): Remove un-needed local `l'.
3729
3730 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
3731 Remove un-needed local `date'.
3732 (calendar-cursor-to-visible-date): Use let rather than let*.
3733 Remove un-needed local `first-of-month-weekday'.
3734
3735 * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
3736
3737 * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
3738 Doc fixes.
3739 (abbreviated-calendar-year): Move here from calendar.el. Doc fix.
3740 (diary-header-line-flag, diary-header-line-format): Declare.
3741 (diary-pull-attrs): Check for multiple matches.
3742 (diary-list-entries-2): Simplify finding start of date.
3743 (diary-show-all-entries, make-diary-entry): Respect non-nil values of
3744 pop-up-frames.
3745 (diary-mark-entries-1): Re-use offset in abbreviated-year case.
3746 (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
3747
3748 2008-03-27 Dan Nicolaescu <dann@ics.uci.edu>
3749
3750 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
3751
3752 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
3753
3754 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3755
3756 * vc-hooks.el (vc-before-save): Don't prevent saving the file.
3757
3758 * image-mode.el (image-mode-reapply-winprops): Fix last change.
3759
3760 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
3761
3762 * international/mule-conf.el (define-iso-single-byte-charset):
3763 Don't make latin-iso8859-* supplementary.
3764 (#'set-charset-priority): Don't change the priority of charsets
3765 `unicode' and `emacs'.
3766
3767 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3768
3769 * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
3770 temp buffer.
3771
3772 2008-03-27 Glenn Morris <rgm@gnu.org>
3773
3774 * calendar/cal-bahai.el (diary-bahai-list-entries):
3775 * calendar/cal-hebrew.el (list-hebrew-diary-entries):
3776 * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
3777
3778 * calendar/calendar.el (diary-file): Doc fix.
3779
3780 * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
3781 (list-diary-entries-hook, mark-diary-entries-hook)
3782 (include-other-diary-files, diary-mail-entries)
3783 (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
3784 (diary-set-header): New function.
3785 (diary-header-line-flag, diary-header-line-format):
3786 Use diary-set-header for custom :set function.
3787 (diary-set-maybe-redraw): Use symbol-value rather than eval.
3788 (diary-attrtype-convert): Use intern-soft rather than read.
3789 (diary-display-no-entries): New function.
3790 (simple-diary-display, fancy-diary-display): Use it.
3791 (fancy-diary-display): Doc fix. Remove unneeded local entry-list.
3792 (diary-mark-entries-1): Fix position offsets in non-gregorian case.
3793
3794 * calendar/holidays.el (list-holidays): Doc fix.
3795
3796 2008-03-26 Jay Belanger <jay.p.belanger@gmail.com>
3797
3798 * calc/calc-store.el (calc-read-var-name-history): New variable.
3799 (calc-read-var-name): Use `calc-read-var-name-history'.
3800
3801 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3802
3803 * image-mode.el (image-mode-reapply-winprops): Simplify now that
3804 window-configuration-change-hook works buffer-locally.
3805
3806 2008-03-26 Johan Bockgård <bojohan@gnu.org>
3807
3808 * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
3809 for Emacs Lisp, not Lisp.
3810
3811 2008-03-26 Juanma Barranquero <lekktu@gmail.com>
3812
3813 * help-fns.el (describe-function-1, describe-variable):
3814 If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
3815
3816 * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
3817 replacement is provided, don't print "use nil instead".
3818
3819 2008-03-26 Johan Bockgård <bojohan@gnu.org>
3820
3821 * complete.el (PC-do-completion): Use regexp-quote.
3822
3823 2008-03-26 Dan Nicolaescu <dann@ics.uci.edu>
3824
3825 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
3826 Detect missing files.
3827
3828 * vc-git.el (vc-git-extra-menu-map): New key map.
3829 (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
3830 New functions.
3831
3832 * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
3833 and 'missing files.
3834
3835 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3836
3837 * calendar/holidays.el (list-holidays): Make Y2 optional.
3838
3839 * calendar/appt.el (appt-buffer-name): Don't use a leading space for
3840 buffers shown to the user.
3841 (appt-disp-window): Disable undo explicitly now that the leading space
3842 is gone.
3843
3844 * simple.el (activate-mark): New function.
3845 (set-mark-command): Use it with region-active-p to clean up the code.
3846 (exchange-point-and-mark): Invert the meaning of C-u when
3847 transient-mark-mode is active.
3848
3849 * dired-aux.el (dired-create-files): Use dolist.
3850
3851 * bindings.el (mode-line-change-eol): Use with-selected-window.
3852
3853 * apropos.el (apropos-command): Include macros.
3854
3855 2008-03-26 Glenn Morris <rgm@gnu.org>
3856
3857 * calendar/cal-bahai.el: Require calendar, not cal-julian.
3858 (calendar-bahai-epoch): Doc fix.
3859
3860 * calendar/cal-china.el: Explicitly require calendar.
3861
3862 * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
3863 Require calendar rather than cal-julian.
3864 Autoload calendar-absolute-from-julian.
3865 * calendar/cal-coptic.el (coptic-calendar-epoch):
3866 * calendar/cal-islam.el (calendar-islamic-epoch):
3867 * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
3868
3869 * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
3870
3871 * calendar/cal-dst.el: Don't require cal-persia.
3872 (calendar-absolute-from-persian): Autoload it.
3873 (dst-adjust-time): Doc fix.
3874
3875 * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
3876 cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
3877 calendar.
3878
3879 * calendar/cal-menu.el: Require calendar rather than declaring
3880 functions.
3881 * calendar/calendar.el: Provide calendar before requiring cal-menu.
3882
3883 * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
3884 calendar-after-frame-setup-hooks. Update callers, make old name an
3885 obsolete alias. Doc fix.
3886 (calendar-frame-1): Doc fix.
3887
3888 * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
3889
3890 * calendar/calendar.el (oriental-holidays, solar-holidays):
3891 * calendar/holidays.el (list-holidays): Assume atan always bound.
3892
3893 * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
3894 Explicitly require calendar, not cal-julian.
3895 * calendar/lunar.el: Explicitly require cal-dst.
3896
3897 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3898
3899 * autorevert.el (auto-revert-buffers): Use buffer-live-p.
3900
3901 * help-fns.el (describe-function-1, describe-variable): If no
3902 replacement is provided, don't print "use nil instead".
3903
3904 2008-03-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3905
3906 * proced.el: New file.
3907
3908 2008-03-25 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3909
3910 * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
3911
3912 2008-03-25 Juri Linkov <juri@jurta.org>
3913
3914 * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
3915 in battery-mode-line-format.
3916
3917 * bindings.el (minibuffer-local-map): For the command
3918 file-cache-minibuffer-complete replace keymap minibuffer-local-map
3919 with map which is already locally bound to minibuffer-local-map.
3920
3921 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
3922
3923 * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
3924 Remove `sort-first' argument.
3925
3926 * subr.el (redisplay-end-trigger-functions)
3927 (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
3928 (process-filter-multibyte-p, set-process-filter-multibyte):
3929 Mark as obsolete.
3930
3931 2008-03-25 Juanma Barranquero <lekktu@gmail.com>
3932
3933 * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
3934 bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
3935 use the LOCAL arg of `add-hook'.
3936 (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
3937 Remove spurious * from defcustom docstrings.
3938 (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
3939 Fix typos in messages.
3940 (reb-mode-buffer-p): New function.
3941 (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'. Use `when'.
3942 (top, reb-show-subexp, reb-auto-update, reb-auto-update)
3943 (reb-delete-overlays, reb-cook-regexp, reb-update-regexp)
3944 (reb-update-overlays): Use `unless', `when'.
3945 (re-builder-unload-function): New function.
3946
3947 2008-03-25 Dan Nicolaescu <dann@ics.uci.edu>
3948
3949 * vc-hooks.el (vc-state): Add documentation for 'missing.
3950
3951 2008-03-25 Wilson Snyder <wsnyder@wsnyder.org>
3952
3953 * progmodes/verilog-mode.el (verilog-auto-output)
3954 (verilog-auto-input, verilog-auto-inout, verilog-auto)
3955 (verilog-delete-auto): Add optional regular expression to
3956 AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
3957 (verilog-signals-matching-regexp): New internal function for
3958 signal matching.
3959
3960 2008-03-25 Johan Bockgård <bojohan@gnu.org>
3961
3962 * info.el (Info-isearch-search): Always return point.
3963
3964 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
3965
3966 * diff-mode.el (diff-remembered-defdir): New var.
3967 (diff-find-file-name): Use it to flush diff-remembered-files-alist.
3968
3969 2008-03-25 Glenn Morris <rgm@gnu.org>
3970
3971 * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
3972 calendar-bahai-prompt-for-date. Update callers, make old name an
3973 obsolete alias. Doc fix.
3974 * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
3975 coptic-prompt-for-date. Update callers, make old name an
3976 obsolete alias. Doc fix.
3977 * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
3978 calendar-hebrew-prompt-for-date. Update callers. Doc fix.
3979 * calendar/cal-islam.el (calendar-islamic-read-date): New name for
3980 calendar-islamic-prompt-for-date. Update callers. Doc fix.
3981 * calendar/cal-iso.el (calendar-iso-read-date): New name for
3982 calendar-iso-read-args. Update callers, make old name an obsolete
3983 alias.
3984 * calendar/cal-persia.el (calendar-persian-read-date): New name for
3985 persian-prompt-for-date. Update callers, make old name an
3986 obsolete alias. Doc fix. Move definition before use.
3987
3988 * calendar/cal-x.el (diary-frame-parameters)
3989 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
3990 (calendar-frame-1): Doc fixes.
3991 (make-fancy-diary-buffer): Remove declaration.
3992 (calendar-dedicate-diary): Replace call to deleted function
3993 make-fancy-diary-buffer.
3994 (calendar-frame-setup): New function.
3995 (calendar-one-frame-setup, calendar-only-one-frame-setup)
3996 (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
3997 work, and mark as obsolete.
3998 (special-display-buffer-names): Don't mess with this; it's not our
3999 business.
4000 (cal-x-load-hook): Defvar it, and mark as obsolete.
4001
4002 * calendar/calendar.el (calendar-remove-frame-by-deleting):
4003 Default to t. Add to 'calendar group.
4004 (calendar): Doc fix. Use calendar-frame-setup.
4005 (calendar-basic-setup): Doc fix. Add optional NODISPLAY argument.
4006 (generate-calendar-window): Doc fix.
4007
4008 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4009
4010 * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
4011
4012 2008-03-24 Drew Adams <drew.adams@oracle.com>
4013
4014 * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
4015 New variables.
4016 (finder-mode): Use finder-mode-syntax-table. Set font-lock-defaults.
4017 (finder-exit): Ignore errors rather than avoiding them.
4018 Kill *Finder-package* buffer also.
4019
4020 2008-03-24 Andreas Schwab <schwab@suse.de>
4021
4022 * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
4023
4024 2008-03-24 Dan Nicolaescu <dann@ics.uci.edu>
4025
4026 * vc-hg.el (vc-hg-after-dir-status):
4027 * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
4028
4029 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
4030 Detect removed files.
4031
4032 * vc.el (vc-status-printer): Use a different face for missing files.
4033 (vc-status-hide-up-to-date): Rename from
4034 vc-status-remove-up-to-date. Update all callers.
4035 (vc-status-mode-map): Bind C-m.
4036
4037 2008-03-24 Alexandre Julliard <julliard@winehq.org>
4038
4039 * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
4040 code ...
4041 (vc-git--state-code): ... to this new function.
4042 (vc-git-state): Use it.
4043
4044 2008-03-24 Trent Buck <trentbuck@gmail.com> (tiny change)
4045
4046 * textmodes/remember.el (remember-mail-date)
4047 (remember-store-in-mailbox): Write date and From line in such a
4048 way that Mutt can read it.
4049
4050 2008-03-23 Chong Yidong <cyd@stupidchicken.com>
4051
4052 * simple.el (transient-mark-mode): Turn on by default.
4053
4054 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
4055
4056 * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
4057 'unregistered for unregistered files.
4058
4059 * vc-hg.el (vc-hg-state): Return 'removed for removed files.
4060
4061 * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
4062
4063 * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
4064 subdirectories.
4065
4066 * vc.el (vc-status-prepare-status-buffer): Fix thinko.
4067 (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
4068 Add :enable for vc-status-refresh.
4069 (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
4070 (vc-status-tool-bar-map): Add binding for
4071 vc-status-kill-dir-status-process.
4072 Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
4073 (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
4074 Reset vc-status-process-buffer.
4075 (vc-status-refresh): Don't run two refreshes at a time.
4076 (vc-status): If the buffer is already in vc-status-mode only refresh.
4077 (vc-status-mark-buffer-changed): Add an optional file parameter.
4078 (vc-resynch-buffer): Use it.
4079 (vc-delete-file): Expand the file name before using it.
4080 Be careful to not create a new buffer with the old file contents.
4081 Update the VC state after performing the operation.
4082
4083 2008-03-23 Andreas Schwab <schwab@suse.de>
4084
4085 * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
4086 Fix radio button condition.
4087 [box]: Likewise.
4088 [customize]: Add radio button.
4089
4090 2008-03-23 Jay Belanger <jay.p.belanger@gmail.com>
4091
4092 * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
4093 (calc-user-parse-tables, calc-gnuplot-default-device)
4094 (calc-gnuplot-default-output, calc-gnuplot-print-device)
4095 (calc-gnuplot-print-output, calc-gnuplot-geometry)
4096 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
4097 (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
4098 (calc-undo-list, calc-redo-list, calc-main-buffer)
4099 (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
4100 (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
4101 (calc-said-hello, calc-executing-macro, calc-any-selections)
4102 (calc-help-phase, calc-full-help-flag, calc-refresh-count)
4103 (calc-display-dirty, calc-embedded-info, calc-embedded-active)
4104 (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
4105 (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
4106 (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
4107 (calc-create-buffer, calc-quit): Add docstrings.
4108
4109 2008-03-23 Juanma Barranquero <lekktu@gmail.com>
4110
4111 * makefile.w32-in (WINS_ALMOST): Add org.
4112
4113 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
4114
4115 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
4116 New functions to implement vc-status support.
4117
4118 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
4119
4120 * vc.el (vc-status-prepare-status-buffer): New function.
4121 (vc-status): Use it.
4122
4123 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
4124 appropriate.
4125
4126 2008-03-22 Alexandre Julliard <julliard@winehq.org>
4127
4128 * vc-git.el (vc-git--empty-db-p)
4129 (vc-git-after-dir-status-stage1-empty-db): New functions.
4130 (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
4131 Add support for empty repositories.
4132
4133 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
4134
4135 * vc-git.el (vc-git-annotate-extract-revision-at-line):
4136 Allow "^" in a version name.
4137
4138 * vc-mtn.el (vc-mtn-state): Support the added state.
4139
4140 2008-03-22 Carsten Dominik <dominik@science.uva.nl>
4141
4142 * org: New directory for Org-mode.
4143
4144 * org/org-export-latex.el: Moved from lisp/texmodes.
4145
4146 * org/org-irc.el: Moved from lisp/texmodes.
4147
4148 * org/org-mac-message.el: Moved from lisp/texmodes.
4149
4150 * org/org-mouse.el: Moved from lisp/texmodes.
4151
4152 * org/org-publish.el: Moved from lisp/texmodes.
4153
4154 2008-03-21 Juri Linkov <juri@jurta.org>
4155
4156 * comint.el (comint-dynamic-simple-complete):
4157 Use variable `stub' for the second arg `common-substring'
4158 of `comint-dynamic-list-completions'.
4159 (comint-dynamic-list-filename-completions):
4160 Use variable `filenondir' for the second arg `common-substring'
4161 of `comint-dynamic-list-completions'.
4162 (comint-dynamic-list-completions): Add new optional arg
4163 `common-substring'. Add `common-substring' as the second arg of
4164 the call to `display-completion-list'. Doc fix.
4165
4166 * comint.el (comint-dynamic-complete-as-filename)
4167 (comint-dynamic-list-filename-completions)
4168 (comint-dynamic-simple-complete): Use `minibuffer-message'
4169 to display message "No completions of %s" when a command
4170 is called in the minibuffer.
4171 (comint-dynamic-simple-complete): Don't display other
4172 completion messages when a command is called in the minibuffer.
4173 (comint-dynamic-list-completions): Use `minibuffer-message'
4174 to display message " [Type space to flush ...]" when a command
4175 is called in the minibuffer.
4176
4177 * shell.el (shell-dynamic-complete-command)
4178 (shell-dynamic-complete-environment-variable): Don't display
4179 completion messages when command is called in the minibuffer.
4180
4181 * emacs-lisp/lisp.el (lisp-complete-symbol):
4182 Use `minibuffer-message' to display message "No completions of %s"
4183 when this command is called in the minibuffer.
4184
4185 * bindings.el (standard-mode-line-modes): Put special help-echo
4186 tooltip on recursive edit %[ %] mode-line constructs.
4187
4188 * dabbrev.el (debug-ignored-errors): Remove $ from the end of
4189 "^No dynamic expansion for .* found$" to allow error messages like
4190 "No dynamic expansion for \"%s\" found in this-buffer".
4191
4192 2008-03-21 Michael Albinus <michael.albinus@gmx.de>
4193
4194 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
4195 "psftp".
4196
4197 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4198
4199 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
4200 * vc.el (vc-default-dired-state-info): Use just "modified".
4201 * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
4202 (vc-cvs-mode-line-string): Make use of the better default.
4203 (vc-cvs-parse-entry): Use the new `added'.
4204 (vc-cvs-dired-state-info): Remove.
4205 * vc-svn.el (vc-svn-dired-state-info): Remove.
4206 * vc-hg.el (vc-hg-dired-state-info): Remove.
4207 * vc-git.el (vc-git-dired-state-info): Remove.
4208
4209 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
4210
4211 * vc-git.el (vc-git-status-result): New variable.
4212 (vc-git-dir-status): Split out ...
4213 (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
4214 ... these new functions and work asynchronously.
4215
4216 2008-03-21 Alexandre Julliard <julliard@winehq.org>
4217
4218 * vc-git.el (vc-git-after-dir-status): Remove.
4219 (vc-git-dired-state-info): Reimplement.
4220
4221 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
4222
4223 * replace.el (occur-mode-map): Add :help.
4224
4225 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
4226 for disassemble.
4227
4228 * vc.el (vc-status-mark-buffer-changed): Better deal with files in
4229 the 'added state.
4230 (vc-status-remove-up-to-date): New function.
4231 (vc-status-mode-map, vc-status-menu-map): Bind it.
4232 (vc-status-printer): Use a different face up-to-date files.
4233 (vc-resynch-buffer): Update the vc-status buffer if it exists.
4234 (Todo): Remove solved entries.
4235
4236 * vc-hg.el (vc-hg-state):
4237 * vc-git.el (vc-git-state):
4238 * vc-cvs.el (vc-cvs-parse-status):
4239 * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
4240 state.
4241
4242 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
4243
4244 * progmodes/compile.el (compile):
4245 * progmodes/grep.el (grep, grep-find): Use read-shell-command.
4246
4247 * simple.el (minibuffer-local-shell-command-map): New var.
4248 (minibuffer-complete-shell-command, read-shell-command): New funs.
4249 (shell-command, shell-command-on-region): Use them.
4250
4251 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4252
4253 * vc.el (vc-status-mark-buffer-changed): New function to implement
4254 updating of the *vc-status* buffer when a buffer is saved.
4255 (vc-status-mode): Use it for after-change-hook.
4256 (vc-add-to-vc-status-buffer): Rename to ...
4257 (vc-status-add-entry): ... this.
4258 (Todo): Add new entry.
4259
4260 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
4261
4262 * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
4263
4264 2008-03-20 Juanma Barranquero <lekktu@gmail.com>
4265
4266 * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
4267 (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
4268 Remove spurious * from defcustom docstrings.
4269 (icomplete-compute-delay): Fix docstring and remove spurious *.
4270 (icomplete-delay-completions-threshold): Fix typo in docstring and
4271 remove spurious *.
4272 (icomplete-completions): While collecting the list of prospective
4273 candidates, don't overshoot `icomplete-prospects-length'.
4274
4275 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4276
4277 * textmodes/refbib.el:
4278 * textmodes/reftex.el:
4279 * textmodes/reftex-global.el:
4280 * textmodes/reftex-vars.el:
4281 * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
4282 compiler pacifying defvars.
4283 (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
4284 * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
4285 not needed.
4286
4287 2008-03-20 Wilson Snyder <wsnyder@wsnyder.org>
4288
4289 * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
4290 (verilog-stmt-menu, verilog-menu): Add :help and filter it.
4291 (verilog-customize, verilog-font-customize)
4292 (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
4293 (verilog-mode): Update documentation strings to match tool tips.
4294 (verilog-auto-search-do, verilog-auto-re-search-do)
4295 (verilog-skip-forward-comment-or-string): Fix verilog-auto
4296 expansion when a .* appears inside a string.
4297 (verilog-re-search-forward, verilog-re-search-backward):
4298 Add comment to recall how this works.
4299 (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
4300
4301 2008-03-20 Glenn Morris <rgm@gnu.org>
4302
4303 * calendar/calendar.el (calendar-other-dates): New function.
4304 (calendar-print-other-dates): Use calendar-other-dates.
4305 * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
4306 the declarations it replaces.
4307 (calendar-mouse-print-dates): Use calendar-other-dates.
4308
4309 * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
4310 (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
4311 (calendar-absolute-from-bahai): Fix the leap-year case.
4312 (calendar-bahai-from-absolute): Re-use the Gregorian month.
4313 (calendar-bahai-date-string, calendar-bahai-print-date):
4314 Handle pre-Bahai dates.
4315
4316 * calendar/cal-china.el (chinese-calendar-celestial-stem)
4317 (chinese-calendar-terrestrial-branch): Make defcustoms.
4318
4319 * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
4320 (calendar-mouse-view-diary-entries): Use or.
4321 (calendar-mouse-chinese-date): Remove unused command.
4322 (cal-menu-load-hook): Mark as obsolete.
4323
4324 * calendar/solar.el (calendar-location-name, calendar-latitude)
4325 (calendar-longitude, solar-arctan, sunrise-sunset)
4326 (solar-mean-equinoxes/solstices): Use the appropriate equality test.
4327
4328 2008-03-20 Jay Belanger <jay.p.belanger@gmail.com>
4329
4330 * calc/calc.el: Remove outdated comments.
4331 (defcalcmodevar, calc-mode-var-list-restore-default-values)
4332 (calc-mode-var-list-restore-saved-values, calc-autorange-units):
4333 Add docstrings.
4334
4335 2008-03-19 Jason Rumney <jasonr@gnu.org>
4336
4337 * w32-fns.el (x-alternatives-map): Add S-tab mapping.
4338
4339 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de>
4340
4341 * net/tls.el (open-tls-stream): Reindent.
4342
4343 2008-03-19 Michael Albinus <michael.albinus@gmx.de>
4344
4345 * net/tramp.el (tramp-let-maybe): Removed.
4346 (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
4347 It does not exist under XEmacs.
4348 (tramp-handle-file-truename, tramp-handle-expand-file-name)
4349 (tramp-completion-file-name-handler): Let-bind
4350 `directory-sep-char'.
4351
4352 * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
4353 `directory-sep-char'.
4354
4355 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
4356
4357 * help-fns.el (describe-function-1): Don't signal "missing arglist"
4358 for autoloaded keymaps.
4359
4360 * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
4361 (electric-verilog-terminate-line, verilog-in-struct-region-p)
4362 (verilog-backward-ws&directives, verilog-forward-ws&directives)
4363 (verilog-in-comment-p, verilog-in-star-comment-p)
4364 (verilog-in-slash-comment-p, verilog-skip-backward-comments)
4365 (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
4366 (verilog-skip-forward-comment-or-string, verilog-in-paren)
4367 (verilog-skip-forward-comment-p): Use it.
4368
4369 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
4370
4371 * textmodes/org.el (org-link-store, org-link-follow, org-latex)
4372 (org-remember-templates, org-time-stamp-rounding-minutes)
4373 (org-back-over-empty-lines, org-find-base-buffer-visiting)
4374 (org-columns-new): Fix typos in docstrings.
4375
4376 2008-03-19 Glenn Morris <rgm@gnu.org>
4377
4378 * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
4379 (tramp-handle-shell-command): Use condition-case rather than
4380 ignore-errors.
4381
4382 2008-03-19 Dan Nicolaescu <dann@ics.uci.edu>
4383
4384 * diff-mode.el (diff-header): Make the color louder.
4385 (diff-refine-change): Tone the color down.
4386
4387 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
4388
4389 * descr-text.el (describe-char): When `describe-char-unidata-list'
4390 is set to show all properties, list them in the right order.
4391
4392 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
4393
4394 * international/mule.el (load-with-code-conversion): Avoid setting
4395 default-enable-multibyte-characters.
4396
4397 2008-03-19 Gustav Hållberg <gustav@virtutech.com> (tiny change)
4398
4399 * vc.el (vc-annotate-background): Fix custom type.
4400
4401 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
4402
4403 * descr-text.el (describe-char-unidata-list): Allow specifying
4404 just all properties.
4405 (describe-char): Handle that new value.
4406
4407 * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
4408
4409 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
4410
4411 * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
4412 instead of file name extension to make docs with uncommon
4413 extensions work.
4414
4415 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
4416
4417 * doc-view.el (require): Require cl at compile time because
4418 `assert' needs it.
4419
4420 2008-03-18 Glenn Morris <rgm@gnu.org>
4421
4422 * calendar/calendar.el (initial-calendar-window-hook)
4423 (today-visible-calendar-hook): Doc fixes.
4424
4425 2008-03-17 Michael Albinus <michael.albinus@gmx.de>
4426
4427 * net/tramp.el (tramp-root-regexp): Simplify.
4428 (tramp-completion-file-name-regexp-separate): Don't insist on
4429 leading "[". This prevents method or user or host completion.
4430 (tramp-let-maybe): Autoload it.
4431 (tramp-drop-volume-letter): Don't autoload. When not on W32, it
4432 is an alias for `identity'.
4433 (tramp-handle-write-region): Protect `last-coding-system-used'
4434 over the trailing statements.
4435 (tramp-completion-file-name-handler-post-function): Remove.
4436 (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
4437 instead of calling `tramp-drop-volume-letter'.
4438
4439 * net/tramp.el:
4440 * net/tramp-uu.el:
4441 * net/trampver.el: Move coding cookie at the end.
4442
4443 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4444
4445 * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
4446 elements which may be something else than characters.
4447
4448 2008-03-17 Dan Nicolaescu <dann@ics.uci.edu>
4449
4450 * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
4451 New functions to implement vc-status support.
4452
4453 * vc.el (vc-default-extra-status-menu)
4454 (vc-add-to-vc-status-buffer): New functions.
4455
4456 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
4457 for eldoc and ielm.
4458
4459 2008-03-17 Glenn Morris <rgm@gnu.org>
4460
4461 * calendar/cal-x.el (diary-frame-parameters)
4462 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
4463 Fix custom type; add options.
4464 (calendar-frame, diary-frame): Doc fixes.
4465 (calendar-dedicate-diary, calendar-frame-1): Extract common code into
4466 new functions.
4467 (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
4468 Use calendar-frame-1 and calendar-dedicate-diary.
4469 (calendar-one-frame-setup): Also handle only-one-frame case.
4470 (calendar-only-one-frame-setup): Doc fix. Just call
4471 calendar-one-frame-setup.
4472
4473 * calendar/diary-lib.el: Re-order some definitions before their use.
4474 (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
4475 (diary-list-entries): Doc fixes.
4476 (make-fancy-diary-display): Remove function.
4477
4478 * calendar/calendar.el (calendar-today-marker)
4479 (initial-calendar-window-hook, today-visible-calendar-hook)
4480 (today-invisible-calendar-hook, diary-file, calendar-basic-setup):
4481 (calendar-star-date, calendar-mark-today): Doc fixes.
4482 (today-visible-calendar-hook): Add options.
4483 (calendar-in-read-only-buffer): New macro.
4484 (calendar-basic-setup): Adapt for change in calendar-read-date.
4485 Place holiday let inside if.
4486 (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
4487 (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
4488 (calendar-print-other-dates): Use one let rather than many.
4489
4490 * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
4491 (calendar-print-other-dates):
4492 * calendar/cal-hebrew.el (list-yahrzeit-dates):
4493 * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
4494 * calendar/holidays.el (calendar-list-holidays, list-holidays)
4495 (calendar-cursor-holidays):
4496 * calendar/lunar.el (calendar-phases-of-moon): Use
4497 calendar-in-read-only-buffer to replace previous code and disable undo.
4498
4499 2008-03-16 Juri Linkov <juri@jurta.org>
4500
4501 * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
4502 and regexp-search-ring-yank-pointer for the HISTPOS argument of
4503 read-from-minibuffer to provide the correct initial minibuffer
4504 history position in isearch-edit-string when it is called from
4505 isearch-ring-adjust.
4506
4507 * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
4508 to check if the current buffer is the minibuffer, and in this case
4509 call abort-recursive-edit to kill the minibuffer. Doc fix.
4510 (kill-this-buffer-enabled-p): Allow this function to return non-nil
4511 when the current buffer is the minibuffer.
4512
4513 * simple.el (goto-line): Leave mark at previous position. Doc fix.
4514
4515 2008-03-16 Tassilo Horn <tassilo@member.fsf.org>
4516
4517 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
4518 Use non-nil PARENTS attribute of make-directory instead of
4519 explicitly checking existence the current cache directory.
4520
4521 2008-03-16 Daiki Ueno <ueno@unixuser.org>
4522
4523 * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
4524 M-x epa-file-select-keys.
4525
4526 2008-03-16 Kenichi Handa <handa@m17n.org>
4527
4528 * international/mule.el (auto-coding-alist):
4529 Use no-conversion-multibyte for archive files.
4530
4531 2008-03-16 Glenn Morris <rgm@gnu.org>
4532
4533 * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
4534 New functions.
4535 * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
4536 (calendar-bahai-mark-date-pattern): Add optional argument `color'.
4537 Use calendar-mark-1.
4538 * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
4539 (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
4540 Use calendar-mark-complex.
4541 * calendar/cal-islam.el (calendar-mark-1): Autoload it.
4542 (mark-islamic-calendar-date-pattern): Add optional argument `color'.
4543 Use calendar-mark-1.
4544
4545 * calendar/calendar.el (calendar-mod): Remove.
4546 * calendar/cal-china.el (calendar-chinese-from-absolute)
4547 (calendar-chinese-date-string): Expand calendar-mod calls.
4548 * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
4549 Expand calendar-mod calls.
4550
4551 * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
4552 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
4553 (diary-bahai-insert-yearly-entry): Use let rather than let*.
4554 Move obsolete aliases after the functions that replaced them.
4555
4556 * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
4557 (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
4558 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
4559 Use let rather than let*.
4560 (calendar-hebrew-prompt-for-date): New function.
4561 (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
4562 (holiday-tisha-b-av-etc): Use unless, let.
4563
4564 * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
4565 (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
4566
4567 * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
4568
4569 * calendar/calendar.el (calendar-for-loop): Add indent spec.
4570
4571 * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
4572 (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
4573 than concat.
4574 (diary): Remove un-needed let.
4575 (view-other-diary-entries): Rename argument.
4576 (diary-list-entries-2): New function.
4577 (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
4578 (print-diary-entries): Use unless.
4579 (diary-mark-entries-1): Change argument order, make all but
4580 markfunc optional. Handle the standard (Gregorian) case.
4581 Use match-string-no-properties. Handle marks.
4582 (mark-diary-entries): Use diary-mark-entries-1.
4583 (diary-font-lock-keywords-1): New macro.
4584 (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
4585
4586 2008-03-16 Ulf Jasper <ulf.jasper@web.de>
4587
4588 * icalendar.el (icalendar-version): Increase to 0.18.
4589 (icalendar-export-hidden-diary-entries): New variable.
4590 (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
4591 In case of error, insert full error-val.
4592 (icalendar-first-weekday-of-year): Remove `offset' argument. Doc fix.
4593 Use calendar-day-of-week. Return the day number.
4594 (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
4595
4596 2008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov>
4597
4598 * icalendar.el (icalendar-recurring-start-year): New variable.
4599 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
4600 (icalendar-export-region): Ignore hidden diary entries.
4601 (icalendar--convert-ordinary-to-ical): Fix case where event
4602 spans across midnight boundary.
4603 (icalendar-first-weekday-of-year): New function.
4604 (icalendar--convert-weekly-to-ical): Allow user-selectable start
4605 year for recurring events (Mozilla calendars do not propagate
4606 recurring events forever, so year 2000 start date was not working).
4607 (icalendar--convert-yearly-to-ical): Remove extra spaces in
4608 formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
4609
4610 2008-03-15 Michael Albinus <michael.albinus@gmx.de>
4611
4612 * net/tramp.el (tramp-root-regexp): New defconst.
4613 (tramp-completion-file-name-regexp-unified)
4614 (tramp-completion-file-name-regexp-separate)
4615 (tramp-completion-file-name-regexp-url): Use it.
4616 (tramp-do-copy-or-rename-file-via-buffer):
4617 Set `enable-multibyte-characters' to nil. Set `jka-compr-inhibit' to
4618 t for `insert-file-contents-literally'.
4619 (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
4620 Autoload it.
4621 (tramp-completion-file-name-handler-post-function): New defconst.
4622 (tramp-completion-file-name-handler): Use it.
4623 (tramp-maybe-open-connection): Update calls to
4624 `tramp-flush-connection-property' for removed 2nd argument.
4625
4626 2008-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4627
4628 * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
4629 (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
4630 New functions.
4631
4632 2008-03-15 Glenn Morris <rgm@gnu.org>
4633
4634 * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
4635 New functions.
4636 * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
4637 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4638 (diary-list-entries-1, diary-mark-entries-1): Autoload.
4639 (diary-bahai-list-entries): Use diary-list-entries-1.
4640 (diary-bahai-mark-entries): Doc fix. Use diary-mark-entries-1.
4641 * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
4642 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4643 (diary-list-entries-1, diary-mark-entries-1): Autoload.
4644 (list-hebrew-diary-entries): Use diary-list-entries-1.
4645 (mark-hebrew-diary-entries): Doc fix. Use diary-mark-entries-1.
4646 * calendar/cal-islam.el (number, original-date, add-to-diary-list)
4647 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4648 (diary-list-entries-1, diary-mark-entries-1): Autoload.
4649 (list-islamic-diary-entries): Use diary-list-entries-1.
4650 (mark-islamic-diary-entries): Doc fix. Use diary-mark-entries-1.
4651
4652 * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
4653
4654 * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
4655
4656 * calendar/cal-china.el (number-chinese-months)
4657 (calendar-chinese-from-absolute): Use nth, caar.
4658
4659 * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
4660
4661 * calendar/cal-french.el (french-calendar-accents): Doc fix.
4662
4663 * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
4664 (calendar-hebrew-month-name-array-leap-year)
4665 (hebrew-calendar-parashiot-names): Make constants.
4666 (diary-parasha): Move definition after constants it uses.
4667
4668 * calendar/cal-html.el (cal-html-insert-link-yearpage)
4669 (cal-html-htmlify-list): Doc fix.
4670 (cal-html-htmlify-entry): Use nth.
4671
4672 * calendar/cal-islam.el (calendar-islamic-month-name-array)
4673 (calendar-islamic-epoch): Make constants.
4674 (calendar-islamic-epoch): Doc fix.
4675
4676 * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
4677
4678 * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
4679 (cal-tex-month-name): Doc fix.
4680 (cal-tex-last-blank-p): Use zerop.
4681
4682 * calendar/calendar.el (european-calendar-style, calendar-for-loop)
4683 (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
4684 (calendar-cursor-to-date): Doc fix.
4685 (hebrew-holidays-1, hebrew-holidays-4): Simplify.
4686 (extract-calendar-day, extract-calendar-year): Use cadr, nth.
4687 (calendar-day-number): Use when.
4688 (generate-calendar-month): Use dotimes.
4689 (exit-calendar, calendar-print-other-dates): Use let rather than let*.
4690 (calendar-set-mark): Reverse conditional.
4691 (calendar-make-alist): Move definition before use.
4692
4693 * calendar/diary-lib.el (diary-face-attrs)
4694 (diary-glob-file-regexp-prefix, diary-selective-display)
4695 (number-of-diary-entries, diary-list-entries, diary-goto-entry):
4696 (list-sexp-diary-entries, diary-date, diary-block, diary-float)
4697 (diary-anniversary, diary-cyclic)
4698 (diary-fancy-font-lock-fontify-region-function): Doc fixes.
4699 (diary-header-line-format): Change wording.
4700 (diary-list-entries): Set `date-start' in let.
4701 (include-other-diary-files, mark-included-diary-files): Use format.
4702 (simple-diary-display, fancy-diary-display): Use cadr, unless.
4703 (mark-diary-entries): Use 1+.
4704 (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
4705 (mark-calendar-month): Use dotimes.
4706
4707 * calendar/holidays.el (displayed-month, displayed-year):
4708 Move declarations where needed.
4709 (calendar-list-holidays): Doc fix.
4710
4711 * calendar/parse-time.el (parse-time-string): Simplify.
4712
4713 * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
4714 Make constants.
4715 (solar-sunrise-sunset): Rename some local variables for clarity.
4716 (sunrise-sunset): Use zerop.
4717 (solar-mean-equinoxes/solstices): Doc fix.
4718
4719 * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
4720 Use nth.
4721 (timeclock-completing-read, timeclock-generate-report): Use zerop.
4722 (timeclock-mean, timeclock-generate-report): Use dolist.
4723
4724 * calendar/todo-mode.el (todo-add-category): Simplify.
4725 (todo-more-important-p, todo-delete-item, todo-file-item):
4726 Use unless, when.
4727 (todo-top-priorities): Use zerop.
4728
4729 2008-03-14 Nick Roberts <nickrob@snap.net.nz>
4730
4731 * buff-menu.el (list-buffers-noselect): Display buffer name in
4732 tooltip instead of mouse binding when it doesn't fit in the list.
4733
4734 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
4735
4736 * faces.el (xw-defined-colors):
4737 * simple.el (widget-convert, shell-mode): Declare as functions
4738 instead of autoloading.
4739
4740 * abbrev.el:
4741 * button.el:
4742 * cus-face.el:
4743 * ediff-hook.el:
4744 * emacs-lisp/backquote.el:
4745 * emacs-lisp/timer.el:
4746 * facemenu.el:
4747 * faces.el:
4748 * menu-bar.el:
4749 * simple.el:
4750 * subr.el:
4751 * textmodes/fill.el:
4752 * textmodes/paragraphs.el: Remove autoloads, redundant when the
4753 files are preloaded.
4754
4755 2008-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
4756
4757 * desktop.el (desktop-create-buffer): Don't catch errors if
4758 debug-on-error is set.
4759
4760 2008-03-14 Eli Zaretskii <eliz@gnu.org>
4761
4762 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4763 ($(lisp)/calendar/diary-loaddefs.el)
4764 ($(lisp)/calendar/hol-loaddefs.el): New targets.
4765 (LOADDEFS): New macro.
4766 (autoloads): Depend on $(LOADDEFS).
4767
4768 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
4769
4770 * font-lock.el (featurep): Remove test, not useful anymore.
4771 (facemenu-keymap): Move key binding ...
4772 * facemenu.el (facemenu-keymap): ... here.
4773
4774 * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log
4775 for each file in the list.
4776 (vc-bzr-log-view-mode): Recognize the file marker.
4777
4778 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
4779 for checkdoc and profiling.
4780
4781 2008-03-14 Bastien Guerry <bzg@altern.org>
4782
4783 * textmodes/flyspell.el (nxml-mode): Add the right
4784 `flyspell-mode-predicate'.
4785
4786 * wid-edit.el (link): Use 'mouse-face for :follow-link.
4787
4788 2008-03-14 Glenn Morris <rgm@gnu.org>
4789
4790 * calendar/solar.el: Reorder so that functions are defined before use.
4791 (displayed-month, displayed-year): Move declarations where needed.
4792 (solar-get-number): Move definition before use. Use unless.
4793 (solar-equatorial-coordinates): Simplify.
4794 (solar-sunrise-and-sunset): Use let rather than let*.
4795 (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
4796
4797 * startup.el (command-line-1): Rename -internal-script back to
4798 -scriptload (reverts previous change).
4799
4800 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
4801 (calendar-bahai-leap-base): Add doc strings.
4802 (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
4803 Move definition before use.
4804 (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
4805 (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
4806 variables outside the loop. Use dolist.
4807 (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
4808
4809 * calendar/cal-china.el: Re-order so that functions are defined before
4810 use.
4811 (displayed-month, displayed-year): Move declarations where needed.
4812 (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
4813 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
4814 Add doc strings.
4815 (chinese-year-cache): Recenter on 2010. Doc fix.
4816 (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
4817 Doc fix. Simplify.
4818 (chinese-year-cache-init): New function.
4819 (compute-chinese-year, holiday-chinese-new-year)
4820 (calendar-chinese-date-string, calendar-goto-chinese-date)
4821 (make-chinese-month-assoc-list): Use cadr, nth.
4822 (chinese-months): Remove un-needed let.
4823
4824 * calendar/cal-coptic.el (coptic-calendar-month-name-array):
4825 (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
4826 (coptic-prompt-for-date): Move definition before use.
4827
4828 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
4829 (calendar-dst-find-data, calendar-daylight-time-offset)
4830 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
4831 (calendar-daylight-savings-starts-time)
4832 (calendar-daylight-savings-ends-time): Use cadr, nth.
4833
4834 * calendar/cal-french.el (french-calendar-epoch)
4835 (calendar-goto-french-date): Doc fix.
4836 (french-calendar-month-name-array)
4837 (french-calendar-multibyte-month-name-array)
4838 (french-calendar-day-name-array, french-calendar-special-days-array):
4839 Add doc strings.
4840
4841 * calendar/cal-hebrew.el (displayed-month, displayed-year)
4842 (original-date): Move declarations where needed.
4843 (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
4844 Doc fix.
4845 (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
4846 constant variables outside the loop. Use dolist.
4847
4848 * calendar/cal-islam.el (displayed-month, displayed-year)
4849 (original-date): Move declarations where needed.
4850 (islamic-calendar-day-number): Remove unused local variable `day'.
4851 (calendar-goto-islamic-date): Doc fix.
4852 (holiday-islamic): Use unless.
4853 (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
4854 constant variables outside the loop. Use dolist.
4855 (mark-islamic-calendar-date-pattern): Move definition before use.
4856 Use unless.
4857 (mark-islamic-diary-entries): Doc fix.
4858 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
4859 (insert-yearly-islamic-diary-entry): Use let rather than let*.
4860
4861 * calendar/cal-julian.el (calendar-absolute-from-julian):
4862 Move definition before use. Remove un-needed local `day'.
4863 (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
4864
4865 * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
4866 (calendar-mayan-tzolkin-names-array): Add doc strings.
4867 (calendar-mayan-long-count-from-absolute): Use a single let.
4868 (calendar-string-to-mayan-long-count): Simplify.
4869 (calendar-next-haab-date, calendar-previous-haab-date)
4870 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
4871 (calendar-previous-calendar-round-date)
4872 (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
4873 Doc fix.
4874 (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
4875 (calendar-mayan-date-string, calendar-print-mayan-date)
4876 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
4877 (calendar-mayan-long-count-common-era): Move definitions before use.
4878
4879 * calendar/cal-menu.el (displayed-year): Move declaration where needed.
4880 (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
4881 Doc fix.
4882 (calendar-mouse-goto-date): Move definition before use.
4883
4884 * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
4885 Move definition before use.
4886 (calendar-cursor-to-visible-date): Move definition before use.
4887 (calendar-scroll-left): Use unless and zerop. Combine lets into one,
4888 and place inside the conditional.
4889 (calendar-forward-day): Simplify.
4890 (calendar-end-of-month): Use unless.
4891 (calendar-goto-day-of-year): Doc fix.
4892 Relocate obsolete aliases after their replacements.
4893
4894 * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
4895
4896 * calendar/diary-lib.el (mark-diary-entries): Move some constant
4897 variables outside the diary-date-forms loop.
4898
4899 * calendar/calendar.el (diary-file): Doc fix.
4900 (calendar-buffer-list): Return buffers rather than strings (fixes
4901 previous change).
4902 (hebrew-holidays-4): Fix typo.
4903
4904 * calendar/holidays.el (displayed-month, displayed-year):
4905 Move declarations where needed.
4906 (calendar-holiday-list, calendar-list-holidays)
4907 (holiday-filter-visible-calendar): Move definitions before use.
4908 (list-holidays): Use cadr.
4909 Relocate obsolete aliases after their replacements.
4910
4911 * calendar/lunar.el (date, displayed-month, displayed-year):
4912 Move declarations where needed.
4913 (lunar-phase-list): Move definition after functions it uses.
4914 (calendar-phases-of-moon, diary-phases-of-moon)
4915 (lunar-new-moon-on-or-after): Use cadr, nth.
4916 (lunar-new-moon-on-or-after): Doc fix.
4917
4918 * textmodes/org-irc.el (top-level): CL not required when compiling.
4919 (org-irc-visit-erc): Replace runtime CL functions.
4920
4921 * textmodes/org-publish.el (declare-function): Add compatibility stub.
4922 (org-publish-delete-dups): Declare as function.
4923
4924 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
4925
4926 * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
4927 (vc-bzr-show-log-entry): Make regexp match more cases.
4928 (vc-diff-switches-list): Remove autoload, not needed.
4929
4930 2008-03-14 Juri Linkov <juri@jurta.org>
4931
4932 * isearch.el (isearch-edit-string): Remove one call to
4933 `isearch-push-state' not to push an inconsistent state,
4934 but keep another correct call to `isearch-push-state'.
4935 (isearch-ring-adjust): Call `isearch-push-state' only when
4936 `search-ring-update' is non-nil since `isearch-edit-string'
4937 already pushes its state.
4938 (isearch-message): Improve matching the failed part by checking
4939 if the original message starts with the last successful message.
4940
4941 * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
4942 (dired-perm-write): Rename from `dired-warn-writable'.
4943 Change parent face from `font-lock-warning-face' to
4944 `font-lock-comment-delimiter-face'.
4945 (dired-warn-writable-face): Rename to `dired-perm-write-face'.
4946 (dired-perm-write-face): Rename from `dired-warn-writable-face'.
4947 (dired-font-lock-keywords): Replace `dired-warn-writable-face'
4948 with `dired-perm-write-face'.
4949
4950 2008-03-13 Tassilo Horn <tassilo@member.fsf.org>
4951
4952 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
4953 Create cache dir only if it doesn't already exist.
4954
4955 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
4956
4957 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
4958 of \ and '.
4959
4960 2008-03-13 Johan Bockgård <bojohan@gnu.org>
4961
4962 * net/browse-url.el (browse-url-text-xterm):
4963 Unquote browse-url-text-browser.
4964
4965 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
4966
4967 * textmodes/org-mouse.el: Version number change.
4968
4969 * textmodes/org-publish.el (org-publish-expand-components):
4970 Remove null projects from the list of components.
4971 (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
4972 Remove unused retrieval of the :publishing-directory property.
4973 (org-publish-file): Bugfix: when using a relative directory as the
4974 publishing directory, convert it to a directory filename.
4975 (org-publish-project): New alias.
4976 (org-publish-get-files): Protect against empty p.
4977 (org-publish-file): Send an error when file is not part of any project.
4978 (org-publish-file): Offer to refresh the list of files in known
4979 project when the current file is not part of any project.
4980 (org-publish-before-export-hook)
4981 (org-publish-after-export-hook): New hooks.
4982 (org-publish-org-to): Use new hooks and kill buffers.
4983 (org-publish-file): Remove the code for killing buffers.
4984 (org-publish-initialize-files-alist): Use interactive.
4985 (org-publish-file): If the publishing function creates a new
4986 buffer, kill it after publishing.
4987 (org-publish-timestamp-filename): Protect ":" in file name path
4988 under windows.
4989
4990 * textmodes/org-export-latex.el (org-export-as-latex): Revert the
4991 change that killed the LaTeX buffer.
4992
4993 * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
4994 in the decision tree.
4995 (org-select-remember-template): Clean the code.
4996 (org-prepare-dblock): Add the extra :content parameter.
4997 (org-write-agenda): New output type ".ics" files.
4998 (org-write-agenda): Call `org-icalendar-verify-function', both for
4999 time stamps and for TODO entries.
5000 (org-agenda-collect-markers, org-create-marker-find-array)
5001 (org-check-agenda-marker-table): New functions.
5002 (org-agenda-marker-table): New variable.
5003 (org-export-as-html): Revert the change that killed the html
5004 buffer. Side effects first need to be studied carefully.
5005 (org-get-tags-at): Fix the structure of the condition-case statement.
5006 (org-ts-regexp0, org-repeat-re, org-display-custom-time)
5007 (org-timestamp-change): Fix regulear expressions to swallow the
5008 extra character for repeat-shift control.
5009 (org-auto-repeat-maybe): Implement the new repeater mechanisms.
5010 (org-get-legal-level): Alias to `org-get-valid-level'.
5011 (org-dblock-write:clocktable): Add a :link parameter, linking
5012 headlines to their location in the Org agenda files.
5013 (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
5014 throwing an error when getting tags before headlines.
5015 (org-timestamp-change, org-modify-ts-extra)
5016 (org-ts-regexp1): Fix timestamp editing.
5017 (org-agenda-custom-commands-local-options): New constant.
5018 (org-agenda-custom-commands):
5019 Use `org-agenda-custom-commands-local-options' to improve customize
5020 type. "htmlize": Removed hack to fix face problem with htmlize,
5021 it no longer seem necessary.
5022 (org-follow-link-hook): New hook.
5023 (org-agenda-custom-commands): Add "Component" as a tag for each
5024 item in a command serie.
5025 (org-open-at-point): Run `org-follow-link-hook'.
5026 (org-agenda-schedule): Bugfix: don't display marker type when it
5027 is nil.
5028 (org-store-link): org-irc required.
5029 (org-set-regexps-and-options): Parse the new logging options.
5030 (org-extract-log-state-settings): New function.
5031 (org-todo): Handle the new ways of recording state change stuff.
5032 (org-local-logging): New function.
5033 (org-columns-open-link): Fix bug with opening link in column view.
5034 (org-local-logging): New function
5035 (org-todo): Make sure that LOGGING properties are honoured.
5036 (org-todo-keywords): Improve docstring.
5037 (org-startup-options): Cleanup startup options.
5038 (org-set-regexps-and-options): Process the "!" markers.
5039 (org-todo): Respect the new logging stuff.
5040 (org-log-note-how): New variable.
5041 (org-add-log-maybe): New parameter HOW that defines how logging
5042 should be done and also overrides PURPOSE. Add a docstring.
5043 (org-add-log-note): Check if we really need to ask for a note.
5044 (org-get-current-options): Digest the new keyword.
5045 (org-agenda-reset-markers): Rename from
5046 `org-agenda-maybe-reset-markers'. Remove FORCE argument.
5047 (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
5048 function, without force argument.
5049 (org-buffer-property-keys): Bind local variables s and p.
5050 (org-make-tags-matcher): Allow "" to match an empty or
5051 non-existent property value.
5052 (org-export-as-html): Join unsorted lists when they directly
5053 follow each other. Such lists may be created by headlines that
5054 are converted to lists.
5055 (org-nofm-to-completion): New function.
5056 (org-export-as-html): Use :html-extension instead of
5057 org-export-html-extension.
5058 (org-store-link): Support for links from `rmail-summary-mode'.
5059 (org-columns-new, org-complete, org-set-property): Set the
5060 `include-columns' argument in the call to
5061 `org-buffer-property-keys'.
5062 (org-buffer-property-keys): New argument `include-columns', to
5063 include properties expected by any of the COLUMS formats in the
5064 current buffer.
5065 (org-cleaned-string-for-export): Get rid of drawers first, so that
5066 they will be removed also in the text before the first headline.
5067 (org-clock-report): Show the clocktable when found.
5068 (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
5069 (org-version): With prefix argument, insert `org-version' at point.
5070 (org-agenda-goto): Recenter the window after finding the target
5071 location, to make sure the correct position will be displayed.
5072 (org-agenda-get-deadlines): Don't scale priority with the warning
5073 period.
5074 (org-insert-heading): Don't break line in the middle of the line.
5075 (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
5076 be 0.
5077 (org-update-checkbox-count): Revamp to deal with hierarchical
5078 beckboxes. This was a patch from Miguel A. Figueroa-Villanueva.
5079 (org-remove-timestamp-with-keyword): New function.
5080 (org-schedule, org-deadline):
5081 Use `org-remove-timestamp-with-keyword' to make sure all such time
5082 stamps are removed.
5083 (org-mode): Support for `align'.
5084 (org-agenda-get-deadlines): Make sure priorities increase as the
5085 due date approaches and is passed.
5086 (org-remember-apply-template): Fix problem with tags that
5087 contain "_" or "@".
5088 (org-make-link-regexps): Improve the regular expression for plain links.
5089 (org-agenda-get-closed): List each clocking entry.
5090 (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
5091 (org-special-ctrl-k): New option.
5092 (org-kill-line): New function.
5093 (org-archive-all-done): Fix incorrect number of stars in regexp.
5094 (org-refile-get-location): New function.
5095 (org-refile-goto-last-stored): New function.
5096 (org-global-tags-completion-table): Add the value of org-tag-alist
5097 in each buffer, to make sure that also unused tags will be
5098 available for completion.
5099 (org-columns-edit-value)
5100 (org-columns-next-allowed-value): Only update if not in agenda.
5101 (org-clocktable-steps): New function.
5102 (org-dblock-write:clocktable): Call `org-clocktable-steps'.
5103 (org-archive-subtree): Add the outline tree context as a property.
5104 (org-closest-date): New optional argument `prefer'.
5105 (org-goto-auto-isearch): New option.
5106 (org-goto-map, org-get-location): Implement auto-isearch.
5107 (org-goto-local-auto-isearch-map): New variable.
5108 (org-goto-local-search-forward-headings)
5109 (org-goto-local-auto-isearch): New functions.
5110
5111 2008-03-13 Philip Jackson <emacs@shellarchive.co.uk>
5112
5113 * textmodes/org-irc.el: New file.
5114
5115 2008-03-13 John Wiegley <johnw@gnu.org>
5116
5117 * textmodes/org-mac-message.el: New file.
5118
5119 2008-03-13 Dan Nicolaescu <dann@ics.uci.edu>
5120
5121 * font-lock.el (font-lock-comment-face): Set the foreground for
5122 the light background 8 colors case.
5123
5124 2008-03-13 Glenn Morris <rgm@gnu.org>
5125
5126 * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
5127 generate-autoload-cookie patterns.
5128
5129 * startup.el (command-line-1): Rename -scriptload to -internal-script.
5130
5131 * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
5132 (MH_E_SRC): Remove variable.
5133 ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
5134 Simplify file header. Use $@ for generated-autoload-file.
5135
5136 * Makefile.in (LOADDEFS): New variable.
5137 (AUTOGENEL): Use $LOADDEFS.
5138 (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
5139 ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el):
5140 ($(lisp)/calendar/hol-loaddefs.el): New targets.
5141 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5142 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
5143 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5144 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5145 * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
5146 * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
5147 Add calendar-specific autoload cookies, and remove any setting of
5148 generated-autoload-file.
5149 * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
5150 * calendar/diary-lib.el: Replace explicit autoloads with reading of
5151 diary-loaddefs.
5152 * calendar/holidays.el: Replace explicit autoloads with reading of
5153 hol-loaddefs.
5154
5155 * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
5156 (calendar-buffer-list): Simplify.
5157 (generate-calendar-window): Use calendar-mark-holidays rather than
5158 obsolete alias.
5159
5160 * calendar/cal-hebrew.el (list-yahrzeit-dates):
5161 Use cal-hebrew-yahrzeit-buffer.
5162
5163 * calendar/cal-x.el (calendar-only-one-frame-setup)
5164 (calendar-two-frame-setup): Doc fixes.
5165 (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
5166
5167 * calendar/appt.el (appt-mode-string): Mark as risky.
5168 (appt-check): Apply mode-line-emphasis face to appt-mode-string.
5169
5170 * calendar/cal-html.el (diary-list-entries):
5171 * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
5172 (calendar-iso-from-absolute): Fix autoloads.
5173
5174 * calendar/cal-iso.el (calendar-absolute-from-iso)
5175 (calendar-iso-read-args): Simplify.
5176 (calendar-iso-date-string, calendar-iso-read-args)
5177 (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
5178
5179 * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
5180 (displayed-month, displayed-year): Move declarations where needed.
5181 (calendar-print-astro-day-number): Doc fix.
5182
5183 * calendar/cal-persia.el (persian-calendar-month-name-array)
5184 (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
5185 (persian-prompt-for-date): Remove local variable `today'.
5186
5187 * calendar/diary-lib.el (mark-calendar-month): Use zerop.
5188
5189 * calendar/solar.el (solar-moment, solar-exact-local-noon)
5190 (solar-sunrise-sunset, solar-sunrise-sunset-string)
5191 (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time):
5192 (diary-sabbath-candles, solar-equinoxes/solstices)
5193 (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
5194 (solar-time-equation, solar-date-to-et): Simplify.
5195
5196 * mail/supercite.el: Remove the `function' in `(function (lambda'.
5197 Replace `(car (cdr' with cadr'.
5198
5199 * progmodes/f90.el (f90-font-lock-n): New function.
5200 (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
5201 Use f90-font-lock-n.
5202 (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
5203
5204 * progmodes/f90.el (f90-mode-abbrev-table):
5205 * progmodes/fortran.el (fortran-mode-abbrev-table):
5206 Use newer form of define-abbrev, where supported. No need to bind
5207 abbrevs-changed for system abbrevs.
5208
5209 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5210
5211 * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
5212 delete-frame-functions.
5213
5214 * bookmark.el (Info-current-node): Remove.
5215
5216 2008-03-12 Juri Linkov <juri@jurta.org>
5217
5218 * help.el (describe-project): Remove defaliases for view-todo and
5219 describe-project that are now unnecessary after the merge from
5220 emacs--rel--22 that added define-obsolete-function-alias.
5221
5222 * startup.el (inhibit-startup-screen): Revert incomplete
5223 2008-03-10 merge from emacs--rel--22 that partly reverted
5224 2008-02-28 change that added initial message to *scratch* buffer
5225 regardless of the value of `inhibit-startup-screen'.
5226 Now keep this change in the trunk, but not in the 22 branch.
5227
5228 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5229
5230 * international/quail.el (quail-setup-completion-buf, quail-help):
5231 * mail/binhex.el (binhex-decode-region-internal):
5232 * mail/uudecode.el (uudecode-decode-region-internal):
5233 * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
5234 * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
5235 setting default-enable-multibyte-characters.
5236
5237 * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
5238
5239 * comint.el: Fix up indentation and comment style. Remove `function'.
5240
5241 * international/mule-cmds.el (reset-language-environment)
5242 (set-language-environment-nonascii-translation):
5243 Don't set-unibyte-charset.
5244
5245 * doc-view.el: Remove all cb-args, use closures instead.
5246 (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
5247 doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
5248 doing an incorrect check). Update all callers to use the new name.
5249 (doc-view-doc->txt): Add missing `txt' argument.
5250
5251 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
5252
5253 * doc-view.el (doc-view-current-cache-dir): Set buffer used for
5254 md5 sum calculation to single-byte.
5255
5256 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5257
5258 * doc-view.el (doc-view-new-window-function): Add assertion.
5259 (doc-view-doc-type): New var.
5260 (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
5261 (doc-view-intersection): New fun.
5262 (doc-view-mode): Use it to set the new var.
5263
5264 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
5265
5266 * doc-view.el (doc-view-doc->txt, doc-view-open-text)
5267 (doc-view-already-converted-p): New functions.
5268 (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
5269 (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
5270 (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
5271 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
5272 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
5273 (doc-view-convert-current-doc): Don't hardwire the functions the
5274 sentinels call. Now they're provided by two args CALLBACK and
5275 CB-ARGS to the functions.
5276 (doc-view-search): Use doc-view-doc->txt.
5277 (doc-view-initiate-display): Use doc-view-already-converted-p.
5278 Mention new binding C-c C-t if doc-view-mode doesn't work.
5279
5280 2008-03-12 Dan Nicolaescu <dann@ics.uci.edu>
5281
5282 * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
5283
5284 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5285
5286 * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
5287 Mark " outside of tags as punctuation.
5288
5289 2008-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
5290
5291 * menu-bar.el (minibuffer-local-map): Use the same command for the
5292 "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
5293 Prefer RET over C-j for exit-minibuffer.
5294
5295 * files.el (display-buffer-other-frame): Eliminate problematic code.
5296
5297 * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
5298 (menu-bar-select-buffer): Remove.
5299 (menu-bar-select-frame): Make non-interactive and take a frame arg.
5300 (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
5301
5302 2008-03-11 Juanma Barranquero <lekktu@gmail.com>
5303
5304 * icomplete.el (icomplete-completions): Remove obsolete code.
5305
5306 * net/net-utils.el (iwconfig-program-options): Doc fix.
5307 (net-utils-run-program, run-network-program): Define as functions.
5308
5309 2008-03-11 Dan Nicolaescu <dann@ics.uci.edu>
5310
5311 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
5312
5313 2008-03-11 Glenn Morris <rgm@gnu.org>
5314
5315 * faces.el (mode-line-emphasis): New face.
5316 * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
5317
5318 * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
5319
5320 2008-03-11 Chong Yidong <cyd@stupidchicken.com>
5321
5322 * simple.el (set-mark-command): Doc fix.
5323
5324 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5325
5326 * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
5327
5328 * emacs-lisp/autoload.el (autoload-find-destination):
5329 Don't force raw-text.
5330
5331 * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
5332 * calendar/cal-loaddefs.el: Don't version control.
5333
5334 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
5335
5336 * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
5337 entries and add :help to the existing ones.
5338
5339 2008-03-10 Glenn Morris <rgm@gnu.org>
5340
5341 * calendar/cal-hebrew.el (date, entry, number): Move declarations
5342 to where they are needed.
5343
5344 * calendar/calendar.el (diary-file, hebrew-holidays-1)
5345 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
5346 (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
5347 (calendar-version): Doc fixes.
5348 (calendar-absolute-from-gregorian): Use zerop.
5349 (calendar-mode-line-format): Make it a defcustom.
5350
5351 * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
5352 (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
5353 (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
5354 (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
5355 (mark-included-diary-files, mark-calendar-days-named)
5356 (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
5357 (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
5358 (insert-monthly-diary-entry, insert-yearly-diary-entry)
5359 (insert-anniversary-diary-entry, insert-block-diary-entry)
5360 (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
5361 (diary-font-lock-sexps): Doc fixes.
5362 (diary-remind-message, mark-calendar-month): Use zerop.
5363 (diary-attrtype-convert, diary-pull-attrs): Simplify.
5364 (diary-list-entries): Revert let to let* (previous change).
5365
5366 * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
5367
5368 2008-03-10 Kim F. Storm <storm@cua.dk>
5369
5370 * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
5371 function aliases for the old names.
5372
5373 2008-03-10 Juanma Barranquero <lekktu@gmail.com>
5374
5375 * iswitchb.el (iswitchb-use-faces): Doc fix.
5376 (iswitchb-buffer-ignore, iswitchb-read-buffer):
5377 Fix typos in docstrings.
5378
5379 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
5380
5381 * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
5382 Fix typo.
5383 (verilog-type-font-keywords): Reindent.
5384
5385 2008-03-10 Michael McNamara <mac@mail.brushroad.com>
5386
5387 * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
5388 grouping-keyword regular expression.
5389 (verilog-font-lock-keywords): Allow users to toggle special
5390 highlight of grouping-keywords.
5391 (verilog-highlight-grouping-keywords): The toggle for special
5392 highlighting of grouping keywords.
5393
5394 2008-03-10 Juri Linkov <juri@jurta.org>
5395
5396 * startup.el: Revert 2008-02-28 change that adds initial message
5397 to *scratch* buffer regardless of the value of
5398 `inhibit-startup-screen'.
5399
5400 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
5401
5402 * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
5403 * textmodes/bibtex-style.el (bibtex-style-indent-basic):
5404 * progmodes/verilog-mode.el (verilog-mode):
5405 * net/socks.el (socks):
5406 * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
5407
5408 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5409
5410 * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
5411 (doc-view-bookmark-make-record): Use them.
5412 (doc-view-bookmark-jump): Use them. Fix find-file ->find-file-noselect.
5413 (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
5414
5415 * bookmark.el (bookmark-make-record-function): Change expected return
5416 value to include a suggested bookmark name.
5417 (bookmark-make): Split into bookmark-make-record and bookmark-store.
5418 Fix reversed `overwrite' semantics.
5419 (bookmark-set): Call bookmark-make-record before prompting the user.
5420 Then pass the result to bookmark-store later on.
5421 (bookmark-make-name-function): Remove.
5422 (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
5423 * info.el (bookmark-make-name-function): Remove.
5424 (Info-mode): Don't set it.
5425 (Info-bookmark-make-name): Remove.
5426 (Info-bookmark-make-record): Use Info-current-node as suggested default
5427 bookmark name.
5428
5429 * bookmark.el (bookmark-set): Make bookmark before reading annotations.
5430 I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
5431 (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
5432 (bookmark-annotation-buffer, bookmark-annotation-file)
5433 (bookmark-annotation-point, bookmark-send-annotation)
5434 (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
5435 (bookmark-edit-annotation-text-func): Rename from
5436 bookmark-read-annotation-text-func. Keep old name as an obsolete alias.
5437 (bookmark-edit-annotation-mode-map): Move initialization into
5438 declaration.
5439
5440 * bookmark.el: Remove spurious * in docstrings.
5441 (bookmark-minibuffer-read-name-map): New var.
5442 (bookmark-set): Use it. Also pass the default value as it should.
5443 (bookmark-send-edited-annotation): Take no chances with text properties.
5444 (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
5445 (bookmark-insert-buffer-name): Remove.
5446 (bookmark-buffer-file-name): Signal an error rather than returning nil.
5447
5448 2008-03-09 Thomas Hühn <xf27@arcor.de> (tiny change)
5449
5450 * tutorial.el (tutorial--default-keys): Update `C-l' binding.
5451
5452 2008-03-09 Dan Nicolaescu <dann@ics.uci.edu>
5453
5454 * diff-mode.el (diff-mode-menu): Add :help.
5455
5456 2008-03-09 Glenn Morris <rgm@gnu.org>
5457
5458 * calendar/calendar.el (general-holidays, oriental-holidays)
5459 (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
5460 (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
5461 (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
5462 (calendar-holidays): Restore autoload cookies, because people are
5463 used to using these variables without loading calendar.el.
5464
5465 * calendar/cal-islam.el (diary-islamic-date): Move to end.
5466 (date, number): Declare where needed.
5467
5468 * calendar/diary-lib.el (nongregorian-diary-marking-hook)
5469 (list-sexp-diary-entries): Doc fixes.
5470 (diary-list-entries): Doc fix. Remove free variable `entry'.
5471 (fancy-diary-display): Use dolist, bobp. Remove free variable `entry'.
5472 Simplify setting of `date-holiday-list'.
5473 (mark-diary-entries): Remove free variable `entry'.
5474 (diary-list-entries, include-other-diary-files, fancy-diary-display):
5475 Use let where let* is not needed.
5476
5477 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5478
5479 * bookmark.el (bookmark-make): Don't pass the `annotation' to the
5480 make-record function, instead paste it in afterwards.
5481 (bookmark-make-record-for-text-file):
5482 * doc-view.el (doc-view-bookmark-make-record):
5483 * info.el (Info-bookmark-make-record): Don't mess with annotations.
5484
5485 2008-03-08 Glenn Morris <rgm@gnu.org>
5486
5487 * calendar/diary-lib.el (entry): Declare for compiler part-way through.
5488
5489 2008-03-08 Stefan Monnier <monnier@iro.umontreal.ca>
5490
5491 * calendar/diary-lib.el (diary-list-entries)
5492 (include-other-diary-files, mark-diary-entries)
5493 (mark-sexp-diary-entries, mark-included-diary-files)
5494 (diary-entry-time, list-sexp-diary-entries): Remove the special
5495 handling of ^M that dates back to the use of selective-display.
5496 (simple-diary-display): Obey setting of pop-up-frames.
5497 (body, entry): Remove unnecessary declarations.
5498
5499 * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
5500 (bookmark-get-annotation, bookmark-set-annotation)
5501 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
5502 (bookmark-set-position, bookmark-get-front-context-string)
5503 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
5504 (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
5505 * info.el (Info-bookmark-make-record): Don't bother recording point.
5506 (bookmark-get-filename, bookmark-get-front-context-string)
5507 (bookmark-get-rear-context-string, bookmark-get-position):
5508 Don't declare any more.
5509 (bookmark-get-info-node): Remove.
5510 (bookmark-prop-get): Declare.
5511 (Info-bookmark-jump): Use it.
5512
5513 2008-03-08 Johan Bockgård <bojohan@gnu.org>
5514
5515 * subr.el (while-no-input): Don't splice BODY directly into the
5516 `or' form.
5517
5518 2008-03-08 Dan Nicolaescu <dann@ics.uci.edu>
5519
5520 * diff-mode.el (diff-ignore-whitespace-hunk):
5521 Bind inhibit-read-only before trying to change the buffer.
5522
5523 2008-03-08 Glenn Morris <rgm@gnu.org>
5524
5525 * calendar/appt.el (appt): Move custom group here from calendar.el.
5526 (appt-disp-window, appt-convert-time): Doc fixes.
5527
5528 * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
5529 (calendar-bahai-mark-date-pattern):
5530 * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
5531 * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
5532 * calendar/cal-julian.el (calendar-absolute-from-julian):
5533 * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
5534
5535 * calendar/cal-china.el (chinese-calendar): Move custom group here from
5536 calendar.el.
5537 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
5538 Make constants.
5539 (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
5540 (chinese-calendar-daylight-savings-starts)
5541 (chinese-calendar-daylight-savings-ends)
5542 (chinese-calendar-daylight-savings-starts-time)
5543 (chinese-calendar-daylight-savings-ends-time)
5544 (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
5545 Doc fixes.
5546
5547 * calendar/cal-coptic.el (coptic-name): Add doc string.
5548
5549 * calendar/cal-french.el (french-calendar-month-name-array)
5550 (french-calendar-day-name-array, french-calendar-special-days-array):
5551 Add doc strings.
5552
5553 * calendar/cal-bahai.el (diary-bahai-mark-entries)
5554 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
5555 (diary-bahai-insert-yearly-entry):
5556 * calendar/cal-dst.el (calendar-next-time-zone-transition)
5557 (calendar-time-zone):
5558 * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
5559 (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
5560 (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
5561 (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
5562 (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
5563 * calendar/cal-islam.el (islamic-calendar-leap-year-p)
5564 (list-islamic-diary-entries, mark-islamic-diary-entries)
5565 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
5566 (insert-yearly-islamic-diary-entry):
5567 * calendar/cal-iso.el (calendar-iso-read-args):
5568 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
5569 (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
5570 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
5571 (calendar-next-calendar-round-date)
5572 (calendar-mayan-long-count-common-era):
5573 * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
5574 (cal-menu-x-popup-menu, calendar-mouse-holidays)
5575 (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
5576 (calendar-mouse-goto-date):
5577 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
5578 * calendar/holidays.el (holidays):
5579 * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
5580 * calendar/time-date.el (date-to-time, time-subtract, time-add)
5581 (safe-date-to-time): Doc fixes.
5582
5583 * calendar/cal-persia.el (persian-calendar-month-name-array)
5584 (persian-calendar-epoch): Make constants.
5585
5586 * calendar/cal-tex.el (calendar-tex): Move custom group here from
5587 calendar.el.
5588
5589 * calendar/cal-x.el (diary-frame-parameters)
5590 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
5591 (calendar-after-frame-setup-hooks): Make defcustoms.
5592 (calendar-one-frame-setup, calendar-only-one-frame-setup)
5593 (calendar-two-frame-setup): Doc fix.
5594
5595 * calendar/cal-loaddefs.el: New file.
5596
5597 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5598 * calendar/cal-french.el, calendar/cal-html.el:
5599 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5600 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5601 * calendar/cal-tex.el, calendar/cal-x.el:
5602 Unquote lambda functions. Add autoload cookies to functions formerly
5603 autoloaded in calendar.el. Set `generated-autoload-file' to
5604 "cal-loaddefs.el".
5605
5606 * calendar/calendar.el: Move many autoloads to separate file,
5607 cal-loaddefs.el. Move defcustoms to start and re-order.
5608 (calendar-month-name-array, calendar-starred-day): No need to
5609 declare for compiler.
5610 (cal-loaddefs): Require it.
5611 (appt, chinese-calendar, calendar-tex): Move custom groups to the
5612 appropriate file.
5613 (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
5614 Reverse logic.
5615 (diary-face, diary-file-name-prefix-function, diary-include-string)
5616 (diary-glob-file-regexp-prefix, diary-face-attrs)
5617 (diary-file-name-prefix, sexp-diary-entry-symbol)
5618 (print-diary-entries-hook, list-diary-entries-hook)
5619 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
5620 (nongregorian-diary-marking-hook, diary-list-include-blanks):
5621 Move to diary-lib.
5622 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
5623 (all-bahai-calendar-holidays): Doc fix.
5624 (calendar-insert-indented): Doc fix. Use when rather than if.
5625 (exit-calendar): Use mapc rather than mapcar.
5626 (calendar-cursor-to-date): Use zerop.
5627 (calendar-mark-ring): Add doc-string.
5628 (calendar-starred-day): Defvar it.
5629 (calendar-mode): Make calendar-starred-day local.
5630 (calendar-star-date): No need to make calendar-starred-day local.
5631
5632 * calendar/diary-lib.el: Move defcustoms to start.
5633 (diary-include-string, diary-list-include-blanks)
5634 (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
5635 (diary-file-name-prefix, diary-file-name-prefix-function)
5636 (sexp-diary-entry-symbol, list-diary-entries-hook)
5637 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
5638 (nongregorian-diary-marking-hook, print-diary-entries-hook):
5639 Move here from calendar.el.
5640 (diary-file-name-prefix-function): Use 'identity.
5641 (diary-face): Make it a defcustom, and mark as obsolete.
5642 (top-level): No need to require cal-hebrew, cal-islam when compiling.
5643 (calendar-hebrew-month-name-array-leap-year)
5644 (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
5645 Define for compiler.
5646 (diary-font-lock-keywords): Use format rather than concat.
5647 Add bahai-diary-entry-symbol.
5648
5649 * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
5650 * calendar/solar.el: Unquote lambda functions.
5651
5652 * calendar/solar.el (calendar-location-name, calendar-latitude)
5653 (calendar-longitude, solar-setup, solar-sin-degrees)
5654 (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
5655 (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
5656 (solar-sunrise-and-sunset, solar-moment, solar-daylight)
5657 (solar-exact-local-noon, solar-julian-ut-centuries)
5658 (solar-ephemeris-time, solar-date-next-longitude)
5659 (solar-horizontal-coordinates, solar-equatorial-coordinates)
5660 (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
5661 (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
5662 (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
5663 Doc fixes.
5664 (solar-horizontal-coordinates, solar-equatorial-coordinates)
5665 (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
5666 (solar-ecliptic-coordinates): Use unless.
5667 (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
5668 Use or.
5669
5670 * calendar/timeclock.el: Add doc-strings to all functions.
5671 (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
5672 (timeclock-entry-list-length, timeclock-entry-list-projects)
5673 (timeclock-day-list-projects, timeclock-day-list): Use dolist.
5674
5675 * calendar/todo-mode.el: Remove un-needed eval-when-compile.
5676
5677 * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
5678 (org-get-entries-from-diary): Require diary-lib.
5679
5680 2008-03-08 Juanma Barranquero <lekktu@gmail.com>
5681
5682 * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
5683 Pacify byte-compiler.
5684
5685 2008-03-07 Alan Mackenzie <acm@muc.de>
5686
5687 * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
5688 paren/bracket pairs parsed, to solve performance problem.
5689
5690 2008-03-07 Bastien Guerry <bzg@altern.org>
5691
5692 * bookmark.el (bookmark-set): Don't check for
5693 `bookmark-make-name-function' since `bookmark-buffer-file-name'
5694 already takes care of this.
5695 (bookmark-buffer-name, bookmark-buffer-file-name):
5696 Remove Info-mode specific code.
5697
5698 * info.el (bookmark-get-info-node): Define this function in
5699 info.el, not in bookmark.el.
5700 (Info-mode): Set `bookmark-make-name-function' to
5701 `Info-bookmark-make-name' locally.
5702 (Info-bookmark-make-name): New function.
5703
5704 * bookmark.el (bookmark-make-name-function): New variable.
5705
5706 2008-03-07 Karl Fogel <kfogel@red-bean.com>
5707
5708 * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
5709 buffer-local, not `bookmark-make-cell-function' (the old name).
5710
5711 2008-03-07 Tassilo Horn <tassilo@member.fsf.org>
5712
5713 * doc-view.el (doc-view-bookmark-make-record):
5714 * image-mode.el (image-bookmark-make-record):
5715 * info.el (Info-bookmark-make-record): Delete obsolete second arg.
5716
5717 2008-03-07 Jan Djärv <jan.h.d@swipnet.se>
5718
5719 * vc.el (vc-status-menu-map-filter): Return orig-binding if
5720 boundp 'vc-ignore-menu-filter.
5721 (vc-status-tool-bar-map): Make it defvar.
5722 (vc-status-mode): vc-status-tool-bar-map now variable.
5723 (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
5724
5725 2008-03-07 Karl Fogel <kfogel@red-bean.com>
5726
5727 Give a better name to part of the bookmark interface.
5728
5729 This was originally a much larger change, but halfway through I
5730 updated and discovered that Stefan Monnier had done the rest.
5731 It looks like he anticipated the new name too, because he used
5732 `the-record' instead of `the-cell' for some internal variable names.
5733
5734 * bookmark.el (bookmark-make-record-function): Was
5735 `bookmark-make-cell-function'.
5736 (bookmark-make, bookmark-send-annotation): Update for above.
5737 (bookmark-make-record-for-text-file):
5738 Was `bookmark-make-cell-for-text-file'. Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
5739
5740 * info.el: Adjust accordingly.
5741 (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
5742
5743 * image-mode.el: Adjust accordingly.
5744 (image-bookmark-make-record): Was `image-bookmark-make-cell'.
5745
5746 * doc-view.el: Adjust accordingly.
5747 (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
5748
5749 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
5750
5751 * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
5752 Move initialization into declaration.
5753 (bookmark-get-info-node, bookmark-set-info-node): Remove.
5754 (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
5755 (bookmark-info-current-node): Remove.
5756 (bookmark-jump-noselect): Rename from bookmark-jump-internal.
5757 Add relocation fallback. Set bookmark-current-bookmark.
5758 (bookmark-default-handler): Rename from bookmark-jump-noselect.
5759 Remove relocation fallback. Don't set bookmark-current-bookmark.
5760 (bookmark-set): Let it be used even if there's no buffer-file-name
5761 as long as there is a bookmark-make-cell-function.
5762 * info.el (Info-bookmark-jump): Remove relocation fallback.
5763 Don't set bookmark-current-bookmark.
5764
5765 2008-03-07 Glenn Morris <rgm@gnu.org>
5766
5767 * calendar/appt.el (appt-issue-message)
5768 (appt-message-warning-time, appt-audible, appt-visible)
5769 (appt-msg-window, appt-display-mode-line, appt-display-duration)
5770 (appt-display-diary): Remove autoload cookies.
5771
5772 * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
5773 Remove leading `*' from defcustom doc-strings.
5774
5775 * calendar/cal-dst.el (calendar-dst): New custom group.
5776 (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
5777 (calendar-time-zone, calendar-daylight-time-offset)
5778 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
5779 (calendar-daylight-savings-starts-time)
5780 (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
5781 (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
5782 Move to start.
5783
5784 * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
5785
5786 * calendar/calendar.el (calendar-version): Use emacs-version and
5787 make it obsolete. Move to end.
5788 (calendar-offset, view-diary-entries-initially)
5789 (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
5790 (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
5791 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
5792 (all-bahai-calendar-holidays, calendar-load-hook)
5793 (initial-calendar-window-hook, today-visible-calendar-hook)
5794 (today-invisible-calendar-hook, calendar-move-hook)
5795 (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
5796 (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
5797 (diary-include-string, sexp-diary-entry-symbol)
5798 (abbreviated-calendar-year, american-date-diary-pattern)
5799 (european-date-diary-pattern, european-calendar-display-form)
5800 (american-calendar-display-form, print-diary-entries-hook)
5801 (list-diary-entries-hook, diary-hook, diary-display-hook)
5802 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
5803 (nongregorian-diary-marking-hook, diary-list-include-blanks)
5804 (holidays-in-diary-buffer, general-holidays, oriental-holidays)
5805 (local-holidays, other-holidays, hebrew-holidays-1)
5806 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
5807 (hebrew-holidays, christian-holidays, islamic-holidays)
5808 (bahai-holidays, solar-holidays, calendar-setup)
5809 (calendar-week-start-day): Remove autoload cookies.
5810 (diary-glob-file-regexp-prefix): Doc fix.
5811 (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
5812 (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
5813 (calendar-week-start-day, calendar-debug-sexp): Move to start.
5814
5815 * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
5816 (calendar-time-display-form, calendar-latitude)
5817 (calendar-longitude, solar-equinoxes-solstices): Remove autoload
5818 cookies.
5819 (calendar-latitude, calendar-longitude): Move functions after
5820 variables.
5821 (diary-sabbath-candles-minutes): Move to start.
5822 (solar-setup): Use or rather than if.
5823 (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
5824 Remove condition-case.
5825 (solar-atn2): Use zerop.
5826 (solar-equinoxes-solstices): Doc fix.
5827
5828 * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
5829 (sc-mode-map-prefix): Doc fix. Make it a defcustom.
5830
5831 * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
5832 (calendar-longitude, calendar-latitude, calendar-location-name):
5833 Declare for compiler.
5834
5835 2008-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
5836
5837 * arc-mode.el (archive-ar-file-header-re): New const.
5838 (archive-ar-summarize, archive-ar-extract): New funs.
5839 (archive-find-type): Recognize ar archives.
5840
5841 * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
5842 New functions.
5843
5844 * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
5845
5846 2008-03-06 Lennart Borgman <lennart.borgman@gmail.com>
5847
5848 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5849 Replace :enable (mark-active) with :enable mark-active.
5850
5851 2008-03-06 Juanma Barranquero <lekktu@gmail.com>
5852
5853 * vms-patch.el (make-legal-file-name): New obsolete alias.
5854 (make-valid-file-name): Rename from `make-legal-file-name'.
5855 (make-auto-save-file-name): Use it.
5856
5857 * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
5858 (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
5859 (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
5860
5861 * textmodes/org.el (org-export-html-style): Doc fix.
5862 (org-get-legal-level): New obsolete alias.
5863 (org-get-valid-level): Rename from `org-get-legal-level'.
5864 (org-promote, org-demote, org-archive-subtree)
5865 (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
5866
5867 2008-03-06 Jan Djärv <jan.h.d@swipnet.se>
5868
5869 * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
5870
5871 * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
5872 (vc-status-toggle-mark): New functions.
5873 (vc-status-mode): Set tool bar map.
5874
5875 2008-03-05 Chong Yidong <cyd@stupidchicken.com>
5876
5877 * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
5878 Reported by Drew Adams <drew.adams@oracle.com>.
5879
5880 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
5881
5882 * subr.el (read-quoted-char): Resolve modifers of the character
5883 event.
5884
5885 * comint.el (comint-exec-1): Don't change the coding-system for
5886 decoding to dos-like EOL.
5887 (comint-carriage-motion): Fully rewrite.
5888
5889 2008-03-05 Juanma Barranquero <lekktu@gmail.com>
5890
5891 * epg.el (epg-context-include-certs): Reflow docstring.
5892 (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
5893 (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
5894 (epg-context-set-signers, epg-context-set-sig-notations)
5895 (epg-make-import-status, epg-make-import-result)
5896 (epg-start-delete-keys): Fix typos in docstrings.
5897 (epg-start-sign-keys, epg-sign-keys):
5898 Fix typos in obsolescence declarations.
5899
5900 * iswitchb.el: Don't check for `cadr' and `last'.
5901 (iswitchb-define-mode-map, iswitchb-default-keybindings):
5902 Add obsolescence declaration and remove redundant info from docstring.
5903 (iswitchb-set-common-completion, iswitchb-set-matches)
5904 (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
5905 (recentf-list, most-len, most-is-exact):
5906 Don't wrap defvars within `eval-when-compile'.
5907
5908 2008-03-05 Glenn Morris <rgm@gnu.org>
5909
5910 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
5911 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
5912 * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
5913 * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
5914 ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
5915
5916 * ediff-hook.el (ediff-window-setup-function): Don't autoload
5917 declaration for compiler.
5918 (ediff-xemacs-init-menus): Use when rather than if.
5919
5920 * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
5921 if+and to just and.
5922 (ediff-read-event, ediff-overlayp, ediff-make-overlay)
5923 (ediff-delete-overlay): Move the XEmacs test inside the definition.
5924
5925 * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
5926
5927 * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
5928 test inside XEmacs test.
5929 (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
5930 since it was doing nothing on Emacs.
5931 (ediff-make-bullet-proof-overlay): Use when rather than if.
5932
5933 * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
5934 (ediff-setup-control-frame): Remove
5935 ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
5936 a (featurep 'xemacs) test.
5937
5938 2008-03-05 Jay Belanger <jay.p.belanger@gmail.com>
5939
5940 * calc/calc-ext.el (calc-extended-command-history): New variable.
5941 (calc-exectute-extended-command): Use `calc-extended-command-history'.
5942
5943 2008-03-05 Dan Nicolaescu <dann@ics.uci.edu>
5944
5945 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
5946 (standard-mode-line-position): Add mouse-face.
5947
5948 * progmodes/compile.el (compilation-menu-map):
5949 (compilation-mode-map):
5950 * progmodes/grep.el (grep-mode-map): Add :help.
5951
5952 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
5953 initialize in one step. Add :help. Use :enable to activate menu
5954 items. Show the key binding for edebug-defun.
5955 (lisp-interaction-mode-map): Add a menu.
5956
5957 * term.el (term-mode-map): Define and initialize in one step.
5958
5959 * ediff-init.el (ediff-color-display-p): Simplify.
5960 (Xor): Remove unused function.
5961 (ediff-with-syntax-table): Simplify for Emacs.
5962
5963 * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
5964 menu-bar being loaded, it always is.
5965
5966 2008-03-05 Glenn Morris <rgm@gnu.org>
5967
5968 * textmodes/tex-mode.el (tex-mode): Suppress warning about
5969 multiple definitions when compiling.
5970
5971 2008-03-04 Alan Mackenzie <acm@muc.de>
5972
5973 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
5974
5975 * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
5976 doc-string, "c-old-LEN" -> "c-old-END".
5977
5978 2008-03-04 Jason Rumney <jasonr@gnu.org>
5979
5980 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
5981 namespaces.
5982
5983 2008-03-04 Glenn Morris <rgm@gnu.org>
5984
5985 * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
5986
5987 * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
5988 than mapcar.
5989
5990 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
5991
5992 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5993 (byte-compile-nilconstp): Can't use recursion in a defsubst.
5994
5995 * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
5996 so that M-q can fill comments.
5997 (tex-executable-exists-p, tex-compile): Extend with special syntax for
5998 commands implemented in elisp.
5999 (tex-compile-commands): Add an entry to use doc-view for pdf files.
6000 (tex-format-cmd): New function.
6001 (tex-compile): Use it to let the user specify default arguments.
6002 (tex-cmd-bibtex-args): New var.
6003 (tex-cmd-doc-view): New function.
6004
6005 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
6006
6007 * faces.el (face-spec-set): Fix typos in docstring.
6008
6009 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
6010
6011 * bindings.el (mode-line-column-line-number-mode-map): New variable.
6012 (standard-mode-line-position): Use it to add a menu for toggling
6013 column number and line number display.
6014
6015 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
6016
6017 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6018 Remove optimization that was working around the form-code-walker bug.
6019
6020 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6021 Walk into the body of lambdas after byte-compile-unfold-lambda.
6022
6023 2008-03-03 Glenn Morris <rgm@gnu.org>
6024
6025 * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
6026 value, if set, over frame value.
6027
6028 * simple.el (transient-mark-mode): Don't turn on by default.
6029
6030 * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
6031 accidentally removed by the 2007-12-05 merge from Gnus.
6032
6033 2008-03-02 Dan Nicolaescu <dann@ics.uci.edu>
6034
6035 * progmodes/compile.el (compilation-menu-map): Add menu entries
6036 for useful options.
6037
6038 2008-03-01 Dan Nicolaescu <dann@ics.uci.edu>
6039 Glenn Morris <rgm@gnu.org>
6040
6041 * emacs-lisp/bytecomp.el (byte-recompile-directory)
6042 (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
6043 Give a `bytecomp-' prefix to local variables with common names.
6044
6045 2008-03-01 Glenn Morris <rgm@gnu.org>
6046
6047 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
6048 code commented out 2007-11-10.
6049
6050 * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
6051
6052 * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
6053 Delete macro.
6054 * emulation/viper-cmd.el, emulation/viper-ex.el:
6055 * emulation/viper-init.el, emulation/viper-keym.el:
6056 * emulation/viper-mous.el, emulation/viper-util.el:
6057 * emulation/viper.el:
6058 Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
6059 featurep test.
6060
6061 Replace obselete frame-local variables with frame-parameters.
6062 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
6063 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
6064 (viper-vi-state-cursor-color): Only call make-variable-frame-local
6065 on XEmacs.
6066 * emulation/viper-util.el (viper-frame-value): New macro.
6067 * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
6068 (viper-R-state-post-command-sentinel)
6069 (viper-replace-state-post-command-sentinel)
6070 (viper-change-state-to-insert, viper-change-state-to-emacs):
6071 * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
6072 (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
6073 (viper-get-saved-cursor-color-in-insert-mode)
6074 (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
6075 Use viper-frame-value for viper-replace-overlay-cursor-color,
6076 viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
6077 viper-vi-state-cursor-color values.
6078
6079 * emulation/viper-cmd.el (zmacs-region-stays):
6080 * emulation/viper-util.el (zmacs-region-stays): No need to define
6081 for compiler.
6082
6083 * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
6084 mapcar on Emacs.
6085
6086 * emulation/viper-mous.el (viper-counting-clicks-p): Only define
6087 on XEmacs.
6088
6089 * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
6090 rather than if.
6091
6092 2008-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6093
6094 * whitespace.el: New version 9.3. As the glyph code generation was
6095 fixed, it is possible now to use character code above ?\x1FFFF in the
6096 display table. Fix `whitespace-indentation-regexp' to not include an
6097 extra ending character. Reported by Michael Welsh Duggan
6098 <mwd@cert.org>. Added hook actions when buffer is written or killed as
6099 the original whitespace package had. Suggested by Eric Cooper
6100 <ecc@cmu.edu>. Doc fix.
6101 (whitespace-action): New option.
6102 (whitespace-display-mappings): Changed default newline visualization to
6103 display downwards arrow, as the glyph code generation was fixed.
6104 (whitespace-unload-function): Assure that all local whitespace mode is
6105 turned off.
6106 (whitespace-global-modes): Fix type customization.
6107 (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
6108 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
6109 (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
6110 Fix code.
6111 (whitespace-buffer): Command removed.
6112 (whitespace-trailing-regexp, whitespace-mark-x)
6113 (whitespace-display-window, whitespace-action-when-on)
6114 (whitespace-add-local-hook, whitespace-remove-local-hook)
6115 (whitespace-write-file-hook, whitespace-kill-buffer-hook)
6116 (whitespace-action): New funs.
6117 (whitespace-report-list, whitespace-report-text)
6118 (whitespace-report-buffer-name): New consts.
6119 (whitespace-report, whitespace-report-region): New commands.
6120
6121 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
6122
6123 * disp-table.el (make-glyph-code): Don't test the result of
6124 `face-id', which already signals an error for invalid faces.
6125 (glyph-face): Simplify.
6126
6127 * desktop.el (desktop-read): Set `desktop-dirname' to nil before
6128 running `desktop-not-loaded-hook' to allow modifying it.
6129 Don't show warning message if `desktop-dirname' was modified.
6130
6131 2008-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
6132
6133 * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
6134 we still expect more lines.
6135
6136 * textmodes/fill.el (fill-comment-paragraph): Don't try to do
6137 comment-paragraph filling if the commark doesn't match
6138 comment-start-skip.
6139
6140 2008-03-01 Daiki Ueno <ueno@unixuser.org>
6141
6142 * international/utf-7.el (utf-7-encode): Never skip the trailing - for
6143 the `imap' variant.
6144
6145 2008-03-01 Jason Rumney <jasonr@gnu.org>
6146
6147 * files.el (make-auto-save-file-name): Encode more characters in
6148 non-file buffer names. Use url-encoding.
6149
6150 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
6151
6152 * net/net-utils.el (ftp-program): Fix typo in docstring.
6153 (ifconfig-program-options, netstat-program-options)
6154 (arp-program-options, route-program-options, nslookup-program-options)
6155 (ftp-program-options, smbclient-program-options)
6156 (dns-lookup-program-options, arp, route): Doc fixes.
6157
6158 * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
6159 (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
6160 (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
6161 Fix typos in docstrings.
6162 (gdb-pending-triggers): Reflow docstring.
6163 (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
6164
6165 2008-03-01 Alan Mackenzie <acm@muc.de>
6166
6167 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
6168 typing "#" at EOB.
6169
6170 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
6171
6172 * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
6173
6174 2008-02-29 Kim F. Storm <storm@cua.dk>
6175
6176 * emulation/cua-base.el (cua-remap-control-v)
6177 (cua-remap-control-z): New defcustoms.
6178 (cua-mode): Add them to set-after property.
6179 (cua--init-keymaps): Use them.
6180 Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
6181
6182 * help.el (view-emacs-todo): Rename from view-todo.
6183 (describe-gnu-project): Rename from describe-project. Users changed.
6184 (view-help-file): New helper function.
6185 (describe-distribution, describe-copying, describe-gnu-project)
6186 (view-todo, view-order-manuals, view-emacs-problems): Use it.
6187 (view-emacs-debugging, view-external-packages): New commands.
6188 (help-map): Move describe-distribution to C-h C-o (ordering).
6189 Move view-emacs-problems to C-h C-p (problems).
6190 Bind view-emacs-debugging to C-h C-d (debugging).
6191 Bind view-external-packages to C-h C-e (extras).
6192 (help-for-help-internal): Cleanup and align descriptions.
6193 Remove command names to reduce clutter.
6194
6195 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
6196
6197 * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
6198 and quieter face (not a warning).
6199
6200 2008-02-29 Dan Nicolaescu <dann@ics.uci.edu>
6201
6202 * vc.el (vc-status-crt-marked): New variable.
6203 (vc-status-mode): Make it local.
6204 (vc-status-refresh): Use it to save the marked files.
6205 (vc-update-vc-status-buffer): Use it to restore the marked files.
6206
6207 * vc-svn.el (vc-svn-after-dir-status):
6208 * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
6209
6210 2008-02-29 Glenn Morris <rgm@gnu.org>
6211
6212 * allout.el (allout-topic-encryption-bullet)
6213 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
6214 (allout-encrypt-unencrypted-on-saves): Change defcustom :version
6215 from 22.0 to 22.1.
6216
6217 * net/imap.el (imap-ping-server):
6218 * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
6219 Change defcustom :version from 23.0 to 23.1.
6220
6221 2008-02-29 Juanma Barranquero <lekktu@gmail.com>
6222
6223 * desktop.el (desktop-save): Save the buffer name if the
6224 uniquified base name is empty.
6225
6226 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
6227
6228 * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
6229 correctly when user has "set print address off".
6230
6231 2008-02-28 Juanma Barranquero <lekktu@gmail.com>
6232
6233 * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
6234 version number of the next major Emacs release, not 23.0.
6235
6236 * longlines.el (longlines-unload-function): New function.
6237
6238 2008-02-28 Juri Linkov <juri@jurta.org>
6239
6240 * startup.el (normal-splash-screen): Add argument `concise'.
6241 Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
6242 to the created buffer. If `concise' is non-nil, call
6243 `display-buffer', otherwise `switch-to-buffer'. Doc fix.
6244 (display-startup-screen): Add argument `concise' to the call to
6245 `normal-splash-screen'.
6246
6247 2008-02-28 Kim F. Storm <storm@cua.dk>
6248
6249 * startup.el (startup-echo-area-message): Check for about-emacs.
6250
6251 2008-02-28 Juri Linkov <juri@jurta.org>
6252
6253 * startup.el: Always add initial message to *scratch* buffer if
6254 `initial-scratch-message' is non-nil regardless of the value of
6255 `inhibit-startup-screen'.
6256 (inhibit-startup-screen, initial-scratch-message): Doc fix.
6257 (command-line-1): Move code that inserts `initial-scratch-message'
6258 up before the if-form that checks for `inhibit-startup-screen'.
6259 Suggested by Jonathan Rockway <jon@jrock.us>.
6260
6261 2008-02-28 Juri Linkov <juri@jurta.org>
6262
6263 * cus-edit.el (custom-mode-map, custom-mode-link-map):
6264 Rename `custom-mode' to `Custom-mode' in docstrings.
6265 (custom-buffer-create-internal, customize-browse):
6266 Rename `custom-mode' to `Custom-mode'.
6267 (custom-mode-hook): Rename to `Custom-mode-hook'.
6268 (Custom-mode-hook): Renamed from `custom-mode-hook'.
6269 (custom-mode): Rename to `Custom-mode'.
6270 (Custom-mode): Renamed from `custom-mode'. Doc fix.
6271 (custom-mode): Add backward-compatible non-interactive variant of
6272 `Custom-mode' that simply calls `Custom-mode'. Mark it obsoleted.
6273 (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
6274
6275 * info-look.el: Rename `custom-mode' to `Custom-mode'.
6276
6277 * emulation/viper.el (viper-emacs-state-mode-list):
6278 Rename `custom-mode' to `Custom-mode'.
6279
6280 * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
6281 Capitalize "Tagged Files".
6282 (minibuffer-local-map): Add menu items for next/previous
6283 history elements and isearch history forward/backward.
6284
6285 * progmodes/hideshow.el (hs-minor-mode-menu): Compare
6286 `hs-isearch-open' with t instead of `comment' in :selected
6287 for "Code and Comment blocks" menu item.
6288
6289 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
6290
6291 * uniquify.el (uniquify-buffer-base-name): Undo last change.
6292 Should be done in desktop.el instead.
6293
6294 2008-02-28 Glenn Morris <rgm@gnu.org>
6295
6296 * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
6297
6298 * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
6299
6300 * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
6301 (Info-menu, Info-goto-node): Remove declarations.
6302 (report-emacs-bug-info): Use info rather than Info-goto-node.
6303
6304 * progmodes/idlwave.el (Info-goto-node): Remove declaration.
6305 (idlwave-convert-xml-system-routine-info): Don't require xml.
6306 (idlwave-show-commentary, idlwave-shell-show-commentary):
6307 Don't require finder.
6308 (idlwave-info): Don't require info. Use info rather than
6309 Info-goto-node.
6310
6311 * textmodes/org.el (Info-goto-node): Remove declaration.
6312 (org-info): Use info rather than Info-goto-node.
6313
6314 * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
6315 (reftex-info): Don't require info. Use info rather than Info-goto-node.
6316
6317 2008-02-28 Dan Nicolaescu <dann@ics.uci.edu>
6318
6319 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
6320 the menu.
6321
6322 * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
6323 (vc-finish-logentry): Check for vc-status-mode, not only for
6324 vc-dired-mode.
6325
6326 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
6327
6328 * isearch.el (isearch-printing-char): Don't check
6329 keyboard-coding-system.
6330 Call isearch-process-search-multibyte-characters only when
6331 current-input-method is non-nil.
6332
6333 2008-02-27 Kim F. Storm <storm@cua.dk>
6334
6335 * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
6336 (glyph-char, glyph-face): Handle cons encoding.
6337
6338 2008-02-27 Juanma Barranquero <lekktu@gmail.com>
6339
6340 * uniquify.el (uniquify-buffer-base-name): If the base name is an
6341 empty string, return nil to allow the caller to default to the
6342 buffer name. Reported by Martin Fischer <parozusa@web.de>.
6343
6344 * tool-bar.el (tool-bar-setup): Doc fix.
6345
6346 * mail/supercite.el (sc-describe):
6347 Fix typos in obsolescence declaration.
6348
6349 2008-02-27 Glenn Morris <rgm@gnu.org>
6350
6351 * autoinsert.el (auto-insert-alist): Change permission text to
6352 match FSF's GPLv3 form.
6353
6354 * mail/supercite.el (sc-cite-original): Doc fix.
6355 (sc-version): Make obsolete.
6356 (sc-describe): Show the SC info page. Make obsolete.
6357
6358 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
6359
6360 * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
6361 when using transient-mark-mode.
6362 (default-indicate-unused-lines): Remove unused var.
6363
6364 2008-02-26 Jan Djärv <jan.h.d@swipnet.se>
6365
6366 * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
6367 and previous.
6368
6369 * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
6370
6371 2008-02-26 Glenn Morris <rgm@gnu.org>
6372
6373 * net/net-utils.el (top-level): Don't require comint when compiling.
6374 (nslookup-font-lock-keywords): Don't require font-lock.
6375 Use font-lock faces rather than variables.
6376 (nslookup, ftp, smbclient, network-service-connection):
6377 Don't require comint.
6378 (comint-prompt-regexp, comint-input-autoexpand)
6379 (comint-input-ring): Declare for compiler.
6380 (comint-mode, ffap-string-at-point, comint-exec): Autoload.
6381 (dns-lookup-host): Don't require ffap. Remove `with-no-warnings'.
6382
6383 * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
6384 doc-string.
6385
6386 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * doc-view.el (doc-view-current-page): Add a `win' argument.
6389
6390 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
6391
6392 * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
6393 Demote it to plain defvar.
6394 (doc-view-conversion-refresh-interval): Reduce interval.
6395 (doc-view-goto-page): Allow moving to pages not yet rendered.
6396 (doc-view-goto-page): Construct a file name rather than extracting it
6397 from doc-view-current-files.
6398 (doc-view-kill-proc): Ignore errors from kill-process.
6399 (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
6400 (doc-view-insert-image): Use appropriate text if the page hasn't been
6401 rendered yet. Adjust scrolling so the text is displayed.
6402 (doc-view-display): Detect not just that a page is available, but also
6403 that it wasn't available before, so as to avoid refreshing all pages
6404 repeatedly.
6405 (doc-view-mode): Make doc-view-cache-directory if needed.
6406
6407 2008-02-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6408
6409 * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
6410 toggle-read-only.
6411
6412 * textmodes/bibtex.el (bibtex-format-entry): Handle error message
6413 refering to a missing required field with the OPT prefix.
6414 Make unwindform more robust.
6415
6416 * textmodes/bibtex.el: Remove support for hideshow minor mode as
6417 it duplicates the bibtex support in progmodes/hideshow.el.
6418 * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
6419 entries that do not start at the beginning of a line.
6420
6421 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
6422
6423 * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
6424
6425 2008-02-25 Robert J. Chassell <bob@rattlesnake.com>
6426
6427 * help-fns.el (describe-variable): Add phrases about
6428 initialization file with and without customization;
6429 use new button type help-info-variable.
6430
6431 * help-mode.el (help-info-variable):
6432 New button able to read Info files for help-fns.el.
6433
6434 2008-02-25 Jan Djärv <jan.h.d@swipnet.se>
6435
6436 * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
6437 (grep-mode): Use grep-mode-tool-bar-map.
6438
6439 * progmodes/compile.el (tool-bar): Require tool-bar.
6440 (compilation-mode-tool-bar-map): New variable.
6441 (compilation-mode): Use compilation-mode-tool-bar-map.
6442
6443 * term/x-win.el (x-gtk-stock-map): Add cancel. Remove extensions.
6444
6445 2008-02-25 Glenn Morris <rgm@gnu.org>
6446
6447 * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
6448
6449 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
6450
6451 * diff-mode.el (diff-file-junk-re): New const.
6452 (diff-beginning-of-file-and-junk): Use it.
6453 (diff-file-kill): Make sure we were really inside a file diff.
6454
6455 * diff-mode.el: Make it more robust in the presence of empty context
6456 lines in unified hunks.
6457 (diff-valid-unified-empty-line): New var.
6458 (diff-unified->context, diff-sanity-check-hunk): Obey it.
6459 (diff-end-of-hunk): Obey it. New arg `donttrustheader'.
6460 (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
6461 (diff-hunk-header-re-unified): New const.
6462 (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
6463 (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
6464 (diff-sanity-check-hunk): Use it.
6465
6466 * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
6467 Index: line, don't search backward for the previous one.
6468
6469 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
6470
6471 * international/fontset.el (setup-default-fontset): Add non-OTF
6472 lao font for lao script.
6473
6474 * language/tibetan.el: Register tibetan-composition-function in
6475 composition-function-table.
6476
6477 * language/tibet-util.el (tibetan-composition-function):
6478 Adjust for the new calling way (argument changed). Try font-shape-text
6479 if possible.
6480
6481 * language/lao.el: Register lao-composition-function in
6482 composition-function-table.
6483
6484 * language/lao-util.el (lao-composition-function): Adjust for the new
6485 calling way (argument changed). Try font-shape-text if possible.
6486
6487 2008-02-25 Jason Rumney <jasonr@gnu.org>
6488
6489 * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
6490
6491 2008-02-25 Juri Linkov <juri@jurta.org>
6492
6493 * isearch.el (isearch-fail): Use "RosyBrown1" for a light
6494 background, "red4" for a dark background, "red" for 16 and
6495 8 colors, "grey" for grayscale, and inverse video otherwise.
6496 Add :version tag.
6497 (isearch-message): Keep the original isearch-message intact, and
6498 add text properties to it where necessary. Add `isearch-error' to
6499 the condition that checks if isearch is unsuccessful.
6500
6501 2008-02-24 Juri Linkov <juri@jurta.org>
6502
6503 * progmodes/compile.el (compilation-handle-exit):
6504 Use compilation-error face instead of font-lock-warning-face.
6505 Display the same message in the minibuffer as is inserted
6506 at the end of the compilation buffer.
6507
6508 2008-02-24 Glenn Morris <rgm@gnu.org>
6509
6510 * vc-cvs.el (vc-cvs-register): Fix registering of directories in
6511 multiple file case.
6512
6513 * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
6514
6515 * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
6516 multiple file case. Use a single `let' rather than two.
6517
6518 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
6519
6520 * progmodes/compile.el (compilation-start): Specify a face for
6521 mode-line-process.
6522 (compilation-handle-exit): Specify a face and a tooltip for
6523 mode-line-process.
6524
6525 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6526
6527 * hilit-chg.el: Remove spurious * in defcustom docstrings.
6528 (hilit-chg-make-ov): Simplify.
6529 (hilit-chg-fixup): Use remove-overlays.
6530 (hilit-chg-set-face-on-change): Remove redundant call to
6531 `remove-text-properties'.
6532
6533 * dired.el (dired-mark-prompt): Don't count/display the t element.
6534 Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
6535
6536 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
6537
6538 * progmodes/verilog-mode.el (eval-when-compile): Don't define
6539 add-submenu.
6540 (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
6541 Remove. Move contents to the only use ...
6542 (verilog-menu): ... here.
6543 (verilog-statement-menu): Remove. Move contents to the only use ...
6544 (verilog-stmt-menu): ... here.
6545 (verilog-mark-defun): Simply call mark-defun for emacs.
6546 (occur-pos-list): Declare for byte compiler.
6547 (mode-popup-menu): Don't defvar.
6548 (verilog-add-statement-menu): Remove.
6549 (verilog-mode-hook): Don't add verilog-add-statement-menu.
6550 (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
6551
6552 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
6553
6554 * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
6555 conditional.
6556 (verilog-font-grouping-keywords-face): Make the begin..end
6557 keywords standout more than other verilog keywords.
6558 (verilog-type-font-keywords): Move the begin..end out of this list
6559 to facilitate making them to (potentially) stand out more.
6560 (verilog-backward-token): Fix indent of bare always{_*}?, initial,
6561 function & task blocks.
6562 (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
6563 initial, function & task blocks.
6564 (verilog-forward-sexp): Handle the new "disable fork" statement of
6565 IEEE-1800 Verilog.
6566 (verilog-beg-block-re-ordered): Handle the new "disable fork"
6567 statement of IEEE-1800 Verilog.
6568 (verilog-calc-1): Handle the new "disable fork" statement of
6569 IEEE-1800 Verilog.
6570 (verilog-disable-fork-re): Add const to help handle the new
6571 "disable fork" statement of IEEE-1800 Verilog.
6572 (verilog-declaration-core-re): Add port directions by themselves,
6573 with no qualification, as base item of a declaration.
6574 (verilog-pretty-declarations): Add new flag to ask it to refrain
6575 from printing to the message buffer.
6576 (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
6577 printing to the message buffer. Improve handling of the many
6578 types of expression line up.
6579 (verilog-just-one-space): Remove printing of an empty message.
6580 (verilog-get-lineup-indent): Rework to support the better handling
6581 of expression lineup for verilog-pretty-expr.
6582 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
6583
6584 2008-02-24 Alan Mackenzie <acm@muc.de>
6585
6586 * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
6587 yesterday's commit.
6588
6589 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
6590
6591 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
6592 to mouse-set-point in buffers that aren't associated with files.
6593
6594 * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
6595
6596 2008-02-24 Alan Mackenzie <acm@muc.de>
6597
6598 Set of changes so that "obtrusive" syntactic elements in a
6599 C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
6600 unmatched paren) don't interact syntactically with stuff outside
6601 the CPP line.
6602
6603 * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
6604 Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
6605 off-by-one bug.
6606 (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
6607 a bit of refactoring.
6608 (c-awk-extend-and-syntax-tablify-region): Takes some of the
6609 functionality of c-awk-advise-fl-for-awk-region, which has been
6610 refactored away.
6611
6612 * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
6613 (c-clear-char-property-with-value): New function and macro which
6614 remove text-properties `equal' to a supplied value.
6615
6616 * progmodes/cc-engine.el: Comment about text properties amended.
6617
6618 * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
6619 parens around "error\\|warning".
6620
6621 * progmodes/cc-langs.el (c-get-state-before-change-function)
6622 (c-before-font-lock-function, c-anchored-cpp-prefix):
6623 New language variables.
6624 (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
6625
6626 * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
6627 syntax-table text properties.
6628 (c-common-init): Call language specific before/after-change
6629 functions at mode initialisation.
6630 (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
6631 (c-extend-region-for-CPP, c-neutralize-CPP-line)
6632 (c-neutralize-syntax-in-CPP): New functions.
6633 (c-before-change, c-after-change): Call the new language specific
6634 change functions defined in cc-langs.el.
6635 (c-advise-fl-for-region): New macro.
6636 (awk-mode): Remove AWK specific stuff which has been refactored
6637 into language independent stuff.
6638
6639 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
6640
6641 * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
6642 (gdb): (Re)set gdb-flush-pending-output to nil here...
6643 (gdb-init-1): ...instead of here (before gdb-prompt).
6644
6645 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6646
6647 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
6648 Recognize ''' just like any other char-constant.
6649
6650 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6651
6652 * vc-hooks.el (vc-find-root): Remove initial loop because it's not
6653 careful enough. Detect the uid-change all within the main loop.
6654
6655 2008-02-24 Stefan Monnier <monnier@pastel.home>
6656
6657 * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
6658
6659 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6660
6661 * hilit-chg.el (highlight-save-buffer-state): New macro.
6662 (highlight-save-buffer-state, hilit-chg-set-face-on-change)
6663 (hilit-chg-clear): Use it to preserve the modified-p flag.
6664 (highlight-changes-rotate-faces): Don't mess with the undo-list.
6665
6666 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6667
6668 * font-lock.el (font-lock-set-defaults): Unset previously set variables
6669 when needed.
6670
6671 2008-02-24 Ævar Arnfjörð Bjarmason <avar@cpan.org> (tiny change)
6672
6673 * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
6674 from gnus-button-url-regexp.
6675
6676 2008-02-24 Eli Zaretskii <eliz@gnu.org>
6677
6678 * progmodes/compile.el (compilation-next-error): Doc fix.
6679 (compilation-find-file): Doc fix.
6680
6681 2008-02-24 Glenn Morris <rgm@gnu.org>
6682
6683 * net/net-utils.el (ipconfig-program, ipconfig-program-options):
6684 Add obsolete aliases to the old names.
6685
6686 2008-02-24 Richard Stallman <rms@gnu.org>
6687
6688 * net/net-utils.el (ifconfig): Rename from ipconfig.
6689 (ipconfig): Alias to ifconfig.
6690 (ifconfig-program): Rename from ipconfig-program.
6691 (ifconfig-program-options): Rename from ipconfig-program-options.
6692
6693 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
6694
6695 * progmodes/verilog-mode.el (verilog-declaration-core-re):
6696 Add port directions by themselves, with no qualification, as base
6697 item of a declaration.
6698 (verilog-pretty-declarations): Add new flag that inhibits printing
6699 to the message buffer.
6700 (verilog-pretty-expr): Add new flag that inhibits printing to the
6701 message buffer. Improve handling of the many types of expression
6702 line up.
6703 (verilog-just-one-space): Don't print an empty message.
6704 (verilog-get-lineup-indent): Rework to support the better handling
6705 of expression lineup for verilog-pretty-expr.
6706 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
6707 (verilog-mode-version, verilog-mode-release-date): Update.
6708
6709 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
6710
6711 * subr.el (cancel-change-group): Don't move point.
6712
6713 2008-02-23 Markus Triska <markus.triska@gmx.at>
6714
6715 * linum.el (linum-after-config): Update all visible windows.
6716
6717 2008-02-23 Glenn Morris <rgm@gnu.org>
6718
6719 * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
6720 Add :help for Solitaire and Tetris.
6721
6722 * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
6723
6724 * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
6725 (smtpmail-code-conv-from): Doc fix. Fix custom type.
6726 (smtpmail-queue-index-file): Make it a defcustom.
6727 (smtpmail-queue-index): Delete.
6728 (smtpmail-send-it, smtpmail-send-queued-mail):
6729 Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
6730 smtpmail-queue-index.
6731
6732 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
6733 Add :version.
6734
6735 2008-02-23 Yoni Rabkin <yoni@rabkins.net> (tiny change)
6736
6737 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
6738 New variables.
6739 (iwconfig): New function.
6740
6741 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu>
6742
6743 * vc.el (vc-find-revision): Make vc-parent-buffer local before
6744 setting it.
6745 (vc-status-menu-map): Do not define using easy-menu.
6746 (vc-status-menu-map): New defalias.
6747 (vc-status-mode-map): Hook up the menu.
6748 (top-level): Update TODO.
6749
6750 * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
6751
6752 * vc-bzr.el (vc-bzr-init-version): Rename to ...
6753 (vc-bzr-init-revision): ... this.
6754
6755 2008-02-23 Jason Rumney <jasonr@gnu.org>
6756
6757 * makefile.w32-in (WINS_ALMOST): Remove term.
6758 (WINS): Add term here.
6759 (custom-deps, finder-data): Use WINS_ALMOST.
6760
6761 2008-02-22 Juanma Barranquero <lekktu@gmail.com>
6762
6763 * faces.el (font-weight-table): Fix value of `semi-light'.
6764
6765 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
6766
6767 * faces.el (font-weight-table, font-slant-table, font-swidth-table):
6768 Make those tables bijective.
6769
6770 2008-02-22 Ken Manheimer <ken.manheimer@gmail.com>
6771
6772 Finish pdbtrack integration cleanup, settling missing-functions
6773 byte compiler warnings appropriately.
6774
6775 * progmodes/python.el (python-point): Remove this - beginning-of-line
6776 was all that was necessary for `python-pdbtrack-overlay-arrow'.
6777 (python-end-of-def-or-class, python-beginning-of-def-or-class)
6778 (python-goto-initial-line): Drop these - they were only needed for
6779 python-point.
6780 (python-comint-output-filter-function): Use condition-case and
6781 beginning-of-line directly, instead of python-mode.el functions
6782 which require all sorts of baggage.
6783 (point-safe): Unnecessary - we're using condition-case directly,
6784 instead.
6785 (python-execute-file): Include for python-shell, which I'm leaving
6786 in keeping despite it being unnecessary for pdb tracking.
6787
6788 2008-02-22 Peter Danenberg <pcd@wikitex.org> (tiny change)
6789
6790 * progmodes/scheme.el (scheme-font-lock-keywords-2):
6791 Add SRFI 11 support.
6792 (let-values, let*-values): Specify scheme-indent-function.
6793
6794 2008-02-22 Dan Nicolaescu <dann@ics.uci.edu>
6795
6796 * vc.el (vc-exec-after): Move setting mode-line-process in the
6797 busy case ...
6798 (vc-set-mode-line-busy-indicator): ... in this new function.
6799 (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
6800 (vc-update-vc-status-buffer): Reset mode-line-process.
6801 (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
6802 mark/unmark all the files with the same state as the current one.
6803 With a prefix argument mark/unmark all files.
6804 (vc-status-mode-menu): Adjust strings.
6805 (vc-update-vc-status-buffer): Only do something when the argument
6806 is not nil.
6807 (vc-status-kill-dir-status-process): New function.
6808 (vc-status-mode-map): Bind it.
6809 (vc-status-process-buffer): New variable.
6810 (vc-status-mode): Make it local.
6811 (vc-status-refresh): Set it.
6812
6813 * vc-hg.el (vc-hg-dir-status):
6814 * vc-git.el (vc-git-dir-status):
6815 * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
6816 command is run.
6817
6818 2008-02-22 Glenn Morris <rgm@gnu.org>
6819
6820 * json.el (top-level): No need to require thingatpt.
6821 (json-read-keyword): Use thing-at-point rather than word-at-point.
6822
6823 * time.el (top-level): No need to require time-date when compiling.
6824
6825 * emacs-lisp/copyright.el (copyright-update-year):
6826 Fix subexpression numbering for the case when years are split over
6827 lines, and for the replace case.
6828
6829 * emulation/tpu-edt.el (tpu-have-ispell): Doc fix. Make obsolete.
6830 (tpu-caar, tpu-cadr): Delete functions.
6831 (zmacs-regions): No need to declare for compiler.
6832 (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
6833 (tpu-spell-check): Rewrite, and handle mark after point.
6834 (tpu-special-insert): Use or rather than if.
6835
6836 * emulation/vip.el (vip-special-prefix-com): Use ispell-region
6837 rather than spell-region.
6838
6839 * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
6840 warnings about spell-region.
6841
6842 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
6843
6844 * ldefs-boot.el: Regenerated.
6845
6846 * loadup.el: Don't load language/devanagari, language/kannanda,
6847 language/malayalam, and language/tamil. Load language/sinhala.
6848
6849 * language/indian.el (indian-font-foundry)
6850 (indian-script-language-alist, indian-font-char-index-table)
6851 (indian-font-char, indian-font-char-range, indian-script-table)
6852 (indian-default-script, indian-composable-pattern): Delete them.
6853 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
6854 language environments moved to here.
6855 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
6856 New language environments.
6857
6858 * language/devanagari.el, language/devan-util.el,
6859 * language/kannanda.el, language/knd-util.el, language/malayalam.el,
6860 * language/mlm-util.el, language/tamil.el, language/tml-util.el:
6861 Delete them.
6862
6863 * language/sinhala.el: New file.
6864
6865 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com>
6866
6867 Update Nick Robert's port of pdb tracking from python-mode.el.
6868
6869 * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
6870 Clarify docstring.
6871 (python-pdbtrack-minor-mode-string): A sign indicating that pdb
6872 tracking is happening.
6873 (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
6874 (python-pdbtrack-input-prompt): Better recognize PDB prompts.
6875 (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
6876 Tracking is plugged in to all comint buffers once python.el is loaded.
6877 (python-pdbtrack-overlay-arrow): Toggle activation of
6878 `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
6879 (python-pdbtrack-track-stack-file): Use new
6880 `python-pdbtrack-get-source-buffer' for more flexible access to
6881 debugging source files.
6882 (python-pdbtrack-get-source-buffer): Identify debugging target buffer
6883 according to pdb stack trace, optionally using new
6884 `python-pdbtrack-grub-for-buffer' if file is not locally available.
6885 (python-pdbtrack-grub-for-buffer): Find most recent python-mode
6886 named buffer, or having function with indicated name.
6887 (python-shell): Remove comint-output-filter-functions hook
6888 addition, it's being done elsewhere. Wrap long line.
6889
6890 2008-02-21 Michael Olson <mwolson@gnu.org>
6891
6892 * json.el: Replace XEmacs compatibility code to get rid of
6893 compiler warnings.
6894
6895 * time.el: Fix compiler warning.
6896
6897 2008-02-21 Edward O'Connor <ted@oconnor.cx>
6898
6899 * json.el: New file (JavaScript Object Notation parser / generator).
6900
6901 2008-02-21 Dave Love <fx@gnu.org>
6902
6903 * progmodes/sym-comp.el: New file.
6904
6905 * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
6906 Require sym-comp. Add Python buffer to same-window-buffer-names.
6907 Fixup whitespaces.
6908 (python-font-lock-keywords): Add highlighting for Python builtins.
6909 (python-font-lock-syntactic-keywords): Rewrite.
6910 (python-quote-syntax): Use syntax-ppss-context instead of parsing
6911 ppss directly.
6912 (python-mode-map): Add binding for python-find-function.
6913 (python-calculate-indentation): Clean up the logic.
6914 (python-beginning-of-defun): Explicitly set return value.
6915 (python-beginning-of-statement): Stop looping if we get stuck
6916 going backwards.
6917 (python-next-statement): Stop looping if we somehow end up inside
6918 a string while advancing.
6919 (python-preoutput-continuation, python-version-checked): New vars.
6920 (python-check-version): New function.
6921 (run-python): Set default command to python-command instead of
6922 python-python-command.
6923 (run-python): Use python-check-version. Give PYTHONPATH
6924 precedence over data-directory in the process environment.
6925 Load function definitions in python process after.
6926 (python-check-comint-prompt): New function.
6927 (python-send-command, python-send-receive): Use it.
6928 (python-complete-symbol, python-try-complete): Functions deleted.
6929 Use symbol-complete instead of python-complete-symbol throughout.
6930 (python-fill-paragraph): Further refine the fenced-string regexp.
6931 (def-python-skeleton): Expand to the original abbrev instead if in
6932 a comment or string. Tweak skeletons for `if', `while', `for',
6933 `try/except', `try/finally', `name'.
6934 (python-pea-hook, python-abbrev-pc-hook): New functions.
6935 (python-abbrev-syntax-table): New var.
6936 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
6937 Use symbol-completion-try-complete for hippie expansion.
6938 Turn on font lock unconditionally.
6939 (python-mode-hook): Defcustom it. No need to use make-local
6940 variable on indent-tabs-mode in "Turn off Indent Tabs mode"
6941 option, since it's buffer-local.
6942
6943 2008-02-21 Juanma Barranquero <lekktu@gmail.com>
6944
6945 * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
6946
6947 2008-02-21 Drew Adams <drew.adams@oracle.com>
6948
6949 * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
6950 "Turn off" and a "Help" entry when the minor mode has no menu.
6951
6952 2008-02-21 Dan Nicolaescu <dann@ics.uci.edu>
6953
6954 * vc.el (vc-status-mark, vc-status-unmark): New functions.
6955 (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
6956 vc-status-mark-file and vc-status-unmark-file.
6957 (vc-status-mark-unmark): New function.
6958 (vc-status-previous-line, vc-status-next-line): No longer interactive.
6959
6960 2008-02-21 Glenn Morris <rgm@gnu.org>
6961
6962 * composite.el (encode-composition-rule): Fix typo in error message.
6963 (composition-function-table, auto-composition-mode): Doc fixes.
6964
6965 * subr.el (sit-for): Fix obsolete form for nil second argument.
6966
6967 * textmodes/spell.el (spell-buffer, spell-word, spell-region)
6968 (spell-string): Make obsolete, in favor of ispell.
6969
6970 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
6971
6972 * language/devanagari.el: Don't setup composition-function-table
6973 here.
6974 ("Devanagari"): Change charset, coding-system, coding-priority to
6975 Unicode-based ones. Don't require the feature devan-util.
6976
6977 * composite.el (compose-chars-after): Fix arguments for a function
6978 in composition-function-table.
6979 (auto-compose-region): Likewise.
6980
6981 * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
6982 for Ethiopic.
6983 (ps-mule-plot-string): Ignore glyph-string based compositions.
6984
6985 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
6986
6987 * doc-view.el: Allow different windows to show different pages.
6988 (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
6989 (doc-view-current-image, doc-view-current-overlay): Remove variables,
6990 add them back as macros instead, using image-mode-winprops instead.
6991 Update all users of those variables.
6992 (doc-view-new-window-function): New function to create a new overlay
6993 for each new window.
6994 (doc-view-mode): Use it and image-mode-setup-winprops.
6995 (doc-view-clone-buffer-hook): Rewrite accordingly.
6996
6997 * image-mode.el: Extend [hv]scroll support to per-window properties.
6998 (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
6999 (image-mode-winprops-alist): New var to replace them.
7000 (image-mode-new-window-functions): New hook.
7001 (image-mode-winprops, image-mode-window-get, image-mode-window-put):
7002 New funs.
7003 (image-set-window-vscroll, image-set-window-hscroll): Use them.
7004 Remove the `window' argument, update callers.
7005 (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
7006 Use the new functions.
7007 (image-mode-reapply-winprops): New fun.
7008 (image-mode): Use it.
7009
7010 2008-02-20 Jay Belanger <jay.p.belanger@gmail.com>
7011
7012 * calc/calc-math.el (math-sin-raw): Add optional argument
7013 to keep track of original argument.
7014 (math-cos-raw): Use optional argument when calling math-sin-raw.
7015 (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
7016 with close to original precision.
7017
7018 2008-02-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7019
7020 * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
7021 args in calls of sit-for.
7022
7023 2008-02-20 Juanma Barranquero <lekktu@gmail.com>
7024
7025 * vc-svn.el (vc-svn-program): Fix typo in docstring.
7026 (vc-svn-checkin): Fix typo in error message.
7027
7028 * help-mode.el: Require easymenu when compiling.
7029
7030 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu>
7031
7032 * help-mode.el (help-mode-menu): New menu.
7033
7034 2008-02-20 Glenn Morris <rgm@gnu.org>
7035
7036 * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
7037 on Windows.
7038
7039 2008-02-20 Kenichi Handa <handa@ni.aist.go.jp>
7040
7041 * ps-mule.el (ps-mule-encode-region): Return a single string.
7042 (ps-mule-plot-string): Adjust for the above change.
7043 (ps-mule-encode-header-string): Likewise.
7044
7045 * international/latin1-disp.el (latin1-display): Don't use
7046 ucs-mule-8859-to-mule-unicode. Fix the way of resetting
7047 standard-display-table.
7048 (latin1-display-identities): Adjust for the change of what is
7049 returned by (get-language-info charset 'charset).
7050
7051 * international/mule-util.el (char-displayable-p): Fix for Latin-1
7052 characters and terminal case.
7053
7054 2008-02-19 Ken Manheimer <ken.manheimer@gmail.com>
7055
7056 Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
7057
7058 * progmodes/python.el: Also require comint when loading.
7059 (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
7060 Replace python-shell with run-python on menu bar.
7061 (python-shell-map): New map.
7062 (python-default-interpreter, python-python-command-args)
7063 (python-jython-command-args, python-pdbtrack-do-tracking-p):
7064 New options.
7065 (python-which-shell, python-which-args, python-which-bufname):
7066 New buffer local variables.
7067 (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
7068
7069 * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
7070 (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
7071 New constants.
7072
7073 Pdbtrack features:
7074
7075 (python-point, python-end-of-def-or-class)
7076 (python-beginning-of-def-or-class, python-goto-initial-line)
7077 (python-comint-output-filter-function)
7078 (python-pdbtrack-overlay-arrow)
7079 (python-pdbtrack-track-stack-file, python-toggle-shells)
7080 (python-shell, python-pdbtrack-toggle-stack-tracking)
7081 (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
7082 New functions.
7083
7084 2008-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
7085
7086 * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
7087 when the argument is nil.
7088
7089 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
7090
7091 * vc.el (dir-status): Add a brief description.
7092
7093 2008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org>
7094
7095 * vc-hooks.el (vc-find-root): Take optional arg INVERT.
7096 If non-nil, reverse the sense of the check.
7097
7098 * vc-rcs.el (vc-rcs-root): New func.
7099 * vc-cvs.el (vc-cvs-root): New func.
7100 * vc-svn.el (vc-svn-root): New func.
7101 * vc-sccs.el (vc-sccs-root): New func.
7102
7103 2008-02-18 Kenichi Handa <handa@ni.aist.go.jp>
7104
7105 * language/japan-util.el (setup-japanese-environment-internal):
7106 Call use-cjk-char-width-table.
7107
7108 * language/japanese.el ("Japanese"): Set exit-function to
7109 use-default-char-width-table.
7110
7111 * international/characters.el: Delete occurrences of non-Unicode
7112 tibetan and ethiopic characters.
7113 (cjk-char-width-table): New variable.
7114 (use-cjk-char-width-table, use-default-char-width-table):
7115 New functions.
7116
7117 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
7118
7119 * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
7120 (vc-status-mode-menu): Add a :filter.
7121 (vc-status-printer): Add faces.
7122
7123 * vc-hg.el (vc-hg-extra-status-menu): New function.
7124 (vc-hg-dir-status): Clean up the buffer before using it.
7125
7126 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
7127
7128 * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
7129 (gdb): Initialize it here instead.
7130
7131 * files.el (locate-dominating-file): Fix thinko in last change.
7132 Reported by Bruce Stephens <bruce.stephens@isode.com>.
7133
7134 2008-02-18 Dan Nicolaescu <dann@ics.uci.edu>
7135
7136 * vc.el (vc-status-mode-menu): New menu for vc-status.
7137
7138 2008-02-18 Juanma Barranquero <lekktu@gmail.com>
7139
7140 * progmodes/verilog-mode.el (customize): Fix typo in error message.
7141 (verilog-mode, verilog-mode-indent, verilog-mode-actions)
7142 (verilog-mode-auto, verilog-indent-level-module)
7143 (verilog-minimum-comment-distance, verilog-library-flags)
7144 (verilog-library-directories, verilog-library-files)
7145 (verilog-auto-reset-widths, verilog-imenu-generic-expression)
7146 (verilog-xemacs-menu, verilog-set-compile-command)
7147 (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
7148 (verilog-get-expr, verilog-strip-comments, verilog-one-line)
7149 (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
7150 (verilog-batch-inject-auto, verilog-batch-indent)
7151 (verilog-continued-line, verilog-type-keywords)
7152 (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
7153 (verilog-read-inst-pins, verilog-read-arg-pins)
7154 (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
7155 (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
7156 (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
7157 (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
7158 (verilog-sk-datadef, verilog-colorize-include-files-buffer)
7159 (verilog-mode-version, verilog-mode-release-date)
7160 (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
7161 (verilog-simulator, verilog-compiler)
7162 (verilog-auto-sense-defines-constant, verilog-company)
7163 (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
7164 Fix typos in docstrings.
7165 (verilog-set-auto-endcomments, verilog-calculate-indent)
7166 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
7167 Reflow docstrings.
7168 (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
7169 (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
7170 (electric-verilog-forward-sexp, verilog-in-case-region-p)
7171 (verilog-in-struct-region-p, verilog-in-generate-region-p)
7172 (verilog-leap-to-head, verilog-current-indent-level)
7173 (verilog-case-indent-level, verilog-cpp-keywords)
7174 (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
7175 (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
7176 (verilog-signals-not-in, verilog-symbol-detick-text)
7177 (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
7178 (verilog-forward-close-paren, verilog-backward-open-paren)
7179 (verilog-backward-open-bracket): Doc fixes.
7180
7181 * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
7182 (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
7183 (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
7184 (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
7185 (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
7186 Fix typos in docstrings.
7187
7188 * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
7189
7190 2008-02-18 Bastien Guerry <Bastien.Guerry@ens.fr>
7191
7192 * info.el (Info-read-node-name): Removed unused `default' arg.
7193
7194 2008-02-18 Thien-Thi Nguyen <ttn@gnuvola.org>
7195
7196 * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
7197
7198 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
7199
7200 * image-mode.el (image-get-display-property): New fun.
7201 (image-forward-hscroll, image-next-line, image-eol, image-eob)
7202 (image-mode, image-minor-mode, image-toggle-display-text)
7203 (image-toggle-display): Use it.
7204
7205 2008-02-18 Jason Rumney <jasonr@gnu.org>
7206
7207 * international/mule.el (xml-find-file-coding-system): Don't warn
7208 about utf-16 with BOM.
7209
7210 * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
7211
7212 * international/mule.el (sgml-xml-auto-coding-function): Detect and
7213 warn if file encoding is not utf-8 and encoding not specified.
7214 (xml-find-file-coding-system): New function.
7215 * international/mule-conf.el (file-coding-system-alist): Use it.
7216
7217 2008-02-17 Glenn Morris <rgm@gnu.org>
7218
7219 * international/mule-cmds.el (set-locale-environment):
7220 Pass `frame' to getenv for LC_MESSAGES.
7221
7222 2008-02-17 Juri Linkov <juri@jurta.org>
7223
7224 * time.el (emacs-init-time): Use format instead of format-seconds.
7225
7226 2008-02-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7227
7228 * textmodes/bibtex.el (bibtex-search-entry): Rename from
7229 bibtex-find-entry. Add autoload cookie.
7230 (bibtex-find-entry): Alias for bibtex-search-entry.
7231 (bibtex-search-crossref): Rename from bibtex-find-crossref.
7232 (bibtex-find-crossref): Alias for bibtex-search-crossref.
7233 (bibtex-clean-entry): atomic-change-group removed.
7234 (bibtex-format-entry): Use atomic-change-group. Use unwind-protect
7235 to locate buffer location where error occurred.
7236 Make error messages more specific.
7237 (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
7238
7239 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
7240
7241 * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
7242 top level.
7243
7244 * simple.el (transient-mark-mode): Add an :init-value.
7245
7246 * startup.el (command-line): Use custom-reevaluate-setting for
7247 transient-mark-mode.
7248
7249 2008-02-17 Michaël Cadilhac <michael@cadilhac.name>
7250
7251 * wdired.el (wdired-allow-to-change-permissions): Fix typo.
7252
7253 2008-02-16 Juri Linkov <juri@jurta.org>
7254
7255 * startup.el (after-init-time): New variable.
7256 (command-line): Set `after-init-time' to the current time.
7257
7258 * time.el (emacs-init-time): New function.
7259
7260 2008-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
7261
7262 * files.el (locate-dominating-file): Remove initial loop because it's
7263 not careful enough. Detect the uid-change all within the main loop.
7264
7265 2008-02-16 Lawrence Mitchell <wence@gmx.li> (tiny change)
7266
7267 * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
7268
7269 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
7270
7271 * vc.el (vc-annotate): Add new argument.
7272 (vc-annotate-warp-revision): Pass the current line to vc-annotate.
7273
7274 * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
7275 Move make-variable-buffer-local code after the corresponding defvar.
7276 (hs-minor-mode-map): Define and initialize in one step.
7277 (hs-minor-mode): Change from defun to define-minor-mode.
7278
7279 2008-02-16 Nick Roberts <nickrob@snap.net.nz>
7280
7281 * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
7282 (gdb-ready): Move declaration...
7283
7284 * progmodes/gdb-ui.el (gdb-ready): ...to here.
7285 (gdb-early-user-input): New variable.
7286 (gdb): Reset gdb-flush-pending-output to nil and set
7287 comint-input-sender here (before gdb-prompt), instead of...
7288 (gdb-init-1): ...here.
7289 (gdb-send): If Emacs is not ready, defer user input to...
7290 (gdb-prompt): ...here.
7291
7292 2008-02-16 Glenn Morris <rgm@gnu.org>
7293
7294 * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
7295
7296 * startup.el (emacs-startup-time): Rename to `before-init-time'.
7297 (before-init-time): New name for `emacs-startup-time'.
7298 (command-line): Use before-init-time rather than emacs-startup-time.
7299 * time.el (emacs-uptime): Use before-init-time rather than
7300 emacs-startup-time.
7301
7302 * composite.el (composition-function-table): Doc fix.
7303
7304 * calendar/time-date.el (format-seconds): Remove `nonzero' argument
7305 in favor of `%z' specifier.
7306 (emacs-uptime): Move to time.el.
7307 * time.el (emacs-uptime): Move here from time-date.el. Add optional
7308 `format' argument. Doc fix. Use `%z' rather than removed `nonzero'
7309 argument of format-seconds.
7310
7311 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
7312
7313 * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
7314
7315 2008-02-15 Lawrence Mitchell <wence@gmx.li> (tiny change)
7316
7317 * ielm.el (ielm-is-whitespace): Remove.
7318 (ielm-is-whitespace-or-comment): New function.
7319 (ielm-eval-input): Use it.
7320
7321 2008-02-15 Jason Rumney <jasonr@gnu.org>
7322
7323 * term/mac-win.el: Fix coding tag.
7324
7325 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
7326
7327 * vc-hooks.el (vc-menu-map):
7328 * bindings.el (mode-line-mode-menu): Add tooltips.
7329
7330 * bindings.el (help-echo): Add more tooltips. Use a less
7331 telegraphic style for existing tooltips.
7332
7333 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
7334
7335 * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
7336 from the auto-generated one.
7337
7338 2008-02-14 Glenn Morris <rgm@gnu.org>
7339
7340 * mail/rmail-spam-filter.el (rmail-spam-filter):
7341 Let-bind message-spam-status.
7342
7343 * mail/smtpmail.el (password-cache-add): Declare as function.
7344
7345 2008-02-14 Justus Piater <Justus-bulk@Piater.name> (tiny change)
7346
7347 * mail/smtpmail.el: Use password-cache.
7348
7349 2008-02-14 Juanma Barranquero <lekktu@gmail.com>
7350
7351 * uniquify.el (uniquify-buffer-base-name): New function.
7352 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7353
7354 * desktop.el (uniquify-managed): Don't defvar.
7355 (desktop-buffer-info): Use `uniquify-buffer-base-name', not
7356 `uniquify-managed'. Return also the buffer's base name.
7357 (desktop-save): When saving the buffer info, filter out the base name,
7358 and save it as buffer name if the buffer is managed by uniquify.
7359 (uniquify-item-base): Don't declare; not called anymore.
7360
7361 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu>
7362
7363 * vc.el (vc-annotate-find-revision-at-line): New function.
7364 (vc-annotate-mode-map): Bind it.
7365 (vc-annotate-mode-menu): Add a menu entry for it. Add :help for
7366 some entries.
7367
7368 2008-02-14 Glenn Morris <rgm@gnu.org>
7369
7370 * calendar/time-date.el (format-seconds): New function.
7371 (emacs-uptime): Use format-seconds.
7372
7373 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
7374 Remove `LC_ALL=C', since it's included in $(emacs) now.
7375
7376 2008-02-14 Zhang Wei <id.brep@gmail.com>
7377
7378 * textmodes/org-publish.el (org-publish-timestamp-filename):
7379 Replace colon characters in filename too.
7380
7381 2008-02-13 Bastien Guerry <bzg@altern.org>
7382
7383 * mail/rmail.el (rmail-header-name): New face.
7384 (rmail-font-lock-keywords): Use rmail-header-name.
7385
7386 * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
7387 against X-Spam-Status header field.
7388 (rmail-spam-filter): Also check X-Spam-Status header field.
7389
7390 2008-02-14 Mark A. Hershberger <mah@everybody.org>
7391
7392 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7393 Add support for .pm files and .php files.
7394 (flymake-err-line-patterns): Add pattern for PHP errors.
7395 (flymake-php-init): New function. PHP support for flymake.
7396
7397 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7398 Add regular expression for PHP errors.
7399
7400 2008-02-13 Michael Albinus <michael.albinus@gmx.de>
7401
7402 * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
7403 This DTRT even on w32 machines.
7404 (ange-ftp-cf1): Quote FILENAME.
7405
7406 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
7407
7408 * smerge-mode.el (smerge-auto-combine-max-separation): New var.
7409 (smerge-auto-combine): New fun.
7410
7411 2008-02-12 Juri Linkov <juri@jurta.org>
7412
7413 * startup.el (fancy-startup-screen, normal-splash-screen):
7414 Set default-directory to command-line-default-directory.
7415
7416 * desktop.el (after-init-hook): Set inhibit-startup-screen to t
7417 after reading the desktop.
7418
7419 * progmodes/compile.el (compilation-auto-jump):
7420 Call compile-goto-error only when compilation-auto-jump-to-first-error
7421 is non-nil.
7422 (compilation-scroll-output): Replace :type 'boolean with a choice
7423 that has three options including a third option `first-error'.
7424 Doc fix.
7425 (compilation-start, compilation-forget-errors): Add an alternate
7426 condition comparing compilation-scroll-output with `first-error'
7427 in addition to compilation-auto-jump-to-first-error (to call
7428 compilation-auto-jump in the proper place).
7429
7430 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
7431
7432 * international/mule.el (sgml-html-meta-auto-coding-function):
7433 Make sure the search limit is ahead.
7434
7435 * tar-mode.el: Fix broken indentation.
7436 (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
7437 Use with-current-buffer.
7438
7439 2008-02-12 Juanma Barranquero <lekktu@gmail.com>
7440
7441 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
7442 it is already automatically buffer-local.
7443
7444 2008-02-11 Drew Adams <drew.adams@oracle.com>
7445
7446 * help.el (describe-key): Join some split lines to facilitate filling.
7447 * help-fns.el (describe-function-1): Fill text of overlong lines.
7448
7449 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp>
7450
7451 * emacs-lisp/bytecomp.el (byte-compile-lapcode):
7452 Use unibyte-string instead of string-make-unibyte.
7453
7454 * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
7455
7456 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
7457
7458 * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
7459 works also for buffers w/o buffer-file-name. Update callers.
7460 (doc-view-clone-buffer-hook): New fun.
7461 (doc-view-mode): Use it for indirect clones. Mark the overlays with
7462 the `doc-view' property so they can be recognized.
7463
7464 * simple.el (clone-indirect-buffer-hook): New hook.
7465 (clone-indirect-buffer): Run it.
7466
7467 2008-02-11 Daiki Ueno <ueno@unixuser.org>
7468
7469 * epa.el (epa-menu-mode): Merge into epa-mode.
7470 (epa-menu-items): Rename the label "EasyPG Assistant" to
7471 "Encryption/Decryption".
7472
7473 * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
7474 (epa-dired-mode-map): Rename from epa-dired-map.
7475 (epa-global-dired-mode): Rename the global minor mode.
7476
7477 2008-02-11 Drew Adams <drew.adams@oracle.com>
7478
7479 * isearch.el (isearch-fail): New face.
7480 (isearch-message): Highlight failure part of input.
7481
7482 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
7483
7484 * ibuffer.el (ibuffer-header-line-format): New var.
7485 (ibuffer-mode): Set it instead of header-line-format.
7486 (ibuffer-update): Use it to set header-line-format.
7487
7488 * international/mule-cmds.el (ucs-insert): Inherit surrounding
7489 properties like self-insert-command.
7490
7491 2008-02-11 Drew Adams <drew.adams@oracle.com>
7492
7493 * progmodes/etags.el: Add many doc strings.
7494
7495 2008-02-11 Jason Rumney <jasonr@gnu.org>
7496
7497 * ldefs-boot.el: Regenerated.
7498
7499 2008-02-11 Glenn Morris <rgm@gnu.org>
7500
7501 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7502 Shorten some names.
7503
7504 * ffap.el (ffap-rfc-directories): Add :version.
7505
7506 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com>
7507
7508 * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
7509 files, and backup files of same.
7510
7511 2008-02-11 Kevin Ryde <user42@zip.com.au>
7512
7513 * ffap.el (ffap-rfc-directories): New variable.
7514 (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
7515
7516 * info.el (Info-next-reference, Info-prev-reference)
7517 (Info-try-follow-nearest-node): Move to and follow https:// links too.
7518
7519 * simple.el (completion-list-mode): Show full completion-list-mode-map
7520 in the docstring.
7521
7522 2008-02-11 Sam Steingold <sds@gnu.org>
7523
7524 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
7525
7526 2008-02-11 Glenn Morris <rgm@gnu.org>
7527
7528 * startup.el (emacs-startup-time): New variable.
7529 (command-line): Set emacs-startup-time.
7530
7531 * calendar/time-date.el (emacs-uptime): New function.
7532
7533 2008-02-10 Bastien Guerry <bzg@altern.org>
7534
7535 * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
7536 (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
7537 it is nil.
7538
7539 2008-02-10 Daiki Ueno <ueno@unixuser.org>
7540
7541 * epg-config.el: Expand the contents of epg-package-info.el.
7542 (epg-package-name): New constant.
7543 (epg-version-number): New constant.
7544 (epg-bug-report-address): New constant.
7545
7546 * epa-mail.el (epa-mail-mode): Add autoload cookie.
7547 (epa-global-mail-mode): New global minor mode.
7548
7549 * epa-file.el (epa-file-mode): New global minor mode.
7550
7551 * epa-dired.el (epa-dired-mode): New global minor mode.
7552
7553 * epa.el (epa-menu): New variable.
7554 (epa-menu-items): New variable.
7555 (epa-menu-mode): New global minor mode.
7556 (epa-global-minor-modes): New user option.
7557 (epa-mode): New global minor mode.
7558
7559 2008-02-10 Michael Albinus <michael.albinus@gmx.de>
7560
7561 * net/dbus.el: Remove `no-byte-compile' cookie.
7562 (dbus-call-method, dbus-register-signal, dbus-debug)
7563 (dbus-registered-functions-table): Declare them with
7564 `declare-function' or `defvar', respectively.
7565 (top): Don't assert any longer. Require 'cl when compiling.
7566 Apply `ignore-errors' but `dbus-ignore-errors'.
7567
7568 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
7569
7570 * diff-mode.el (diff-add-change-log-entries-other-window):
7571 Use add-change-log-entry.
7572
7573 2008-02-09 Jason Rumney <jasonr@gnu.org>
7574
7575 * button.el (button-map):
7576 * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
7577 * ldefs-boot.el: Regenerate.
7578
7579 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
7580
7581 * epa.el (epa-faces, epa):
7582 * epa-file.el (epa-file):
7583 * epg-config.el (epg): Add :version.
7584
7585 2008-02-09 Thien-Thi Nguyen <ttn@gnuvola.org>
7586
7587 * vc.el (vc-exec-after): Append CODE to previous fragments.
7588 (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
7589 take MESSAGES instead of VERBOSE; use it when non-nil.
7590 (vc-diff-internal): Compute messages once; use them;
7591 update call to vc-diff-finish.
7592
7593 2008-02-09 Michael Olson <mwolson@gnu.org>
7594
7595 * net/tramp.el (tramp-process-sentinel): Avoid error when process
7596 buffer has been killed, such as by
7597 `tramp-cleanup-all-connections'.
7598
7599 2008-02-09 Miles Bader <miles@gnu.org>
7600
7601 * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
7602
7603 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
7604
7605 * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
7606 splitter in context hunks.
7607
7608 2008-02-08 Kenichi Handa <handa@ni.aist.go.jp>
7609
7610 * international/fontset.el (setup-default-fontset): Fix arabic otf
7611 font specification.
7612
7613 2008-02-08 Daiki Ueno <ueno@unixuser.org>
7614
7615 * epa-dired.el:
7616 * epa-file.el:
7617 * epa-mail.el:
7618 * epa-setup.el:
7619 * epa.el:
7620 * epg-config.el:
7621 * epg-package-info.el:
7622 * epg.el: Initial check-in of EasyPG.
7623
7624 2008-02-08 Glenn Morris <rgm@gnu.org>
7625
7626 * woman.el (woman-locale): New defcustom.
7627 (woman-expand-locale, woman-manpath-add-locales): New functions.
7628 (woman-manpath): Call woman-manpath-add-locales. Bump :version.
7629
7630 * international/mule-cmds.el (locale-translate): New function,
7631 with old code extracted from set-locale-environment.
7632 (set-locale-environment): Use locale-translate. Set woman-locale.
7633
7634 * cus-start.el (selection-coding-system): Remove, since it's now
7635 defined in select.el rather than in xselect.c.
7636 * select.el (selection-coding-system): Make it a defcustom, and
7637 add the properties from cus-start.el. Bump :version.
7638
7639 * custom.el (custom-theme-set-variables): Sort symbols that are
7640 dependencies before symbols that depend on them.
7641 (custom-enabled-themes): Set after custom-theme-directory.
7642
7643 * pcmpl-unix.el (top-level): Move provide statement to end.
7644 (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
7645 `*' from doc-string. Allow to be nil.
7646 (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
7647 Allow to be nil. Add :version.
7648 (pcmpl-ssh-hosts): Move definition before use. Handle lines
7649 without hostnames, and multiple hostnames per line.
7650
7651 * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
7652
7653 2008-02-08 Phil Hagelberg <phil@evri.com>
7654
7655 * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
7656 (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
7657
7658 2008-02-07 Timo Savola <timo.savola@iki.fi>
7659
7660 * startup.el (command-line-x-option-alist): Add --parent-id.
7661
7662 * term/x-win.el (x-handle-parent-id): New function.
7663
7664 2008-02-07 Chris Moore <christopher.ian.moore@gmail.com>
7665
7666 * mouse.el (x-fixed-font-alist): Use consistent capitalization for
7667 "Font Menu".
7668
7669 2008-02-06 Michael Albinus <michael.albinus@gmx.de>
7670
7671 * net/dbus.el (dbus-interface-peer): New defconst.
7672 (dbus-ping): New defun.
7673
7674 2008-02-06 Sam Steingold <sds@gnu.org>
7675
7676 * vc-hooks.el (vc-prefix-key): New user-customizable variable.
7677
7678 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7679
7680 * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
7681 Just return nil and let the C code provide a fallback.
7682
7683 2008-02-05 Glenn Morris <rgm@gnu.org>
7684
7685 * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
7686 tramp-flush-connection-property for removed 2nd argument.
7687
7688 2008-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
7689
7690 * diff-mode.el (diff-add-change-log-entries-other-window):
7691 Rename from diff-create-changelog. Change users.
7692 Minor change to hopefully work with plain diffs.
7693 (diff-mode-map): Add binding for it.
7694
7695 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
7696
7697 * diff-mode.el: Add new TODO entry.
7698 (diff-create-changelog): New function.
7699 (diff-mode-menu): Bind it.
7700
7701 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
7702
7703 * international/mule-diag.el (print-fontset-element): Handle the
7704 case of inhibiting the fallback fonts.
7705
7706 2008-02-04 Kim F. Storm <storm@cua.dk>
7707
7708 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
7709 (ido-magic-delete-char): Use prefix arg.
7710
7711 2008-02-03 Juanma Barranquero <lekktu@gmail.com>
7712
7713 * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
7714 because the latter is in fact a 1.2.8 build distributed with GTK+ (as
7715 of today, the most recent libpng is 1.2.24).
7716
7717 2008-02-03 Michael Albinus <michael.albinus@gmx.de>
7718
7719 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
7720
7721 * net/dbus.el (top): Check (featurep 'dbusbind).
7722
7723 * net/tramp.el (tramp-process-sentinel): New defun.
7724 (tramp-do-copy-or-rename-file-out-of-band)
7725 (tramp-maybe-open-connection): Use it as process sentinel.
7726 (tramp-handle-delete-directory): Don't use the "-f" option; it
7727 isn't portable.
7728 (tramp-handle-start-file-process): Echo `tramp-end-of-output'
7729 after the command.
7730 (tramp-handle-shell-command): Set `mode-line-process' in the
7731 asynchronous case.
7732
7733 * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
7734
7735 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
7736 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
7737 Use `tramp-process-sentinel' as process sentinel.
7738
7739 2008-02-02 Juanma Barranquero <lekktu@gmail.com>
7740
7741 * whitespace.el (global-whitespace-mode): Revert last change.
7742 (whitespace-unload-function): Force `global-whitespace-mode'
7743 to deactivate local modes in a slightly less intrusive way.
7744
7745 2008-02-02 Eli Zaretskii <eliz@gnu.org>
7746
7747 * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
7748
7749 2008-02-02 Glenn Morris <rgm@gnu.org>
7750
7751 * international/latin1-disp.el (latin1-display):
7752 * progmodes/fortran.el (fortran-comment-indent-char):
7753 * progmodes/idlw-shell.el (top-level):
7754 * term/mac-win.el (mac-keyboard-translate-char):
7755 * whitespace.el (whitespace-char-valid-p):
7756 * wid-edit.el (widget-key-sequence-read-event):
7757 Use characterp rather than char-valid-p.
7758
7759 * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
7760 to capitalized-find-word-boundary. Doc fix. Update callers.
7761 (capitalized-next-word-boundary-function-table): Rename to
7762 capitalized-find-word-boundary-function-table. Doc fix. Update users.
7763
7764 * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
7765 string-to-int.
7766
7767 * ps-def.el (declare-function): Add compatibility definition.
7768 (ps-plot-with-face, ps-plot-string): Declare as functions.
7769 (ps-bold-faces, ps-italic-faces): Declare variables.
7770
7771 * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
7772 (ps-mule-end-job): Declare as functions.
7773
7774 * wid-edit.el (widget-string-complete): Use assoc-string rather
7775 than assoc-ignore-case.
7776
7777 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
7778
7779 * progmodes/etags.el (next-file): Improve revert message.
7780
7781 2008-02-01 Andreas Schwab <schwab@suse.de>
7782
7783 * loadup.el: Load language/burmese instead of language/myanmar.
7784
7785 2008-02-01 Richard Stallman <rms@gnu.org>
7786
7787 * language/burmese.el: Rename from myanmar.el.
7788 ("Burmese"): Rename from "Myanmar".
7789
7790 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7791
7792 * international/fontset.el (script-representative-chars): Add cham
7793 and tai-viet.
7794 (setup-default-fontset): Add iso10646-1 font for latin and ipa.
7795 Add fontconfig spec for cjk-misc. Explicitly specify font font
7796 for U+E000..U+F8FF.
7797
7798 * international/characters.el (script-list): Add cham.
7799
7800 * language/cham.el: New file.
7801
7802 2008-02-01 Mark A. Hershberger <mah@everybody.org>
7803
7804 * xml.el (xml-escape-string): Don't do any encoding changes on the
7805 string.
7806
7807 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7808
7809 * language/ind-util.el (in-is13194-post-read-conversion):
7810 Delete unnecessary call of indian-compose-region.
7811
7812 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7813
7814 * ps-print.el: Some face attributes (like :strike-through) were not
7815 being recognised. Reported by Leo <sdl.web@gmail.com>.
7816 (ps-print-version): New version 7.3.2.
7817 (ps-screen-to-bit-face): Fix code. Call ps-face-strikout-p,
7818 ps-face-overline-p and ps-face-box-p functions.
7819
7820 * ps-def.el (ps-face-strikout-p, ps-face-overline-p, ps-face-box-p):
7821 New functions.
7822
7823 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7824
7825 * international/fontset.el (font-encoding-alist): Add an entry for
7826 iso8859-16.
7827 (setup-default-fontset): Add iso8859-16 to latin.
7828
7829 * descr-text.el (describe-char-display): Convert a GLYPH-CODE to a
7830 hexadigit string.
7831 (describe-char): Adjust for the above change.
7832
7833 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7834
7835 * international/fontset.el (font-encoding-alist): Don't set the
7836 repertory of GB18030 fonts.
7837
7838 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7839
7840 * language/indian.el: Set font-shape-text for all Indic characters
7841 in composition-function-table.
7842
7843 * language/khmer.el: New file.
7844
7845 * language/myanmar.el: New file.
7846
7847 * loadup.el: Load "language/khmer" and "language/myanmar".
7848
7849 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7850
7851 * international/fontset.el (setup-default-fontset): Fix lao OTF
7852 script name.
7853
7854 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7855
7856 * composite.el (terminal-composition-modification): Delete it.
7857
7858 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7859
7860 * international/fontset.el (x-complement-fontset-spec):
7861 Complement size too.
7862
7863 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7864
7865 * international/fontset.el (font-encoding-charset-alist):
7866 Initialize it.
7867 (otf-script-alist): Fix typo of canadian-aboriginal.
7868 (setup-default-fontset): Specify font-specs for many more scripts.
7869 (x-complement-fontset-spec): Change the first argument to a
7870 font-spec object.
7871 (create-fontset-from-fontset-spec): Adjust for the above change.
7872
7873 2008-02-01 Kenichi Handa <handa@m17n.org>
7874
7875 * language/devanagari.el: Register font-shape-text in
7876 composition-function-table.
7877
7878 * language/tibetan.el: Register font-shape-text in
7879 composition-function-table.
7880
7881 * language/thai-util.el (thai-composition-function): Fix arguments.
7882
7883 * language/tamil.el: Register font-shape-text in
7884 composition-function-table.
7885
7886 * language/malayalam.el: Register font-shape-text in
7887 composition-function-table.
7888
7889 * language/lao.el: Register font-shape-text in
7890 composition-function-table.
7891
7892 * language/kannada.el: Register font-shape-text in
7893 composition-function-table.
7894
7895 * language/european.el (diacritic-composition-function): Fix arguments.
7896
7897 * language/ethio-util.el (ethio-composition-function): Fix arguments.
7898
7899 * language/tv-util.el (tai-viet-composition-function): Fix arguments.
7900
7901 * composite.el (composition-function-table): Fix docstring.
7902 (terminal-composition-function): Fix arguments.
7903 (auto-compose-current-font): Delete it.
7904 (auto-compose-chars): Adjust for the change of
7905 composition-function-table.
7906
7907 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7908
7909 * international/fontset.el (font-encoding-alist): Add the entry of
7910 "unicode-bmp".
7911
7912 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7913
7914 * composite.el (auto-compose-chars): Be sure to calculate
7915 composition at least at POS.
7916
7917 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7918
7919 * printing.el: Fix pr-interface-map initialization code.
7920 (pr-version): New version 6.9.3.
7921 (pr-f-set-keymap-parents): Replace by pr-set-keymap-parents.
7922 (pr-f-set-keymap-name): Replace by pr-set-keymap-name.
7923 (pr-f-read-string): Replace by pr-read-string.
7924 (pr-set-keymap-parents, pr-set-keymap-name, pr-read-string):
7925 New function name.
7926 (pr-interactive-n-up, pr-interactive-regexp): Code fix.
7927
7928 2008-02-01 Kenichi Handa <handa@m17n.org>
7929
7930 * language/tv-util.el (tai-viet-re): Include '-'.
7931 (tai-viet-glyph-info): Handle '-'.
7932
7933 2008-02-01 Kenichi Handa <handa@m17n.org>
7934
7935 * descr-text.el (describe-char): Handle a composition of the new
7936 format. Show font name.
7937
7938 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7939
7940 * language/tibet-util.el (tibetan-composition-function): Use
7941 font-shape-text if auto-compose-current-font is non-nil.
7942
7943 * language/tibetan.el: Fix the range for recording
7944 tibetan-composition-function in composition-function-table.
7945
7946 * language/mlm-util.el (malayalam-composition-function): Use
7947 font-shape-text if auto-compose-current-font is non-nil.
7948
7949 * international/mule-conf.el: Flag many charsets as supplementary.
7950
7951 * international/mule.el (define-charset): Update the docstring for
7952 :supplementary-p.
7953
7954 * international/fontset.el (setup-default-fontset): Add OpenType
7955 fonts for malayalam and tibetan.
7956
7957 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7958
7959 * international/fontset.el (x-complement-fontset-spec): Use font-spec.
7960
7961 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7962
7963 * international/fontset.el (otf-script-alist): Make all otf tags
7964 4-letters.
7965 (setup-default-fontset): Add OpenType fonts for devanagari and tamil.
7966
7967 * language/tml-util.el (tamil-composition-function): Use
7968 font-shape-text if auto-compose-current-font is non-nil.
7969
7970 * language/devan-util.el (devanagari-composition-function): Use
7971 font-shape-text if auto-compose-current-font is non-nil.
7972
7973 * composite.el (auto-compose-chars): Change argument font-object
7974 to window.
7975
7976 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7977
7978 * ps-print.el (ps-lpr-switches): Docstring fix.
7979 (ps-string-list): New function.
7980 (ps-do-despool): Code fix.
7981
7982 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7983
7984 * international/utf-7.el (utf-7-imap-post-read-conversion)
7985 (utf-7-imap-pre-write-conversion): New functions.
7986
7987 * international/mule-conf.el (utf-7-imap): New coding system.
7988
7989 2008-02-01 Kenichi Handa <handa@m17n.org>
7990
7991 * term/x-win.el (x-selection-value): If x-select-request-type is
7992 nil, try also STRING at last.
7993 (x-select-request-type): Doc fix for the change of x-selection-value.
7994
7995 * select.el (selection-coding-system, next-selection-coding-system):
7996 Move declarations from xselect.c.
7997 (x-get-selection): Decode by selection-coding-system if it is non-nil.
7998 If it is nil, decode by a proper coding system. Handle C_STRING.
7999 (ccl-check-utf-8, string-utf-8-p): Delete them.
8000 (xselect-convert-to-string): Fix determining data-type in the case
8001 that TEXT is requested. Don't use selection-coding-system if it's
8002 not proper for the data-type.
8003
8004 2008-02-01 Kenichi Handa <handa@m17n.org>
8005
8006 * term/x-win.el (x-selection-value): If x-select-request-type is
8007 nil, simply try UTF8_STRING and COMPOUND-TEXT in this order.
8008
8009 2008-02-01 Jason Rumney <jasonr@gnu.org>
8010
8011 * term/w32-win.el (w32-initialize-window-system): Use t, not nil
8012 to signify default fontset.
8013
8014 2008-02-01 Kenichi Handa <handa@m17n.org>
8015
8016 * international/mule-cmds.el (describe-language-environment):
8017 Check if the specified input method exists or not.
8018
8019 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8020
8021 * ps-print.el (ps-begin-job): Error if ps-lpr-switches is not a list.
8022 (ps-face-background-name): Remove this function. It's already defined
8023 in ps-def.el file.
8024
8025 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8026
8027 * ps-print.el: Eliminate the check if ps-print was running on Lucid or
8028 Epoch emacsen.
8029
8030 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8031
8032 * ps-print.el: Now detect if text foreground and background colors are
8033 equals and replace the foreground color by another color, so the text
8034 becomes visible. Doc fix.
8035 (ps-print-version): New version 7.3.
8036 (ps-default-fg, ps-default-bg): Docstring fix.
8037 (ps-fg-list, ps-fg-validate-p): New options.
8038 (ps-foreground-list): New variable.
8039 (ps-generate-header-line): Replace fboundp by functionp.
8040 (ps-setup, ps-begin-job, ps-plot-region): Fix code.
8041
8042 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8043
8044 * printing.el: Pacify byte compiler, that is, no compiler warnings.
8045 Move (again) some variable definitions before use, define some
8046 function aliases, no code change.
8047 (pr-version): New version 6.9.2.
8048 (pr-path-style, pr-auto-region, pr-menu-char-height)
8049 (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
8050 (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
8051 via (defvar VAR).
8052 (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
8053 (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
8054 (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
8055 (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
8056 (pr-f-set-keymap-parents, pr-keep-region-active): Function aliases.
8057 (pr-menu-print-item, pr-ps-printer-menu-modified)
8058 (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
8059 (pr-even-or-odd-alist): Move variable definitions.
8060
8061 2008-02-01 Kenichi Handa <handa@m17n.org>
8062
8063 * language/chinese.el (cp936): Delete duplicated alias.
8064
8065 * international/mule-diag.el (list-block-of-chars): Don't insert
8066 non-Unicode characters.
8067
8068 2008-02-01 Jason Rumney <jasonr@gnu.org>
8069
8070 * loadup.el [windows-nt]: Don't load code-pages and ccl.
8071 * term/w32-win.el: Don't require code-pages.
8072
8073 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8074
8075 Fix up multi-tty merge.
8076
8077 * version.el (emacs-version): Bump to 23.0.60.
8078
8079 * term/x-win.el (x-initialize-window-system): Don't try to create
8080 a fontset from a font-specification anymore. This was removed on the
8081 unicode branch and mistakenly re-added by the multi-tty merge.
8082
8083 * term/w32-win.el: Remove duplicate code that's now in
8084 w32-initialize-window-system.
8085 (w32-initialize-window-system): Don't try to create a fontset from
8086 a font-specification anymore. This was removed on the unicode branch
8087 and mistakenly re-added by the multi-tty merge.
8088
8089 * term/mac-win.el: Remove duplicate top-level code.
8090
8091 * language/ethio-util.el:
8092 * international/characters.el: Use utf-8 rather than utf-8-emacs
8093 since it works as well and has the advantage of working with
8094 non-unicode versions of Emacs.
8095
8096 * international/encoded-kb.el (encoded-kbd-setup-display): Use the new
8097 multi-tty code, which includes the previous local change.
8098
8099 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8100
8101 * ps-print.el (ps-print-version): New version 7.2.5.
8102 (ps-background, ps-begin-file, ps-build-reference-face-lists):
8103 Use `mapc' rather than `mapcar'.
8104
8105 2008-02-01 Kenichi Handa <handa@m17n.org>
8106
8107 * skeleton.el (skeleton-internal-1): Use integerp and stringp
8108 instead of char-or-string-p to catch -1.
8109
8110 2008-02-01 Kenichi Handa <handa@m17n.org>
8111
8112 * international/mule-cmds.el (inactivate-input-method):
8113 Set input-method-function to nil before calling
8114 inactivate-current-input-method-function.
8115
8116 2008-02-01 Kenichi Handa <handa@m17n.org>
8117
8118 * play/gamegrid.el (gamegrid-setup-default-font): Calculate a font
8119 height that doesn't exceed the requested height by rounding off.
8120
8121 2008-02-01 Andreas Schwab <schwab@suse.de>
8122
8123 * international/mule-diag.el (print-fontset-element):
8124 Use fontp only if defined.
8125
8126 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8127
8128 * ps-mule.el (ps-mule-prepare-font, ps-mule-encode-region)
8129 (ps-mule-plot-composition, ps-mule-encode-header-string): Docstring fix.
8130 (ps-mule-prologue-generated): Code fix.
8131
8132 2008-02-01 Kenichi Handa <handa@m17n.org>
8133
8134 * dnd.el (dnd-get-local-file-name): Call replace-regexp-in-string
8135 with FIXEDCASE t.
8136
8137 2008-02-01 Kenichi Handa <handa@m17n.org>
8138
8139 * international/mule-diag.el (print-fontset-element): Fix for the
8140 format change of a fontset element for font-backend feature.
8141
8142 2008-02-01 Kenichi Handa <handa@m17n.org>
8143
8144 * descr-text.el (describe-char): Fix for the case that a component
8145 character is TAB.
8146
8147 2008-02-01 Kenichi Handa <handa@m17n.org>
8148
8149 * international/mule-cmds.el (select-safe-coding-system-interactively):
8150 Fix printing of rejected and unsafe coding-systems.
8151
8152 * international/fontset.el (setup-default-fontset): Add tai-viet.
8153
8154 * international/characters.el: Setup syntax/category table for Tai Viet.
8155 (script-list): Add tai-viet.
8156
8157 * loadup.el: Load "language/tai-viet".
8158
8159 * language/tai-viet.el: New file.
8160
8161 * language/tv-util.el: New file.
8162
8163 2008-02-01 Jason Rumney <jasonr@gnu.org>
8164
8165 * faces.el (font-weight-table): Use defaults on w32 that match
8166 LOGFONT.lfWeight.
8167
8168 * term/w32-win.el: Don't create fontset from command-line font.
8169
8170 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
8171
8172 * international/mule-cmds.el (toggle-enable-multibyte-characters)
8173 (sort-coding-systems, search-unencodable-char): Doc fixes.
8174 (default-input-method, input-method-verbose-flag)
8175 (input-method-highlight-flag): Remove * in defcustom's docstrings.
8176 (exit-language-environment-hook, set-default-coding-systems)
8177 (coding-system-change-eol-conversion, prefer-coding-system)
8178 (find-multibyte-characters, leim-list-entry-regexp)
8179 (set-input-method, input-method-exit-on-first-char, princ-list)
8180 (locale-language-names, locale-charset-language-names)
8181 (define-char-code-property): Fix typos in docstrings.
8182
8183 2008-02-01 Kenichi Handa <handa@m17n.org>
8184
8185 * disp-table.el (make-glyph-code, glyph-char, glyph-face):
8186 Fix for a new character code space (22-bit).
8187
8188 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
8189
8190 * printing.el (pr-ps-fast-fire): Fix typos in docstring.
8191
8192 2008-02-01 Kenichi Handa <handa@m17n.org>
8193
8194 * international/characters.el: Add more cases/syntaxes from Latin
8195 characters.
8196
8197 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8198
8199 * ps-def.el (installation-directory): Must be initialized when defining
8200 it in XEmacs.
8201 (coding-system-for-read): Eliminate duplicated definition.
8202
8203 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8204
8205 * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
8206
8207 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8208
8209 * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
8210 (ps-print-emacs-type): Eliminate variable.
8211 (ps-setup): Remove ps-print-emacs-type. Print which Emacsen is
8212 running ps-print package.
8213
8214 * ps-def.el: Replace (defvar VAR nil) by (defvar VAR).
8215 (ps-frame-parameter): Replace defun by defalias.
8216 (mark-active): Eliminate defvar.
8217
8218 * ps-samp.el (ps-prsc, ps-c-prsc, ps-s-prsc): Eliminate macros.
8219 (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
8220 (ps-jts-ps-setup): Replace macros by vector key definition.
8221
8222 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8223
8224 * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
8225 * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
8226 * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
8227 * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
8228 * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
8229 * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
8230 New command actions for EPS header and EPS footer.
8231
8232 * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
8233 footer. Fix some problems with one-or-more, zero-or-more and
8234 alternative constructions generation. Some implementation of log
8235 messages. Doc fix.
8236 (ebnf-version): New version 4.4.
8237 (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
8238 (ebnf-eps-footer, ebnf-log): New options.
8239 (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
8240 (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
8241 (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
8242 (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
8243 (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New functions.
8244 (ebnf-style-custom-list, ebnf-style-database): Put new values.
8245 (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
8246 (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
8247 (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
8248 (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
8249 (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
8250 (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
8251 (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
8252 (ebnf-non-terminal-dimension, ebnf-special-dimension)
8253 (ebnf-terminal-dimension1, ebnf-repeat-dimension)
8254 (ebnf-except-dimension, ebnf-alternative-dimension)
8255 (ebnf-optional-dimension, ebnf-one-or-more-dimension)
8256 (ebnf-zero-or-more-dimension, ebnf-sequence-dimension):
8257 Insert log message function.
8258 (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
8259 (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
8260 (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
8261 (ebnf-terminal-dimension1, ebnf-alternative-dimension)
8262 (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
8263 (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
8264 (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
8265 compatibility with Emacs 20 & 21.
8266 (ebnf-eps-header-comment, ebnf-eps-footer-comment)
8267 (ebnf-eps-file-alist, ebnf-basic-width-extra)
8268 (ebnf-basic-empty-height): New variables.
8269 (ebnf-prologue): Fix PostScript code.
8270 (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
8271 (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
8272 (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
8273 (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
8274
8275 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8276
8277 * printing.el: Group together all XEmacs/Emacs definitions.
8278 (pr-version): New version 6.9.
8279 (pr-global-menubar, pr-menu-char-height, pr-menu-char-width):
8280 New functions.
8281 (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
8282 (pr-menu-bind): Fix code.
8283 (pr-e-frame-char-height, pr-e-frame-char-width)
8284 (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
8285 (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
8286 (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
8287 (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
8288 (pr-x-event-y-pixel): Eliminate aliases.
8289 (pr-xemacs-global-menubar): Move macro.
8290 (current-menubar, current-mouse-event, zmacs-region-stays)
8291 (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
8292 (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
8293 Move variables.
8294 (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
8295 (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
8296 (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
8297 (pr-menu-set-utility-title, pr-even-or-odd-pages)
8298 (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
8299 (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name):
8300 Move functions.
8301
8302 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8303
8304 * ps-print.el: The ps-print commands without face printing should not
8305 print background color. Reported by Leo <sdl.web@gmail.com>.
8306 (ps-print-version): New version 7.2.2.
8307 (ps-begin-job): New arg. Fix ps-default-background and
8308 ps-default-foreground initialization.
8309 (ps-face-attributes): Fix doc string.
8310 (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
8311
8312 * printing.el: Fix ps-print link.
8313
8314 2008-02-01 Kenichi Handa <handa@m17n.org>
8315
8316 * international/mule-diag.el (list-character-sets-2): Don't print width.
8317
8318 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8319
8320 * ps-print.ps: Fix background height.
8321 (ps-print-version): New version 7.2.1.
8322
8323 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8324
8325 * ps-print.el: Split XEmacs/Emacs definitions and sample setup code
8326 into separate files.
8327 (ps-print-version): New version 7.2.
8328 (ps-postscript-code-directory): Fix XEmacs initialization.
8329 (ps-generate-postscript-with-faces):
8330 Call ps-generate-postscript-with-faces1 (new function).
8331 (ps-color-format, ps-float-format): Move variables to ps-def.el.
8332 (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8333 (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8334 (ps-face-background-name, ps-frame-parameter, ps-color-device)
8335 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8336 Move functions to ps-def.el.
8337 (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8338 (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8339 (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8340 (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8341 (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8342 (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8343 Move functions to ps-samp.el.
8344
8345 * ps-bdf.el (installation-directory, coding-system-for-read):
8346 Move variables to ps-def.el.
8347
8348 * ps-mule.el (leading-code-private-22): Move variables to ps-def.el.
8349 (charset-bytes, charset-dimension, charset-id, charset-width)
8350 (find-charset-region, char-width, chars-in-region, forward-point)
8351 (decompose-composite-char, encode-coding-string, coding-system-p)
8352 (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8353 (string-make-multibyte, encode-char): Move functions to ps-def.el.
8354
8355 * ps-def.el: New file. XEmacs/Emacs definitions.
8356 (ps-generate-postscript-with-faces1): New function.
8357 (ps-color-format, ps-float-format): Move variables from ps-print.el.
8358 (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8359 (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8360 (ps-face-background-name, ps-frame-parameter, ps-color-device)
8361 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8362 Move functions from ps-print.el.
8363 (installation-directory, coding-system-for-read):
8364 Move variables from ps-bdf.el.
8365 (leading-code-private-22): Move variable from ps-mule.el.
8366 (charset-bytes, charset-dimension, charset-id, charset-width)
8367 (find-charset-region, char-width, chars-in-region, forward-point)
8368 (decompose-composite-char, encode-coding-string, coding-system-p)
8369 (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8370 (string-make-multibyte, encode-char): Move functions from ps-mule.el.
8371
8372 * ps-samp.el: New file. Sample setup code.
8373 (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8374 (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8375 (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8376 (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8377 (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8378 (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8379 Move functions from ps-print.el.
8380
8381 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8382
8383 * ps-print.el: Handle frame parameters (background and/or foreground
8384 colors) changing dynamically. Reported by Leo <sdl.web@gmail.com>.
8385 (ps-print-version): New version 7.1.
8386 (ps-x-frame-property, ps-e-frame-parameter): New aliases.
8387 (ps-frame-parameter): New function.
8388 (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
8389 Fix doc and customization.
8390 (ps-begin-job): Get frame parameters (background and/or foreground
8391 colors).
8392 (ps-do-despool): Ensure ps-printer-name has a valid value.
8393
8394 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8395
8396 * progmodes/ebnf-abn.el:
8397 * progmodes/ebnf-bnf.el:
8398 * progmodes/ebnf-dtd.el:
8399 * progmodes/ebnf-ebx.el:
8400 * progmodes/ebnf-iso.el:
8401 * progmodes/ebnf-otz.el:
8402 * progmodes/ebnf-yac.el:
8403 * progmodes/ebnf2ps.el:
8404 * delim-col.el:
8405 * printing.el:
8406 * ps-bdf.el:
8407 * ps-mule.el:
8408 * ps-print.el: Remove 'Time-stamp' comment mark.
8409
8410 * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
8411 'easy-menu-add-item' when called in Emacs 21 or higher.
8412
8413 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8414
8415 * ps-print.el : Fix doc.
8416 (ps-print-version): New version 7.0.
8417
8418 2008-02-01 Kenichi Handa <handa@m17n.org>
8419
8420 * mail/emacsbug.el (report-emacs-bug): Insert also the value of
8421 XMODIFIERS.
8422
8423 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8424
8425 * ps-print.el: Fix maintainer email. Eliminate function declaration
8426 that kept compatibility with older Emacs version.
8427 (ps-print-version): New version 6.7.
8428
8429 2008-02-01 Kenichi Handa <handa@m17n.org>
8430
8431 * international/quail.el (quail-get-translations):
8432 Make quail-current-key multibyte if not yet done.
8433
8434 2008-02-01 Zhang Wei <id.brep@gmail.com>
8435
8436 * language/chinese.el ("Chinese-GBK"): Add tutorial.
8437 ("Chinese-GB18030"): Add sample-text and tutorial.
8438
8439 * international/fontset.el (font-encoding-alist)
8440 (setup-default-fontset): Add gb18030.
8441 (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
8442 (charset-script-alist): Add gbk and gb18030.
8443
8444 * international/characters.el: Put property
8445 preferred-coding-system on gbk and gb18030.
8446
8447 * international/mule-cmds.el (locale-language-names): Add an entry
8448 for "zh_CN.UTF-8" and change "chs" to "Chinese-GBK".
8449
8450 * faces.el (face-font-registry-alternatives): Add gb18030.
8451
8452 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8453
8454 * ps-mule.el: Fix maintainer email.
8455
8456 2008-02-01 Kenichi Handa <handa@m17n.org>
8457
8458 * international/quail.el (quail-insert-kbd-layout): Check the
8459 length of (cdr translation).
8460 (quail-get-current-str): Check the length of (cdr def).
8461
8462 2008-02-01 Kenichi Handa <handa@m17n.org>
8463
8464 * ruler-mode.el (ruler-mode-ruler): Make the string `ruler' multibyte.
8465
8466 2008-02-01 Kenichi Handa <handa@m17n.org>
8467
8468 * international/mule-cmds.el (ucs-insert): Re-implement.
8469
8470 2008-02-01 Kenichi Handa <handa@m17n.org>
8471
8472 * composite.el (terminal-composition-modification): New function.
8473 (terminal-composition-function): Create composition with the above
8474 modification function.
8475
8476 2008-02-01 Zhang Wei <id.brep@gmail.com>
8477
8478 * international/characters.el: Add more full-width characters in
8479 char-width-table.
8480
8481 2008-02-01 Kenichi Handa <handa@m17n.org>
8482
8483 * international/fontset.el (create-fontset-from-fontset-spec):
8484 Fix script name handling.
8485
8486 2008-02-01 Kenichi Handa <handa@m17n.org>
8487
8488 * composite.el (terminal-composition-function): New function.
8489 (terminal-composition-function-table): New variable.
8490 (auto-compose-chars): If running on a terminal, use
8491 terminal-composition-function-table.
8492
8493 * loadup.el: Load "composite" after "international/characters".
8494
8495 * international/characters.el: Delete codes for setting up charset
8496 property nospace-between-words. Fix setting up of
8497 char-width-table. Don't make ethiopic and tibetan double column.
8498
8499 * textmodes/fill.el (fill-find-break-point-function-table):
8500 Don't set it up in defvar.
8501 (fill-nospace-between-words-table): New variable.
8502 (fill-delete-newlines): Check fill-nospace-between-words-table
8503 instead of charset property nospcae-between-words.
8504
8505 2008-02-01 Kenichi Handa <handa@m17n.org>
8506
8507 * composite.el (global-auto-composition-mode): Make the initial
8508 value not depend on emacs-basic-display.
8509
8510 * textmodes/fill.el: Don't use charset property
8511 `fill-find-break-point-function'.
8512 (fill-find-break-point-function-table): New variable.
8513 (fill-find-break-point): Lookup fill-find-break-point-function-table.
8514
8515 2008-02-01 Kenichi Handa <handa@m17n.org>
8516
8517 * international/mule.el (coding-system-list): Be sure to exclude
8518 subsidiary coding systems.
8519
8520 2008-02-01 Kenichi Handa <handa@m17n.org>
8521
8522 * composite.el (auto-composition-after-change)
8523 (toggle-auto-composition): Remove `auto-composed' property instead
8524 of setting it to nil.
8525
8526 2008-02-01 Kenichi Handa <handa@m17n.org>
8527
8528 * language/misc-lang.el (iso-8859-6): New coding system.
8529
8530 2008-02-01 Kenichi Handa <handa@m17n.org>
8531
8532 * dnd.el (dnd-get-local-file-name): Give a unibyte string to
8533 replace-regexp-in-string as replacement.
8534
8535 2008-02-01 Kenichi Handa <handa@m17n.org>
8536
8537 * international/fontset.el (otf-script-alist): Add byzm, math,
8538 musc, and nko.
8539
8540 * international/characters.el (script-list): Add nko,
8541 byzantine-musical-symbol, musical-symbol, and mathematical.
8542
8543 2008-02-01 Kenichi Handa <handa@m17n.org>
8544
8545 * composite.el (auto-compose-current-font): New variable.
8546 (auto-compose-chars): New arg FONT-OBJECT.
8547
8548 2008-02-01 Kenichi Handa <handa@m17n.org>
8549
8550 * international/characters.el: Modify category-table and
8551 script-table for new Ethiopic character range.
8552
8553 2008-02-01 Kenichi Handa <handa@m17n.org>
8554
8555 * international/mule-cmds.el (set-language-environment-fontset):
8556 Delete it.
8557
8558 2008-02-01 Kenichi Handa <handa@m17n.org>
8559
8560 * international/fontset.el (otf-script-alist): Set it.
8561
8562 2008-02-01 Kenichi Handa <handa@m17n.org>
8563
8564 * international/fontset.el (font-encoding-alist):
8565 Fix for "ethiopic-unicode".
8566
8567 2008-02-01 Kenichi Handa <handa@m17n.org>
8568
8569 * international/fontset.el (script-representative-chars):
8570 Add an entry for latin script.
8571
8572 2008-02-01 Kenichi Handa <handa@m17n.org>
8573
8574 * faces.el (font-weight-table): Treat regular and normal as the
8575 same as medium.
8576 (font-slant-table): Add (roman . 100).
8577
8578 2008-02-01 Kenichi Handa <handa@m17n.org>
8579
8580 These changes are for the new font handling codes.
8581
8582 * faces.el (font-weight-table, font-slant-table)
8583 (font-swidth-table): New customizable variables.
8584
8585 * international/fontset.el (font-encoding-alist): Add koi8-4.
8586 (script-representative-chars): Set the default value.
8587 (create-fontset-from-x-resource): Delete `message'.
8588
8589 2008-02-01 Kenichi Handa <handa@m17n.org>
8590
8591 * tar-mode.el (tar-untar-buffer, tar-summarize-buffer):
8592 Call set-buffer-multibyte with arg `to'.
8593
8594 2008-02-01 Kenichi Handa <handa@m17n.org>
8595
8596 * info.el (Info-fontify-node): Check if already fontified or not
8597 by next-single-property-change.
8598
8599 2008-02-01 Kenichi Handa <handa@m17n.org>
8600
8601 * international/mule.el (ctext-pre-write-conversion): Produce
8602 extra designation sequence for ASCII at the end off extended segment.
8603
8604 2008-02-01 Kenichi Handa <handa@m17n.org>
8605
8606 * international/mule.el (ctext-non-standard-encodings-table):
8607 Reverse the returning list.
8608 (ctext-pre-write-conversion): Fix encoding with extended segments.
8609
8610 * international/mule-conf.el (compound-text)
8611 (compound-text-with-extensions): Add long-form in :flags.
8612
8613 2008-02-01 Kenichi Handa <handa@m17n.org>
8614
8615 * international/fontset.el (create-fontset-from-fontset-spec): Fix
8616 regexp for paring FONTSET-SPEC (allow spaces after `:').
8617
8618 2008-02-01 Kenichi Handa <handa@m17n.org>
8619
8620 * international/fontset.el (create-fontset-from-fontset-spec): Fix
8621 for the case that a charset is specified as target.
8622
8623 2008-02-01 Kenichi Handa <handa@m17n.org>
8624
8625 * international/ccl.el (ccl-embed-string): Check string length.
8626 Set special flag for multibyte character sequence.
8627 (ccl-compile-write-string, ccl-compile-write-repeat): Don't make
8628 str unibyte.
8629 (ccl-compile-write): If the character code doesn't fit in 22-bit
8630 (ccl-dump-write-const-string): Check special flag for multibyte
8631 character sequence.
8632
8633 2008-02-01 Kenichi Handa <handa@m17n.org>
8634
8635 * ps-mule.el (ps-mule-eight-bit-char): Delete this function.
8636 (ps-mule-encode-region, ps-mule-plot-composition): Don't use
8637 ps-mule-eight-bit-char.
8638
8639 2008-02-01 Kenichi Handa <handa@m17n.org>
8640
8641 * language/chinese.el ("Chinese-BIG5"):
8642 Set ctext-non-standard-encodings property to "big5-0".
8643
8644 * international/mule.el (ctext-non-standard-encodings):
8645 Initialize to nil.
8646 (ctext-non-standard-encodings-alist): Set charset `big5' in the
8647 entry for "big5-0".
8648 (ctext-non-standard-encodings-table): Return a list instead of
8649 char-table.
8650 (ctext-pre-write-conversion): Adjust for the above change.
8651
8652 2008-02-01 Zhang Wei <id.brep@gmail.com>
8653
8654 * international/mule.el (ctext-non-standard-encodings-alist):
8655 Add an entry for gbk-0.
8656 (ctext-post-read-conversion): Use multibyt-char-to-unibyte to read
8657 a row 8-bit.
8658
8659 * language/chinese.el ("Chinese-GBK"):
8660 Set ctext-non-standard-encodings property to "gbk-0".
8661 Add sample-text property.
8662
8663 2008-02-01 Kenichi Handa <handa@m17n.org>
8664
8665 * international/kkc.el (kkc-region): Use
8666 this-single-command-raw-keys on pushing back an unhandled key sequence.
8667
8668 2008-02-01 Kenichi Handa <handa@m17n.org>
8669
8670 * international/encoded-kb.el (encoded-kbd-mode):
8671 Check saved-input-mode on turning off Encoded Kbd mode.
8672
8673 * composite.el (auto-composition-after-change): Use save-buffer-state.
8674 (turn-on-auto-composition-if-enabled): Don't turn on
8675 auto-composition-mode in a unibyte buffer.
8676
8677 2008-02-01 Kenichi Handa <handa@m17n.org>
8678
8679 * startup.el (command-line): Use custom-reevaluate-setting for
8680 global-auto-composition-mode.
8681
8682 * composite.el (auto-composition-function): Make it buffer local.
8683 (auto-composition-mode): New minor mode.
8684 (turn-on-auto-composition-if-enabled): New function.
8685 (global-auto-composition-mode): New global minor mode.
8686
8687 2008-02-01 Kenichi Handa <handa@m17n.org>
8688
8689 * descr-text.el (describe-char): Use insert-text-button instead of
8690 widget-create for "customize what to show" button.
8691
8692 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
8693
8694 * language/ethiopic.el: Fix copyright.
8695 (composition-function-table): Support a new character in Unicode 4.1.
8696
8697 * language/ethio-util.el (ethio-fidel-to-tex-buffer)
8698 (ethio-tex-to-fidel-buffer, ethio-composition-function)
8699 ("ethiopic-tex"): Support new characters in Unicode 4.1.
8700
8701 2008-02-01 Kenichi Handa <handa@m17n.org>
8702
8703 * international/characters.el: Register characters in
8704 auto-fill-chars. Put nospace-between-words to more charsets.
8705
8706 2008-02-01 Zhang Wei <id.brep@gmail.com>
8707
8708 * international/mule-cmds.el (locale-language-names): Add entries
8709 for zh_CN.GB2312, zh_CN.GBK, and zh_CN.GB18030.
8710 (locale-preferred-coding-systems): Fix entries for Chinese locales.
8711
8712 2008-02-01 Kenichi Handa <handa@etlken>
8713
8714 * international/utf-7.el: Delete the definition of utf-7.
8715 (utf-7-post-read-conversion, utf-7-pre-write-conversion):
8716 Add autoload cookies.
8717
8718 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8719
8720 * term/mac-win.el: Delete the code to create a fontset from the X
8721 resource "Font".
8722
8723 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
8724
8725 * international/robin.el (robin-define-package): Be sure to call
8726 put-char-code-property.
8727
8728 2008-02-01 Kenichi Handa <handa@m17n.org>
8729
8730 * language/korean.el (iso-2022-kr): Set :suitable-for-keyboard
8731 property to 1.
8732
8733 * international/mule-conf.el (cp1125): Set :ascii-compatible-p
8734 property to t.
8735
8736 * international/mule.el (coding-system-get):
8737 Check `ascii-incompatible' for backward compatiblity.
8738 (set-file-name-coding-system): Signal an error for a coding system
8739 not suitable for file name.
8740 (set-keyboard-coding-system): Signal an error for a coding system
8741 not suitable for keyboard.
8742
8743 * language/chinese.el (iso-2022-cn, iso-2022-cn-ext):
8744 Set :suitable-for-keyboard property to 1.
8745
8746 * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
8747 (iso-2022-jp-2004): Set :suitable-for-keyboard property to 1.
8748
8749 * language/vietnamese.el (vietnamese-viscii, vietnamese-vscii)
8750 (vietnamese-tcvn): Set :suitable-for-file-name property to t.
8751
8752 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
8753
8754 * international/robin.el (robin-define-package): Delete redundant code.
8755 (robin-add-rule): Allow N-1 reverse conversion.
8756
8757 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
8758
8759 * international/robin.el (robin-define-package): Make the
8760 expanded form shorter.
8761
8762 2008-02-01 Zhang Wei <id.brep@gmail.com>
8763
8764 * language/chinese.el (chinese-iso-8bit): Fix mime-charset of
8765 chiense-iso-8bit.
8766
8767 2008-02-01 Kenichi Handa <handa@m17n.org>
8768
8769 * loadup.el: If we are byte-compiling unidata-gen.el or running
8770 unidata-ge-files, set purify-flag to nil.
8771
8772 2008-02-01 Kenichi Handa <handa@m17n.org>
8773
8774 * loadup.el: Load international/charprop.el with NOERROR t.
8775
8776 * Makefile.in (AUTOGENEL): Add charprop.el and uni-*.el.
8777
8778 2008-02-01 Kenichi Handa <handa@m17n.org>
8779
8780 * term/mac-win.el (mac-centraleurroman, mac-cyrillic):
8781 New charsets and coding systems.
8782 (mac-symbol, mac-dingbats): New charsets.
8783
8784 2008-02-01 Kenichi Handa <handa@m17n.org>
8785
8786 * international/characters.el: Set syntax of NBSP to punctuation.
8787
8788 2008-02-01 Kenichi Handa <handa@m17n.org>
8789
8790 * international/mule-cmds.el: Don't require wid-edit.
8791
8792 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
8793
8794 * international/robin.el: New file.
8795
8796 * language/ethiopic.el: Change encoding to utf-8-emacs.
8797 Register ethio-composition-function in composition-function-table.
8798 ("Ethiopic"): Change coding-systems to utf-8-emacs.
8799
8800 * language/ethio-util.el: Change encoding to utf-8-emacs.
8801 Rewrite all transliteration functions to use robin.el.
8802 (ethio-fidel-to-sera-map, ethio-fidel-to-tex-map)
8803 (ethio-sera-to-fidel-table, ethio-implicit-period-conversion)
8804 (ethio-prefer-ascii-punctuation): Delete variables.
8805 (ethio-char-to-ethiocode, ethio-convert-digit)
8806 (ethio-ethiocode-to-char, ethio-fidel-to-sera-mail)
8807 (ethio-fidel-to-sera-mail-or-marker, ethio-lone-consonant-p)
8808 (ethio-sera-to-fidel-english, ethio-sera-to-fidel-ethio)
8809 (ethio-sera-to-fidel-mail, ethio-sera-to-fidel-mail-or-marker)
8810 (ethio-tilde-escape, ethio-toggle-punctuation): Delete functions.
8811 (ethio-adjust-robin, ethio-composition-function)
8812 (ethio-get-consonant, ethio-prefer-amharic, ethio-process-digits)
8813 (ethio-sera-to-fidel-region-ethio)
8814 (ethio-sera-to-fidel-region-noethio)
8815 (ethio-use-colon-for-colon, ethio-use-three-dot-question):
8816 New functions.
8817
8818 2008-02-01 Miles Bader <miles@gnu.org>
8819
8820 * international/mule.el (auto-coding-regexp-alist)
8821 (ctext-pre-write-conversion): Replace embedded control characters
8822 with octal escapes; this prevents diff from thinking the file is binary.
8823
8824 2008-02-01 Miles Bader <miles@gnu.org>
8825
8826 * descr-text.el (describe-char-unidata-list):
8827 * emacs-lisp/bytecomp.el (byte-compile-fix-header)
8828 (byte-compile-insert-header):
8829 * international/mule.el (charset-list, set-coding-priority)
8830 (ignore-relative-composition):
8831 * international/mule-util.el (detect-coding-with-priority):
8832 * international/mule-diag.el:
8833 * international/mule-cmds.el (language-info-custom-alist):
8834 * international/codepage.el (codepage-setup):
8835 Replace references to Emacs version "22" with "23".
8836
8837 2008-02-01 Kenichi Handa <handa@m17n.org>
8838
8839 * Makefile.in (DONTCOMPILE): Include charprop.el and uni-*.el.
8840
8841 * international/fontset.el (font-encoding-alist): Add an entry for
8842 microsoft-cp1251.
8843 (setup-default-fontset): Add entries for microsoft-cp1251 and
8844 koi8-r for cyrillic.
8845
8846 * international/mule-cmds.el (char-code-property-alist): New variable.
8847 (define-char-code-property): New function.
8848 (get-char-code-property, put-char-code-property): Handle a
8849 char-table registerd in char-code-property-alist.
8850 (set-language-environment): Check :ascii-compatible-p property of
8851 nonascii charset instead of its dimension.
8852
8853 * international/uni-bidi.el, international/uni-category.el:
8854 * international/uni-combining.el, international/uni-comment.el:
8855 * international/uni-decimal.el, international/uni-decomposition.el:
8856 * international/uni-digit.el, international/uni-lowercase.el:
8857 * international/uni-mirrored.el, international/uni-name.el:
8858 * international/uni-numeric.el, international/uni-old-name.el:
8859 * international/uni-titlecase.el, international/uni-uppercase.el:
8860 * international/charprop.el: New files automatically generated by
8861 admin/unidata/Makefile.
8862
8863 * loadup.el: Load internationnal/charprop.el.
8864
8865 * descr-text.el (describe-char-unidata-list): New variable.
8866 (describe-char-unicode-data): Use char-code-property-description.
8867 (describe-char): Add lines for describing Unicode-based character
8868 properties.
8869
8870 2008-02-01 Kenichi Handa <handa@m17n.org>
8871
8872 * textmodes/ispell.el: These changes are to fix the code merged
8873 from trunk for the change on 2008-02-01.
8874 (ispell-unified-chars-table): Delete it.
8875 (ispell-get-decoded-string): Don't check ispell-unified-chars-table.
8876
8877 2008-02-01 Kenichi Handa <handa@m17n.org>
8878
8879 * international/mule-util.el (char-displayable-p): Check
8880 :charset-list property of CODING.
8881
8882 2008-02-01 Kenichi Handa <handa@m17n.org>
8883
8884 * international/mule-cmds.el (select-safe-coding-system-interactively):
8885 Change 'mime-charset to :mime-charset.
8886 (select-safe-coding-system): Use above.
8887 (set-language-environment): Delete unnecessary code for handling
8888 overriding-fontspec.
8889
8890 2008-02-01 Kenichi Handa <handa@m17n.org>
8891
8892 * international/mule-conf.el: New coding system aliases unix, dos,
8893 and mac.
8894
8895 2008-02-01 Kenichi Handa <handa@m17n.org>
8896
8897 * international/titdic-cnv.el (tit-process-header): Fix embedded
8898 coding tag.
8899 (titdic-convert): Bind coding-system-for-write to the coding
8900 system specfied in the map file. Remove `charset' property after
8901 decoding.
8902 (miscdic-convert): Bind coding-system-for-write to the coding
8903 system specfied for the map file. Fix LANGUAGE arg to
8904 quail-define-package.
8905 (batch-miscdic-convert): Check if a file is directory or not.
8906
8907 2008-02-01 Kenichi Handa <handa@m17n.org>
8908
8909 * international/mule.el (coding-system-equal): Move from mule-util.el.
8910
8911 * international/mule-util.el (coding-system-equal): Move to mule.el.
8912
8913 2008-02-01 Kenichi Handa <handa@m17n.org>
8914
8915 * international/encoded-kb.el (encoded-kbd-decode-code-list):
8916 New function.
8917 (encoded-kbd-self-insert-charset, encoded-kbd-setup-keymap):
8918 Support multibyte charsets.
8919
8920 2008-02-01 Kenichi Handa <handa@m17n.org>
8921
8922 * language/china-util.el (hz-set-msb-table): Turn chars beyond 128
8923 to eight-bit chars.
8924
8925 * international/mule-conf.el: Don't define coding system
8926 `undecided' here.
8927
8928 2008-02-01 Kenichi Handa <handa@m17n.org>
8929
8930 * international/mule-cmds.el (locale-language-names): Fix for
8931 gb18030 and gdk.
8932
8933 2008-02-01 Kenichi Handa <handa@m17n.org>
8934
8935 * international/fontset.el (font-encoding-alist): Add gbk.
8936 (charset-script-alist): Add chinese-gbk.
8937
8938 2008-02-01 Kenichi Handa <handa@m17n.org>
8939
8940 * language/chinese.el (chinese-gbk): Include ascii in charset-list.
8941
8942 2008-02-01 Kenichi Handa <handa@m17n.org>
8943
8944 * language/japanese.el ("Japanese"): Fix ordering of charsets.
8945
8946 2008-02-01 Kenichi Handa <handa@m17n.org>
8947
8948 * international/encoded-kb.el (encoded-kbd-self-insert-charset)
8949 (encoded-kbd-self-insert-utf-8, encoded-kbd-setup-keymap)
8950 (encoded-kbd-mode): Adjust code merged from trunk for unicode branch.
8951
8952 2008-02-01 Kenichi Handa <handa@m17n.org>
8953
8954 * descr-text.el (describe-char): Fix for the case CODE is a cons
8955 of integers.
8956
8957 2008-02-01 Steven Tamm <steventamm@mac.com>
8958
8959 * term/mac-win.el: Use mac-standard-fontset-spec to create fontset-mac.
8960 (mac-standard-fontset-spec): Create.
8961
8962 2008-02-01 Kenichi Handa <handa@m17n.org>
8963
8964 * international/mule-diag.el (unicode-data):
8965 Call find-file-noselect with NOWARN t.
8966
8967 2008-02-01 Kenichi Handa <handa@m17n.org>
8968
8969 * international/mule-conf.el (cp932-2-byte): Fix :code-space.
8970
8971 2008-02-01 Kenichi Handa <handa@m17n.org>
8972
8973 * international/characters.el: Give more CJK characters the
8974 category `|'.
8975
8976 * descr-text.el (describe-char): Make it work on *Help* buffer.
8977 Suppress auto-composition on a region describing about composition.
8978
8979 * language/european.el (diacritic-compose-region)
8980 (diacritic-compose-string, diacritic-composition-function):
8981 Compose diacritical marks only with a character whose syntax is
8982 word constituent.
8983 (diacritic-post-read-conversion): Delete it.
8984
8985 2008-02-01 Kenichi Handa <handa@m17n.org>
8986
8987 * composite.el (auto-compose-chars): Execute the main code in
8988 condition-case.
8989
8990 2008-02-01 Kenichi Handa <handa@m17n.org>
8991
8992 * international/fontset.el (x-complement-fontset-spec):
8993 Don't change CHARSET_REGISTRY and CHARSET_ENCODING fields.
8994
8995 2008-02-01 Kenichi Handa <handa@m17n.org>
8996
8997 * international/characters.el (next-word-boundary-kana):
8998 Handle half-width kana.
8999
9000 2008-02-01 Kenichi Handa <handa@m17n.org>
9001
9002 * international/mule-conf.el (indian-1-column): Fix :emacs-mule-id.
9003
9004 2008-02-01 Kenichi Handa <handa@m17n.org>
9005
9006 * language/japanese.el (japanese-iso-8bit): Fix order of :charset-list.
9007
9008 * mail/rmail.el (rmail-decode-babyl-format):
9009 Use with-coding-priority instead of detect-coding-with-priority.
9010
9011 2008-02-01 Kenichi Handa <handa@m17n.org>
9012
9013 * international/mule.el (make-translation-table)
9014 (make-translation-table-from-vector): Set the second extra slot of
9015 the char table to 1.
9016 (make-translation-table-from-alist): Fix handling of multiple entries.
9017
9018 2008-02-01 Kenichi Handa <handa@m17n.org>
9019
9020 * language/japanese.el (jisx0213-to-unicode, unicode-to-jisx0213):
9021 New translation tables.
9022
9023 * international/mule.el (make-translation-table-from-alist):
9024 New function.
9025
9026 2008-02-01 Kenichi Handa <handa@m17n.org>
9027
9028 * international/mule.el (translate-region): Re-implement it here.
9029 Make it interactive.
9030
9031 2008-02-01 Kenichi Handa <handa@m17n.org>
9032
9033 * ps-mule.el (ps-mule-font-info-database): Doc fix.
9034
9035 2008-02-01 Kenichi Handa <handa@m17n.org>
9036
9037 * international/mule-conf.el (chinese-cns11643-15): New charset.
9038
9039 2008-02-01 Kenichi Handa <handa@m17n.org>
9040
9041 * international/fontset.el (font-encoding-alist): Add entries for
9042 variations of cns11643 fonts.
9043 (setup-default-fontset): Add cns11643 fonts as fallback fonts.
9044
9045 2008-02-01 Kenichi Handa <handa@m17n.org>
9046
9047 * international/mule-diag.el (list-charset-chars): Put charset
9048 text property.
9049
9050 * international/fontset.el (setup-default-fontset): Delete the
9051 entry for symbol script, add JISX0213 to kana script, specify
9052 fallback fonts.
9053
9054 2008-02-01 Kenichi Handa <handa@m17n.org>
9055
9056 * international/fontset.el (setup-default-fontset)
9057 (font-encoding-alist): Register "JISX0213.2004-1".
9058
9059 * international/mule-diag.el (list-character-sets): Fix the first
9060 line message.
9061 (sort-listed-character-sets): Adjust for the change of
9062 list-characters-sets-1.
9063 (list-character-sets-1): List supplementary character sets in a
9064 different section.
9065 (list-charset-chars): Validate charset at early stage.
9066
9067 * international/characters.el: Fix `han' script range.
9068
9069 * international/mule-conf.el (japanese-jisx0213.2004-1):
9070 Specify :code-space.
9071 (cp932-2-byte): Fix :code-space.
9072 (unicode-smp, unicode-sip, unicode-ssp): New charsets.
9073
9074 2008-02-01 Kenichi Handa <handa@m17n.org>
9075
9076 * international/mule-conf.el (japanese-jisx0213.2004-1):
9077 Specify :dimension 2.
9078
9079 * language/japanese.el (iso-2022-jp): Exclude japanese-jisx0212.
9080 (iso-2022-jp-2004, euc-jis-2004, japanese-shift-jis-2004):
9081 New coding systems.
9082 (iso-2022-jp-3, euc-jisx0213, shift_jis-2004): New coding system
9083 aliases.
9084 ("Japanese"): Add new charsets and coding systems.
9085
9086 2008-02-01 Kenichi Handa <handa@m17n.org>
9087
9088 * language/japanese.el (japanese-ucs-cp932-to-jis-map):
9089 Rename from japanese-ucs-cp932-map.
9090 (japanese-ucs-jis-to-cp932-map): Rename from japanese-ucs-jis-map.
9091 (japanese-ucs-glibc-map): Delete this translation table.
9092 (japanese-ucs-glibc-to-jis-map, japanese-ucs-jis-to-glibc-map):
9093 New translation tables.
9094
9095 2008-02-01 Kenichi Handa <handa@m17n.org>
9096
9097 * cus-start.el: Handle charset-map-path, not charset-map-directory.
9098
9099 2008-02-01 Kenichi Handa <handa@m17n.org>
9100
9101 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
9102
9103 2008-02-01 Kenichi Handa <handa@m17n.org>
9104
9105 * language/japanese.el: Add map #x00A6 <-> #xFFE4 to translation
9106 tables japanese-ucs-*-map.
9107
9108 2008-02-01 Kenichi Handa <handa@m17n.org>
9109
9110 * international/eucjp-ms.el: New file (automatically generated by
9111 admin/charsets/Makefile).
9112
9113 * international/cp51932.el: New file (automatically generated by
9114 admin/charsets/Makefile).
9115
9116 * language/japanese.el: Load cp51932 and eucjp-ms.
9117 (japanese-ucs-cp932-map, japanese-ucs-jis-map)
9118 (japanese-ucs-glibc-map): New translation tables.
9119 (eucjp-ms): New coding system.
9120
9121 * international/mule.el (coding-system-put): Delete it.
9122 It's implemented in C now.
9123
9124 * international/mule-conf.el (katakana-sjis): Fix :superset to :subset.
9125 (japanese-jisx0213-a): New supplementary charset.
9126 (japanese-jisx0213.2004-1): New charset.
9127
9128 2008-02-01 Kenichi Handa <handa@m17n.org>
9129
9130 * language/japanese.el (japanese-cp932): New coding system.
9131 (cp932): New alias of it.
9132
9133 * international/mule-conf.el (katakana-sjis, cp932-2-byte)
9134 (cp932): New charsets.
9135
9136 * international/mule.el (define-charset): If :code-space is not
9137 given, generate it from :dimension.
9138
9139 2008-02-01 Kenichi Handa <handa@m17n.org>
9140
9141 * composite.el (reference-point-alist): Doc fix.
9142 (encode-composition-rule, decode-composition-rule):
9143 Handle a rule (GREF NREF XOFF YOFF).
9144
9145 2008-02-01 Kenichi Handa <handa@m17n.org>
9146
9147 * language/european.el (diacritic-composition-function): Fix for
9148 the case that POS is at the head. Allow combining with more characters.
9149
9150 2008-02-01 Kenichi Handa <handa@m17n.org>
9151
9152 * descr-text.el (describe-char): Check `charset' property.
9153 Show the code point in the charset in hexadigits.
9154
9155 * international/mule-diag.el (stretches-for-character-list):
9156 Delete it.
9157 (list-block-of-chars): Use tabs instead of `display' property for
9158 aligning characters.
9159 (print-fontset-element): Fix the printing of XLFD.
9160
9161 2008-02-01 Kenichi Handa <handa@m17n.org>
9162
9163 * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
9164 New function.
9165 (encoded-kbd-setup-keymap, encoded-kbd-mode): Add code for
9166 handling utf-8.
9167
9168 2008-02-01 Kenichi Handa <handa@m17n.org>
9169
9170 * faces.el (read-face-font): Include fontsets in the completion list.
9171
9172 * international/mule-cmds.el (set-locale-environment):
9173 Insert locale-translation-file-name in a unibyte buffer.
9174
9175 * international/characters.el: Fix setting of category `|'.
9176
9177 2008-02-01 Kenichi Handa <handa@m17n.org>
9178
9179 * language/chinese.el (chinese-gb18030): Fix :charset-list.
9180
9181 2008-02-01 Kenichi Handa <handa@m17n.org>
9182
9183 * international/mule-cmds.el (select-safe-coding-system): Fix for
9184 the case that the first element of default-coding-system is t.
9185 Fix a message when some coding systems are rejected.
9186
9187 2008-02-01 Kenichi Handa <handa@m17n.org>
9188
9189 * international/mule-cmds.el (set-language-environment): Put
9190 higher priority to charsets listed in `charset' property of the
9191 language environment.
9192
9193 2008-02-01 Kenichi Handa <handa@m17n.org>
9194
9195 * composite.el (auto-compose-chars): Don't do unnecessary
9196 save-exclusion and save-restriction.
9197
9198 2008-02-01 Kenichi Handa <handa@m17n.org>
9199
9200 * international/mule-conf.el (ctext-no-compositions):
9201 Remove garbage arguments.
9202
9203 * international/mule.el (make-coding-system): Fix generation of
9204 properties.
9205
9206 * international/fontset.el (setup-default-fontset): Specify fonts
9207 for `symbol' script.
9208
9209 * international/characters.el (script-list): Include `currency'
9210 in `symbol'.
9211
9212 2008-02-01 Alex Schroeder <alex@gnu.org>
9213
9214 * timezone.el (timezone-parse-date): Fix style 8 to accept ISO
9215 8601 format (a capital T between the date and the time).
9216
9217 2008-02-01 Kenichi Handa <handa@m17n.org>
9218
9219 * international/mule.el (private-char-area-1-min)
9220 (private-char-area-1-max, private-char-area-2-min)
9221 (private-char-area-2-max, emacs-mule-charset-table): New variables.
9222 (convert-define-charset-argument): New function.
9223 (define-charset): Handle the old calling style.
9224 Update emacs-mule-charset-table.
9225 (make-char-internal): New function.
9226
9227 2008-02-01 Jason Rumney <jasonr@gnu.org>
9228
9229 * w32-charset-info-alist: Define iso10646-1 always.
9230
9231 2008-02-01 Kenichi Handa <handa@m17n.org>
9232
9233 * composite.el (compose-region): Doc fix (delete duplicated line).
9234
9235 2008-02-01 Kenichi Handa <handa@m17n.org>
9236
9237 * international/characters.el: Fix syntax for Ethiopic.
9238
9239 2008-02-01 Jason Rumney <jasonr@gnu.org>
9240
9241 * w32-fns.el (w32-charset-info-alist): Accept more charset aliases.
9242
9243 * makefile.w32-in (DONTCOMPILE): Remove old languages.
9244 Add international/latin1-disp.el.
9245 (LC_ALL): Define as C.
9246
9247 2008-02-01 Jason Rumney <jasonr@gnu.org>
9248
9249 * term/w32-win.el: Don't set fontsets to use sjis.
9250
9251 2008-02-01 Kenichi Handa <handa@m17n.org>
9252
9253 * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
9254 (japanese-iso-8bit): Fix the order of charsets in :charset-list.
9255
9256 2008-02-01 Kenichi Handa <handa@m17n.org>
9257
9258 * composite.el (auto-composition-chunk-size): Delete variable.
9259 (auto-compose-chars): Always stop after processing a newline.
9260
9261 2008-02-01 Kenichi Handa <handa@m17n.org>
9262
9263 * international/mule.el (define-coding-system): Fix attribute
9264 name :for-unibyte.
9265
9266 2008-02-01 Kenichi Handa <handa@m17n.org>
9267
9268 * ps-bdf.el: Largely re-write.
9269
9270 * ps-mule.el: Largely re-write.
9271
9272 * ps-print.el (ps-generate-string-list): Delete function.
9273 (ps-rh-cache, ps-lf-cache, ps-rf-cache): Delete variables.
9274 (ps-header-footer-string): Delete function.
9275 (ps-encode-header-string-function): New variable.
9276 (ps-generate-header-line): Call ps-encode-header-string-function.
9277 (ps-basic-plot-string-function): New variable
9278 (ps-begin-job): Set ps-basic-plot-string-function and
9279 ps-encode-header-string-function. For setting up headers and
9280 footers, don't use caches such as ps-rh-cache. Don't call
9281 ps-mule-begin-page.
9282 (ps-basic-plot-str, ps-basic-plot-string, ps-control-character):
9283 Don't call ps-mule-prepare-ascii-font.
9284 (ps-plot-region): Don't pay attention to composition and
9285 non-ASCII characters.
9286 (ps-generate): Call ps-mule-end-job.
9287 (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
9288 (ps-mule-plot-string, ps-mule-begin-page): Delete autoload.
9289 (ps-mule-end-job): Declare autoload.
9290
9291 * composite.el (auto-compose-region): New function.
9292
9293 2008-02-01 Dave Love <fx@gnu.org>
9294
9295 * international/mule-util.el
9296 (detect-coding-with-language-environment): Doc fix.
9297
9298 * composite.el: Doc fixes.
9299 (auto-compose-chars): Use functionp, not fboundp.
9300
9301 * international/mule-diag.el (list-charset-chars): Set buffer file
9302 coding system.
9303
9304 * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9305 cookie. Doc fix.
9306
9307 2008-02-01 Dave Love <fx@gnu.org>
9308
9309 * international/mule-diag.el (list-charset-chars): Set buffer file
9310 coding system.
9311
9312 * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9313 cookie. Doc fix.
9314
9315 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
9316 * progmodes/sh-script.el (sh-font-lock-syntactic-face-function):
9317 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
9318 * eshell/esh-opt.el (eshell-process-option):
9319 * emulation/keypad.el (keypad-setup):
9320 * emacs-lisp/lisp-mode.el (prin1-char):
9321 * emacs-lisp/generic.el (generic-mode-set-comments):
9322 * edmacro.el (edmacro-parse-keys):
9323 * disp-table.el (standard-display-default): Use characterp.
9324
9325 2008-02-01 Kenichi Handa <handa@m17n.org>
9326
9327 * international/mule-conf.el (utf-16-be): Make it an alias of
9328 utf-16be-with-signature.
9329 (utf-16-le): Make it an alias of utf-16le-with-signature.
9330 (utf-16-be-with-signature, utf-16-le-with-signature): Remove these
9331 coding system aliases.
9332
9333 * international/utf-7.el (utf-7-decode, utf-7-encode):
9334 Use utf-16be, not utf-16-be.
9335
9336 2008-02-01 Kenichi Handa <handa@m17n.org>
9337
9338 * international/mule.el (coding-system-category): New function.
9339 (set-coding-priority): Re-write.
9340 (make-translation-table): Re-write.
9341
9342 * international/mule-cmds.el (universal-coding-system-argument):
9343 Check the coding system type `undecided', not `t'.
9344 (sort-coding-systems): Fix for iso-2022 coding systems.
9345 (find-multibyte-characters): Fix for eight-bit chars.
9346 (set-language-environment): Set charset priorities according to
9347 the charsets supported by the coding systems of higher priorities.
9348
9349 2008-02-01 Kenichi Handa <handa@m17n.org>
9350
9351 * font-lock.el
9352 (font-lock-match-c-style-declaration-item-and-skip-to-next):
9353 Check (match-end 2) before going there.
9354
9355 2008-02-01 Kenichi Handa <handa@m17n.org>
9356
9357 * international/mule.el (ctext-non-standard-designations-alist):
9358 Exclude entries for iso8859-1[03456]. Fix docstring.
9359 (ctext-pre-write-conversion): Make it work for the case that FROM
9360 is a string. Don't do unnecessary save-restriction and
9361 narrow-to-region.
9362
9363 2008-02-01 Kenichi Handa <handa@m17n.org>
9364
9365 * international/mule.el (ctext-non-standard-encodings-alist):
9366 Rename from non-standard-icccm-encodings-alist.
9367 (ctext-non-standard-encodings-regexp): New variable
9368 (ctext-post-read-conversion): Full rewrite.
9369 (ctext-non-standard-designations-alist): Rename from
9370 non-standard-designations-alist.
9371 (ctext-pre-write-conversion): Full rewrite.
9372 (define-coding-system): Doc fix (escape '"' by '\').
9373
9374 2008-02-01 Dave Love <fx@gnu.org>
9375
9376 * international/mule-conf.el (utf-16le, utf-16be-16be)
9377 (utf-16le-with-signature, utf-16be-with-signature, utf-16):
9378 Define :mime-text-unsuitable. Rename `utf-16{b,l}e...' from
9379 `-16-{b,l}e-' and define aliases for the old names.
9380
9381 * international/mule.el (define-coding-system): Doc fix.
9382
9383 2008-02-01 Dave Love <fx@gnu.org>
9384
9385 * international/utf-7.el: New file.
9386
9387 * international/mule-conf.el (utf-7): New.
9388
9389 2008-02-01 Kenichi Handa <handa@m17n.org>
9390
9391 * international/mule-conf.el (utf-16): Add :endian 'big.
9392
9393 * international/mule.el (define-coding-system): Fix docstring
9394 about :bom and :endian.
9395
9396 2008-02-01 Dave Love <fx@gnu.org>
9397
9398 * international/mule-diag.el (describe-character-set):
9399 Fix printing dimensions. Use `×', not `x'.
9400
9401 2008-02-01 Kenichi Handa <handa@m17n.org>
9402
9403 * international/fontset.el: Register CDAC fonts in
9404 face-font-rescale-alist instead of face-resizing-fonts.
9405
9406 2008-02-01 Kenichi Handa <handa@m17n.org>
9407
9408 * international/mule-conf.el (utf-16-le): Rename from utf-16-le-nosig.
9409 (utf-16-be): Rename from utf-16-be-nosig.
9410 (utf-16-le-with-signature): Rename from utf-16-le.
9411 (utf-16-be-with-signature): Rename from utf-16-be.
9412 (utf-16): Set :bom to (utf-16-le-with-signature .
9413 utf-16-be-with-signature).
9414
9415 2008-02-01 Dave Love <fx@gnu.org>
9416
9417 * language/georgian.el (georgian-ps, georgian-academy): New coding
9418 system.
9419
9420 * language/chinese.el (chinese-big5-hkscs): New coding system.
9421 (big5-hkscs, cn-big5-hkscs): New aliases.
9422
9423 * international/mule-conf.el (big5-hkscs, georgian-academy):
9424 New charset.
9425 (ibm1047): Doc fix.
9426 (pt154): Add mime-charset.
9427 (ptcp154, cp154): New aliases.
9428
9429 2008-02-01 Dave Love <fx@gnu.org>
9430
9431 * international/mule.el (charset-iso-final-char, define-coding-system):
9432 Doc fix.
9433
9434 2008-02-01 Kenichi Handa <handa@m17n.org>
9435
9436 * international/ccl.el (define-ccl-program): Fset charset-id
9437 to charset-id-internal temporarily.
9438
9439 2008-02-01 Kenichi Handa <handa@m17n.org>
9440
9441 * international/mule-diag.el (list-block-of-chars):
9442 Use decode-char instead of make-char.
9443
9444 2008-02-01 Kenichi Handa <handa@m17n.org>
9445
9446 * international/fontset.el: Enable the default fontset to use
9447 unicode fonts for ASCII characters.
9448 (x-decompose-font-name): Don't try to resolve PATTERN by
9449 x-resolve-font-name.
9450 (x-complement-fontset-spec): Never prepend an ASCII font.
9451 (create-fontset-from-fontset-spec): If a fontset of the same name
9452 already exists, override it instead of signalling an error. Don't
9453 turn `ascii' into `latin'. Don't update fontset-alias-alist here.
9454
9455 * international/mule-conf.el (unicode-bmp): Delete duplicated
9456 definition. Give it :code-offset 0.
9457
9458 * international/mule-diag.el (print-fontset-element): New function.
9459 (print-fontset): Use print-fontset-element to print the elements
9460 of a fontset. Use it also to print fonts fallen back to the
9461 default fontsets.
9462
9463 * term/x-win.el: Delete the code to create a fontset from the X
9464 resource "Font".
9465
9466 2008-02-01 Kenichi Handa <handa@m17n.org>
9467
9468 * international/mule-diag.el (print-fontset): Insert proper
9469 newline and indentation spaces.
9470
9471 2008-02-01 Dave Love <fx@gnu.org>
9472
9473 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add langinfo,
9474 multibyte-char-to-unibyte.
9475
9476 * emacs-lisp/cl-macs.el (cl-make-type-test): Use characterp.
9477
9478 * international/mule-cmds.el (find-coding-systems-for-charsets):
9479 Use coding-system-type, coding-system-charset-list.
9480 (standard-keyboard-coding-systems): Delete.
9481 (set-locale-environment): Maybe set keyboard coding system.
9482 Avoid typical warning about codeset in C locale.
9483
9484 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9485
9486 * international/fontset.el (x-complement-fontset-spec): If a
9487 fontname doesn't conform to XLFD format, try to get XLFD name by
9488 x-list-fonts.
9489
9490 2008-02-01 Dave Love <fx@gnu.org>
9491
9492 * international/mule-conf.el (mik, pt154): New charsets.
9493
9494 * language/cyrillic.el (mik, pt154): New coding systems.
9495
9496 2008-02-01 Dave Love <fx@gnu.org>
9497
9498 * international/characters.el: Move parts around so that syntax
9499 definitions aren't overwritten wrongly.
9500
9501 * international/mule-diag.el (unicode-data): Fix treatment of
9502 numeric-value fields.
9503
9504 2008-02-01 Dave Love <fx@gnu.org>
9505
9506 * progmodes/cap-words.el: New file.
9507
9508 2008-02-01 Kenichi Handa <handa@m17n.org>
9509
9510 The following changes are to make character composition happen
9511 automatically on displaying.
9512
9513 * composite.el: Remove all autoload cookies.
9514 (composition-function-table): Move variable declaration from
9515 composite.c. Change format.
9516 (save-buffer-state): Copy from font-lock.el.
9517 (auto-composition-chunk-size): New variable.
9518 (auto-compose-chars): New function. Set
9519 auto-composition-function to it.
9520 (toggle-auto-composition): New function.
9521
9522 * international/characters.el: Make all chararacters in the
9523 charset tibetan to tibetan script.
9524
9525 * international/mule-conf.el (tibetan): Fix :code-space property.
9526 (tibetan-1-column): Delete :superset property, add :code-offset
9527 property.
9528
9529 * international/quail.el (quail-input-string-to-events): Don't
9530 generate compose-chars-after events.
9531
9532 * language/devanagari.el: Register devanagari-composable-function
9533 in composition-function-table for Devanagari characters.
9534
9535 * language/devan-util.el: Register devanagari-composable-pattern
9536 in indian-composable-pattern.
9537 (devanagari-composition-function): Add autoload cookie. Change
9538 arguments to conform to composition-function-table.
9539
9540 * language/european.el: Register combining characters in
9541 composition-function-table.
9542 (diacritic-composition-function): Change arguments to conform to
9543 composition-function-table.
9544
9545 * language/indian.el (indian-composable-pattern): New variable.
9546
9547 * language/ind-util.el (indian-compose-region): Don't call
9548 compose-chars-after, instead call a function registered in
9549 composition-function-table.
9550
9551 * language/lao.el: Register lao-composition-function in
9552 composition-function-table for Lao vowels and tones.
9553 (lao): Don't use lao-post-read-conversion.
9554
9555 * language/lao-util.el (lao-post-read-conversion): Delete this function.
9556 (lao-composition-function): Change arguments to conform to
9557 composition-function-table.
9558
9559 * language/thai.el: Register thai-composition-function in
9560 composition-function-table for Thai vowels and tones.
9561 (thai-tis620): Don't use thai-post-read-conversion.
9562
9563 * language/thai-util.el (thai-post-read-conversion): Delete function.
9564 (thai-composition-function): Change arguments to conform to
9565 composition-function-table.
9566
9567 * language/tibetan.el: Register tibetan-composition-function in
9568 composition-function-table for Tibetan characters.
9569
9570 * language/tibet-util.el (tibetan-composition-function):
9571 Change arguments to conform to composition-function-table.
9572
9573 * loadup.el: Load composite.
9574
9575 2008-02-01 Dave Love <fx@gnu.org>
9576
9577 * international/mule-diag.el (unicode-data): Find unicodedata-file
9578 literally.
9579
9580 2008-02-01 Dave Love <fx@gnu.org>
9581
9582 * international/fontset.el: Doc fixes.
9583 ("fontset-default"): Add iso8859-15.
9584
9585 2008-02-01 Kenichi Handa <handa@m17n.org>
9586
9587 * international/fontset.el ("fontset-default"): Add an entry for
9588 `indian-is13194' charset.
9589
9590 * international/mule-conf.el (indian-is13194): Delete :unify-map
9591 property. Don't unify this charset.
9592 (indian-2-column): Delete :superset property, add :code-offset property.
9593
9594 * language/devan-util.el: Delete the superfluous autoload cookie
9595 near the head of the file.
9596 (devanagari-compose-region): Add autoload cookie.
9597
9598 * language/ind-util.el (indian-2-column-to-ucs-region):
9599 Add autoload cookie.
9600
9601 2008-02-01 Kenichi Handa <handa@m17n.org>
9602
9603 * international/fontset.el ("fontset-default"): Add an entry for
9604 `devanagari' script and `malayalam-glyph' charset.
9605 (face-resizing-fonts): Register CDAC fonts.
9606
9607 * international/mule-conf.el (malayalam-glyph): New charset.
9608
9609 2008-02-01 Dave Love <fx@gnu.org>
9610
9611 * term/x-win.el: Fix typo in loop setting x-keysym-table.
9612
9613 2008-02-01 Dave Love <fx@gnu.org>
9614
9615 * international/mule-conf.el (utf-8-emacs): Delete :mime-charset.
9616
9617 * term/x-win.el: Remove some ancient compatibility code. Populate
9618 x-keysym-table.
9619
9620 * international/mule-cmds.el (wid-edit): Require when compiling.
9621 (set-locale-environment): Check locale against coding system
9622 aliases too.
9623
9624 2008-02-01 Kenichi Handa <handa@m17n.org>
9625
9626 * language/indian.el (in-is13194-devanagari):
9627 Fix :post-read-conversion and :pre-write-conversion.
9628
9629 2008-02-01 Dave Love <fx@gnu.org>
9630
9631 * international/mule-cmds.el (charset): Supply doc, :tag.
9632
9633 2008-02-01 Kenichi Handa <handa@m17n.org>
9634
9635 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Be sure to
9636 return a unibyte string.
9637
9638 2008-02-01 Kenichi Handa <handa@m17n.org>
9639
9640 * international/mule-cmds.el (set-locale-environment):
9641 Delete superfluous ')'s at the tail.
9642
9643 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9644
9645 * international/mule.el (define-coding-system): Fix typo;
9646 "docode" -> "decode".
9647
9648 2008-02-01 Dave Love <fx@gnu.org>
9649
9650 * emacs-lisp/byte-opt.el (side-effect-free-fns):
9651 Add string-make-unibyte string-make-multibyte string-to-multibyte
9652 string-as-multibyte string-as-unibyte.
9653
9654 2008-02-01 Dave Love <fx@gnu.org>
9655
9656 * language/english.el (ibm1047, cp1047): New.
9657
9658 * international/mule-conf.el (alternativnyj): Use new table.
9659 (cp866): Define standalone, not as alias.
9660 (ibm866): Change alias.
9661 (ibm1047): New.
9662
9663 * language/cyrillic.el (cyrillic-alternativnyj):
9664 Remove mime-charset. Use alternativnj charset.
9665 (cp866): Remove alias. Define standalone.
9666
9667 2008-02-01 Dave Love <fx@gnu.org>
9668
9669 * language/european.el ("Latin-2", "Latin-5"): Doc fix.
9670
9671 * language/cyrillic.el ("Bulgarian"): Fix input method and charset.
9672 ("Tajik", "Belarusian"): Fix charset.
9673
9674 * international/mule-cmds.el (describe-language-environment):
9675 Be case-insensitive when looking for input methods.
9676 (locale-name-match): Doc fix.
9677 (locale-charset-match-p): New.
9678 (set-locale-environment): Warn if coding system doesn't agree
9679 with system locale.
9680
9681 2008-02-01 Kenichi Handa <handa@m17n.org>
9682
9683 * international/mule-cmds.el (select-safe-coding-system): If
9684 :mime-charset property of a coding system is not equal to that
9685 coding system, don't show that :mime-charset name.
9686
9687 2008-02-01 Dave Love <fx@gnu.org>
9688
9689 * international/quail.el (quail-help): Fix underlining.
9690
9691 * language/chinese.el (chinese-gb18030, gb18030)
9692 ("Chinese-GB18030"): New.
9693
9694 * international/mule-cmds.el (locale-language-names): Add GB18030.
9695
9696 * international/swedish.el: Don't require latin-1.
9697
9698 2008-02-01 Dave Love <fx@gnu.org>
9699
9700 * language/czech.el ("Czech"):
9701 * language/slovak.el ("Slovak"):
9702 * language/romanian.el ("Romanian"): Remove unibyte-syntax property.
9703
9704 * language/greek.el ("Greek"): Remove unibyte-syntax property.
9705 (cp737): New coding system.
9706
9707 * language/european.el: Remove unibyte-syntax properties.
9708 Augment some coding-system properties.
9709
9710 * international/mule-cmds.el (set-language-environment):
9711 Check for charset property of environment.
9712 (language-info-alist): Doc fix.
9713
9714 * Makefile.in (DONTCOMPILE): Remove latin-N.el.
9715
9716 * international/characters.el: Add Latin-1.
9717
9718 * international/latin-1.el, international/latin-2.el,
9719 * international/latin-3.el, international/latin-4.el,
9720 * international/latin-5.el, international/latin-8.el,
9721 * international/latin-9.el: Delete.
9722
9723 * loadup.el: Remove international/latin-N.el.
9724
9725 * case-table.el (set-case-syntax-charset, set-case-syntax-1)
9726 (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
9727 Undo last changes.
9728
9729 * international/mule-diag.el (unicode-data): Check that
9730 `unicodedata-file' exists.
9731
9732 2008-02-01 Kenichi Handa <handa@m17n.org>
9733
9734 * international/fontset.el (charset-script-alist): Fix script names.
9735
9736 2008-02-01 Kenichi Handa <handa@m17n.org>
9737
9738 * international/latin-1.el: Bind set-case-syntax-charset to
9739 iso-8859-1. Never provide latin-1.
9740
9741 * international/latin-2.el: Bind set-case-syntax-charset to
9742 iso-8859-2. Never provide latin-2.
9743
9744 * international/latin-3.el: Bind set-case-syntax-charset to
9745 iso-8859-3. Never provide latin-3.
9746
9747 * international/latin-4.el: Bind set-case-syntax-charset to
9748 iso-8859-4. Never provide latin-4.
9749
9750 * international/latin-5.el: Bind set-case-syntax-charset to
9751 iso-8859-9. Never provide latin-5.
9752
9753 * international/latin-8.el: Bind set-case-syntax-charset to
9754 iso-8859-14. Never provide latin-8.
9755
9756 * international/latin-9.el: Bind set-case-syntax-charset to
9757 iso-8859-15. Never provide latin-9.
9758
9759 * case-table.el (set-case-syntax-set-multibyte): Delete variable.
9760 (set-case-syntax-charset): New variable.
9761 (set-case-syntax-1): New function.
9762 (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
9763 Call set-case-syntax-1 on arguments.
9764
9765 * international/mule-cmds.el (set-language-environment): Delete
9766 unnecessary setup of syntax/case for unibyte case.
9767
9768 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9769
9770 * international/fontset.el (generate-fontset-menu): Exclude the
9771 default fontset.
9772
9773 * faces.el (describe-face): Describe :fontset property too.
9774
9775 2008-02-01 Dave Love <fx@gnu.org>
9776
9777 * international/characters.el: Don't set char width of CJK
9778 charsets generally. Add some non-word syntax cases.
9779 (korean-ksc5601): Fix ranges with symbol syntax.
9780
9781 2008-02-01 Dave Love <fx@gnu.org>
9782
9783 * Makefile.in (DONTCOMPILE): Add indian.el.
9784
9785 * language/ind-util.el:
9786 (ucs-bengali-to-is13194-alist, ucs-assamese-to-is13194-alist)
9787 (ucs-gurmukhi-to-is13194-alist, ucs-gujarati-to-is13194-alist)
9788 (ucs-oriya-to-is13194-alist, ucs-tamil-to-is13194-alist)
9789 (ucs-telugu-to-is13194-alist, ucs-malayalam-to-is13194-alist):
9790 Remove declarations and let-bind them in re-written top-level loop
9791 over scripts, including ucs-devanagari-to-is13194-alist.
9792
9793 2008-02-01 Dave Love <fx@gnu.org>
9794
9795 * international/mule-cmds.el (charset): Move.
9796 (language-info-custom-alist): Move. Alter :set.
9797 (find-coding-systems-for-charsets): Check charset type before
9798 getting :charset-list.
9799
9800 * language/ind-util.el (iscii-to-ucs-region): Fix typo.
9801
9802 2008-02-01 Dave Love <fx@gnu.org>
9803
9804 * wid-edit.el (widget-string-complete): New.
9805 (widget-coding-system-prompt-value-history): Delete.
9806 (coding-system): Use coding-system-value-history.
9807
9808 * international/mule-cmds.el (charset): New widget.
9809 (language-info-custom-alist): Use it.
9810 (default-input-method): Modify :type.
9811
9812 2008-02-01 Dave Love <fx@gnu.org>
9813
9814 * language/ind-util.el (ucs-devanagari-to-is13194-alist)
9815 (indian-glyph-char, indian-char-glyph): Delete.
9816 (is13194-default-repertory): Rename from is13194-default-repartory.
9817 (iscii-to-ucs-region): Hoist evals from loop.
9818
9819 * language/devan-util.el (dev-charseq): Avoid indian-glyph-char.
9820
9821 * language/indian.el (indian-script-table)
9822 (ccl-encode-indian-glyph-font): Delete.
9823
9824 * international/mule-cmds.el (language-info-custom-alist): New.
9825 (input-method-activate-hook, input-method-inactivate-hook)
9826 (input-method-after-insert-chunk-hook)
9827 (input-method-use-echo-area, set-language-environment-hook)
9828 (exit-language-environment-hook): Customize.
9829 (find-coding-systems-for-charsets): Rewrite.
9830 (default-input-method): Add :link.
9831
9832 2008-02-01 Dave Love <fx@gnu.org>
9833
9834 * international/mule-conf.el (eight-bit): Add :docstring,
9835 :short-name properties.
9836 (cp851): Doc fix.
9837 (unicode-bmp): New.
9838
9839 * case-table.el (set-case-syntax-pair): Remove check on byte lengths.
9840
9841 * language/european.el (cp858): New.
9842 ("Turkish"): Add special case rules.
9843
9844 2008-02-01 Dave Love <fx@gnu.org>
9845
9846 * international/characters.el: Make Ÿ and ÿ a case pair.
9847
9848 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9849
9850 * international/mule-conf.el: Don't define the charset iso-8859-1
9851 here, just setup its properties.
9852
9853 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9854
9855 * international/mule-conf.el (utf-8): Give :mime-charset property.
9856
9857 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9858
9859 * international/characters.el: Remove duplicated case setting for
9860 Cyrillic and Greek letters. Don't setup printable-chars here.
9861
9862 * case-table.el (describe-buffer-case-table): Handle the case
9863 that KEY is a cons within map-char-table.
9864
9865 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9866
9867 * international/characters.el: Fix categories ?A and ?C.
9868 Treat ASCII characters as `latin' script.
9869
9870 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9871
9872 * international/fontset.el (fontset-plain-name): If the fontset
9873 name doesn't ends with "-fontset-*", use family name as the first
9874 part of the plain name.
9875 (create-fontset-from-ascii-font): If "fontset-startup" is not yet
9876 created, use that name for the fontset. Fix arguments to
9877 subst-char-in-string.
9878
9879 2008-02-01 Dave Love <fx@gnu.org>
9880
9881 * term.el (term-char-mode): Remove generic-character-list code.
9882
9883 * ruler-mode.el (ruler-mode-character-validate): Use characterp.
9884
9885 * wid-edit.el (character): Use characterp.
9886
9887 * international/mule-diag.el (describe-coding-system): Add utf-16 case.
9888
9889 * language/viet-util.el (viet-encode-viscii-char): Use encode-char.
9890
9891 * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
9892 Add charset.
9893 ("Ukrainian"): New.
9894
9895 * language/georgian.el (georgian-ps): New coding system.
9896
9897 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9898
9899 * international/mule-cmds.el (reset-language-environment):
9900 Don't set nonascii-translation-table and nonascii-insert-offset.
9901 Call set-unibyte-charset, not set-primary-charset.
9902 (nonascii-translation-table, nonascii-insert-offset):
9903 Declare these variable as obsolete ones.
9904 (set-language-environment): Call set-unibyte-charset, not
9905 set-primary-charset. Call set-charset-priority with `charset'
9906 info of the language environment.
9907
9908 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9909
9910 * international/characters.el (next-word-boundary-han):
9911 Don't treat katakana following han characters as a part of a word.
9912
9913 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9914
9915 * international/characters.el: Call map-charset-chars on big5 (not
9916 chinese-big5-1/2) to set categories `c', `C', and `|'.
9917 (next-word-boundary-han, next-word-boundary-kana): New function.
9918 Register it in next-word-boundary-function-table.
9919
9920 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9921
9922 * arc-mode.el (archive-file-name-coding-system): New variable.
9923 Make it permanent-local.
9924 (byte-after, bref, insert-unibyte): New function. Change most of
9925 char-after, aref, insert to them respectively.
9926 (archive-mode): Set archive-file-name-coding-system.
9927 (archive-summarize): Don't change the buffer's multibyteness.
9928 (archive-extract): Inherit archive-file-name-coding-system from
9929 archive-superior-buffer. Bind coding-system-for-write to
9930 archive-file-name-coding-system.
9931 (archive-*-write-file-member): Encode ENAME by
9932 archive-file-name-coding-system. Bind coding-system-for-write to
9933 no-conversion.
9934 (archive-rename-entry): Encode the filename by
9935 archive-file-name-coding-system.
9936 (archive-mode-revert): Don't change the buffer's multibyteness.
9937 (archive-arc-summarize, archive-lzh-summarize)
9938 (archive-zoo-summarize): Don't change the buffer's multibyteness.
9939 Decode filenames by archive-file-name-coding-system.
9940 (archive-arc-rename-entry, archive-zip-chmod-entry): Don't change
9941 the buffer's multibyteness.
9942
9943 * tar-mode.el (tar-file-name-coding-system): New variable.
9944 Make it permanent-local.
9945 (tar-header-block-tokenize): Decode filename and linkname by
9946 tar-file-name-coding-system.
9947 (tar-header-block-checksum): Call multibyte-char-to-unibyte to get
9948 the byte value of eight-bit chars.
9949 (tar-summarize-buffer): Call set-buffer-multibyte with METHOD
9950 `to'. Delete unnecessary call of position-bytes.
9951 (tar-mode): Set tar-file-name-coding-system. Delete unnecessary
9952 call of position-bytes.
9953 (tar-extract): Simplify by calling decode-coding-region with
9954 DESTINATION argument. Don't toggle multibyteness of tar buffer.
9955 (tar-copy, tar-expunge): Don't toggle multibyteness of tar buffer.
9956 (tar-clear-modification-flags): Delete unnecessary call of
9957 position-bytes.
9958 (tar-rename-entry): Call tar-alter-one-field with encoded new name.
9959 (tar-alter-one-field): Don't toggle multibyteness of tar buffer.
9960 Convert new-data-string by string-to-multibyte before inserting it.
9961 (tar-subfile-save-buffer): Don't toggle multibyteness of tar
9962 buffer. Simplify by calling encoding-coding-region with
9963 DESTINATION argument.
9964 (tar-mode-write-file): Delete unnecessary call of byte-to-position.
9965
9966 2008-02-01 Dave Love <fx@gnu.org>
9967
9968 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Doc fix.
9969
9970 * emacs-lisp/copyright.el (copyright-regexp): Remove redundancy.
9971
9972 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9973
9974 * international/characters.el: Setup char-script-table.
9975
9976 * international/fontset.el: Setup the default fontset by the new
9977 script-based way.
9978 (x-complement-fontset-spec): Change the format of arg FONTLIST to
9979 an alist of charsets vs font name lists.
9980 (charset-script-alist): New variable.
9981 (create-fontset-from-fontset-spec): Allow script name in
9982 FONTSET-SPEC. If charset is specified in FONTSET-SPEC, change it
9983 to the corresponding script name.
9984 (create-fontset-from-ascii-font): Slight tuning.
9985
9986 * international/mule-conf.el (devanagari-glyph): New charset.
9987 Unify these charsets: korean-ksc5601, ipa, tibetan, ethiopic,
9988 japanese-jisx0208, japanese-jisx0212, japanese-jisx0213-1,
9989 japanese-jisx0213-2.
9990
9991 * international/mule-diag.el (print-fontset): Use describe-vector
9992 to handle a char table returned by fontset-info.
9993
9994 * language/indian.el: Don't register ccl-encode-indian-glyph-font
9995 and ccl-encode-unicode-font in font-ccl-encoder-alist.
9996
9997 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9998
9999 * international/mule-util.el (detect-coding-with-priority):
10000 Fix the place of using `,' marker in backquote form.
10001
10002 2008-02-01 Dave Love <fx@gnu.org>
10003
10004 * international/mule-conf.el (mule-unicode-e000-ffff): Set :max-code.
10005
10006 * international/mule-util.el (with-coding-priority): Fix.
10007
10008 * international/mule.el (set-coding-priority): Fix obsolete spec.
10009
10010 2008-02-01 Dave Love <fx@gnu.org>
10011
10012 * international/mule-cmds.el (leim-list-header): Add coding tag.
10013
10014 2008-02-01 Dave Love <fx@gnu.org>
10015
10016 * international/mule-cmds.el (find-coding-systems-region)
10017 (language-info-alist, reset-language-environment, princ-list): Doc fix.
10018 (input-method-verbose-flag): Fix :type.
10019
10020 2008-02-01 Dave Love <fx@gnu.org>
10021
10022 * international/mule.el (set-char-table-default): Make obsolete.
10023
10024 2008-02-01 Dave Love <fx@gnu.org>
10025
10026 * language/devanagari.el ("Devanagari"): Fix coding-system,
10027 coding-priority.
10028
10029 * international/mule-diag.el (describe-char-after): Modify display
10030 list processing.
10031 (unicodedata-file, unicodedata-find): New.
10032
10033 2008-02-01 Dave Love <fx@gnu.org>
10034
10035 * emacs-lisp/bytecomp.el (batch-byte-compile-if-not-done): Add
10036 autoload cookie.
10037
10038 * international/ja-dic-cnv.el (skkdic-convert): Add coding tag.
10039
10040 2008-02-01 Dave Love <fx@gnu.org>
10041
10042 * international/mule-util.el (detect-coding-with-priority): Rewrite.
10043
10044 2008-02-01 Dave Love <fx@gnu.org>
10045
10046 * composite.el (compose-string): Doc fix.
10047
10048 * language/georgian.el ("Georgian"): Delete code-pages feature,
10049 add nonascii-translation.
10050
10051 * language/european.el ("German", "French", "Spanish"):
10052 Add latin-9 as alternative coding system.
10053 ("Slovenian", "Polish"): Add windows-1250 as alternative coding system.
10054 ("Dutch"): Add latin-9 as alternative coding system. Add input method.
10055 ("Turkish"): Add windows-1254 and latin-3 as alternative coding systems.
10056 ("Lithuanian", "Latvian"): Add windows-1257 as alternative coding
10057 system.
10058
10059 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add decode-char,
10060 encode-coding-char.
10061 (side-effect-and-error-free-fns): Add charsetp, max-char,
10062 primary-charset.
10063
10064 * simple.el: Don't require cl when compiling.
10065
10066 * Makefile.in (DONTCOMPILE): Fix duplicates.
10067
10068 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Fix typo.
10069
10070 * international/mule.el: Doc fixes.
10071 (load-with-code-conversion): Fix coding-system-type test.
10072
10073 * international/mule-cmds.el (sort-coding-systems): Comment out
10074 iso-2022 case.
10075 (encoded-string-description): Fix coding-system-type test.
10076
10077 2008-02-01 Dave Love <fx@gnu.org>
10078
10079 * international/characters.el: Make korean-ksc5601 double-width.
10080
10081 * international/mule.el (auto-coding-regexp-alist):
10082 Recognize Emacs 20/1 byte-compiled files.
10083
10084 * international/mule-conf.el (file-coding-system-alist):
10085 Change .elc to utf-8-emacs.
10086
10087 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Adjust for use
10088 of utf-8-emacs.
10089 (byte-compile-insert-header): Update magic number. Add ballast.
10090 (map-char-table): Use byte-compile-funarg-2.
10091
10092 2008-02-01 Dave Love <fx@gnu.org>
10093
10094 * language/cyrillic.el ("Belarusian"): Doc fix.
10095 (cp1125, koi8-t): Doc fix.
10096
10097 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
10098 (find-multibyte-characters): Don't test for charset `unknown'.
10099 (locale-language-names): Change or add: be, bs, cy, mk, ru.koi8,
10100 ru, sr_YU, tg, wa, zh.gbk.
10101 (locale-language-names): Change sp to Cyrillic.
10102 (locale-charset-language-names): Match @euro after utf-8.
10103
10104 2008-02-01 Dave Love <fx@gnu.org>
10105
10106 * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
10107 New coding systems.
10108 ("Chinese-GBK"): New environment.
10109
10110 * language/thai-util.el: Remove redundant unicodes in category-setting.
10111
10112 * language/lao-util.el: Remove redundant unicodes in category-setting.
10113
10114 * international/mule-conf.el (japanese-jisx0213-1)
10115 (japanese-jisx0213-2): Add unify-map.
10116
10117 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10118
10119 * international/quail.el (quail-update-leim-list-file):
10120 Force writing the file by iso-2022-7bit.
10121
10122 * international/titdic-cnv.el (miscdic-convert): Force writing the
10123 file by iso-2022-7bit.
10124
10125 * international/mule.el (define-charset): Change the attribute
10126 :parents to :subset or :superset.
10127
10128 * international/mule-conf.el: Adjust for the change of
10129 define-charset (:parent -> :subset or :superset).
10130
10131 * international/characters.el: Fix the last change.
10132
10133 2008-02-01 Dave Love <fx@gnu.org>
10134
10135 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
10136 (cyrillic-encode-alternativnyj-char): Fix.
10137 (standard-display-cyrillic-translit): Remove redundant unicodes.
10138
10139 2008-02-01 Dave Love <fx@gnu.org>
10140
10141 * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
10142 New environments.
10143
10144 * international/mule-conf.el (control-1): New charset.
10145 (eight-bit-control, eight-bit-graphic): Redefine to use raw-bytes space.
10146 (korean-ksc5601): Redefine to use code-offset and unify-map.
10147
10148 2008-02-01 Dave Love <fx@gnu.org>
10149
10150 * international/mule-conf.el (tcvn-5712): New charset.
10151
10152 * language/vietnamese.el (vietnamese-tcvn, tcvn): New coding system.
10153 ("Vietnamese"): Doc fix.
10154
10155 2008-02-01 Dave Love <fx@gnu.org>
10156
10157 * international/mule-conf.el (windows-936): New alias.
10158
10159 * cus-start.el: Add scalable-fonts-allowed.
10160
10161 * international/characters.el: Reinstate various CJK syntax and
10162 category setup. Remove obsolete syntax setting in Greek section.
10163 Optimize the char tables.
10164
10165 * language/thai.el ("Thai"): Add cp874, iso-8859-11 coding systems.
10166
10167 * language/vietnamese.el ("Vietnamese"): Add windows-1258 coding system.
10168
10169 * language/greek.el ("Greek"): Add windows-1253, cp851, cp869
10170 coding systems.
10171
10172 * language/romanian.el ("Romanian"): Add iso-latin-10 coding system.
10173
10174 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10175
10176 * international/characters.el (printable-chars): Setup correctly.
10177
10178 2008-02-01 Dave Love <fx@gnu.org>
10179
10180 * cus-start.el: Add selection-coding-system.
10181
10182 * language/hebrew.el ("Hebrew"): Add windows-1255, cp862 coding systems.
10183
10184 * language/china-util.el (post-read-decode-hz)
10185 (pre-write-encode-hz): Move from chinese.el.
10186 (big5-to-flat-code, flat-code-to-big5, euc-to-flat-code)
10187 (flat-code-to-euc, expand-euc-big5-alist, big5-to-cns): Delete.
10188
10189 * language/chinese.el (post-read-decode-hz)
10190 (pre-write-encode-hz): Move to china-util.el.
10191
10192 * case-table.el (set-case-syntax-pair): Test again for equal byte
10193 lengths of the pair.
10194
10195 * international/characters.el: Add Vietnamese category to
10196 equivalent unicodes.
10197
10198 2008-02-01 Dave Love <fx@gnu.org>
10199
10200 * international/mule-conf.el (chinese-sisheng, ipa)
10201 (indian-is13194, tibetan, ethiopic): Add :unify-map.
10202
10203 * international/mule-diag.el (describe-character-set): Account for
10204 more than two dimensions of possibly different size.
10205 (describe-current-coding-system): Add selection-coding-system.
10206
10207 * international/mule-cmds.el (unify-8859-on-encoding-mode)
10208 (unify-8859-on-decoding-mode): Move from mule.el.
10209
10210 * international/mule.el (unify-8859-on-encoding-mode)
10211 (unify-8859-on-decoding-mode): Remove :init-value.
10212 (charset-chars): Add optional dimension arg.
10213 (unify-8859-on-encoding-mode, unify-8859-on-decoding-mode):
10214 Move to mule-cmds.el.
10215
10216 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10217
10218 * international/fontset.el: Change registry for japanese-jisx0208
10219 to "JISX0208*" in the default fontset.
10220 (font-encoding-alist): Add an entry for "JISX0208.1983" and
10221 "ISO10646.indian-1".
10222
10223 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10224
10225 * language/japanese.el (japanese-iso-7bit-1978-irv):
10226 Add `designation' to :flags, `ascii' to :charset-list.
10227
10228 * international/mule.el (define-charset): New args :min-code and
10229 :max-code.
10230 (coding-system-iso-2022-flags): Add use-roman, use-oldjis.
10231
10232 * international/mule-conf.el (chinese-gbk): Change :code-offset to
10233 #x160000.
10234 (gb18030-2-byte, gb18030-4-byte-bmp, gb18030-4-byte-smp)
10235 (gb18030-4-byte-ext-1, gb18030-4-byte-ext-2, gb18030): New charsets.
10236
10237 2008-02-01 Dave Love <fx@gnu.org>
10238
10239 * language/thai.el (iso-8859-11): New coding system.
10240
10241 * international/mule-conf.el: Doc fixes.
10242 (iso-8859-11): New.
10243
10244 2008-02-01 Dave Love <fx@albion.dl.ac.uk>
10245
10246 * cus-start.el (scalable-fonts-allowed): Add.
10247
10248 2008-02-01 Dave Love <fx@gnu.org>
10249
10250 * international/mule.el (unify-8859-on-encoding-mode)
10251 (unify-8859-on-decoding-mode): Dummy versions.
10252
10253 * international/ucs-tables.el: Remove.
10254
10255 * Makefile.in (DONTCOMPILE): Add language/chinese.el,
10256 language/japanese.el.
10257
10258 * international/mule-conf.el: Doc fixes.
10259 (cp936): New alias.
10260 (cp720, cp858): New charsets.
10261
10262 * mail/sendmail.el (mail-recover-1, mail-recover): Use utf-8-emacs
10263 coding system, not emacs-mule.
10264
10265 * files.el (revert-buffer, recover-file): Likewise.
10266
10267 * desktop.el (desktop-save): Likewise.
10268
10269 2008-02-01 Dave Love <fx@gnu.org>
10270
10271 * international/mule.el (with-category-table): Use make-symbol.
10272 (coding-system-list): Use coding-system-aliases.
10273 (make-translation-table): Don't deal with generic characters.
10274
10275 * international/mule-util.el (coding-system-post-read-conversion)
10276 (coding-system-pre-write-conversion)
10277 (coding-system-translation-table-for-decode)
10278 (coding-system-translation-table-for-encode): Get the right properties.
10279 (with-coding-priority): New macro.
10280 (detect-coding-with-language-environment): Use it.
10281 (coding-system-equal): Use coding-system-plist.
10282
10283 * international/encoded-kb.el (encoded-kbd-setup-keymap) <ccl>:
10284 Use :valid property.
10285
10286 * international/mule-cmds.el (encode-coding-char):
10287 Use find-coding-systems-string. Don't use make-char.
10288 (describe-language-environment): Use coding-system-aliases.
10289 (prefer-coding-system): Doc fix.
10290
10291 * international/mule-diag.el (describe-current-coding-system):
10292 Fix aliases listing.
10293 (print-iso-2022-flags): Delete.
10294 (print-designation): Partial re-write.
10295 (describe-coding-system): Deal with iso-2022 designations, flags.
10296 Fix shift_jis case.
10297 (describe-char-after): Use characterp. Print explicit unicode.
10298 Remove some obsolete code.
10299 (print-coding-system-briefly): Fix printing aliases.
10300 (print-coding-system): Use coding-system-aliases.
10301 (mule-diag): Don't list coding categories.
10302
10303 * international/mule-conf.el: Doc fixes. Remove redundant :long-name properties.
10304 Re-order charset priorities.
10305 (binary): New alias.
10306 (iso-8859-16): Fix nickname.
10307 (define-iso-single-byte-charset): Un-define after use.
10308
10309 2008-02-01 Dave Love <fx@gnu.org>
10310
10311 * international/characters.el: Additional double width specifications.
10312
10313 * international/mule-diag.el (print-coding-system): Incomplete updates.
10314 (describe-character-set): List more properties.
10315 (print-fontset): Fix case of vector font-spec.
10316 (describe-current-coding-system): Fix iso-7, iso-7-else.
10317
10318 * international/mule-conf.el (ibm866): Fix alias.
10319 (iso-8859-16): Fix nickname.
10320
10321 2008-02-01 Dave Love <fx@gnu.org>
10322
10323 * language/ind-util.el: Avoid decode-char.
10324 (indian--puthash-char, indian--puthash-c, indian--puthash-cv):
10325 Use characterp, not char-valid-p.
10326
10327 * language/devan-util.el: Add coding tag, avoid decode-char.
10328
10329 * international/titdic-cnv.el: Add coding tag.
10330 (tit-process-header): Add coding tag to output.
10331
10332 * language/thai.el (cp874, ibm874): New coding systems.
10333
10334 * emacs-lisp/byte-opt.el <side-effect-and-error-free-fns>:
10335 Add character-p.
10336
10337 * language/european.el (cp852, ibm852, cp857, ibm857, cp860)
10338 (ibm860, cp861, ibm861, cp863, cp865, ibm865, cp437, ibm437):
10339 New coding systems.
10340 <set-language-info-alist>: Avoid decode-char.
10341
10342 * language/hebrew.el (cp862, ibm862): New coding systems.
10343
10344 * language/greek.el (cp851, ibm851, cp869, ibm869): New coding systems.
10345
10346 * language/cyrillic.el (cp855, ibm855): New coding systems.
10347
10348 * international/mule-conf.el: Avoid decode-char in top-level code
10349 for self-inserting multibyte chars.
10350 (cp437, cp737, cp775, cp851, cp852, cp855, cp857, cp855, cp857)
10351 (cp860, cp861, cp862, cp863, cp864, cp865, cp869, cp874):
10352 New charsets.
10353
10354 * international/characters.el: Various simplifications and additions.
10355
10356 2008-02-01 Dave Love <fx@gnu.org>
10357
10358 * international/mule-conf.el (code-pages): Provide, for compatibility.
10359
10360 * international/code-pages.el: Remove.
10361
10362 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10363
10364 * Makefile.in: Cancel the 2008-02-01 change of mine.
10365
10366 * international/fontset.el: Add setting for unicode font at the
10367 end of the default fontset.
10368
10369 2008-02-01 Dave Love <fx@gnu.org>
10370
10371 * international/mule-conf.el (adobe-standard-encoding, symbol):
10372 Adjust :code-space.
10373 (ibm850): Add :ascii-compatible-p.
10374
10375 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10376
10377 * international/mule-conf.el (vietnamese-viscii-lower)
10378 (vietnamese-viscii-upper): Supply them :code-offset, then unify by
10379 mapping table.
10380
10381 2008-02-01 Dave Love <fx@gnu.org>
10382
10383 * cus-start.el: Add charset-map-directory.
10384
10385 * international/fontset.el (font-encoding-alist): Add adobe-symbol.
10386
10387 * format.el (format-alist): Remove ibm, mac, hp entries (available
10388 natively).
10389
10390 * language/romanian.el (iso-latin-10): Add :mime-charset.
10391 ("Romanian"): Add doc.
10392
10393 * international/mule-conf.el (iso-8859-10, symbol)
10394 (adobe-standard-encoding, ibm850): New charsets.
10395 (iso-8859-13): Fix IR number, final char.
10396 (file-coding-system-alist): Add .xml.
10397
10398 * language/european.el (iso-latin-6, iso-8859-10, latin-6)
10399 (iso-latin-7, iso-8859-13, latin-7, hp-roman8, roman8)
10400 (adobe-standard-encoding, cp850, ibm850): New coding systems.
10401 ("Latin-6", "Latin-7"): New language environments.
10402
10403 2008-02-01 Dave Love <fx@gnu.org>
10404
10405 * Makefile.in (DONTCOMPILE): Remove ucs-tables, utf-8,
10406 utf-8-subst; add vietnamese, cyrillic, czech.
10407
10408 * language/romanian.el (iso-latin-10): New coding system.
10409
10410 * international/mule-conf.el (emacs-mule): Set :charset-list,
10411 consistent with coding-system-charset-list doc.
10412 (iso-8859-16): New charset.
10413
10414 * international/mule-diag.el (describe-coding-system): Avoid error
10415 for iso-2022, emacs-mule.
10416
10417 2008-02-01 Dave Love <fx@gnu.org>
10418
10419 * international/codepage.el: Remove or comment out most of code.
10420 (codepage-setup): Re-write as trivial, obsolete function.
10421
10422 * language/utf-8-lang.el ("UTF-8"): Use utf-8, not mule-utf-8.
10423 Remove setup function.
10424
10425 * language/english.el (ebcdic-us, ebcdic-uk): New coding systems.
10426
10427 * Makefile.in (DONTCOMPILE): Add language/vietnamese.el,
10428 language/cyrillic.el, language/czech.el.
10429
10430 * language/vietnamese.el (windows-1258, cp1258): New coding systems.
10431 (font-ccl-encoder-alist): Remove viscii, vscii.
10432
10433 * language/hebrew.el (windows-1255, cp1255): New coding systems.
10434
10435 * language/european.el (windows-1254, cp1254, windows-1257)
10436 (cp1257, next, iso-latin-7, iso-8859-13, latin-7): New coding systems.
10437 ("Latin-7", "Lithuanian", "Latvian"): Don't require code-pages.
10438
10439 * language/greek.el (windows-1253, cp1253): New coding systems.
10440
10441 * international/mule-conf.el (ebcdic-us, ebcdic-uk): Change map
10442 file name.
10443 (windows-1253, windows-1254, windows-1255, windows-1256)
10444 (windows-1257, windows-1258, next): New charsets.
10445
10446 * international/utf-8.el, international/utf-8-subst.el: Remove.
10447
10448 * international/mule.el: Doc fixes.
10449 (charset-list, generic-char-p, set-coding-priority): Make obsolete.
10450 (coding-system-get): Try to convert old-style symbol to keyword.
10451 (define-charset): Purecopy strings in property list.
10452 (define-coding-system): Purecopy docstring.
10453
10454 * international/mule-diag.el (list-character-sets-2): Avoid
10455 charset-bytes.
10456 (list-iso-charset-chars, list-non-iso-charset-chars): Delete.
10457 (list-block-of-chars): Re-write.
10458 (describe-character-set): Show more properties.
10459 (describe-char-after): Correct codepoint display.
10460 (print-coding-system): Use symbolic types.
10461
10462 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10463
10464 * Makefile.in: Be sure also to run emacs with LANG=C.
10465
10466 2008-02-01 Dave Love <fx@gnu.org>
10467
10468 * international/mule-diag.el: Doc fixes.
10469 (sort-charset-list, charset-multibyte-form-string): Remove.
10470 (list-character-sets, list-character-sets-1)
10471 (list-character-sets-2): Re-write.
10472 (non-iso-charset-alist): Set to nil and made obsolete.
10473 (decode-codepage-char): Re-write and made obsolete.
10474 (read-charset): Don't use non-iso-charset-alist.
10475 (describe-coding-system): Use keyword properties.
10476 (describe-character-set): Re-write.
10477
10478 * international/mule-conf.el (koi8-u, koi8-t, georgian-ps)
10479 (windows-1250, windows-1251, windows-1252, cp1125, ebcdic-us)
10480 (ebcdic-uk): New charsets.
10481
10482 * language/cyrillic.el (koi8-u, koi8-t, windows-1251, cp1125):
10483 New coding systems.
10484
10485 * language/european.el (windows-1252): New coding system.
10486
10487 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10488
10489 * Makefile.in: By sure to run emacs with LC_ALL=C.
10490
10491 * international/encoded-kb.el (encoded-kbd-handle-8bit): Call
10492 encoded-kbd-self-insert-iso2022-8bit with argument 1.
10493 (encoded-kbd-self-insert-charset): New function.
10494 (encoded-kbd-setup-keymap, encoded-kbd-mode): Handle a
10495 coding-system of type charset.
10496
10497 2008-02-01 Dave Love <fx@gnu.org>
10498
10499 * international/mule-cmds.el (set-locale-environment): Comment out
10500 set-keyboard-coding-system stuff.
10501
10502 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10503
10504 * international/mule.el (define-coding-system): Doc fix;
10505 sjis->shift-jis.
10506
10507 * international/mule-conf.el: Use decode-char instead of make-char.
10508
10509 * international/encoded-kb.el (encoded-kbd-self-insert-iso2022-8bit):
10510 New arg ARG. Directly call self-insert-command. This is a
10511 temporary workaround to make it work with latin-1.
10512 (encoded-kbd-mode): Change `sjis' to `shift-jis'.
10513
10514 * international/characters.el: Setup char-width-table for CJK
10515 characters.
10516
10517 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10518
10519 * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
10520 Fix the initial value to specify character range of
10521 japanese-jisx0208, not unicode.
10522
10523 * international/characters.el: Set syntax/category for
10524 japanese-jisx0208.
10525
10526 2008-02-01 Dave Love <fx@gnu.org>
10527
10528 * mail/sendmail.el (sendmail-send-it): Use :mime-charset, not
10529 mime-charset.
10530
10531 * language/vietnamese.el, language/korean.el, language/japanese.el:
10532 * language/hebrew.el, language/greek.el, language/chinese.el:
10533 Fix :mime-charset properties.
10534
10535 * language/cyrillic.el (cyrillic-iso-8bit, cyrillic-koi8)
10536 (cyrillic-alternativnyj): Fix :mime-charset.
10537 (cp878, cp866): New alias.
10538
10539 * language/european.el: Fix mime-charset properties.
10540
10541 * international/mule-cmds.el (sort-coding-systems)
10542 (select-safe-coding-system, select-message-coding-system): Use
10543 :mime-charset, not 'mime-charset.
10544
10545 * international/mule-conf.el: Add various :mime-charset properties.
10546
10547 2008-02-01 Dave Love <fx@gnu.org>
10548
10549 * international/encoded-kb.el (encoded-kbd-self-insert-ccl): Fix
10550 getting decoder.
10551 (encoded-kbd-mode): Fix code for coding system type and designations.
10552
10553 * international/mule-conf.el: Spelling fixes.
10554
10555 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10556
10557 * international/fontset.el (fontset-plain-name): Handle the case
10558 that size, weight, slant are not specified in the fontset name.
10559
10560 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
10561
10562 * language/greek.el (greek-iso-8bit): Fix typo.
10563
10564 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10565
10566 * language/chinese.el (chinese-big5): Change :coding-type to `charset'.
10567
10568 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10569
10570 * international/characters.el: Change encoding to utf-8-emacs.
10571 Remove apparent duplicate codes.
10572
10573 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10574
10575 * international/fontset.el: Change the registry for
10576 chinese-gb2312 and add the registry for chinese-gbk.
10577
10578 * international/mule.el (charset-chars): Fix typo.
10579
10580 * international/mule-conf.el (chinese-gbk): New charset.
10581
10582 * international/titdic-cnv.el (titdic-convert): Read into a
10583 unibyte buffer then make the buffer multibyte.
10584
10585 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10586
10587 * international/mule-conf.el (utf-16-le, utf-16-be): Use :bom attribute
10588 instead of :signature.
10589
10590 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10591
10592 * language/czech.el ("Czech"): Set `iso-8859-2' for
10593 `nonascii-translation'.
10594
10595 * language/romanian.el ("Romanian"): Likewise.
10596
10597 * language/slovak.el ("Slovak"): Likewise.
10598
10599 * international/characters.el: Optimize calls of modify-category-entry.
10600
10601 2008-02-01 Kenichi Handa <handa@etl.go.jp>
10602
10603 * bindings.el: Don't bind multibyte characters to
10604 self-insert-command here. It's done in mule-conf.el.
10605
10606 * case-table.el (set-case-syntax-offset): Delete variable.
10607 (set-case-syntax-1): Delete function. Change callers.
10608 (set-case-syntax-delims): Don't check byte length of characters.
10609
10610 * isearch.el (isearch-mode-map): Call set-char-table-range to bind
10611 characters to isearch-printing-char.
10612
10613 * loadup.el: Don't load "international/utf-8". Don't call
10614 update-coding-systems-internal. Bind coding-system-for-write to
10615 `utf-8' while writing fns-XXX.el. Call clear-charset-maps before
10616 dumping.
10617
10618 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Adjust for the
10619 change of map-char-table.
10620
10621 * eshell/esh-mode.el: Adjust for the change of map-char-table.
10622
10623 * international/characters.el: Adjust for the deletion of
10624 generic characters.
10625
10626 * international/code-pages.el (cp-make-translation-table)
10627 (cp-valid-codes, cp-fix-safe-chars): Delete. Change caller.
10628 (cp-make-coding-system): Call define-coding-system.
10629
10630 * international/fontset.el: Rewrite most code.
10631
10632 * international/ja-dic-cnv.el (skkdic-get-kana-compact-codes):
10633 Call encode-char instead of split-char.
10634
10635 * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
10636 Change value.
10637 (skkdic-lookup-key): Call encode-char instead of split-char.
10638
10639 * international/titdic-cnv.el (titdic-convert): Bind
10640 coding-system-for-write to 'iso-2022-7bit. Don't work on unibyte
10641 buffer.
10642
10643 * international/latin-1.el: Don't bind set-case-syntax-offset.
10644
10645 * international/latin-2.el: Don't bind set-case-syntax-offset.
10646
10647 * international/latin-3.el: Don't bind set-case-syntax-offset.
10648
10649 * international/latin-4.el: Don't bind set-case-syntax-offset.
10650
10651 * international/latin-5.el: Don't bind set-case-syntax-offset.
10652
10653 * international/latin-8.el: Don't bind set-case-syntax-offset.
10654
10655 * international/latin-9.el: Don't bind set-case-syntax-offset.
10656
10657 * international/mule-cmds.el: Don't use coding category.
10658 Call set-coding-system-priority instead of set-coding-priority.
10659 (sort-coding-systems, select-safe-coding-system):
10660 Call coding-system-priority-list to get the most preferred one.
10661 (reset-language-environment): Order of coding system priority
10662 changed. Set primary charset to iso-8859-1.
10663 (set-language-environment-coding-systems):
10664 Call set-coding-system-priority instead of set-coding-priority.
10665 (get-charset-property, put-charset-property): Move to mule.el.
10666
10667 * international/mule-conf.el: Ful re-write.
10668
10669 * international/mule-diag.el (print-designation): Change arguments.
10670 (print-iso-2022-flags): New function.
10671 (describe-coding-system, describe-current-coding-system):
10672 Adjust for the new structure of coding system.
10673
10674 * international/mule.el (char-valid-p): Make it an alias of characterp.
10675 (define-charset): Full re-design.
10676 (charset-quoted-standard-p): Delete.
10677 (charsetp): Move to charset.c.
10678 (charset-info, charset-id, charset-bytes, charset-width)
10679 (charset-directioin, charset-iso-graphic-plane)
10680 (charset-reverse-charset): Delete.
10681 (charset-dimension, charset-chars, charset-iso-final-char)
10682 (charset-description, charset-short-name, charset-long-name):
10683 Call charset-plist instead of charset-info.
10684 (charset-plist, set-charset-plist): Move to charset.c.
10685 (get-charset-property, put-charset-property): Move from
10686 mule-cmds.el. Call charset-plist and set-charset-plist.
10687 (make-char): Delete.
10688 (generic-char-p): Make it always return nil.
10689 (decode-char, encode-char): Move to charset.c.
10690 (coding-spec-XXX-idx): Delete variables.
10691 (coding-system-iso-2022-flags): New variable.
10692 (define-coding-system): New function.
10693 (transform-make-coding-system-args, make-coding-system): Delete.
10694 (set-coding-priority): Make it obsolete.
10695 (after-insert-file-set-buffer-file-coding-system)
10696 (find-new-buffer-file-coding-system): Adjust for the new coding
10697 system structure.
10698
10699 * language/chinese.el, language/cyrillic.el, language/european.el:
10700 * language/greek.el, language/hebrew.el, language/indian.el:
10701 * language/japanese.el, language/korean.el, language/lao.el:
10702 * language/thai.el, language/tibetan.el, language/vietnamese.el:
10703 Call define-coding-system instead of make-coding-system.
10704 Delete all CCL program.
10705
10706 * textmodes/sgml-mode.el (sgml-mode-map): Use encode-char instead
10707 of make-char.
10708 (sgml-char-names-table): Fix iteration limit.
10709
10710 * term/mac-win.el: Delete unnecessary calls of set-fontset-font.
10711 (ccl-encode-mac-roman-font): Delete.
10712
10713 * Makefile.in (DONTCOMPILE): Add latin1-disp.el, ucs-tables.el,
10714 utf-8.el, and utf-8-subst.el as they can't be bytecompiled
10715 currently. This is just a temporary workaround.
10716
10717 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10718
10719 * whitespace.el (global-whitespace-mode): Use `find-file-hook' instead
10720 of `find-file-hooks'.
10721 (global-whitespace-toggle-options): Doc fix.
10722
10723 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
10724
10725 * whitespace.el (whitespace): Set :version tag to 23.1.
10726 (whitespace-turn-off, whitespace-toggle-options): Fix typos.
10727 (whitespace-style, whitespace-chars, whitespace-space)
10728 (whitespace-hspace, whitespace-tab, whitespace-newline)
10729 (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
10730 (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
10731 (whitespace-hspace-regexp, whitespace-space-regexp)
10732 (whitespace-tab-regexp, whitespace-trailing-regexp)
10733 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
10734 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
10735 (whitespace-space-after-tab-regexp, whitespace-line-column)
10736 (whitespace-display-mappings, global-whitespace-toggle-options)
10737 (whitespace-cleanup, whitespace-cleanup-region)
10738 (whitespace-interactive-char): Doc fixes.
10739
10740 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
10741
10742 * whitespace.el (global-whitespace-mode): Fix modeline lighter.
10743 When turning off the global mode, turn off the local modes too
10744 if whitespace is being unloaded.
10745 (whitespace-unload-function): New function.
10746
10747 2008-02-01 Thien-Thi Nguyen <ttn@gnuvola.org>
10748
10749 * vc.el (vc-update): Fix bug: Specify branch tip as
10750 vc-checkout REVISION. Reported by Dan Nicolaescu.
10751
10752 2008-02-01 Glenn Morris <rgm@gnu.org>
10753
10754 * info.el (bookmark-make-cell-function, bookmark-search-size)
10755 (bookmark-current-bookmark): Declare variables for compiler.
10756 (bookmark-buffer-file-name, bookmark-get-filename)
10757 (bookmark-get-front-context-string)
10758 (bookmark-get-rear-context-string, bookmark-get-position)
10759 (bookmark-get-info-node, bookmark-file-or-variation-thereof)
10760 (bookmark-jump-noselect): Declare functions for compiler.
10761 (Info-bookmark-make-cell): Fix argument list to match example of
10762 `bookmark-make-cell-for-text-file'.
10763 (Info-bookmark-jump): Don't require info inside info.el.
10764
10765 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
10766
10767 * progmodes/verilog-mode.el (verilog-sk-prompt-msb)
10768 (verilog-sk-module, verilog-sk-function, verilog-sk-begin)
10769 (verilog-sk-if, verilog-sk-wire, verilog-sk-for)
10770 (verilog-sk-state-machine): Quote all calls to
10771 "auxiliary skeleton"s to prevent infloops.
10772
10773 2008-02-01 Jason Rumney <jasonr@gnu.org>
10774
10775 * w32-fns.el: Partially revert 2007-11-10 change.
10776
10777 2008-02-01 Martin Rudalics <rudalics@gmx.at>
10778
10779 * mail/rmail.el (rmail-highlight): Fix specification.
10780 Reported by pod <pod@herald.ox.ac.uk>.
10781
10782 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
10783
10784 * image-mode.el (image-mode-current-vscroll)
10785 (image-mode-current-hscroll): Make buffer-local.
10786 (image-set-window-vscroll, image-set-window-hscroll): Simplify.
10787 (image-reset-current-vhscroll): Use the latest setting when displaying
10788 for the first time in a window. Apply to all windows in the frame.
10789 (image-mode): Don't make image-mode-current-[vh]scroll buffer-local.
10790
10791 * progmodes/grep.el (grep-compute-defaults):
10792 Don't mix up defaults for different connections to the same host.
10793
10794 2008-01-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10795
10796 * blank-mode.el: Rename to whitespace.el.
10797
10798 * obsolete/whitespace.el: Rename to obsolete/old-whitespace.el.
10799
10800 2008-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
10801
10802 * net/rcompile.el (remote-compile): Remove broken code.
10803
10804 2008-01-31 Jason Rumney <jasonr@gnu.org>
10805
10806 * term/w32-win.el (image-library-alist): Prefer libxpm.dll.
10807
10808 2008-01-31 Juanma Barranquero <lekktu@gmail.com>
10809
10810 * linum.el (linum-unload-function): New function.
10811
10812 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
10813
10814 * progmodes/gdb-ui.el (gdb-var-set-format-regexp): New constant.
10815 (gdb-var-set-format-handler): New function.
10816 (gdb-var-set-format): Use it.
10817
10818 2008-01-30 Juanma Barranquero <lekktu@gmail.com>
10819
10820 * emacs-lisp/check-declare.el (check-declare-directory):
10821 * emacs-lisp/authors.el (authors): Use `find-program' and
10822 `grep-program' instead of hardcoded program names.
10823
10824 * emacs-lisp/cl-loaddefs.el: Update.
10825
10826 2008-01-30 Tassilo Horn <tassilo@member.fsf.org>
10827
10828 * info.el (Info-bookmark-make-cell, Info-bookmark-jump): New functions.
10829 Implement bookmark support the new make-cell/handler way.
10830 (Info-mode): Bind bookmark-make-cell-function to
10831 Info-bookmark-make-cell buffer locally.
10832
10833 2008-01-30 Richard Stallman <rms@gnu.org>
10834
10835 * progmodes/etags.el (tags-query-replace): Delete unused optional args.
10836 Doc fix.
10837
10838 * files.el (hack-local-variables): Don't query about fake variables.
10839
10840 2008-01-30 Markus Triska <markus.triska@gmx.at>
10841
10842 * linum.el: New file.
10843
10844 2008-01-29 Michael Albinus <michael.albinus@gmx.de>
10845
10846 * net/tramp.el (tramp-methods): Use "-H" option for "sudo".
10847 Suggested by Trent W. Buck <trentbuck@gmail.com>. Make ("%h")
10848 a single element in "plinkx".
10849 (tramp-handle-shell-command): Reuse "*Async Shell Command*" or
10850 "*Shell Command Output*" buffers. Check, whether there is already
10851 an asynchronous process running. Display always the buffer of the
10852 asynchronous process.
10853 (tramp-compute-multi-hops): Adapt error message.
10854
10855 2008-01-29 Alan Mackenzie <acm@muc.de>
10856
10857 * progmodes/cc-langs.el (c-specifier-key): Exclude "template"
10858 from this regexp; part of same fix as next change to cc-engine.el.
10859
10860 * progmodes/cc-engine.el (c-guess-basic-syntax, CASE 5A.5):
10861 Anchor the "{" of a template function correctly on "template", not the
10862 following "<".
10863
10864 * progmodes/cc-defs.el (c-version): Increase to 5.31.5.
10865
10866 2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
10867
10868 * doc-view.el (doc-view-mode): Adapt to image-mode-current-vscroll
10869 and image-mode-current-hscroll being alists now.
10870
10871 * image-mode.el (image-mode-current-vscroll)
10872 (image-mode-current-hscroll): Add doc strings.
10873 (image-set-window-vscroll, image-set-window-hscroll)
10874 (image-reset-current-vhscroll, image-mode): Adapt to
10875 image-mode-current-vscroll and image-mode-current-hscroll being
10876 alists now.
10877
10878 2008-01-29 Martin Rudalics <rudalics@gmx.at>
10879
10880 * emacs-lisp/find-func.el (find-function-search-for-symbol):
10881 Strip extension from .emacs.el to make sure symbol is searched
10882 in .emacs too.
10883
10884 2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
10885
10886 * doc-view.el (doc-view-mode): Use facilities below to
10887 restore [vh]scroll when switching buffers.
10888
10889 * image-mode.el (image-mode-current-vscroll)
10890 (image-mode-current-hscroll): New variables.
10891 (image-set-window-hscroll, image-set-window-vscroll): New functions.
10892 (image-forward-hscroll, image-next-line, image-bol, image-eol)
10893 (image-bob, image-eob): Use them.
10894 (image-reset-current-vhscroll): New function.
10895 (image-mode): Make new variables buffer-local and reset [vh]scroll
10896 on window configuration changes.
10897
10898 2008-01-27 Nick Roberts <nickrob@snap.net.nz>
10899
10900 * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call
10901 gdb-cpp-define-alist-program if file is nil (currently only
10902 " *partial-output-...").
10903
10904 2008-01-27 Richard Stallman <rms@gnu.org>
10905
10906 * allout.el: Many doc fixes.
10907 (allout-encrypt-string): Fix error message.
10908
10909 2008-01-26 Eli Zaretskii <eliz@gnu.org>
10910
10911 * progmodes/etags.el (tags-query-replace): Doc fix.
10912
10913 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
10914
10915 * allout.el (allout-unload-function): New function.
10916
10917 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
10918
10919 * allout.el (allout-prefix-data): Doc fix.
10920 (allout-show-current-subtree): Reflow docstring.
10921 (allout-use-mode-specific-leader, allout-use-hanging-indents)
10922 (produce-allout-mode-map, allout-overlay-interior-modification-handler)
10923 (allout-next-heading, allout-previous-heading, allout-rebullet-heading)
10924 (allout-rebullet-topic, allout-rebullet-topic-grunt, allout-kill-topic)
10925 (allout-copy-topic-as-kill, allout-listify-exposed)
10926 (allout-process-exposed, allout-encrypted-key-info)
10927 (allout-update-passphrase-mnemonic-aids)
10928 (allout-next-topic-pending-encryption)
10929 (allout-tests-globally-true): Fix typos in docstrings.
10930
10931 2008-01-23 Jason Rumney <jasonr@gnu.org>
10932
10933 * lpr.el (printer-name): Do not set on MS Windows.
10934
10935 2008-01-28 Michael Albinus <michael.albinus@gmx.de>
10936
10937 * net/tramp.el (tramp-handle-shell-command): Use "/bin/sh -c" for
10938 the command.
10939
10940 2008-01-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10941
10942 * whitespace.el: Moved to obsolete dir.
10943
10944 * blank-mode.el: New version 9.2. Replace whitespace functions by
10945 aliases in blank-mode.
10946 (whitespace-buffer): New fun.
10947 (whitespace-region): Alias for whitespace-buffer, because there is no
10948 blank-region fun.
10949 (whitespace-cleanup): Alias for blank-cleanup.
10950 (whitespace-cleanup-region): Alias for blank-cleanup-region.
10951
10952 2008-01-27 Juanma Barranquero <lekktu@gmail.com>
10953
10954 * server.el (server-log-time-function): Doc fix.
10955 (server-buffer): Fix typo in docstring.
10956
10957 2008-01-27 Martin Rudalics <rudalics@gmx.at>
10958
10959 * view.el (view-buffer): Explain in doc-string why exit-action
10960 should not be set to kill-buffer.
10961
10962 * arc-mode.el (archive-extract):
10963 * tar-mode.el (tar-extract): Use kill-buffer-if-not-modified as
10964 exit-action when viewing the buffer.
10965
10966 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
10967
10968 * add-log.el (change-log-search-file-name): Work harder to find
10969 the correct file name.
10970 (change-log-find-file): Fix typo.
10971 (change-log-start-entry-re): Move definition earlier.
10972
10973 2007-01-27 Jan Nieuwenhuizen <janneke@gnu.org>
10974
10975 * add-log.el (change-log-search-file-name, change-log-find-file):
10976 New function.
10977 (change-log-font-lock-keywords): Move file name matching ...
10978 (change-log-file-names-re): ... here. New defconst.
10979 (change-log-mode-map): New binding C-c C-f to change-log-find-file.
10980
10981 2008-01-27 Alan Mackenzie <acm@muc.de>
10982
10983 * progmodes/cc-awk.el, progmodes/cc-engine.el: Correct typos,
10984 enhance comments.
10985
10986 2008-01-27 Michael Albinus <michael.albinus@gmx.de>
10987
10988 * net/tramp.el (tramp-compute-multi-hops): In case of su(do)?
10989 methods, the host name must be a local host.
10990
10991 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
10992
10993 * vc.el: Add TODO item about not defaulting to RCS.
10994
10995 * server.el (server-process-filter): Check for non-nil before
10996 calling file-directory-p.
10997
10998 2008-01-27 Alan Mackenzie <acm@muc.de>
10999
11000 * progmodes/cc-vars.el (c-hanging-braces-alist): New element for
11001 arglist-cont-nonempty.
11002
11003 * progmodes/cc-cmds.el (c-brace-newlines): Determine the newlines
11004 for a brace with syntax arglist-cont-nonempty.
11005
11006 * progmodes/cc-styles.el (c-style-alist): Add elements for
11007 arglist-cont-nonempty into 5 styles (gnu, ellemtel, linux, python, awk).
11008
11009 2008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
11010
11011 * button.el (define-button-type): Clarify type of NAME in docstring.
11012
11013 2008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
11014
11015 * server.el (server-buffer): New const.
11016 (server-log): New var.
11017 (server-log): Use them.
11018 (server-process-filter): (Try to) run the continuation in the same cwd
11019 as the client's.
11020
11021 2008-01-26 Alan Mackenzie <acm@muc.de>
11022
11023 * progmodes/cc-defs.el (c-save-buffer-state):
11024 Bind buffer-file-name and buffer-file-truename to nil, to prevent
11025 primitives generating "buffer is read only" messages.
11026
11027 2008-01-20 Ulf Jasper <ulf.jasper@web.de>
11028
11029 * calendar/icalendar.el (icalendar-version): Increase to "0.17".
11030 (icalendar-import-format): Doc fix. Allow function type.
11031 (icalendar--read-element): Doc fix.
11032 (icalendar--parse-summary-and-rest): Doc fix. Handle function
11033 type icalendar-import-format. Make regexps non-greedy.
11034 (icalendar--format-ical-event): Handle function type
11035 icalendar-import-format.
11036 (icalendar-import-format-sample): New function.
11037
11038 2008-01-26 Thien-Thi Nguyen <ttn@gnuvola.org>
11039
11040 * vc.el (vc-exec-after): For mode-line-process highlighting, if
11041 `compile' is not available, fall back to font-lock-warning-face.
11042
11043 2008-01-26 Phil Sung <psung@mit.edu> (tiny change)
11044
11045 * wdired.el (wdired-get-filename): Change `(1+ beg)' to `beg' so
11046 that the filename end is found even when the filename is empty.
11047 Fixes error and spurious newlines when marking files for deletion.
11048
11049 2008-01-26 Martin Rudalics <rudalics@gmx.at>
11050
11051 * subr.el (find-tag-default): Simplify using exclusively
11052 skip-syntax-backward/-forward.
11053
11054 2008-01-26 Michael Albinus <michael.albinus@gmx.de>
11055
11056 * vc.el (vc-directory, vc-update-change-log): Remove check for
11057 Tramp. Both functions work for it, though pretty slow
11058 (`vc-directory'). Maybe the implementation can be optimized.
11059
11060 * net/tramp.el (tramp-dissect-file-name): Raise an error when
11061 Tramp 2.0 syntax is used.
11062 Suggested by Trent W. Buck <trentbuck@gmail.com>.
11063
11064 2008-01-26 Eli Zaretskii <eliz@gnu.org>
11065
11066 * ls-lisp.el (ls-lisp-insert-directory): If -n switch is used,
11067 invoke directory-files-and-attributes with last argument `integer'
11068 instead of `string'.
11069 (insert-directory): Add -n to the list of supported switches
11070 mentioned in the doc string.
11071
11072 2008-01-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11073
11074 * blank-mode.el: New version 9.1. Handle "long" line tail
11075 visualization. Doc fix.
11076 (blank-line-length): Rename to blank-line-column.
11077 (blank-chars-value-list, blank-toggle-option-alist, blank-help-text):
11078 Initialization fix.
11079 (blank-replace-spaces-by-tabs): New fun.
11080 (blank-cleanup, blank-cleanup-region, blank-color-on): Code fix.
11081
11082 2008-01-25 Richard Stallman <rms@gnu.org>
11083
11084 * subr.el (add-hook): Implement `permanent-local-hook' property.
11085
11086 * loadhist.el (file-provides, file-requires): Push the filename right.
11087
11088 2008-01-25 Martin Rudalics <rudalics@gmx.at>
11089
11090 * emacs-lisp/find-func.el (find-library): Wrap search for
11091 library name in condition-case to avoid reporting a scan-error.
11092
11093 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
11094
11095 * server.el (server-process-filter): Don't force
11096 the authentication string to be followed by "\n".
11097
11098 2008-01-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11099
11100 * blank-mode.el: New version 9.0. New commands to clean up some blank
11101 problems like trailing blanks. New faces and regexp for visualizing
11102 the blank problems. Doc fix.
11103 (blank-chars, blank-global-modes, blank-chars-value-list)
11104 (blank-toggle-option-alist, blank-help-text): Initialization fix.
11105 (blank-indentation, blank-empty, blank-space-after-tab): New faces.
11106 (blank-indentation, blank-empty, blank-space-after-tab)
11107 (blank-indentation-regexp, blank-empty-at-bob-regexp)
11108 (blank-empty-at-eob-regexp, blank-space-after-tab-regexp): New options.
11109 (blank-cleanup, blank-cleanup-region): New commands.
11110 (blank-color-on): Code fix.
11111
11112 2008-01-25 Dan Nicolaescu <dann@ics.uci.edu>
11113
11114 * ibuffer.el (ibuffer-default-sorting-mode): Add option to sort by
11115 file name.
11116 (ibuffer-mode-map): Add binding to sort by file name.
11117 (ibuffer-filename/process-header-map): New variable.
11118 (filename-and-process): Add a header that sorts by file name.
11119 (ibuffer-mode): Mention sorting by file name.
11120
11121 * ibuf-ext.el (filename/process): New sorter.
11122
11123 2008-01-25 Sven Joachim <svenjoac@gmx.de>
11124
11125 * view.el (kill-buffer-if-not-modified): Don't pass t to
11126 buffer-modified-p.
11127
11128 2008-01-24 Michael Albinus <michael.albinus@gmx.de>
11129
11130 * net/tramp.el (tramp-do-copy-or-rename-file): Flush the cache of
11131 the source file in case of `rename'.
11132 Reported by Pete Forman <pete.forman@westerngeco.com>.
11133
11134 2008-01-24 Ken Manheimer <ken.manheimer@gmail.com>
11135
11136 * allout.el (allout-keybindings-list): In initial setting, express
11137 meta-prefixed allout keys as vectors instead of strings, since the
11138 string form is interpreted in some cases as composed key
11139 modifiers, eg, accented keys.
11140
11141 (allout-line-boundary-regexp): Clarify description.
11142
11143 (set-allout-regexp): Repair the expressions so that the formfeed
11144 part is identified as one of the top-level groups, and is
11145 included in all the forms, not just the -line-boundary-regexp one.
11146
11147 (allout-prefix-data): Incorporate information from the various
11148 allout regexp's formfeed alternative group, when present.
11149
11150 (allout-write-file-hook-handler): Rectify mangling of the error
11151 handling. It was broken in 2007-12-06T19:56:41Z!deego@gnufans.org, where an `error'
11152 condition-case handler was apparently reformatted as if it was a
11153 call to the error function. An apparent repair attempt in version
11154 1.101 situated the original body of the error handling code as
11155 bogus condition-case handlers. I've returned to just about the
11156 working code that was originally there, removing an unnecessary -
11157 but benign - enclosing 'progn'. (Automated or cursory code fixes
11158 often aren't.)
11159
11160 (allout-region-active-p): Fallback to value of mark-active if
11161 neither use-region-p nor region-active-p are present, for
11162 compatability with current and recent emacs major releases.
11163
11164 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
11165
11166 * textmodes/reftex-toc.el (reftex-toc-next, reftex-toc-previous)
11167 (reftex-toc-restore-region):
11168 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer)
11169 (reftex-index-phrases-apply-to-region):
11170 * textmodes/ispell.el (ispell-word):
11171 * progmodes/vhdl-mode.el (vhdl-keep-region-active):
11172 * progmodes/pascal.el (pascal-mark-defun):
11173 * progmodes/f90.el (f90-mark-subprogram, f90-indent-region)
11174 (f90-fill-region):
11175 * emulation/tpu-edt.el (tpu-set-mark):
11176 * emulation/crisp.el (crisp-region-active):
11177 * winner.el (winner-active-region):
11178 * ansi-color.el (ansi-color-set-extent-face): Use featurep instead
11179 of bound tests in order to resolve conditionals at compile time.
11180
11181 2008-01-24 Juanma Barranquero <lekktu@gmail.com>
11182
11183 * delsel.el (delsel-unload-function): Don't use `remprop'; it is
11184 not autoloaded, and we wouldn't want to load CL just to unload
11185 delsel.el anyway. Suggested by Martin Rudalics <rudalics@gmx.at>.
11186
11187 2008-01-24 Martin Rudalics <rudalics@gmx.at>
11188
11189 * delsel.el (delete-selection-pre-hook): Avoid clearing out
11190 pre-command-hook when text is read-only.
11191
11192 2008-01-24 Thien-Thi Nguyen <ttn@gnuvola.org>
11193
11194 * vc.el (vc-process-filter): Do nothing if buffer not live.
11195 (vc-diff-finish): Rename from vc-diff-sentinel.
11196 No longer take REV1-NAME and REV2-NAME.
11197 Instead, take BUFFER-NAME. Do nothing if buffer not live.
11198 Don't do window resize if no window displays buffer.
11199 (vc-diff-internal): Use vc-diff-finish.
11200
11201 * vc.el (vc-next-action): Fix two instances of "free-var file" bug:
11202 In both cases, convert single call to one wrapped in dolist.
11203
11204 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
11205
11206 * vc.el: Add a TODO item about missing files.
11207 (vc-exec-after): Add a tooltip to the new mode-line item.
11208
11209 2008-01-24 Glenn Morris <rgm@gnu.org>
11210
11211 * t-mouse.el (gpm-mouse-start): Declare as a function.
11212
11213 2008-01-23 Michael Albinus <michael.albinus@gmx.de>
11214
11215 * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C".
11216 (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the regexp.
11217 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11218 Don't send `tramp-rsh-end-of-line' additionally, when setting the
11219 prompt.
11220 (tramp-wait-for-output): Distinguish different prompt formats.
11221 (tramp-get-test-nt-command): Don't check for "\n" in the prompt.
11222 (tramp-local-host-p): Check whether temp directory is writable.
11223
11224 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11225
11226 * vc.el: Add TODO items.
11227
11228 2008-01-23 Carsten Dominik <dominik@science.uva.nl>
11229
11230 * replace.el (occur-mode-find-occurrence-hook): New hook that can
11231 be used to reveal or highlight the location of a match.
11232 (occur-mode-goto-occurrence, occur-mode-goto-occurrence-other-window)
11233 (occur-mode-display-occurrence): Run `occur-mode-find-occurrence-hook'.
11234
11235 2008-01-23 Martin Rudalics <rudalics@gmx.at>
11236
11237 * progmodes/hideif.el (hide-ifdef-shadow): Add version number
11238 for defcustom.
11239 (hide-ifdef-shadow): Add version number for defface.
11240
11241 2008-01-23 Glenn Morris <rgm@gnu.org>
11242
11243 * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration.
11244
11245 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11246
11247 * progmodes/sh-script.el (sh-basic-offset):
11248 * progmodes/cc-vars.el (c-syntactic-indentation)
11249 (c-syntactic-indentation-in-macros): Mark as safe.
11250
11251 2008-01-23 Richard Stallman <rms@gnu.org>
11252
11253 * icomplete.el (icomplete-get-keys):
11254 Look up KEYS using all maps in proper buffer.
11255
11256 2008-01-23 Juanma Barranquero <lekktu@gmail.com>
11257
11258 * frame.el (display-mm-height, display-mm-width):
11259 * whitespace.el (whitespace-check-leading-whitespace)
11260 (whitespace-check-trailing-whitespace)
11261 (whitespace-check-spacetab-whitespace)
11262 (whitespace-check-indent-whitespace)
11263 (whitespace-check-ateol-whitespace):
11264 * progmodes/ada-xref.el (ada-convert-file-name): Fix typo in docstring.
11265
11266 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11267
11268 * vc-arch.el (vc-arch-delete-rej-if-obsolete): Remove the
11269 after-save-hook so that it is not called multiple times.
11270
11271 * vc-svn.el (vc-svn-resolve-when-done): Likewise.
11272
11273 2008-01-23 Eli Zaretskii <eliz@gnu.org>
11274
11275 * view.el (view-file-other-window, view-file-other-frame):
11276 Don't kill the buffer if it is modified. Doc fixes.
11277 (kill-buffer-if-not-modified): New function.
11278 (view-file): Don't kill the buffer if it is modified.
11279
11280 * progmodes/ebrowse.el (ebrowse-view-file-other-window): Delete.
11281 (ebrowse-view/find-file-and-search-pattern):
11282 Call view-file-other-window instead of ebrowse-view-file-other-window.
11283 (ebrowse-view-file-other-frame): Don't call
11284 current-window-configuration. Fix second argument in the call to
11285 view-mode-enter. Doc fix.
11286
11287 2008-01-23 Richard Stallman <rms@gnu.org>
11288
11289 * subr.el (atomic-change-group): Prevent undo list truncation.
11290
11291 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11292
11293 * files.el (safe-local-eval-forms):
11294 Mark (add-hook 'write-file-hooks 'time-stamp) as safe.
11295
11296 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
11297
11298 * comint.el (comint-insert-input): Set point first.
11299
11300 * progmodes/gdb-ui.el (gdb-dequeue-input): Make doubly sure
11301 session doesn't hang because gdb-pending-triggers is non-nil.
11302 (gdb-frame-handler): Use buffer-file-name instead of
11303 buffer-name in case of duplicate file names.
11304
11305 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11306
11307 * progmodes/verilog-mode.el (verilog-mode-map): Don't bind C-M-a,
11308 C-M-e and C-M-h for emacs, they work by default.
11309 (verilog-emacs-features): Remove.
11310 (verilog-setup-dual-comments, verilog-populate-syntax-table):
11311 Remove. Move syntax table initialization ...
11312 (verilog-mode-syntax-table): ... here.
11313 (verilog-mode): Don't initialize the syntax table here.
11314 (verilog-mark-defun): Only do something useful for XEmacs, Emacs
11315 does not need it.
11316
11317 2008-01-23 Wilson Snyder <wsnyder@wsnyder.org>
11318
11319 * progmodes/verilog-mode.el (verilog-booleanp): New function for
11320 backward compatibility. Replace all uses of booleanp with
11321 verilog-booleanp.
11322
11323 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
11324
11325 * vc-hg.el (vc-hg-diff): Don't pass an empty string.
11326
11327 2008-01-23 Wilson Snyder <wsnyder@wsnyder.org>
11328
11329 * progmodes/verilog-mode.el (top-level): Fix spacing.
11330 (verilog-mode-version, verilog-mode-release-date):
11331 Update version number.
11332 (verilog-mode-release-emacs): New variable.
11333 (compile-command, reporter-prompt-for-summary-p):
11334 Define for byte compiler.
11335 (verilog-startup-message-lines, verilog-startup-message-displayed)
11336 (verilog-display-startup-message): Remove.
11337 (verilog-highlight-p1800-keywords): Improve docstring.
11338 (sigs-in, sigs-out, got-sig, got-rvalue, uses-delayed)
11339 (vector-skip-list): Only defvar at compile time.
11340 (verilog-highlight-translate-off, verilog-indent-level)
11341 (verilog-indent-level-module, verilog-indent-level-declaration)
11342 (verilog-indent-declaration-macros, verilog-indent-lists)
11343 (verilog-indent-level-behavioral, verilog-indent-level-directive)
11344 (verilog-cexp-indent, verilog-case-indent, verilog-auto-newline)
11345 (verilog-auto-indent-on-newline, verilog-tab-always-indent)
11346 (verilog-tab-to-comment, verilog-indent-begin-after-if)
11347 (verilog-align-ifelse, verilog-minimum-comment-distance)
11348 (verilog-auto-lineup, verilog-highlight-p1800-keywords)
11349 (verilog-auto-endcomments, verilog-auto-read-includes)
11350 (verilog-auto-star-expand, verilog-auto-star-save)
11351 (verilog-library-flags, verilog-library-directories)
11352 (verilog-library-files, verilog-library-extensions)
11353 (verilog-active-low-regexp, verilog-auto-sense-include-inputs)
11354 (verilog-auto-sense-defines-constant, verilog-auto-reset-widths)
11355 (verilog-assignment-delay, verilog-auto-inst-vector)
11356 (verilog-auto-inst-template-numbers, verilog-auto-input-ignore-regexp)
11357 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
11358 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
11359 Add safe-local-variable properties.
11360 (verilog-statement-menu, verilog-company, verilog-re-search-forward)
11361 (verilog-re-search-backward, verilog-error-regexp-add)
11362 (verilog-end-block-re, verilog-emacs-features)
11363 (verilog-populate-syntax-table, verilog-setup-dual-comments)
11364 (verilog-type-font-keywords, verilog-inside-comment-p)
11365 (electric-verilog-backward-sexp, verilog-backward-sexp)
11366 (verilog-forward-sexp, verilog-font-lock-init, verilog-mode)
11367 (electric-verilog-terminate-line, electric-verilog-semi)
11368 (electric-verilog-tab, verilog-insert-1, verilog-insert-indices)
11369 (verilog-generate-numbers, verilog-comment-region, verilog-label-be)
11370 (verilog-beg-of-statement, verilog-in-case-region-p)
11371 (verilog-in-struct-region-p, verilog-in-generate-region-p)
11372 (verilog-in-fork-region-p, verilog-backward-case-item)
11373 (verilog-set-auto-endcomments, verilog-get-expr)
11374 (verilog-expand-vector-internal, verilog-surelint-off)
11375 (verilog-batch-execute-func, verilog-calculate-indent)
11376 (verilog-calc-1, verilog-calculate-indent-directive)
11377 (verilog-leap-to-head, verilog-continued-line)
11378 (verilog-backward-token, verilog-backward-syntactic-ws)
11379 (verilog-forward-syntactic-ws, verilog-backward-ws&directives)
11380 (verilog-forward-ws&directives, verilog-at-constraint-p)
11381 (verilog-skip-backward-comments, verilog-indent-line-relative)
11382 (verilog-do-indent, verilog-indent-comment, verilog-more-comment)
11383 (verilog-pretty-declarations, verilog-pretty-expr)
11384 (verilog-just-one-space, verilog-indent-declaration)
11385 (verilog-get-completion-decl, verilog-goto-defun, verilog-showscopes)
11386 (verilog-header, verilog-signals-combine-bus, verilog-read-decls)
11387 (verilog-read-always-signals-recurse, verilog-read-instants)
11388 (verilog-read-auto-template, verilog-set-define)
11389 (verilog-read-defines, verilog-read-signals, verilog-getopt)
11390 (verilog-is-number, verilog-expand-dirnames, verilog-modi-lookup)
11391 (verilog-modi-cache-results, verilog-insert-one-definition)
11392 (verilog-make-width-expression, verilog-delete-autos-lined)
11393 (verilog-auto-save-check, verilog-auto-arg, verilog-auto-inst-port)
11394 (verilog-auto-inst, verilog-auto-inst-param, verilog-auto-reg)
11395 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
11396 (verilog-auto-output-every, verilog-auto-input, verilog-auto-inout)
11397 (verilog-auto-inout-module, verilog-auto-sense, verilog-auto-reset)
11398 (verilog-auto-tieoff, verilog-auto-unused, verilog-auto-ascii-enum)
11399 (verilog-auto, verilog-sk-define-signal, verilog-mode-mouse-map)
11400 (verilog-load-file-at-mouse, verilog-load-file-at-point)
11401 (verilog-library-files): Cleanup spacing of )'s they should not be
11402 on unique lines. Fix checkdoc warnings.
11403
11404 2008-01-22 Glenn Morris <rgm@gnu.org>
11405
11406 * progmodes/hideif.el (hide-ifdef-initially, hide-ifdef-read-only)
11407 (hide-ifdef-lines, hide-ifdef-shadow): Remove autoload cookies
11408 from defcustoms.
11409 (hide-ifdef-shadow): Remove autoload cookie from defface.
11410
11411 * vc.el (vc-diff-sentinel): Do not write a footer if there were
11412 differences.
11413
11414 2008-01-21 Reiner Steib <Reiner.Steib@gmx.de>
11415
11416 * pcvs-defs.el (cvs-menu): Improve cvs-mode-find-file,
11417 cvs-mode-find-file-other-window. Add cvs-mode-diff-yesterday and
11418 manual entry.
11419
11420 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
11421
11422 * net/dbus.el (dbus-ignore-errors): New macro.
11423 (dbus-unregister-object): New defun. Moved from dbusbind.c.
11424 (dbus-handle-event, dbus-list-activatable-names, dbus-list-names)
11425 (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect)
11426 (dbus-get-signatures): Apply `dbus-ignore-errors'.
11427
11428 2008-01-21 Martin Rudalics <rudalics@gmx.at>
11429
11430 * outline.el (outline-up-heading): Fix check for top level to
11431 avoid infinite looping in hide-other.
11432
11433 2008-01-21 Thien-Thi Nguyen <ttn@gnuvola.org>
11434
11435 * vc.el (vc-process-sentinel): After calling the previous
11436 sentinel, do nothing if the process' buffer is not live.
11437
11438 2008-01-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11439
11440 * blank-mode.el: Fix a problem of cleaning blank faces when turning off
11441 blank-mode in some buffers (like *info* buffers). Reported by Juanma
11442 Barranquero <lekktu@gmail.com>. Eliminate `-face' suffix of all
11443 blank-mode faces. Doc fix. New version 8.1.
11444 (blank-turn-on, blank-turn-off): Replace (and CONDITION BODY) by (when
11445 CONDITION BODY).
11446 (blank-space-face): Face/option name replaced by blank-space.
11447 (blank-hspace-face): Face/option name replaced by blank-hspace.
11448 (blank-tab-face): Face/option name replaced by blank-tab.
11449 (blank-newline-face): Face/option name replaced by blank-newline.
11450 (blank-trailing-face): Face/option name replaced by blank-trailing.
11451 (blank-line-face): Face/option name replaced by blank-line.
11452 (blank-space-before-tab-face): Face/option name replaced by
11453 blank-space-before-tab.
11454 (blank-color-on, blank-color-off, blank-display-char-on): Fix code.
11455
11456 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
11457
11458 * blank-mode.el (blank-style, blank-chars, blank-hspace-regexp)
11459 (blank-space-regexp, blank-tab-regexp, blank-trailing-regexp)
11460 (blank-space-before-tab-regexp, blank-global-modes, blank-mode)
11461 (global-blank-mode): Doc fixes.
11462 (blank, blank-space-face, blank-hspace-face, blank-tab-face)
11463 (blank-newline-face, blank-trailing-face, blank-line-face)
11464 (blank-space-before-tab-face, blank-display-mappings)
11465 (blank-chars-value-list, blank-style-value-list, blank-toggle-options)
11466 (global-blank-toggle-options, blank-help-text, blank-interactive-char)
11467 (blank-turn-on, blank-turn-off, blank-color-on, blank-color-off):
11468 Fix typos in docstrings.
11469
11470 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
11471
11472 * server.el (server-log-time-function): New variable.
11473 (server-log): Use it.
11474
11475 2008-01-21 Glenn Morris <rgm@gnu.org>
11476
11477 * progmodes/hideif.el: Move defcustoms and defface to start of file.
11478
11479 * textmodes/org.el (org-entry-properties): Let-bind `clocksum'.
11480
11481 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
11482
11483 * textmodes/org.el (org-unmodified, org-cycle-emulate-tab)
11484 (org-descriptive-links, org-link-file-path-type)
11485 (org-remember-use-refile-when-interactive)
11486 (org-agenda-skip-timestamp-if-done, org-agenda-scheduled-leaders)
11487 (org-export-ascii-bullets, org-agenda-deadline-faces)
11488 (turn-on-orgstruct++, orgtbl-to-texinfo, org-mhe-get-header)
11489 (org-batch-agenda, org-batch-agenda-csv, org-fix-agenda-info)
11490 (org-kill-note-or-show-branches): Fix typos in docstrings.
11491
11492 2008-01-20 Thien-Thi Nguyen <ttn@gnuvola.org>
11493
11494 * vc.el (vc-process-sentinel): Set mode-line-process.
11495 (vc-exec-after): Likewise, for the `run' process status.
11496
11497 2008-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
11498
11499 * ibuffer.el (ibuffer-mode): Fix last change.
11500
11501 2008-01-20 Dan Nicolaescu <dann@ics.uci.edu>
11502
11503 * vc-hg.el (vc-hg-registered):
11504 * vc-svn.el (vc-svn-registered): Make it work for non-existent files.
11505
11506 2008-01-20 Martin Rudalics <rudalics@gmx.at>
11507
11508 * repeat.el (repeat-undo-count): New variable.
11509 (repeat): For self-insertions make undo boundary only after 20
11510 repetitions. Inhibit point recording unless repeat-repeat-char is nil.
11511
11512 2008-01-19 Reiner Steib <Reiner.Steib@gmx.de>
11513
11514 * net/imap.el (imap-ping-server): New variable.
11515 (imap-opened): On add extra ping if imap-ping-server is non-nil.
11516 (imap-ping-server): Minor doc string fixes.
11517
11518 2008-01-19 Knut Anders Hatlen <kahatlen@gmail.com> (tiny change)
11519
11520 * net/imap.el (imap-ping-server): New function.
11521 (imap-opened): Call imap-ping-server.
11522
11523 2008-01-20 Glenn Morris <rgm@gnu.org>
11524
11525 * progmodes/python.el: Quote all calls to "auxiliary skeleton"s to
11526 prevent infloops.
11527
11528 2008-01-20 Martin Svenson <phromo@gmail.com> (tiny change)
11529
11530 * progmodes/python.el (python-imports): Default to "None".
11531
11532 2008-01-19 Tom Tromey <tromey@redhat.com>
11533
11534 * vc-svn.el (vc-svn-after-dir-status): New function.
11535 (vc-svn-dir-status): Run svn asynchronously.
11536
11537 2008-01-19 Martin Rudalics <rudalics@gmx.at>
11538
11539 * progmodes/hideif.el (hide-ifdef-shadow): New option.
11540 (hide-ifdef-shadow): New face.
11541 (hide-ifdef-toggle-shadowing): New function to toggle between
11542 shadowing and making code invisible.
11543 (hide-ifdef-mode-submap): Add binding for hide-ifdef-toggle-shadowing.
11544 (hide-ifdef-mode-menu): Add entry for hide-ifdef-toggle-shadowing.
11545 (hide-ifdef-region-internal): Give new overlay hide-ifdef
11546 property. Shadow text when hide-ifdef-shadow is non-nil.
11547 (hif-show-ifdef-region): Remove overlays with hide-ifdef property set.
11548 (hif-hide-line): Use when instead of if.
11549 (hide-ifdef-initially, hide-ifdef-read-only, hide-ifdef-lines):
11550 Remove unneeded * from doc-strings.
11551
11552 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
11553
11554 * doc-view.el (doc-view-goto-page): Don't move point any more, now that
11555 the hscroll behavior was fixed.
11556 (doc-view-mode): Disable auto-hscroll-mode.
11557
11558 2008-01-18 Tom Tromey <tromey@redhat.com>
11559
11560 * vc-svn.el (vc-svn-dir-status): New function.
11561
11562 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
11563
11564 * vc.el: Make vc-status asynchronous.
11565 (vc-update-vc-status-buffer): New function broken out of ...
11566 (vc-status-refresh): ... here. Pass vc-update-vc-status-buffer to
11567 the dir-status backend function.
11568
11569 * vc-hg.el (vc-hg-dir-status): Compute the status asynchronously.
11570 Move the output processing to ...
11571 (vc-hg-after-dir-status): ... here. Call the function passed as
11572 an argument with the results.
11573
11574 2008-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
11575
11576 * doc-view.el (doc-view-pdf/ps->png): Make sure we a have a valid cwd.
11577 (doc-view-insert-image): Do something if the image is missing.
11578 (doc-view-mode): Don't use file-remote-p.
11579
11580 2008-01-18 Bastien Guerry <Bastien.Guerry@ens.fr>
11581
11582 * textmodes/org-export-latex.el (org-export-latex-cleaned-string): Fix.
11583 (org-export-latex-special-chars): Convert "..." in \ldots
11584 and skip tables.
11585 (org-export-latex-fontify-headline): Change parameter name.
11586 (org-export-as-latex): Handle export of subtrees.
11587 (org-export-latex-make-header): New argument TITLE.
11588 (org-export-latex-content): New argument EXCLUDE-LIST.
11589 (org-list-parse-list): New name for org-export-latex-parse-list.
11590 (org-export-latex-make-header): New name for
11591 org-export-latex-make-preamble.
11592 (org-list-to-generic): New name of org-export-list-to-generic.
11593 (org-list-to-latex): New name of org-export-list-to-latex.
11594 (org-list-item-begin, org-list-end, org-list-insert-radio-list)
11595 (org-list-send-list, org-list-to-texinfo)
11596 (org-list-to-html): New functions.
11597 (org-export-latex-tables-column-borders)
11598 (org-export-latex-default-class, org-export-latex-classes)
11599 (org-export-latex-classes-sectioning)
11600 (org-list-radio-list-templates): New options.
11601 (org-export-latex-header): New variable.
11602 (org-latex-entities): New constant.
11603 (org-export-latex-default-sectioning, org-export-latex-preamble)
11604 (org-export-latex-prepare-text-option)
11605 (org-export-latex-get-sectioning): Remove.
11606
11607 2008-01-18 Carsten Dominik <dominik@science.uva.nl>
11608
11609 * textmodes/org-publish.el (org-publish-current-project):
11610 Fix bug with forcing publication.
11611
11612 * textmodes/org.el (org-export-with-special-strings): New option.
11613 (org-export-html-convert-special-strings): New function.
11614 (org-html-do-expand): `org-export-html-convert-special-strings'
11615 added to the list of conversion.
11616 (org-infile-export-plist, org-get-current-options): Add support
11617 for "-" in the #+OPTION line to let user switch on/off special
11618 strings conversion.
11619 (org-export-plist-vars): New :html-table-tag property.
11620 (org-export-as-html, org-format-org-table-html)
11621 (org-format-table-table-html) Use the :html-table-tag property
11622 instead of the `org-export-html-table-tag' global value.
11623 (org-additional-option-like-keywords): Add "TBLFM".
11624 (org-entry-properties): Include the CLOCKSUM special property.
11625 (org-columns-edit-value): Do not allow to edit the special
11626 CLOCKSUM property.
11627 (org-flag-drawer): Use the original value of `outline-regexp'.
11628 (org-remember-handler): Add invisible-ok flag to call to
11629 `org-end-of-subtree'.
11630 (org-agenda-highlight-todo): Respect
11631 `org-agenda-todo-keyword-format'.
11632 (org-agenda-todo-keyword-format): New option.
11633 (org-infile-export-plist): No restriction while searching for options.
11634 (org-remember-handler): Remove comments at the end of the buffer.
11635 (org-remember-use-refile-when-interactive): New option.
11636 (org-table-sort-lines): Make sure sorting works on link
11637 descritions only, and ignores the link.
11638 (org-sort-entries-or-items): Make sure the end of the subtree is
11639 included.
11640 (org-refile-use-outline-path): New allowed values `file' and
11641 `full-file-path'.
11642 (org-get-refile-targets): Respect new values for
11643 `org-refile-use-outline-path'.
11644 (org-agenda-get-restriction-and-command): DEL goes back to initial list.
11645 (org-export-as-xoxo): Restore point when done.
11646 (org-open-file): Allow multiple %s in command.
11647 (org-clock-in-switch-to-state): New option.
11648 (org-first-list-item-p): New function.
11649 (org-last-remember-storage-locations): New variable.
11650 (org-get-refile-targets): Interpret the new maxlevel setting.
11651 (org-refile-targets): New option `:maxlevel'.
11652 (org-copy-subtree): Include empty lines before but not after subtree.
11653 (org-back-over-empty-lines, org-skip-whitespace): New functions.
11654 (org-move-item-down, org-move-item-up): Include empty lines before
11655 but not after item.
11656 (org-first-sibling-p): New function.
11657 (org-remember-apply-template): Defaults, completions and history
11658 for template prompts. Also, interpret new `%!' escape.
11659 (org-context-choices): New constant.
11660 (org-bound-and-true-p): New macro.
11661 (org-imenu-depth): New option.
11662 (org-imenu-markers): New variable.
11663 (org-imenu-new-marker, org-imenu-get-tree)
11664 (org-speedbar-set-agenda-restriction): New functions.
11665 (org-agenda-set-restriction-lock)
11666 (org-agenda-remove-restriction-lock)
11667 (org-agenda-maybe-redo): New functions.
11668 (org-agenda-restriction-lock): New face.
11669 (org-agenda-restriction-lock-overlay)
11670 (org-speedbar-restriction-lock-overlay): New variables.
11671 (org-open-at-point): Remove obsolete way to do redirection in
11672 shell links.
11673 (org-imenu-and-speedbar): New customization group.
11674 (org-entry-properties): Return keyword-less time strings.
11675 (org-clock-heading-function): New option.
11676 (org-clock-in): Use `org-clock-heading-function'.
11677 (org-calendar-holiday): Try to use `calendar-check-holidays'
11678 instead of the obsolete `check-calendar-holidays'.
11679 (org-export-html-special-string-regexps): New constant.
11680 (org-massive-special-regexp): New variable.
11681 (org-compute-latex-and-specials-regexp)
11682 (org-do-latex-and-special-faces): New functions.
11683 (org-latex-and-export-specials): New face.
11684 (org-highlight-latex-fragments-and-specials): New option.
11685 (org-link-escape-chars): Use characters instead of strings.
11686 (org-link-escape-chars-browser, org-link-escape)
11687 (org-link-unescape): Use characters instead of strings.
11688 (org-export-html-convert-sub-super, org-html-do-expand): Check for
11689 protected text.
11690 (org-emphasis-alist): Additional `verbatim' flag.
11691 (org-set-emph-re): Handle the verbatim flag and compute
11692 `org-verbatim-re'.
11693 (org-cleaned-string-for-export): Protect verbatim elements.
11694 (org-verbatim-re): New variable.
11695 (org-hide-emphasis-markers): New option.
11696 (org-additional-option-like-keywords): Add new keywords.
11697 (org-get-entry): Rename from `org-get-cleaned-entry'.
11698 (org-icalendar-cleanup-string): New function for quoting icalendar text.
11699 (org-agenda-skip-scheduled-if-done): New option.
11700 (org-agenda-get-scheduled, org-agenda-get-blocks): Use
11701 `org-agenda-skip-scheduled-if-done'.
11702 (org-prepare-agenda-buffers): Allow buffers as arguments.
11703 (org-entry-properties): Add CATEGORY as a special property.
11704 (org-use-property-inheritance): Allow a list of properties as a value.
11705 (org-eval-in-calendar): No longer update the prompt.
11706 (org-read-date-popup-calendar): Rename from
11707 `org-popup-calendar-for-date-prompt'.
11708 (org-read-date-display-live): New variable.
11709 (org-read-date-display): New function.
11710 (org-read-date-analyze): New function.
11711 (org-remember-apply-template): Define `remember-finalize' if it is
11712 not yet defined.
11713 (org-remember-insinuate): New function.
11714 (org-read-date-prefer-future): New option.
11715 (org-read-date): Respect the setting of
11716 `org-read-date-prefer-future'. Use `org-read-date-analyze'.
11717 (org-set-font-lock-defaults): Use `org-archive-tag' instead of a
11718 hardcoded string.
11719 (org-remember-apply-template): Use `remember-finalize' instead of
11720 `remember-buffer'.
11721 (org-columns-compute, org-column-number-to-string)
11722 (org-columns-uncompile-format, org-columns-compile-format)
11723 (org-columns-compile-format): Handle printf format specifier.
11724 (org-columns-new, org-column-number-to-string)
11725 (org-columns-uncompile-format, org-columns-compile-format):
11726 Support for new currency summary type.
11727 (org-tree-to-indirect-buffer): Do not kill old buffer when
11728 `org-indirect-buffer-display' is `new-frame'.
11729 (org-indirect-buffer-display): Document that `new-frame' leads to
11730 indiret buffer proliferation.
11731 (org-agenda-list): Use `org-extend-today-until'.
11732 (org-extend-today-until): New option.
11733 (org-format-org-table-html): Use lower-case for <col> tag.
11734 (org-agenda-execute): New command.
11735 (org-agenda-mode-map): Keybindings of "g" "G", "e" modified.
11736 (org-select-remember-template): New function.
11737 (org-remember-apply-template): Use `org-select-remember-template'.
11738 (org-go-to-remember-target): New function.
11739
11740 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
11741
11742 * vc.el: Add a TODO note about vc-state.
11743 (vc-next-action): Register 'unregistered and 'ignored files.
11744 Use when and unless instead of if where appropriate.
11745 (vc-start-entry): Fix typo.
11746 (vc-status): Autoload it.
11747
11748 2008-01-18 Glenn Morris <rgm@gnu.org>
11749
11750 * ffap.el (ffap-alist): Remove space from RFC regexp.
11751
11752 2008-01-18 Richard Stallman <rms@gnu.org>
11753
11754 * custom.el (custom-theme-recalc-face): Use face-spec-set rather
11755 than face-spec-recalc.
11756
11757 2008-01-18 Glenn Morris <rgm@gnu.org>
11758
11759 * ibuffer.el (ibuffer-mode): Fix typo in previous change.
11760
11761 2008-01-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11762 Miles Bader <miles@gnu.org>
11763
11764 * blank-mode.el: New file. Minor mode to visualise (HARD) SPACE,
11765 TAB, NEWLINE. Miles Bader <miles@gnu.org> wrote the original code
11766 for handling display table (via visws.el package), his code was
11767 modified, but the main idea was kept.
11768
11769 2008-01-17 Glenn Morris <rgm@gnu.org>
11770
11771 * ibuf-ext.el (ibuffer-auto-mode, ibuffer-save-filter-groups)
11772 (ibuffer-save-filters): Remove calls to deleted
11773 ibuffer-update-mode-name.
11774
11775 2008-01-16 Martin Rudalics <rudalics@gmx.at>
11776
11777 * longlines.el (longlines-mode, longlines-show-region)
11778 (longlines-unshow-hard-newlines): Bind buffer-file-name and
11779 buffer-file-truename to nil while modifying buffer.
11780
11781 * cus-edit.el (custom-reset-standard-variables-list)
11782 (custom-reset-standard-faces-list): New variables.
11783 (custom-reset-standard-save-and-update): New function.
11784 (Custom-save): Apply custom-mark-to-save before and
11785 custom-state-set-and-redraw after saving options.
11786 (Custom-reset-standard): Apply custom-mark-to-reset-standard to
11787 options and call custom-reset-standard-save-and-update.
11788 (custom-variable, custom-face, custom-group): Provide new
11789 entries for custom-mark-to-save, custom-mark-to-reset-standard,
11790 and custom-state-set-and-redraw.
11791 (custom-variable-mark-to-save)
11792 (custom-variable-state-set-and-redraw)
11793 (custom-variable-mark-to-reset-standard)
11794 (custom-face-mark-to-save, custom-face-state-set-and-redraw)
11795 (custom-face-mark-to-reset-standard)
11796 (custom-group-mark-to-save, custom-group-state-set-and-redraw)
11797 (custom-group-mark-to-reset-standard): New functions.
11798 (custom-variable-save): Move save, state-set, and redraw
11799 functionality to custom-variable-mark-to-save.
11800 (custom-face-save): Move save, state-set, and redraw
11801 functionality to custom-face-mark-to-save.
11802 (custom-group-save): Move save, state-set, and redraw
11803 functionality to custom-group-mark-to-save.
11804 (custom-variable-reset-standard, custom-face-reset-standard)
11805 (custom-group-reset-standard): Move save, state-set, and redraw
11806 functionality to custom-reset-standard-save-and-update.
11807
11808 (custom-buffer-create-internal): Fix text in verbose help.
11809 (custom-face-value-create): Indent doc-strings of faces like
11810 those of variables.
11811
11812 2008-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11813
11814 * server.el (server-process-filter): Replace lineno and columnnno
11815 which defaulted to 1&0 with filepos which defaults to nil.
11816 (server-goto-line-column): Only receive the filepos.
11817 Only move if filepos is non-nil.
11818 (server-visit-files): Slight restructure to consolidate two calls to
11819 server-goto-line-column into just one.
11820
11821 * nxml/nxml-mode.el (nxml-mode): Use mode-line-process to indicate
11822 the use of degraded mode.
11823 (nxml-degrade): Don't change mode-name.
11824
11825 * nxml/rng-nxml.el (rng-nxml-mode-init):
11826 Don't overwrite mode-line-process.
11827
11828 * ibuffer.el (mode): Pass the buffer to format-mode-line.
11829 (ibuffer-update-mode-name): Remove.
11830 (ibuffer-redisplay, ibuffer-update, ibuffer-mode): Don't call it.
11831 (ibuffer-mode): Use mode-line-process instead.
11832
11833 * ibuf-ext.el (ibuffer-auto-update-changed, ibuffer-auto-mode):
11834 Use derived-mode-p.
11835 (ibuffer-mark-by-mode-regexp): Pass the buffer to format-mode-line.
11836
11837 * help.el (describe-mode): Pass the right buffer to format-mode-line.
11838
11839 2008-01-16 Glenn Morris <rgm@gnu.org>
11840
11841 * comint.el (comint-regexp-arg): Fix no-input case.
11842
11843 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
11844
11845 * smerge-mode.el (smerge-start-session): Rename from smerge-auto.
11846 * pcvs.el (cvs-revert-if-needed):
11847 * vc.el (vc-maybe-resolve-conflicts): Rename callers.
11848
11849 * vc-svn.el (vc-svn-find-file-hook):
11850 * vc-arch.el (vc-arch-find-file-hook): Undo previous change.
11851
11852 2008-01-16 Ulf Jasper <ulf.jasper@web.de>
11853
11854 * calendar/icalendar.el (icalendar-version): Increase to 0.16.
11855 (icalendar-export-file, icalendar-import-file):
11856 Restore significant trailing whitespace in `interactive' prompts.
11857
11858 2008-01-16 Tom Tromey <tromey@redhat.com>
11859
11860 * calendar/icalendar.el (icalendar--convert-tz-offset)
11861 (icalendar--parse-vtimezone, icalendar--convert-all-timezones)
11862 (icalendar--find-time-zone): New functions.
11863 (icalendar--decode-isodatetime): Add `zone' argument, passed to
11864 `decode-time'. Doc fix.
11865 (icalendar--convert-ical-to-diary): Compute zone-map.
11866 Pass timezone to icalendar--decode-isodatetime.
11867
11868 2008-01-16 Alan Mackenzie <acm@muc.de>
11869
11870 * progmodes/cc-vars.el (c-constant-symbol): Put this defun inside
11871 an eval-and-compile, so as to permit byte-compiling (e.g. in
11872 bootstrap).
11873
11874 2008-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * emacs-lisp/easymenu.el (easy-menu-avoid-duplicate-keys): New var.
11877 (easy-menu-create-menu, easy-menu-convert-item-1): Use it to avoid
11878 using the same key for different menu entries.
11879
11880 * smerge-mode.el (smerge-refine): Also work on "same change conflicts".
11881 (smerge-makeup-conflict): New command.
11882
11883 2008-01-15 Thien-Thi Nguyen <ttn@gnuvola.org>
11884
11885 * log-edit.el (log-edit): Doc fix.
11886
11887 2008-01-15 Glenn Morris <rgm@gnu.org>
11888
11889 * diff-mode.el (diff-end-of-hunk): Revert 2008-01-08 change.
11890
11891 2008-01-14 Alan Mackenzie <acm@muc.de>
11892
11893 * progmodes/cc-vars.el (c-constant-symbol): New function which
11894 supersedes c-const-symbol. During a customize-.. call it enables
11895 an element of (e.g.) c-hanging-braces alist to have its name
11896 displayed, even when the default value of c-h-b etc. doesn't
11897 include the elemnt. Replace uses of the old function by the new.
11898
11899 * progmodes/cc-vars.el (c-hanging-braces-alist): Remove the
11900 obscure non-working fragment ":value c-".
11901
11902 2008-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
11903
11904 * abbrev.el (clear-abbrev-table): Can't pass a symbol to intern.
11905
11906 2008-01-14 Michael Albinus <michael.albinus@gmx.de>
11907
11908 * net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
11909 instead of `tramp-file-name-real-host'.
11910
11911 * net/trampver.el: Update release number.
11912
11913 2008-01-14 Alan Mackenzie <acm@muc.de>
11914
11915 * progmodes/cc-engine.el (c-guess-basic-syntax): Prevent a macro
11916 call inside a struct being recognised as a K&R argument.
11917
11918 2008-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
11919
11920 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11921 Accept "fatal error" from MSFT.
11922 Reported by Jared Finder <jfinder@crypticstudios.com>.
11923
11924 2008-01-14 Dan Nicolaescu <dann@ics.uci.edu>
11925
11926 * smerge-mode.el (smerge-auto): New function.
11927 * vc-svn.el (vc-svn-find-file-hook):
11928 * vc-arch.el (vc-arch-find-file-hook):
11929 * pcvs.el (cvs-revert-if-needed):
11930 * vc.el (vc-maybe-resolve-conflicts): Use it instead of vc-mode.
11931 (top-level): Add a Todo list.
11932
11933 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
11934
11935 * vc.el (vc-update): Resolve conflicts if necessary instead of
11936 just updating the buffer.
11937
11938 * vc-cvs.el (vc-cvs-merge-news): Ignore the error status of the
11939 update command so that we can parse the output.
11940
11941 2008-01-13 Martin Rudalics <rudalics@gmx.at>
11942
11943 * mail/rmail.el (rmail-convert-to-babyl-format):
11944 Remove save-excursion to avoid infinite looping.
11945 Reported by dnz <dnz@bk.ru>.
11946
11947 2008-01-12 Glenn Morris <rgm@gnu.org>
11948
11949 * woman.el (woman-parse-numeric-arg): Change handling of `==':
11950 can be interned without a function definition.
11951
11952 2008-01-12 Jason Rumney <jasonr@gnu.org>
11953
11954 * nxml/nxml-mode.el (nxml-enable-unicode-char-name-sets)
11955 (rng-nxml-mode-init): Declare.
11956
11957 2008-01-11 Jason Rumney <jasonr@gnu.org>
11958
11959 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add some defaults.
11960 (rng-preferred-prefix-alist-default): Remove.
11961
11962 * nxml/nxml-uchnm.el (nxml-internal-unicode-char-name-sets-enabled):
11963 Rename from nxml-enable-unicode-char-name-sets-flag.
11964 (nxml-enable-unicode-char-name-sets-1): Merge into
11965 nxml-enable-unicode-char-name-sets.
11966 (nxml-enable-unicode-char-name-sets): Don't unconditionally set
11967 nxml-char-name-ignore-case here.
11968
11969 * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly.
11970 Update doc string and commentary.
11971 (nxml-char-name-ignore-case): Change default value.
11972 (nxml-mode): Call nxml-enable-unicode-char-name-sets directly.
11973
11974 2008-01-11 Martin Rudalics <rudalics@gmx.at>
11975
11976 * cus-start.el (all): Add missing version entries.
11977
11978 2008-01-11 Glenn Morris <rgm@gnu.org>
11979
11980 * language/china-util.el (big5-to-flat-code, flat-code-to-big5)
11981 (euc-to-flat-code, flat-code-to-euc):
11982 * textmodes/org.el (elmo-msgdb-overview-get-entity)
11983 (wl-summary-buffer-msgdb): Declare as funtions.
11984
11985 2008-01-10 Martin Rudalics <rudalics@gmx.at>
11986
11987 * progmodes/ada-mode.el (ada-set-syntax-table-properties):
11988 Bind buffer-file-name and buffer-file-truename.
11989
11990 * fringe.el (fringe-mode-explicit): New variable.
11991 (set-fringe-mode): Don't alter default-frame-alist when just
11992 loading this file.
11993
11994 2008-01-10 Tassilo Horn <tassilo@member.fsf.org>
11995
11996 * doc-view.el (doc-view-buffer-file-name): New variable.
11997 (doc-view-convert-current-doc, doc-view-search)
11998 (doc-view-current-cache-dir, doc-view-initiate-display)
11999 (doc-view-mode): Use it.
12000 (doc-view-bookmark-make-cell): Use variable buffer-file-name
12001 instead of function.
12002
12003 2008-01-10 Dan Nicolaescu <dann@ics.uci.edu>
12004
12005 * vc-svn.el (vc-svn-registered): Return the correct value for
12006 ignored and unregistered files.
12007
12008 2008-01-10 Tassilo Horn <tassilo@member.fsf.org>
12009
12010 * doc-view.el (tramp): Require tramp because we use tramp-tramp-file-p.
12011
12012 2008-01-10 Tom Tromey <tromey@redhat.com>
12013
12014 * vc.el (vc-status-unmark-all-files): New function.
12015 (vc-status-unmark-all-files): Likewise.
12016 (vc-status-mode-map): Add bindings.
12017
12018 2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
12019
12020 * ediff*.el: Uncomment declare-function.
12021
12022 * emulation/viper*.el: Uncomment declare-function.
12023
12024 2008-01-09 Tassilo Horn <tassilo@member.fsf.org>
12025
12026 * doc-view.el (doc-view-mode): Support tramp, compressed files and
12027 files inside archives uniformly.
12028
12029 2008-01-09 Eric S. Raymond <esr@snark.thyrsus.com>
12030
12031 * textmodes/sgml-mode.el (sgml-tag-syntax-table): Initialize this
12032 constant with a computation on sgml-specials rather than a literal
12033 list. Without this change the syntax table is generated
12034 incorrectly, and the mode will think it's in a comment following
12035 any instance of the string "--".
12036
12037 2008-01-09 Tassilo Horn <tassilo@member.fsf.org>
12038
12039 * doc-view.el (doc-view-mode-p): Add EPS as supported type.
12040 (doc-view-mode): Support document files inside archives.
12041
12042 2008-01-09 Dan Nicolaescu <dann@ics.uci.edu>
12043
12044 * vc.el (vc-deduce-fileset): Return the currently selected file if
12045 no files are selected when using vc-status.
12046
12047 2008-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
12048
12049 * ediff*.el: Comment out declare-function. "make bootstrap"
12050 stops with an error and Emacs does not compile with those things in.
12051 Besides, declare-function is not defined in XEmacs.
12052
12053 * ediff-util (eqiff-quit): Autoraise minibuffer.
12054
12055 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Make it a defun.
12056
12057 * emulation/viper*.el: Comment out declare-function -- not defined
12058 in XEmacs.
12059
12060 * emulation/viper-ex.el (viper-info-on-file):
12061 Take care of indirect buffers.
12062
12063 * emulation/viper.el (viper-set-hooks, set-cursor-color):
12064 Set viper-vi-state-cursor-color.
12065
12066 2008-01-09 Tom Tromey <tromey@redhat.com>
12067
12068 * vc.el (vc-status-headers): Rename from vc-status-insert-headers.
12069 Just return header.
12070 (vc-status-move-to-goal-column): New function.
12071 (vc-status-mode-map): Define more keys.
12072 (vc-status-mode): Use vc-status-refresh. Now 'special.
12073 (vc-status-refresh): New function.
12074 (vc-status-next-line): Likewise.
12075 (vc-status-previous-line): Likewise.
12076 (vc-status-mark-file): Use vc-status-next-line.
12077 (vc-status-unmark-file): Use vc-status-previous-line.
12078 (vc-status-unmark-file-up): New function.
12079 (vc-status-register): Likewise.
12080 (vc-status-find-file): Likewise.
12081 (vc-status-find-file-other-window): Likewise.
12082 (vc-status-current-file): Likewise.
12083 (vc-ensure-vc-buffer): Understand vc-status mode.
12084
12085 * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
12086
12087 2008-01-09 Glenn Morris <rgm@gnu.org>
12088
12089 * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file
12090 entry, for Windows.
12091
12092 2008-01-09 Tom Tromey <tromey@redhat.com>
12093
12094 * play/blackbox.el (blackbox-mode-map): Add `q' and [return] bindings.
12095
12096 2008-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
12097
12098 * ffap.el (ffap-read-file-or-url): Don't use let-binding to temporarily
12099 add a file-name handler.
12100
12101 2008-01-08 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12102
12103 * textmodes/bibtex.el (bibtex-initialize): New autoloaded command.
12104 Rename from function bibtex-files-expand. New optional arg select.
12105 (bibtex-flash-head): Allow blink-matching-delay being zero.
12106 (bibtex-clean-entry): Use atomic-change-group.
12107 (bibtex-format-entry): Check presence of required fields only
12108 after formatting of fields. Use member-ignore-case. Do not use
12109 bibtex-parse-entry. Do not use booktitle field to set a missing title.
12110 (bibtex-autofill-entry): Do not call undo-boundary.
12111 (bibtex-lessp): Handle crossref keys that point to another bibtex file.
12112 (bibtex-sort-buffer, bibtex-prepare-new-entry, bibtex-validate):
12113 Parse keys if necessary.
12114
12115 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
12116
12117 * progmodes/gdb-ui.el (gdb-var-list-children-1): Put varnum in
12118 quotes in case of spaces, e.g. STL containers (not pretty).
12119
12120 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
12121
12122 * progmodes/gdb-ui.el (gud-gdb-command-name):
12123 Explain "--annotate=3" option is necessary for the Graphical Interface.
12124
12125 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
12126
12127 * progmodes/hideif.el (hide-ifdef-mode-menu): Put hide-ifdef commands
12128 on menu bar.
12129
12130 2008-01-08 Michael Albinus <michael.albinus@gmx.de>
12131
12132 * ffap.el (ffap-read-file-or-url): Let-bind
12133 `file-name-handler-alist' due to `rfn-eshadow-update-overlay'.
12134
12135 2008-01-08 Sven Joachim <svenjoac@gmx.de>
12136
12137 * vc-bzr.el: Fix typo in header.
12138
12139 2008-01-08 Eli Zaretskii <eliz@gnu.org>
12140
12141 * Makefile.in (custom-deps, finder-data): Depend on autoloads
12142 instead of loaddefs.el.
12143
12144 2008-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
12145
12146 * vc-cvs.el (vc-cvs-annotate-time): Don't move backward when text
12147 gets inserted out-of-order.
12148
12149 2008-01-08 Riccardo Murri <riccardo.murri@gmail.com>
12150
12151 * vc-bzr.el: Copyright and version headers update.
12152 Remove some outdated comments through the whole file.
12153 (vc-bzr-program-args): Remove because unused.
12154 (vc-bzr-log-switches): New customization option.
12155 (vc-bzr-command): Use LC_MESSAGES=C instead of LC_ALL=C. No longer
12156 use `vc-bzr-program-args'.
12157 (vc-bzr-register): Fix for working with both 22.1 and CVS version of
12158 `vc-find-root' (patch by Andreas Hoenen).
12159 (vc-bzr-status): Update regex to match latest Bzr output.
12160 Remove redundant test.
12161 (vc-bzr-init-version): New function.
12162 (vc-bzr-unregister): Must not delete file.
12163 (vc-bzr-find-version): New function.
12164 (vc-bzr-checkout): Argument `rev' is explicit revision only if it's
12165 a non-empty string, otherwise take head revision.
12166 (vc-bzr-print-log): Pass `vc-bzr-log-switches' to "bzr log".
12167 (vc-bzr-diff): Simpler build of the revision spec string.
12168 (vc-annotate-convert-time, vc-bzr-annotate-difference):
12169 Remove: compatibility hacks for Emacs21, not needed in Emacs 22.
12170 (vc-bzr-dir-state): Add code comments. Removed redundant statement.
12171 (vc-bzr-dired-state-info): Only provide custom strings for
12172 overloaded VC state 'edited; otherwise fallback to
12173 `vc-default-dired-state-info'.
12174
12175 2008-01-08 Richard Stallman <rms@gnu.org>
12176
12177 * delsel.el (delete-selection-mode): Doc fix.
12178
12179 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
12180
12181 * progmodes/gud.el (gud-def): Do nothing if gud-running is t.
12182 (gud-speedbar-menu-items): Add item for gdb-var-set-format below.
12183
12184 * progmodes/gdb-ui.el (gdb-var-set-format): Set the output format
12185 of watch expressions (only works fully with GDB 6.7 or later).
12186
12187 2008-01-08 Dan Nicolaescu <dann@ics.uci.edu>
12188
12189 * time-stamp.el (time-stamp-time-zone):
12190 * whitespace.el (whitespace-check-buffer-leading)
12191 (whitespace-check-buffer-trailing, whitespace-check-buffer-indent)
12192 (whitespace-check-buffer-spacetab, whitespace-check-buffer-ateol):
12193 * progmodes/sh-script.el (sh-indentation):
12194 * textmodes/ispell.el (ispell-local-pdict):
12195 Add safe-local-variable properties.
12196
12197 2008-01-08 Michael Albinus <michael.albinus@gmx.de>
12198
12199 * vc-git.el (vc-git--call): Apply `process-file' instead of
12200 `call-process'.
12201
12202 * net/tramp.el (tramp-remote-process-environment): Add "LC_CTYPE=C".
12203 Reported by Pete Forman <pete.forman@westerngeco.com>.
12204 (tramp-perl-encode, tramp-perl-decode): Update copyrights.
12205 (tramp-handle-process-file): Handle the case where DESTINATION is
12206 a consp with t as car.
12207 (tramp-wait-for-output): We shall remove exactly what has been
12208 find by the search.
12209
12210 2008-01-08 Kevin Ryde <user42@zip.com.au>
12211
12212 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12213 For perl, allow "during global destruction" at end. Add entry for
12214 two-arg form of the Test module ok() func.
12215
12216 2008-01-08 Glenn Morris <rgm@gnu.org>
12217
12218 * diff-mode.el (diff-end-of-hunk): Don't match empty lines in
12219 unified format.
12220
12221 * mouse.el (mouse-major-mode-menu): Suppress duplicate menus.
12222
12223 2008-01-08 Ralf Angeli <angeli@caeruleus.net>
12224
12225 * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
12226 Simplify selection of frame focusing function.
12227
12228 2008-01-08 Michael Olson <mwolson@gnu.org>
12229
12230 * textmodes/remember.el (remember-region): Fix typo in docstring.
12231
12232 2008-01-08 Lennart Borgman <lennart.borgman.073@student.lu.se>
12233
12234 * textmodes/remember.el (remember): If there is a visible region
12235 [that is, the mark is active and transient mark mode is enabled]
12236 then use this region for the initial contents of the *Remember*
12237 buffer. Use `region-beginning' and `region-end' instead of
12238 `point' and `mark'.
12239
12240 2008-01-07 Dan Nicolaescu <dann@ics.uci.edu>
12241
12242 * vc-hg.el (vc-hg-dir-state, vc-hg-dir-status): Pass the dir
12243 argument to vc-hg-command.
12244 (vc-hg-log-view-mode): Handle the user field better.
12245
12246 2008-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
12247
12248 * vc.el (vc-ensure-vc-buffer): Check liveness of vc-parent-buffer.
12249
12250 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12251
12252 * vc.el (vc-status-fileinfo): New defstruct.
12253 (vc-status): New defvar.
12254 (vc-status-insert-headers, vc-status-printer, vc-status)
12255 (vc-status-mode-map, vc-status-mode, vc-status-mark-file)
12256 (vc-status-unmark-file, vc-status-marked-files): New functions.
12257
12258 * vc-hg.el (vc-hg-dir-status): New function.
12259
12260 2008-01-06 Martin Rudalics <rudalics@gmx.at>
12261
12262 * cus-edit.el (custom-tool-bar-map): Move initialization of this
12263 keymap from here ...
12264 (custom-mode): ... to here. Reported by Reiner Steib.
12265
12266 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12267
12268 * obsolete/x-apollo.el: Remove file for unsupported system.
12269
12270 * term/x-win.el (vendor-specific-keysyms): Remove reference to
12271 Apollo.
12272
12273 * progmodes/gud.el (gud-dgux-p): Remove.
12274 (dbx): Remove reference to dgux.
12275
12276 * progmodes/ps-mode.el (ps-mode-print-function):
12277 * ps-print.el (ps-lp-system):
12278 * paths.el (rmail-spool-directory):
12279 * ls-lisp.el (ls-lisp-emulation):
12280 * lpr.el (lpr-lp-system):
12281 * dired.el (dired-chown-program): Remove references to dgux.
12282
12283 2008-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
12284
12285 * vc.el (vc-process-sentinel): Fix apparent typo.
12286 (vc-do-command): Forcefully kill any left over process.
12287 Use start-file-process.
12288 (vc-annotate-get-time-set-line-props): Check we don't move backward.
12289
12290 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
12291
12292 * net/dbus.el (dbus-list-hash-table)
12293 (dbus-name-owner-changed-handler): Replace "signal" by "member".
12294 (dbus-check-event): Add serial number to event.
12295 (dbus-handle-event): Apply return message if needed.
12296 (dbus-event-serial-number): New defun.
12297 (dbus-event-service-name, dbus-event-path-name)
12298 (dbus-event-interface-name, dbus-event-member-name):
12299 Adapt implementation to serial number.
12300
12301 2008-01-04 Juanma Barranquero <lekktu@gmail.com>
12302
12303 * bs.el (bs--get-mode-name): Fix typo in previous change.
12304
12305 2008-01-04 Dan Nicolaescu <dann@ics.uci.edu>
12306
12307 * mouse.el (mouse-popup-menubar): Fix typo.
12308
12309 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more
12310 form inside with-current-buffer.
12311
12312 * progmodes/antlr-mode.el (provide): Move to the end of file.
12313 (require): Don't require font-lock and compile.
12314 (outline-level, imenu-use-markers, imenu-create-index-function):
12315 Move declarations to top level.
12316 (cond-emacs-xemacs-macfn): Declare for compiler.
12317
12318 * vc-bzr.el (vc-bzr-root):
12319 * vc-arch.el (vc-arch-root): Only set a property if the file is
12320 managed by this backend.
12321
12322 * vc-hg.el (vc-hg-state): Support the new status code for up-to-date.
12323
12324 2008-01-04 Tassilo Horn <tassilo@member.fsf.org>
12325
12326 * doc-view.el (doc-view-scroll-up-or-next-page)
12327 (doc-view-scroll-down-or-previous-page): Don't scroll to the
12328 top/bottom again when on the first/last page.
12329
12330 * doc-view.el (doc-view-scroll-up-or-next-page)
12331 (doc-view-scroll-down-or-previous-page): Use image-scroll-up and
12332 image-scroll-down instead of the non-image equivalents.
12333 Don't rely on a signalled condition but switch pages when scrolling
12334 doesn't change the vertical position anymore.
12335 (doc-view-mode-map): Remap scroll-{up,down} to
12336 image-scroll-{up,down}.
12337
12338 2008-01-04 Rob Riepel <riepel@networking.Stanford.EDU>
12339
12340 * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the
12341 tpu-mapper command rather than load the tpu-mapper package.
12342
12343 * emulation/tpu-mapper.el (tpu-mapper): New command.
12344 Contains all the code previously at top-level.
12345
12346 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
12347
12348 * bs.el (bs--sort-by-mode, bs--get-mode-name):
12349 * imenu.el (imenu-add-to-menubar):
12350 * makesum.el (make-command-summary):
12351 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
12352 (mouse-buffer-menu):
12353 * msb.el (msb--mode-menu-cond):
12354 * calc/calc-embed.el (calc-do-embedded):
12355 * emacs-lisp/helper.el (Helper-describe-mode):
12356 * mail/emacsbug.el (report-emacs-bug):
12357 * progmodes/hideshow.el (hs-grok-mode-type):
12358 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12359 * textmodes/table.el (*table--cell-describe-mode):
12360 Pass mode-name through format-mode-line.
12361
12362 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
12363
12364 * progmodes/ada-xref.el (ada-prj-find-prj-file):
12365 * progmodes/ada-mode.el (comment-region):
12366 * calendar/todo-mode.el (todo-insert-item):
12367 * bookmark.el (bookmark-buffer-name):
12368 Test major-mode rather than mode-name.
12369
12370 2008-01-04 Richard Stallman <rms@gnu.org>
12371
12372 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
12373 Call byte-compile-warn-about-unresolved-functions outside
12374 the with-current-buffer.
12375 (byte-compile-insert-header): Use with-current-buffer.
12376
12377 2008-01-04 Glenn Morris <rgm@gnu.org>
12378
12379 * startup.el (fancy-about-screen): Remove reference to deleted
12380 `fancy-splash-help-echo' variable.
12381
12382 * version.el (emacs-copyright): Update to 2008.
12383
12384 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Use mapc
12385 rather than mapcar.
12386
12387 * progmodes/cc-vars.el (defcustom-c-stylevar): Revert previous
12388 change (merge mistake).
12389
12390 * doc-view.el (doc-view-search-internal): Don't use `incf'.
12391
12392 * doc-view.el (bookmark-make-cell-function, bookmark-get-filename)
12393 (bookmark-get-bookmark-record):
12394 * image-mode.el (bookmark-make-cell-function)
12395 (bookmark-get-filename, bookmark-get-bookmark-record)
12396 (bookmark-get-position):
12397 * log-view.el (vc-modify-change-comment):
12398 * progmodes/grep.el (find-name-arg): Declare for compiler.
12399
12400 2008-01-04 Juanma Barranquero <lekktu@gmail.com>
12401
12402 * savehist.el (savehist-coding-system): Default to a variant coding
12403 system with explicit unix end-of-line conversion, which is safer.
12404
12405 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
12406
12407 * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp):
12408 * ibuffer.el (mode column): Use format-mode-line.
12409
12410 * server.el (server-create-window-system-frame): Remove workaround for
12411 a bug that has been fixed.
12412
12413 2008-01-03 Magnus Henoch <magnus@zemdatav>
12414
12415 * net/dbus.el (dbus-name-owner-changed-handler):
12416 Use dbus-unregister-object instead of dbus-unregister-signal.
12417
12418 2008-01-03 Drew Adams <drew.adams@oracle.com>
12419
12420 * frame.el (frame-geom-value-cons, frame-geom-spec-cons): New fns.
12421
12422 2008-01-03 Richard Stallman <rms@gnu.org>
12423
12424 * replace.el (occur-context-lines): New subroutine,
12425 broken out of occur-engine.
12426 (occur-engine): Call it.
12427
12428 2008-01-03 Alexandre Julliard <julliard@winehq.org>
12429
12430 * vc-git.el (vc-git--ls-files-state): New function.
12431 (vc-git-dir-state): Use it instead of processing the status
12432 results here.
12433
12434 2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com>
12435
12436 * progmodes/grep.el (grep-find-ignored-directories):
12437 Initialize from the value of vc-directory-exclusion-list.
12438
12439 * vc-hooks.el (vc-directory-exclusion-list): Include "_darcs",
12440 even though we don't have a back end for darcs yet.
12441
12442 2008-01-02 Karl Fogel <kfogel@red-bean.com>
12443
12444 Change a return type, for greater extensibility.
12445 See http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html
12446 and its thread for discussion leading to this change.
12447
12448 * bookmark.el (bookmark-jump-noselect):
12449 Return an alist instead of a dotted pair.
12450 (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
12451 (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
12452 (bookmark-bmenu-switch-other-window): Adjust accordingly.
12453 (bookmark-make-cell-function): Adjust documentation accordingly.
12454
12455 * image-mode.el (image-bookmark-jump):
12456 Adjust return type accordingly; document.
12457
12458 * doc-view.el (doc-view-bookmark-jump):
12459 Adjust return type accordingly; document.
12460
12461 2008-01-02 Miles Bader <miles@gnu.org>
12462
12463 * net/rcirc.el (rcirc-log-filename-function): New variable.
12464 (rcirc-log): Use `rcirc-log-filename-function' to generate the
12465 log-file name. Don't log anything if it returns nil.
12466 (rcirc-log-write): Use `expand-file-name' when merging the
12467 log-file name from the alist with rcirc-log-directory; this does
12468 the right thing if the name in the alist already an absolute
12469 filename. Make the log-file directory if necessary.
12470
12471 2007-12-29 Richard Stallman <rms@gnu.org>
12472
12473 * font-lock.el (font-lock-prepend-text-property)
12474 (font-lock-append-text-property): Canonicalize the face and
12475 font-lock-face properties.
12476
12477 * faces.el (facep): Doc fix.
12478
12479 * startup.el (fancy-startup-tail, fancy-about-text)
12480 (fancy-startup-text): Regularize format of face property.
12481
12482 * facemenu.el (list-colors-print): Use :background and :foreground
12483 instead of background-color and foreground-color.
12484
12485 2007-12-29 Drew Adams <drew.adams@oracle.com>
12486
12487 * cus-edit.el (custom-add-parent-links):
12488 Fill the "Parent documentation" text.
12489
12490 2007-12-29 Eli Zaretskii <eliz@gnu.org>
12491
12492 * textmodes/ispell.el (ispell-grep-command): Use "grep" on
12493 MS-Windows and MS-DOS.
12494 (ispell-grep-options): Use "-Ei" on MS-Windows and MS-DOS.
12495
12496 2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com>
12497
12498 * vc-svn.el (vc-svn-modify-change comment): New function.
12499
12500 2008-01-01 Dan Nicolaescu <dann@ics.uci.edu>
12501
12502 * vc-git.el (vc-git-dir-state): Set the vc-backend property.
12503 Do not disable undo, with-temp-buffer does it by default.
12504
12505 2008-01-01 Eric S. Raymond <esr@snark.thyrsus.com>
12506
12507 * vc-svn.el (vc-svn-parse-status): Set the `unregisted' property
12508 correctly.
12509
12510 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call
12511 with vc-state.
12512 (vc-next-action): Fix vc-transfer-file call.
12513
12514 2007-12-31 Tom Tromey <tromey@redhat.com>
12515
12516 * emacs-lisp/elp.el (elp-results): Use header-line-format for header.
12517 Move point to the start of the buffer.
12518
12519 2007-12-31 Dan Nicolaescu <dann@ics.uci.edu>
12520
12521 * vc-cvs.el (vc-cvs-parse-entry): Set the vc-backend property.
12522
12523 * vc.el: State that dir-state is required to set the vc-state and
12524 vc-backend properties.
12525
12526 2007-12-31 Martin Rudalics <rudalics@gmx.at>
12527
12528 * man.el (Man-default-man-entry): Make this a defun.
12529 Improve guessing mechanism and handling of section numbers.
12530
12531 2007-12-31 Richard Stallman <rms@gnu.org>
12532
12533 * faces.el (face-all-attributes): If FRAME is nil, return defaults.
12534
12535 2007-12-31 Jay Belanger <jay.p.belanger@gmail.com>
12536
12537 * calc/calc-units.el (calc-convert-temperature): Ensure that units
12538 are on the result even when the result is zero.
12539
12540 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
12541
12542 * net/dbus.el (dbus-name-owner-changed-handler): Make the function
12543 resistent towards wrong parameters.
12544 (dbus-handle-event): Propagate D-Bus errors only in the debug case.
12545
12546 2007-12-30 Richard Stallman <rms@gnu.org>
12547
12548 * faces.el (face-all-attributes): New function.
12549
12550 * faces.el (face-differs-from-default-p): Compute list of attr names
12551 from face-attribute-name-alist.
12552
12553 * cus-edit.el (custom-face-set): Call `face-spec-set' with FOR-DEFFACE.
12554 (custom-face-save): Likewise.
12555 (custom-face-reset-saved, custom-face-reset-standard): Likewise.
12556
12557 * cus-face.el (custom-declare-face): Per frame, use `face-spec-set-2'.
12558 (custom-theme-set-faces): Clear `face-override-spec' property.
12559 Call `face-spec-set' with FOR-DEFFACE.
12560
12561 * custom.el (custom-theme-recalc-face): Simply call `face-spec-recalc'.
12562
12563 * faces.el (face-spec-set): Third arg is now FOR-DEFFACE.
12564 Use of frame as third arg is deprecated.
12565 Handle `face-override-spec' property.
12566 (face-spec-recalc): New function.
12567 (face-spec-set-2): New function.
12568 (frame-set-background-mode): Handle `face-override-spec' property.
12569 Use `face-spec-recalc'.
12570 (face-set-after-frame-default): Use `face-spec-recalc'.
12571
12572 2007-12-29 Nick Roberts <nickrob@snap.net.nz>
12573
12574 * thumbs.el (thumbs-conversion-program): Add comment for Windows XP.
12575
12576 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12577
12578 * vc-hg.el (vc-hg-dir-state): Set the vc-backend property.
12579
12580 2007-12-29 Eric S. Raymond <esr@snark.thyrsus.com>
12581
12582 * vc-svn.el (vc-svn-parse-status): Recognize 'unregistered,
12583 'added, 'removed.
12584
12585 * vc.el (header coment): Better description of dir-state.
12586 (vc-compatible-state): New function. Checks whether two states
12587 can be in the same changeset; used with 'edited it can test whether
12588 the next action for a state should be commit.
12589 (vc-default-dired-state-info): Display 'removed state.
12590 (vc-dired-hook): Turn off undo, this is a speed tweak.
12591
12592 * vc-bzr.el (vc-bzr-dir-state): Recognize 'added.
12593
12594 * vc-hg.el (vc-bzr-hg-state): Recognize 'added and 'removed.
12595 Cope with the possibility that the 'C' status flag might change
12596 in 0.9,6.
12597
12598 * vc-git.el (vc-bzr-dir-state): Recognize 'removed.
12599
12600 2007-12-29 Thien-Thi Nguyen <ttn@gnuvola.org>
12601
12602 * files.el (cd-absolute): Fix omission bug:
12603 Make `list-buffers-directory' buffer-local.
12604
12605 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12606
12607 * vc-hg.el (vc-hg-dir-state): Deal with the up-to-date state.
12608
12609 2007-12-29 Jay Belanger <jay.p.belanger@gmail.com>
12610
12611 * calc/calc-aent.el (math-read-token): Fix misplaced parentheses.
12612
12613 * calc/calc-lang.el (calc-yacas-language, calc-maxima-language)
12614 (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum)
12615 (math-yacas-compose-deriv, math-yacas-compose-taylor)
12616 (math-maxima-parse-subst, math-maxima-parse-taylor)
12617 (math-maxima-compose-taylor, math-maxima-compose-subst)
12618 (math-maxima-compose-if, math-lang-switch-args)
12619 (math-lang-compose-switch-args, math-read-giac-subscr):
12620 New functions.
12621 (calc-lang-allow-underscores, calc-lang-allow-percentsigns)
12622 (calc-lang-brackets-are-subscripts, calc-lang-c-type-hex):
12623 Add languages.
12624 (math-vector-brackets, math-complex-format, math-variable-table)
12625 (math-parse-table, math-oper-table, math-function-table)
12626 (math-special-function-table, math-compose-subscr):
12627 Add values for new languages.
12628
12629 * calc/calccomp.el (math-compose-expr): Add new languages.
12630
12631 * calc/calc.el (calc-language): Add languages to docstring.
12632
12633 * calc/calc-ext.el (calc-init-extensions): Add keybindings
12634 for new languages. Autoload commands to change languages.
12635
12636 * calc/calc-help.el (calc-d-prefix-help): Add new languages.
12637
12638 * calc/calc-menu.el (calc-modes-menu): Add new languages.
12639 (calc-arithmetic-menu, calc-scientific-function-menu)
12640 (calc-algebra-menu, calc-graphics-menu, calc-vectors-menu)
12641 (calc-units-menu, calc-variables-menu, calc-stack-menu):
12642 Add :active keywords.
12643
12644 2007-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12645
12646 * vc-hg.el (vc-hg-registered): Return the false when vc-hg-state
12647 returns 'ignored or 'unregistered.
12648 (vc-hg-state): Pass "-A" to the status command and deal with the
12649 output.
12650 (vc-hg-dir-state): Pass "-A" to the status command.
12651
12652 2007-12-29 Richard Stallman <rms@gnu.org>
12653
12654 * progmodes/compile.el (compilation-start): Set initial visible
12655 point properly even when compilation buffer already current.
12656
12657 2007-12-29 Richard Stallman <rms@gnu.org>
12658
12659 * files.el (conf-mode-maybe): New function.
12660 (auto-mode-alist): Use conf-mode-maybe for .conf etc.
12661
12662 2007-12-29 Martin Rudalics <rudalics@gmx.at>
12663
12664 * textmodes/fill.el (fill-find-break-point): Fix doc-string typo.
12665
12666 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12667
12668 * progmodes/asm-mode.el (asm-mode-map): Add a major mode menu.
12669
12670 2007-12-29 Richard Stallman <rms@gnu.org>
12671
12672 * comint.el (comint-mode-map): Explicitly bind `delete' and `kp-delete'
12673 so they never do EOF.
12674
12675 2007-12-29 Richard Stallman <rms@gnu.org>
12676
12677 * faces.el (copy-face): Create the new face explicitly if it
12678 does not exist already.
12679
12680 2007-12-29 Eli Zaretskii <eliz@gnu.org>
12681
12682 * simple.el (minibuffer-history, shell-command-history)
12683 (set-variable-value-history):
12684 * replace.el (regexp-history):
12685 * international/mule-cmds.el (input-method-history):
12686 * files.el (file-name-history): Add reference to history-length in
12687 the doc string.
12688
12689 2007-12-29 Richard Stallman <rms@gnu.org>
12690
12691 * comint.el (comint-password-prompt-regexp): Match `Enter Password'.
12692
12693 2007-12-29 Jason Rumney <jasonr@gnu.org>
12694
12695 * find-dired.el (find-name-arg): New custom variable.
12696 (find-name-dired): Use it.
12697 (find-dired-find-program): Remove.
12698 (find-dired): Use find-program.
12699 (find-grep-dired): Use grep-program.
12700
12701 * progmodes/grep.el (rgrep): Use find-name-arg.
12702
12703 2007-12-29 Thien-Thi Nguyen <ttn@gnuvola.org>
12704
12705 * progmodes/cc-vars.el (defcustom-c-stylevar):
12706 Revert to pre-2007-12-12 version.
12707
12708 2007-12-29 Richard Stallman <rms@gnu.org>
12709
12710 * emacs-lisp/find-func.el (find-function-after-hook): Add :type.
12711
12712 * info.el (Info-clone-buffer): Rename from Info-clone-buffer-hook.
12713 Use changed.
12714
12715 * startup.el (fancy-splash-help-echo): Var deleted.
12716 (fancy-splash-insert): Get help-echo from (startup-echo-area-message).
12717 (fancy-about-screen): Don't display fancy-splash-help-echo.
12718
12719 * menu-bar.el (menu-bar-describe-menu): Remove dots from menu text.
12720
12721 2007-12-28 Eric S. Raymond <esr@snark.thyrsus.com>
12722
12723 * vc-hooks.el, vc.el: Move vc-directory-exclusion-list from vc.el
12724 to vc-hooks.el so it will be available to other modes, such as
12725 speedbar.el. Also, teach it to recognize monotone state directories.
12726
12727 * speedbar.el: Remove this mode's fragile assumptions about
12728 version-control systems. Instead, make it use logic from
12729 vc-hooks.el so it will become smarter whenever VC mode does.
12730
12731 * vc-hooks.el: 'added is a real state, not a future hypothetical one.
12732 Fix the documentation.
12733
12734 * vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, vc-mcvs.el, vc-svn.el:
12735 Modify all instances of the dir-state back-end method to suppress
12736 keeping undo lists on the buffers holding status output, which
12737 can get extremely large.
12738
12739 * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info functions
12740 so they don't do work that the default one can do instead.
12741
12742 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
12743 states, and the new return-value convention. These are not
12744 actually used yet, just set.
12745
12746 * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered
12747 states when appropriate.
12748
12749 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Set 'ignored and
12750 'unregistered when appropriate.
12751
12752 * vc-git.el: Document that we don't set the new states yet.
12753
12754 * vc.el (vc-dired-state-info): Display 'added, 'unregistered and
12755 'ignored states.
12756
12757 * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when
12758 appropriate.
12759
12760 * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and 'unregistered
12761 when appropriate.
12762
12763 2007-12-28 Nick Roberts <nickrob@snap.net.nz>
12764
12765 * thumbs.el (thumbs-call-convert): Use call-process directly
12766 with thumbs-conversion-program instead of through shell-file-name
12767 for better error reporting.
12768
12769 2007-12-27 Jay Belanger <jay.p.belanger@gmail.com>
12770
12771 * calc/calc-aent.el (math-remove-percentsigns):
12772 * calc/calccomp.el (math-to-percentsigns): Change placeholder
12773 for percent signs.
12774
12775 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com>
12776
12777 * vc.el (vc-dired-ignorable-p, vc-dired-hook): Speed optimization;
12778 use completion-ignored-extensions to detect files that should be
12779 ignorted in VC-Dired listings, heading off lots of expensive calls
12780 to (vc-state).
12781
12782 * vc.el (vc-dired-hook): Show unregistered file status as "?" in
12783 non-terse mode.
12784 (vc-dired-ignorable-p): Ignore Makefile when it has a peer named
12785 Makefile.in or Makefile.am.
12786
12787 2007-12-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12788
12789 * ps-print.el (ps-mark-active-p): Fun returned back.
12790 (ps-print-preprint-region): Use `ps-mark-active-p' instead of
12791 `region-active-p' for error checking.
12792
12793 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com>
12794
12795 * vc.el, vc-sccs.el, vc-rcs.el, vc-cvs.el, vc-mcvs.el:
12796 Put new machinery in place to support editing of change comments
12797 with 'e' in a log-view buffer. Not documented yet as this
12798 only works for SCCS, RCS, and maybe CVS if you have admin
12799 privileges. When we have backend support for Subversion and
12800 more modern systems it will be time to write this up.
12801
12802 2007-12-27 Kenichi Handa <handa@ni.aist.go.jp>
12803
12804 * international/mule-cmds.el (select-safe-coding-system):
12805 When a buffer is modified, cancel the writing.
12806
12807 2007-12-26 Eric S. Raymond <esr@snark.thyrsus.com>
12808
12809 * log-view.el: Add Subversion and Mercurial log format samples.
12810
12811 * vc.el (vc-dired-hook): Significantly speed up by arranging for
12812 it to call the backend dir-state hook (if it exists)
12813 exactly *once*, rather than once per each subdirectory (with
12814 dired-state-info calls on all toplevel files slowing it down even
12815 further). For this to work, backend dir-state methods have to
12816 recurse to subdirectories. Most of them already did anyway; a few
12817 needed *non*-recursion switches removed. This change mostly
12818 removed code that was perversely bad and should have been shot
12819 through the head years ago.
12820
12821 * vc-bzr.el (vc-bzr-dir-state):
12822 * vc-cvs.el (vc-cvs-dir-state):
12823 * vc-mcvs.el (vc-mcvs-dir-state):
12824 * vc-svn.el (vc-svn-dir-state): Recurse in subdirectories.
12825
12826 * vc-svn.el (vc-svn-print-log): svn log doesn't actually accept
12827 multiple arguments, so generate logs sequentially when we get them.
12828 * vc-hg.el (vc-hg-print-log): Gives this CVS-like "Working file:"
12829 headers so the various log bindings can do the right thing.
12830 * vc-cvs.el (vc-cvs-print-log): Fix a misleading comment.
12831
12832 2007-12-26 Andreas Schwab <schwab@suse.de>
12833
12834 * font-lock.el (save-buffer-state): Make sure the state of the
12835 buffer is always restored.
12836
12837 2007-12-26 Jay Belanger <jay.p.belanger@gmail.com>
12838
12839 * calc/calc.el (calc-lang-allow-percentsigns): New variable.
12840
12841 * calc/calc-lang.el (calc-lang-allow-percentsigns): Declare as
12842 a variable.
12843
12844 * calc/calccomp.el (math-to-percentsigns): New function.
12845 (math-compose-var): Handle variables with percent signs.
12846 (math-compose-expr): Handle function names with percent signs.
12847
12848 * calc/calc-aent.el (math-to-percentsigns): Declare as function.
12849 (math-read-exprs): Handle percent signs in languages that
12850 allow them.
12851 (math-restore-underscores): Remove function.
12852 (math-remove-percentsigns, math-restore-placeholders):
12853 New functions.
12854
12855 2007-12-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12856
12857 * ps-print.el (ps-print-preprint-region): Use `region-active-p' instead
12858 of `mark' for error checking.
12859
12860 2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
12861
12862 * image-mode.el (image-bookmark-make-cell, image-bookmark-jump):
12863 New functions.
12864 (image-mode): Set bookmark-make-cell-function appropriately.
12865
12866 * doc-view.el (doc-view-bookmark-jump): Correct misspelled arg name.
12867
12868 * bookmark.el (bookmark-make-cell-function): New variable.
12869 (bookmark-make): Call bookmark-make-cell-function's function
12870 instead of bookmark-make-cell.
12871 (bookmark-get-handler, bookmark-jump-internal): New functions.
12872 (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
12873 (bookmark-bmenu-2-window, bookmark-bmenu-other-window):
12874 Use bookmark-jump-internal.
12875 (bookmark-make-cell-for-text-file): Rename from bookmark-make-cell.
12876
12877 * doc-view.el (doc-view-bookmark-make-cell)
12878 (doc-view-bookmark-jump): New functions.
12879 (doc-view-mode): Set bookmark-make-cell-function buffer-locally.
12880
12881 2007-12-25 Miles Bader <miles@gnu.org>
12882
12883 * indent.el (indent-for-tab-command): Rigidly indent the following
12884 sexp along with the current line when a prefix arg is given in the
12885 non-active-region case. Specify raw prefix in interactive spec.
12886 Simplify main indentation logic to get rid of the conditional call
12887 to `indent-according-to-mode' (it just ended up calling
12888 `indent-line-function' in all cases anyway, which can be done more
12889 simply here). Remove unnecessary test of ARG in active region case.
12890
12891 2007-12-25 Richard Stallman <rms@gnu.org>
12892
12893 * allout.el (allout-region-active-p): Rename from my-region-active-p.
12894 Use `use-region-p'.
12895 (allout-write-file-hook-handler): Simplify code.
12896
12897 * ps-print.el (ps-mark-active-p): Function deleted.
12898 (ps-print-preprint-region): Use (mark) for the error check.
12899
12900 * tooltip.el (tooltip-region-active-p): Use `use-region-p'.
12901
12902 * winner.el (winner-active-region): Use `mark-active' if it's defined.
12903
12904 * progmodes/ada-mode.el (ada-region-selected): Use `use-region-p'.
12905
12906 * textmodes/org.el (org-region-active-p): Use `use-region-p'.
12907
12908 * progmodes/idlwave.el (idlwave-region-active-p): Use `use-region-p'.
12909
12910 * textmodes/reftex.el (reftex-region-active-p): Use `use-region-p'.
12911
12912 * progmodes/cc-defs.el (c-region-is-active-p):
12913 Use `mark-active' if it's defined.
12914
12915 * progmodes/cc-cmds.el (c-indent-line-or-region):
12916 Pass prefix arg to `c-indent-command'. Use `use-region-p'.
12917
12918 * simple.el (select-active-regions): New option.
12919 (set-mark): Obey it.
12920 (yank-pop-change-selection): New option.
12921 (current-kill): Obey it.
12922
12923 * simple.el (use-region-p): Rename from `region-active-p'.
12924 (region-active-p): New function.
12925
12926 2007-12-25 David Golden <david.delaharpe.golden@gmail.com> (tiny change)
12927
12928 * term/x-win.el (x-select-enable-primary): New option.
12929 (x-select-text, x-cut-buffer-or-selection-value): Obey it.
12930
12931 * mouse.el (mouse-yank-primary): New function (almost same
12932 as mouse-yank-secondary).
12933
12934 2007-12-25 Dan Nicolaescu <dann@ics.uci.edu>
12935
12936 * calculator.el:
12937 * dframe.el:
12938 * iswitchb.el:
12939 * whitespace.el:
12940 * winner.el:
12941 * emacs-lisp/checkdoc.el:
12942 * mail/feedmail.el:
12943 * net/quickurl.el:
12944 * obsolete/fast-lock.el:
12945 * play/5x5.el:
12946 * progmodes/delphi.el:
12947 * progmodes/idlw-shell.el:
12948 * progmodes/idlwave.el:
12949 * textmodes/artist.el:
12950 * textmodes/ispell.el:
12951 * textmodes/texinfmt.el:
12952 * textmodes/texinfo.el: Remove obsolete definitions of backward
12953 compatibility macros for defcustom, defgroup, defface, when,
12954 unless, with-current-buffer and with-temp-message.
12955
12956 2007-12-24 Nick Roberts <nickrob@snap.net.nz>
12957
12958 * progmodes/verilog-mode.el: Reformat parts to 80 columns.
12959
12960 2007-12-23 Stefan Monnier <monnier@iro.umontreal.ca>
12961
12962 * server.el (server-save-buffers-kill-terminal): Check the `proc' is
12963 indeed a process.
12964
12965 2007-12-23 Richard Stallman <rms@gnu.org>
12966
12967 * simple.el (region-active-p): New function.
12968 (use-empty-active-region): New variable.
12969
12970 * dired-aux.el (dired): Load dired.el at run time too.
12971
12972 2007-12-23 Juri Linkov <juri@jurta.org>
12973
12974 * man.el (Man-follow-manual-reference): Fill the minibuffer's
12975 default list with a full list of references.
12976
12977 * files.el (auto-mode-alist): Add \\' to doc-view files regexp.
12978
12979 2007-12-23 Andreas Schwab <schwab@suse.de>
12980
12981 * files.el (switch-to-buffer-other-frame): Return the buffer
12982 switched to.
12983
12984 2007-12-23 Michael Albinus <michael.albinus@gmx.de>
12985
12986 Sync with Tramp 2.1.12.
12987
12988 * net/tramp.el: New todo item.
12989
12990 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Handle "-F"
12991 switch. Reported by Mark T. Kennedy <mkennedy@diamondbackcap.com>.
12992
12993 * net/trampver.el: Update release number.
12994
12995 2007-12-22 Richard Stallman <rms@gnu.org>
12996
12997 * newcomment.el (comment-region-default): Don't triple the
12998 comment starter if the first region line isn't indented enough.
12999
13000 2007-12-21 Teodor Zlatanov <tzz@lifelogs.com>
13001
13002 * net/imap.el (imap-authenticate): Use current-buffer instead of
13003 buffer, for the cases where imap-authenticate is called with a nil
13004 buffer parameter.
13005
13006 2007-12-21 Martin Rudalics <rudalics@gmx.at>
13007
13008 * autoinsert.el (auto-insert-alist): Remove nonsensical precision
13009 specifier from format-string. Reported by Ye Wenbin.
13010
13011 2007-12-20 Jason Rumney <jasonr@gnu.org>
13012
13013 * nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.
13014 Parent group is font-lock-faces.
13015 (nxml-light-blue-color, nxml-dark-blue-color, nxml-green-color)
13016 (nxml-sky-blue-color, nxml-dark-green-color, nxml-light-green-color):
13017 (nxml-version): Remove.
13018 (nxml-delimited-data, nxml-name, nxml-ref, nxml-delimiter)
13019 (nxml-text, nxml-comment-content, nxml-comment-delimiter)
13020 (nxml-processing-instruction-delimiter)
13021 (nxml-processing-instruction-target)
13022 (nxml-processing-instruction-content, nxml-cdata-section-delimiter)
13023 (nxml-cdata-section-CDATA, nxml-cdata-section-content)
13024 (nxml-char-ref-number, nxml-char-ref-delimiter, nxml-entity-ref-name)
13025 (nxml-entity-ref-delimiter, nxml-tag-delimiter, nxml-tag-slash)
13026 (nxml-element-prefix, nxml-element-colon, nxml-element-local-name)
13027 (nxml-attribute-prefix, nxml-attribute-colon)
13028 (nxml-attribute-local-name, nxml-namespace-attribute-xmlns)
13029 (nxml-namespace-attribute-colon, nxml-namespace-attribute-prefix)
13030 (nxml-attribute-value, nxml-attribute-value-delimiter)
13031 (nxml-namespace-attibute-value)
13032 (nxml-namespace-attribure-value-delimiter)
13033 (nxml-prolog-literal-delimiter, nxml-prolog-literal-content)
13034 (nxml-prolog-keyword, nxml-markup-declaration-delimiter, nxml-hash)
13035 (nxml-glyph): Rename, removing -face suffix.
13036 Inherit from existing font-lock faces.
13037 (nxml-apply-fontify-rule, nxml-char-ref-display-extra):
13038 Use new face names.
13039
13040 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
13041 (nxml-outline-active-indicator, nxml-outline-ellipsis):
13042 Rename, removing -face suffix.
13043 (nxml-highlighted-less-than, nxml-highlighted-greater-than)
13044 (nxml-highlighted-colon, nxml-highlighted-slash)
13045 (nxml-highlighted-ellipsis, nxml-highlighted-inactive-minus)
13046 (nxml-highlighted-active-minus, nxml-highlighted-active-plus)
13047 (nxml-highlighted-qname, nxml-outline-display-heading):
13048 Use new face names.
13049
13050 * nxml/rng-valid.el (rng-error): Rename from rng-error-face.
13051
13052 * nxml/rng-nxml.el (rng-nxml-easy-menu): Remove nxml-version.
13053
13054 2007-12-19 Martin Rudalics <rudalics@gmx.at>
13055
13056 * cus-start.el (all): Use correct group name for members of
13057 mode-line group.
13058
13059 * man.el (Man-default-man-entry): When looking for default man
13060 entry title search text preceding point. Use when instead of if.
13061
13062 * indent.el (indent-for-tab-command): Fix doc-string typo.
13063
13064 * vc.el (vc-ensure-vc-buffer): Avoid infinite looping when
13065 vc-parent-buffer is the current buffer.
13066
13067 * info-look.el (info-lookup, info-lookup-setup-mode)
13068 (info-lookup-make-completions): Avoid clobbering Info-history and
13069 Info-history-list.
13070
13071 2007-12-19 Glenn Morris <rgm@gnu.org>
13072
13073 * progmodes/verilog-mode.el (top-level): Don't require compile.
13074 (compilation-error-regexp-alist, compilation-last-buffer):
13075 Define for compiler.
13076 (verilog-insert-1): New function.
13077 (verilog-insert-indices, verilog-generate-numbers): Doc fixes.
13078 Use verilog-insert-1.
13079 (verilog-surelint-off): Use next-error-last-buffer if bound.
13080 Check compile buffer is live.
13081
13082 2007-12-19 John J Foerch <jjfoerch@earthlink.net> (tiny change)
13083
13084 * progmodes/compile.el (compilation-start): Don't pass a FRAME
13085 argument to display-buffer.
13086
13087 2007-12-19 Jason Rumney <jasonr@gnu.org>
13088
13089 * nxml/rng-maint.el (rng-format-manual): Do not autoload.
13090 (rng-autoload-modules, rng-update-autoloads, rng-compile-modules)
13091 (rng-byte-compile-load, rng-write-version): Remove.
13092
13093 * nxml/rng-loc.el (rng-schema-locating-files-default)
13094 (rng-schema-locating-file-schema-file): Use files in etc/schemas.
13095 (rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
13096
13097 2007-12-18 Michael Albinus <michael.albinus@gmx.de>
13098
13099 * files.el (cd-absolute): Set `list-buffers-directory' in order to
13100 show correct path in buffer list.
13101
13102 * net/tramp.el (tramp-open-connection-setup-interactive-shell)
13103 (tramp-find-shell): Send only single prompt setting commands, in
13104 order to avoid double-prompt.
13105
13106 * net/tramp-compat.el (top): Require cl only when compiling.
13107 Reported by Glenn Morris <rgm@gnu.org>.
13108
13109 2007-12-18 Thien-Thi Nguyen <ttn@gnuvola.org>
13110
13111 * progmodes/cc-vars.el (defcustom-c-stylevar): Eval VAL.
13112 (c-comment-continuation-stars): No longer declare with
13113 cc-bytecomp-obsolete-var and cc-bytecomp-defvar.
13114 (c-block-comment-prefix): Use symbol-value to
13115 access c-comment-continuation-stars.
13116 * progmodes/cc-mode.el (c-initialize-cc-mode):
13117 Use symbol-value to access c-comment-continuation-stars.
13118
13119 2007-12-18 Mark A. Hershberger <mah@everybody.org>
13120
13121 * xml.el (xml-escape-string): New function. Escape string using
13122 xml-entity-alist.
13123 (xml-debug-print-internal): Use xml-escape-string to escape
13124 characters in attributes and in text children of elements.
13125
13126 2007-12-18 Glenn Morris <rgm@gnu.org>
13127
13128 * progmodes/cc-subword.el (c-subword-mode): Drop support for
13129 systems without define-minor-mode.
13130
13131 * progmodes/cc-vars.el (defcustom-c-stylevar): Remove debugging message.
13132
13133 * progmodes/verilog-mode.el: Replace all instances of
13134 string-to-int with string-to-number, insert-string with insert,
13135 and read-input with read-string.
13136 (top-level): No need to require imenu, reporter, dinotrace, vc,
13137 font-lock when compiling. Always require compile. Relegate remaining
13138 compatibility cruft to XEmacs. Don't require font-lock.
13139 (verilog-version): Remove superfluous concat.
13140 (dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
13141 No need to define.
13142 (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
13143 (verilog-font-lock-keywords, verilog-font-lock-keywords-1)
13144 (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
13145 (verilog-startup-message-displayed): These are variables, not constants.
13146 (verilog-batch-execute-func, verilog-auto-inst)
13147 (verilog-auto-inst-param): Use mapc rather than mapcar.
13148 (sigs-in, sigs-inout, sigs-out): Define for compiler rather than
13149 actually defining.
13150 (verilog-modi-get-decls, verilog-modi-get-sub-decls)
13151 (verilog-modi-get-outputs, verilog-modi-get-inouts)
13152 (verilog-modi-get-inputs, verilog-modi-get-wires)
13153 (verilog-modi-get-regs, verilog-modi-get-assigns)
13154 (verilog-modi-get-consts, verilog-modi-get-gparams)
13155 (verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
13156 (verilog-modi-get-sub-inputs): Move inline functions earlier in
13157 the file.
13158 (sigs-in, sigs-out): Don't declare multiple times.
13159 (got-sig, got-rvalue, uses-delayed): Define for compiler with just
13160 `defvar'.
13161 (verilog-auto): Call dinotrace-unannotate-all only if bound.
13162 (verilog-module-inside-filename-p): No need to wrap fboundp test
13163 in condition-case.
13164 (reporter-submit-bug-report): Autoload it.
13165 (verilog-mark-defun): Call zmacs-activate-region only if bound.
13166 (verilog-font-customize): Call customize-apropos only if bound.
13167 (verilog-getopt-flags, verilog-auto-reeval-locals):
13168 Use make-local-variable rather than make-variable-buffer-local.
13169 (verilog-company, verilog-project, verilog-modi-cache-list):
13170 Move make-variable-buffer-local calls to top-level.
13171 (font-lock-defaults-alist): Don't define it.
13172 (verilog-need-fld): Remove.
13173 (verilog-font-lock-init): Don't set font-lock-defaults-alist.
13174 (verilog-mode): Only call make-local-hook on XEmacs.
13175 Set font-lock-defaults rather than using verilog-font-lock-init.
13176
13177 2007-12-17 Andreas Schwab <schwab@suse.de>
13178
13179 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
13180 Fix comment typo.
13181
13182 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
13183
13184 * net/dbus.el (dbus-name-owner-changed-handler):
13185 Use `dbus-unregister-signal' for removing old rules.
13186 Obey new structure of `dbus-registered-functions-table'.
13187
13188 2007-12-12 Thien-Thi Nguyen <ttn@gnuvola.org>
13189
13190 * progmodes/cc-vars.el (defcustom-c-stylevar): Rewrite.
13191
13192 2007-12-11 Dan Nicolaescu <dann@ics.uci.edu>
13193
13194 * progmodes/verilog-mode.el (set-buffer-menubar): Remove unused
13195 function.
13196 (add-submenu): Only define for XEmacs.
13197 (verilog-regexp-words): Revert previous change, keep the other
13198 definition.
13199
13200 2007-12-09 Dan Nicolaescu <dann@ics.uci.edu>
13201
13202 * progmodes/perl-mode.el (perl-continued-statement-offset)
13203 (perl-continued-brace-offset, perl-brace-offset)
13204 (perl-brace-imaginary-offset, perl-label-offset):
13205 * progmodes/cperl-mode.el (cperl-brace-offset)
13206 (cperl-continued-brace-offset, cperl-label-offset)
13207 (cperl-continued-statement-offset)
13208 (cperl-extra-newline-before-brace, cperl-merge-trailing-else):
13209 Add safe-local-variable properties.
13210
13211 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
13212
13213 * progmodes/verilog-mode.el (verilog-mode-map)
13214 (verilog-template-map, verilog-mode-mouse-map): Fix typos.
13215 (verilog-colorize-include-files): Use only overlay functions so
13216 that it can work on both emacs and XEmacs.
13217 (set-extent-keymap): Remove unused defun.
13218 (verilog-kill-existing-comment, verilog-insert-date)
13219 (verilog-insert-year): Rename in order not to pollute the global
13220 namespace from kill-existing-comment, insert-date and
13221 insert-year, respectively.
13222 (verilog-set-auto-endcomments, verilog-header): Update callers.
13223
13224 * files.el (auto-mode-alist): Recognize verilog files.
13225
13226 * progmodes/verilog-mode.el (verilog-string-replace-matches)
13227 (verilog-string-remove-spaces, verilog-re-search-forward)
13228 (verilog-re-search-backward, verilog-re-search-forward-quick)
13229 (verilog-re-search-backward-quick, verilog-get-beg-of-line)
13230 (verilog-get-end-of-line, verilog-within-string): Move definitions
13231 before first use. No code changes.
13232
13233 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
13234
13235 * progmodes/verilog-mode.el (verilog-mode-version)
13236 (verilog-mode-release-date): Don't use expanding keywords.
13237 (provide): Move to the end of file.
13238 (fboundp): Don't check if eval-when-compile is bound, it is used
13239 later in the file without checking.
13240 (when, unless): Copy definitions from subr.el.
13241 (char-before, defcustom, defface, customize-group)
13242 (verilog-batch-error-wrapper): Don't use old style backquotes.
13243 (verilog-regexp-opt): Avoid using the cl function case.
13244 (verilog-regexp-words): Remove duplicated definition.
13245 (verilog-mode-abbrev-table): Remove, duplicate.
13246 (verilog-mode-map, verilog-template-map, verilog-mode-mouse-map):
13247 Declare and initialize in one step.
13248 (verilog-declaration-prefix-re, verilog-declaration-re)
13249 (verilog-end-of-statement, verilog-indent-declaration)
13250 (verilog-get-lineup-indent): Remove trailing whitespace.
13251 (verilog-mode): Fix autoload cookie.
13252 Set beginning-of-defun-function and end-of-defun-function. Use when
13253 instead of if.
13254 (verilog-emacs-features, verilog-auto-ascii-enum)
13255 (verilog-insert-indices): Escape braces in doc strings.
13256
13257 2007-12-08 Michael McNamara <mac@verilog.com>
13258 Wilson Snyder <wsnyder@wsnyder.org>
13259
13260 * progmodes/verilog-mode.el: New file.
13261
13262 2007-12-08 Eli Zaretskii <eliz@fencepost.gnu.org>
13263
13264 * international/latexenc.el (latexenc-find-file-coding-system):
13265 If both coding-system-for-write and buffer-file-coding-system of
13266 latex-main-file are nil, use `undecided'.
13267
13268 2007-12-06 Jason Rumney <jasonr@gnu.org>
13269
13270 * mouse.el (mouse-buffer-menu-alist): Keep buffer names left aligned.
13271
13272 2007-12-12 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
13273
13274 * files.el (revert-buffer): Docstring fix.
13275
13276 2007-12-11 Glenn Morris <rgm@gnu.org>
13277
13278 * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo.
13279
13280 2007-12-11 Jay Belanger <jay.p.belanger@gmail.com>
13281
13282 * calc/calc-aent.el (math-restore-underscores)
13283 (math-string-restore-underscores): New functions.
13284 (math-read-factor): Properly check variable names with underscores
13285 for entries in `math-expr-variable-mapping'.
13286
13287 * calc/calc-lang.el (math-lang-name): New property name.
13288
13289 * calc/calc.el (calc-set-mode-line): Use `math-lang-name'
13290 to set language name.
13291
13292 2007-12-10 Katsumi Yamaoka <yamaoka@jpl.org>
13293
13294 * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
13295
13296 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
13297
13298 * server.el (server-select-display): Fix important typo.
13299 (server-process-filter): Turn a "" display into nil.
13300
13301 2007-12-09 Juri Linkov <juri@jurta.org>
13302
13303 * replace.el (keep-lines, flush-lines, how-many): Doc fix.
13304 Check search-upper-case before calling isearch-no-upper-case-p
13305 to set case-fold-search.
13306 (occur): Doc fix.
13307 (occur-1, perform-replace): Check search-upper-case before calling
13308 isearch-no-upper-case-p to set case-fold-search.
13309
13310 * isearch.el (search-upper-case): Doc fix.
13311 (isearch-mode-map): Bind `M-s o' to isearch-occur.
13312 (isearch-query-replace): Doc fix. Let-bind search-upper-case to nil.
13313 (isearch-query-replace-regexp): Doc fix.
13314 (isearch-occur): New function.
13315
13316 2007-12-09 Reiner Steib <Reiner.Steib@gmx.de>
13317
13318 * pgg.el, pgg-parse.el (declare-function): Add new no-op macro for
13319 backward compatibility.
13320
13321 * net/imap.el (imap-string-to-integer): New function.
13322
13323 2007-12-09 David Kastrup <dak@gnu.org>
13324
13325 * emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
13326 directories. Not sure anybody uses this anymore, though.
13327
13328 2007-12-09 Glenn Morris <rgm@gnu.org>
13329
13330 * emulation/viper-init.el (top-level): Use dolist rather than mapc
13331 in make-variable-frame-local call.
13332
13333 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
13334
13335 * mail/hashcash.el (declare-function):
13336 * net/imap.el (declare-function): New no-op macro for backward
13337 compatibility.
13338
13339 2007-12-08 Eli Zaretskii <eliz@gnu.org>
13340
13341 Sync makefile.w32-in with Makefile.in.
13342
13343 * makefile.w32-in (check-declare): New target.
13344 (BYTE_COMPILE_EXTRA_FLAGS): New variable.
13345 (.el.elc, compile-CMD, compile-SH, compile-always-CMD)
13346 (compile-always-SH, compile-calc-CMD, compile-calc-SH)
13347 ($(lisp)/progmodes/cc-mode.elc): Use it.
13348 ($(lisp)/progmodes/cc-mode.elc): New rule.
13349
13350 2007-12-08 Reiner Steib <Reiner.Steib@gmx.de>
13351
13352 * indent.el (tab-stop-list): Mark as safe-local-variable.
13353
13354 * generic-x.el (etc-sudoers-generic-mode): New mode.
13355 (generic-unix-modes): Add it.
13356
13357 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
13358
13359 * net/dbus.el (dbus-hash-table=): Remove function. We cannot
13360 apply wildcards in a hash table key; there is no usable hash code then.
13361 (dbus-registered-functions-table): Use `equal' as test function.
13362 (dbus-name-owner-changed-handler): Rewrite due to new hash table
13363 structure.
13364
13365 2007-12-08 Martin Rudalics <rudalics@gmx.at>
13366
13367 * progmodes/cc-cmds.el (c-mask-paragraph): Avoid invalid search
13368 bound error in block comment branch.
13369
13370 2007-12-08 David Kastrup <dak@gnu.org>
13371
13372 * textmodes/reftex.el (reftex-select-with-char):
13373 * textmodes/reftex-toc.el (reftex-toc-do-promote)
13374 (reftex-toc-visit-location, reftex-toc-find-section):
13375 * textmodes/reftex-index.el (reftex-index-show-entry):
13376 * textmodes/org.el (org-cycle-hide-archived-subtrees)
13377 (org-table-rotate-recalc-marks, org-mark-ring-push)
13378 (org-follow-info-link, org-mhe-get-message-folder-from-index)
13379 (org-auto-repeat-maybe, org-store-log-note, org-delete-property)
13380 (org-evaluate-time-range, org-edit-agenda-file-list):
13381 * textmodes/artist.el (artist-select-next-op-in-list)
13382 (artist-select-prev-op-in-list):
13383 * term/mac-win.el (mac-service-insert-text):
13384 * startup.el (fancy-about-screen):
13385 * progmodes/vhdl-mode.el (vhdl-decision-query):
13386 * progmodes/idlwave.el (idlwave-template)
13387 (idlwave-scroll-completions, idlwave-display-completion-list):
13388 * progmodes/ebrowse.el (ebrowse-show-progress):
13389 * progmodes/cperl-mode.el (cperl-find-pods-heres):
13390 * progmodes/antlr-mode.el (antlr-insert-option-do):
13391 * play/mpuz.el (mpuz-close-game):
13392 * net/rcirc.el (rcirc-next-active-buffer):
13393 * mail/reporter.el (reporter-update-status):
13394 * kmacro.el (kmacro-display):
13395 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
13396 * emulation/viper-util.el (viper-save-setting):
13397 * emacs-lisp/lisp-mnt.el (lm-verify):
13398 * emacs-lisp/edebug.el (edebug-set-mode):
13399 * emacs-lisp/checkdoc.el (checkdoc-rogue-spaces, checkdoc-defun):
13400 * calendar/calendar.el (calendar-print-day-of-year):
13401 * calc/calcalg3.el (calc-curve-fit):
13402 * calc/calcalg2.el (math-integral):
13403 * calc/calc.el (calc-read-key-sequence, calc-version):
13404 * calc/calc-mode.el (calc-set-simplify-mode):
13405 * calc/calc-ext.el (calc-fancy-prefix): Fix buggy call to `message'.
13406
13407 2007-12-07 D. Goel <deego3@gmail.com>
13408
13409 * progmodes/idlw-shell.el (idlwave-shell-display-line)
13410 * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13411 (ada-xref-find-in-modified-ali, ada-find-in-src-path)
13412 * mail/uce.el (uce-reply-to-uce)
13413 * progmodes/vhdl-mode.el (vhdl-template-modify)
13414 * mail/feedmail.el (feedmail-dump-message-to-queue): Improve calls
13415 to `error' (as suggested by RMS.)
13416
13417 2007-12-07 Glenn Morris <rgm@gnu.org>
13418
13419 * allout.el (allout-write-file-hook-handler):
13420 * textmodes/reftex.el (reftex-TeX-master-file):
13421 * textmodes/reftex-parse.el (reftex-short-context):
13422 Revert previous change.
13423
13424 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
13425
13426 * net/dbus.el (dbus-hash-table=): Fix for new hash table key structure.
13427 (dbus-list-hash-table, dbus-name-owner-changed-handler): New defuns.
13428 (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
13429 (dbus-event-service-name, dbus-event-path-name)
13430 (dbus-event-interface-name, dbus-event-member-name): Fix for new
13431 event structure.
13432 (dbus-list-activatable-names, dbus-list-names)
13433 (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect):
13434 Reorder `dbus-call-method' arguments.
13435
13436 2007-12-06 D. Goel <deego3@gmail.com>
13437
13438 * allout.el (allout-write-file-hook-handler):
13439 * textmodes/reftex.el (reftex-TeX-master-file):
13440 * textmodes/org.el (org-paste-subtree):
13441 * progmodes/vhdl-mode.el (vhdl-template-modify):
13442 * progmodes/idlw-shell.el (idlwave-shell-send-command)
13443 (idlwave-shell-display-line):
13444 * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13445 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
13446 * net/trampver.el (x):
13447 * mail/uce.el (uce-reply-to-uce):
13448 * mail/rmailout.el (rmail-output):
13449 * mail/feedmail.el (feedmail-dump-message-to-queue):
13450 * whitespace.el (whitespace-write-file-hook):
13451 * wdired.el (wdired-check-kill-buffer):
13452 * vc.el (vc-update):
13453 * vc-mcvs.el (vc-mcvs-checkin):
13454 * vc-cvs.el (vc-cvs-checkin):
13455 * man.el (Man-bgproc-sentinel, Man-goto-see-also-section):
13456 * ibuffer.el (ibuffer-current-buffer):
13457 * dired.el (dired-move-to-end-of-filename):
13458 * bindings.el (complete-symbol):
13459 * textmodes/org-publish.el (org-publish-file):
13460 (org-publish-current-project):
13461 * textmodes/reftex-parse.el (reftex-short-context):
13462 * textmodes/texinfmt.el: Fix buggy calls to `error'.
13463
13464 2007-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
13465
13466 * doc-view.el (doc-view-dvi->pdf-sentinel)
13467 (doc-view-pdf/ps->png-sentinel, doc-view-pdf->txt-sentinel)
13468 (doc-view-ps->pdf-sentinel, doc-view-display): Don't change buffer
13469 within a sentinel or timer.
13470 (doc-view-display): Don't try to display before the requested page
13471 is available, unless told to do so explicitly.
13472 (doc-view-pdf/ps->png-sentinel, doc-view-initiate-display):
13473 Force display even if the requested page is not available.
13474
13475 2007-12-06 Richard Stallman <rms@gnu.org>
13476
13477 * help-fns.el (describe-function-1): Call ad-get-advice-info
13478 only on symbols.
13479
13480 2007-12-06 Glenn Morris <rgm@gnu.org>
13481
13482 * progmodes/antlr-mode.el (antlr-keyword, antlr-syntax)
13483 (antlr-ruledef, antlr-tokendef, antlr-ruleref-face)
13484 (antlr-tokenref, antlr-literal): Inherit from standard font-lock
13485 faces in non-light-background case.
13486
13487 * add-log.el, dired-aux.el, font-lock.el, help-fns.el, ido.el:
13488 * informat.el, emacs-lisp/bytecomp.el, emacs-lisp/gulp.el:
13489 * emacs-lisp/tcover-ses.el, emacs-lisp/timer.el, emulation/edt.el:
13490 * emulation/vi.el, emulation/viper-cmd.el:
13491 * international/titdic-cnv.el, mail/emacsbug.el, progmodes/dcl-mode.el:
13492 * progmodes/prolog.el, progmodes/ps-mode.el, progmodes/python.el:
13493 * textmodes/fill.el: Remove directory part from filenames in
13494 function declarations.
13495
13496 * dired-aux.el (mailcap-mime-info): Update declaration.
13497
13498 2007-12-05 Richard Stallman <rms@gnu.org>
13499
13500 * wid-edit.el (widget-type): Doc fix.
13501
13502 2007-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
13503
13504 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13505 Don't match "sub { (...) ... }".
13506
13507 2007-12-05 Richard Stallman <rms@gnu.org>
13508
13509 * international/mule-cmds.el (toggle-input-method-active): New var.
13510 (toggle-input-method): Bind toggle-input-method-active to t.
13511 Error if it was already non-nil.
13512
13513 2007-12-05 Reiner Steib <Reiner.Steib@gmx.de>
13514
13515 * net/tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
13516
13517 2007-12-05 Elias Oltmanns <eo@nebensachen.de>
13518
13519 * net/tls.el (open-tls-stream): Actually consult tls-checktrust to
13520 see if certs should be verified and what is to be done in the
13521 event of a verification failure.
13522
13523 2007-12-05 Reiner Steib <Reiner.Steib@gmx.de>
13524
13525 * net/tls.el (tls-program): Provide more custom choices from
13526 `tls-checktrust'. Refer to `tls-checktrust' in doc string.
13527 (tls-process-connection-type, tls-success): Remove "*" in doc string.
13528 (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
13529 version. Minor improvement to doc strings.
13530 (tls-program): Add comment.
13531
13532 2007-12-05 Elias Oltmanns <eo@nebensachen.de>
13533
13534 * net/tls.el (tls-certtool-program, tls-hostmismatch): New variables.
13535 (tls-checktrust): New variable. Check if GNU TLS complained about a
13536 mismatch between the hostname provided in the certificate and the name
13537 of the host connnecting to.
13538 (open-tls-stream): Use them. Check certificates against trusted root
13539 certificates.
13540
13541 2007-12-05 Nathan J. Williams <nathanw@MIT.EDU> (tiny change)
13542
13543 * net/imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
13544 (imap-parse-status): Upcase status-att for broken servers that sends
13545 them lower-case (e.g., MS Exchange 2007).
13546
13547 2007-12-05 D. Goel <deego3@gmail.com>
13548
13549 * simple.el (undo):
13550 * image-dired.el (image-dired-display-thumb-properties):
13551 (image-dired-modify-mark-on-thumb-original-file):
13552 (image-dired-dired-display-properties):
13553 * help.el (help-window-display-message):
13554 * files.el (hack-local-variables-confirm):
13555 * ediff.el (ediff-version):
13556 * complete.el (pc-chunk-after, PC-temp-minibuffer-message):
13557 `message' and `error': Ensure that first arg is a format string.
13558
13559 * emacs-lisp/find-func.el (find-library-name): Prefer files with
13560 ".el" suffix over "".
13561
13562 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
13563
13564 * net/dbus.el (dbus-hash-table=): Allow nil as wildcard in the
13565 interface and member fields.
13566
13567 2007-12-05 Glenn Morris <rgm@gnu.org>
13568
13569 * eshell/em-alias.el (pcomplete-stub): Define for compiler.
13570 (pcomplete-here): Autoload it.
13571
13572 * eshell/em-basic.el (print-func): No need to define for compiler.
13573
13574 * eshell/esh-cmd.el (eshell-debug-command):
13575 * eshell/esh-io.el (eshell-print): Move definitions before use.
13576
13577 * eshell/esh-module.el (eshell-load-defgroups): Eval and compile.
13578
13579 * eshell/esh-util.el (top-level): Don't require pp.
13580 Use condition-case rather than ignore-errors.
13581
13582 * eshell/eshell.el (eshell-buffer-name): Define for compiler.
13583
13584 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el
13585 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
13586 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el
13587 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el
13588 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el
13589 * eshell/em-xtra.el, eshell/esh-cmd.el, eshell/esh-test.el
13590 * eshell/esh-util.el, eshell/eshell.el: Require individual files
13591 if needed when compiling, rather than esh-maint. Collect any
13592 require statements. Move provide statement to end. Move any
13593 commentary to start.
13594
13595 * eshell/esh-arg.el, eshell/esh-ext.el, eshell/esh-io.el:
13596 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el:
13597 * eshell/esh-proc.el, eshell/esh-var.el:
13598 Require individual files if needed when compiling, rather than
13599 esh-maint. Collect any require statements. Leave provide at start.
13600 Move any commentary to start.
13601
13602 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13603 Remove declared function from byte-compile-noruntime-functions.
13604
13605 * ediff-util.el (ediff-version):
13606 * progmodes/python.el (compilation-shell-minor-mode):
13607 * textmodes/org.el (Info-goto-node, calendar-astro-date-string)
13608 (calendar-bahai-date-string, calendar-check-holidays)
13609 (calendar-chinese-date-string, calendar-coptic-date-string)
13610 (calendar-ethiopic-date-string, calendar-forward-day)
13611 (calendar-french-date-string, calendar-goto-date)
13612 (calendar-goto-today, calendar-hebrew-date-string)
13613 (calendar-islamic-date-string, calendar-iso-date-string)
13614 (calendar-julian-date-string, calendar-mayan-date-string)
13615 (calendar-persian-date-string, gnus-summary-last-subject)
13616 (parse-time-string, rmail-show-message): Declare as functions.
13617
13618 2007-12-05 Michael Olson <mwolson@gnu.org>
13619
13620 * textmodes/remember.el: Merge contents of remember-diary.el here,
13621 updating header. Add autoload cookie so that byte-compilation
13622 works without warning.
13623 (remember-diary-file): Default to nil, since diary might not yet
13624 be loaded at this point, which would deny us access to diary-file.
13625 (remember-diary-extract-entries): If remember-diary-file is nil,
13626 then use diary-file instead.
13627
13628 * textmodes/remember-diary.el: Remove, due to the issue of needing
13629 the first 8 characters of a filename to be unique.
13630
13631 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
13632
13633 * net/dbus.el (dbus-hash-table=): New defun.
13634 (dbus-hash-table-test): New hash table test function, used in
13635 `dbus-registered-functions-table'.
13636 (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
13637 (dbus-event-service-name, dbus-event-path-name)
13638 (dbus-event-interface-name, dbus-event-member-name):
13639 Rewrite, due to new structure of `dbus-event'.
13640
13641 2007-12-04 Juanma Barranquero <lekktu@gmail.com>
13642
13643 * ido.el (ido-save-history): Set the `coding' local
13644 variable in the first line of the file.
13645
13646 2007-12-04 Glenn Morris <rgm@gnu.org>
13647
13648 * password-cache.el: Move here from gnus/password.el.
13649 (top-level): Don't require cl when compiling.
13650 (password-read-and-add): Doc fix. Make obsolete.
13651
13652 * net/tramp.el: Require password-cache or password.
13653
13654 * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end.
13655 No longer provide 'cua. Don't require cua-rect, cua-gmrk when
13656 compiling.
13657 (cua-set-rectangle-mark): Add doc string to autoload.
13658 (cua--rectangle, cua--last-killed-rectangle)
13659 (cua--global-mark-active): Always define for compiler.
13660 (cua-copy-rectangle, cua-cut-rectangle, cua--rectangle-left)
13661 (cua--delete-rectangle, cua--insert-rectangle)
13662 (cua--rectangle-corner, cua--rectangle-assert)
13663 (cua--insert-at-global-mark, cua--global-mark-post-command):
13664 Declare as functions.
13665
13666 * emulation/cua-gmrk.el (top-level): Move provide to end.
13667
13668 * emulation/cua-rect.el (top-level): Move provide to end.
13669 Don't require cua-gmrk when compiling.
13670 (cua--cut-rectangle-to-global-mark)
13671 (cua--copy-rectangle-to-global-mark): Declare as functions.
13672
13673 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
13674 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
13675 (viper-vi-state-cursor-color):
13676 Consolidate make-variable-frame-local calls.
13677
13678 * net/eudcb-bbdb.el (bbdb-address-streets): Declare as a function.
13679 (eudc-bbdb-extract-addresses): Use bbdb-address-streets rather
13680 than bbdb-address-street1,2,3.
13681
13682 * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
13683 Try x-focus-frame before focus-frame. Only try focus-frame on XEmacs.
13684
13685 2007-12-03 Karl Fogel <kfogel@red-bean.com>
13686
13687 * saveplace.el (save-place-quiet): Remove, reverting 2007-12-02T19:54:46Z!kfogel@red-bean.com.
13688 (save-place-alist-to-file, load-save-place-alist-from-file):
13689 Don't print non-error messages at all, there's really no need.
13690 Do print if there's a problem, and clarify message in that case.
13691
13692 2007-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13693
13694 * ediff-diff.el (ediff-prepare-error-list):
13695 * ediff-util.el (ediff-setup): Disable undo for ediff-error-buffer.
13696
13697 2007-12-03 Tassilo Horn <tassilo@member.fsf.org>
13698
13699 * doc-view.el (doc-view-initiate-display): Use `doc-view-mode-p'.
13700 (doc-view-current-overlay, doc-view-pending-cache-flush):
13701 Add doc string.
13702
13703 2007-12-03 Richard Stallman <rms@gnu.org>
13704
13705 * subr.el (declare-function): Move from byte-run.el.
13706
13707 * emacs-lisp/byte-run.el (declare-function): Move to subr.el.
13708
13709 * window.el (recenter-top-bottom): Don't use `ecase'.
13710
13711 2007-12-02 Karl Fogel <kfogel@red-bean.com>
13712
13713 * saveplace.el (save-place-alist-to-file):
13714 Set coding-system-for-write once and refer to it throughout.
13715 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
13716
13717 2007-12-02 Karl Fogel <kfogel@red-bean.com>
13718
13719 * saveplace.el (save-place-alist-to-file): Use `utf-8' coding
13720 system when writing, and set it in the first-line file variables.
13721 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk> and
13722 Juanma Barranquero.
13723
13724 2007-12-02 Glenn Morris <rgm@gnu.org>
13725
13726 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13727 Reverse branches of if statement.
13728
13729 * emulation/viper-cmd.el (top-level): Don't require advice.
13730 Don't load viper-util, viper-keym, viper-mous, viper-macs,
13731 viper-ex when compiling.
13732
13733 * emulation/viper-ex.el (top-level): Don't load viper-util,
13734 viper-keym when compiling.
13735
13736 * emulation/viper-init.el (top-level): Move provide statement to end.
13737
13738 * emulation/viper-keym.el (top-level): Don't load viper-util when
13739 compiling. Move provide statement to end.
13740
13741 * emulation/viper-macs.el (top-level): Don't load viper-util,
13742 viper-keym, viper-mous when compiling.
13743
13744 * emulation/viper-mous.el (top-level): Don't load viper-util when
13745 compiling.
13746
13747 * emulation/viper-util.el (top-level): Don't load viper-init when
13748 compiling.
13749
13750 * emulation/viper.el (top-level): Don't require ring.
13751 Don't load viper-init, viper-cmd when compiling.
13752
13753 * net/sasl-cram.el, net/sasl-digest.el, net/sasl-ntlm.el, net/sasl.el:
13754 Move here from gnus/.
13755
13756 2007-12-02 Karl Fogel <kfogel@red-bean.com>
13757
13758 Offer option for saveplace to be quiet about loading and saving.
13759 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
13760
13761 * saveplace.el (save-place-quiet): New customizable boolean.
13762 (save-place-alist-to-file, load-save-place-alist-from-file): Use it
13763 to determine whether to print loading/saving messages.
13764
13765 2007-12-02 Glenn Morris <rgm@gnu.org>
13766
13767 * mail/binhex.el: Move here from gnus/.
13768 (binhex): New custom group.
13769 (binhex-decoder-program, binhex-decoder-switches)
13770 (binhex-use-external): Move to the binhex custom group.
13771
13772 * mail/uudecode.el: Move here from gnus/.
13773 (uudecode): New custom group.
13774 (uudecode-decoder-program, uudecode-decoder-switches)
13775 (uudecode-use-external): Move to the uudecode custom group.
13776
13777 * net/netrc.el (top-level): Don't load `encrypt' features.
13778 (netrc-parse): Don't use encrypt.
13779 (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
13780
13781 * progmodes/python.el (top-level): Don't require cl when compiling.
13782
13783 2007-12-02 Agustín Martín <agustin.martin@hispalinux.es>
13784
13785 * textmodes/flyspell.el (flyspell-large-region): Explicitly set
13786 encoding for aspell process and for communication with it.
13787 Only add "-d" option if not already present.
13788 Use ispell-current-dictionary and ispell-current-personal-dictionary.
13789 General reorganization.
13790
13791 * textmodes/ispell.el (ispell-aspell-find-dictionary): Do not set
13792 encoding here.
13793 (ispell-start-process): Explicitly set encoding here if using aspell.
13794
13795 2007-12-02 Dan Nicolaescu <dann@ics.uci.edu>
13796
13797 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Also pass a diff
13798 function to log-edit.
13799
13800 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
13801
13802 * net/dbus.el: New file.
13803
13804 2007-12-02 Jay Belanger <jay.p.belanger@gmail.com>
13805
13806 * calc/calc.el (calc-lang-slash-idiv, calc-lang-allow-underscores)
13807 (calc-lang-c-type-hex, calc-lang-brackets-are-subscripts)
13808 (calc-lang-parens-are-subscripts): New variables.
13809 (math-expr-special-function-mapping): Remove variable.
13810 (math-eqn-ignore-words, math-tex-ignore-words)
13811 (math-latex-ignore-words): Move to calc-lang.el.
13812
13813 * calc/calc-lang.el (math-compose-vector, math-compose-var)
13814 (math-tex-expr-is-flat): Declare as functions.
13815 (calc-lang-slash-idiv, calc-lang-allow-underscores)
13816 (math-comp-left-bracket, math-comp-right-bracket)
13817 (math-comp-comma, math-comp-vector-prec): Declare as variables.
13818 (math-var-formatter, math-matrix-formatter)
13819 (math-lang-adjust-words, math-lang-read-symbol, math-land-read)
13820 (math-punc-table, math-compose-subscr, math-dots)
13821 (math-func-formatter): New property names to store language
13822 specific information.
13823 (math-compose-tex-var, math-compose-tex-intv)
13824 (math-compose-maple-intv, math-compose-eqn-intv)
13825 (math-compose-tex-sum, math-compose-tex-func)
13826 (math-compose-tex-intv): New functions.
13827 (math-eqn-ignore-words, math-tex-ignore-words)
13828 (math-latex-ignore-words): Move from calc.el.
13829 (math-special-function-table): Add entries for tex.
13830 (calc-lang-slash-idiv, calc-lang-allows-underscores):
13831 New variables.
13832 (math-compose-latex-frac): Rename from `math-latex-print-frac'.
13833 (math-compose-tex-matrix, math-compose-eqn-matrix)
13834 (math-eqn-special-functions): Move from calccomp.el.
13835
13836 * calc/calccomp.el (math-compose-var): New function.
13837 (math-compose-expr): Allow more special functions to be used.
13838 Change test for formatting fractions. Use variables and property
13839 names to help with language specific formatting.
13840 (math-compose-tex-matrix, math-compose-eqn-matrix)
13841 (math-eqn-special-functions): Move to calc-lang.el.
13842 (math-compose-rows): Use property names to help with language
13843 specific formatting.
13844
13845 * calc/calc-aent.el (math-read-factor): Turn multiple subscripts
13846 into nested subscripts.
13847 (math-read-token): Use variables and property names to help with
13848 language specific parsing.
13849 (math-read-expression-level): Use variables to help with language
13850 specific parsing.
13851
13852 2007-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13853
13854 * arc-mode.el (archive-find-type): Add recognition of rar-exe format.
13855 (archive-rar-summarize): Allow the file name to be passed as argument.
13856 Remove unused vars `header' and `footer'.
13857 (archive-rar-exe-summarize, archive-rar-exe-extract): New functions.
13858
13859 2007-12-01 Dan Nicolaescu <dann@ics.uci.edu>
13860
13861 * log-edit.el (log-edit-show-diff): New function.
13862 (log-edit-mode-map, log-edit-menu): Bind it.
13863 (log-edit-diff-function): New variable.
13864 (log-edit): Change the 3rd param to be an alist and accept a
13865 function that computes a diff for the files involved.
13866
13867 * vc.el (vc-log-edit): Add a diff function parameter to log-edit.
13868
13869 2007-12-01 Martin Rudalics <rudalics@gmx.at>
13870
13871 * play/blackbox.el (bb-up, bb-down): Revert 2007-10-21 change and
13872 wrap next-/previous-line in with-no-warnings.
13873
13874 2007-12-01 Glenn Morris <rgm@gnu.org>
13875
13876 * format-spec.el, hex-util.el, sha1.el: Move here from gnus/.
13877
13878 * net/dig.el: Move here from gnus/.
13879 (dig-mode): Replace gnus-run-mode-hooks with equivalent expansion.
13880
13881 * net/dns.el: Move here from gnus/.
13882 (top-level): Don't require mm-util, or cl when compiling.
13883 (dns-write-name, dns-read, dns-read-type, query-dns):
13884 Replace mm-with-unibyte-buffer with its expansion.
13885 (query-dns): Replace decf and ignore-errors with non-cl equivalents.
13886
13887 * progmodes/gdb-ui.el (gud-remove, gud-break):
13888 * progmodes/gud.el (gdb-create-define-alist)
13889 (gdb-restore-windows, gdb-reset, global-hl-line-highlight)
13890 (hl-line-highlight, gdb-display-source-buffer)
13891 (gdb-display-buffer, c-langelem-sym, c-langelem-pos)
13892 (syntax-symbol, syntax-point, gdb-enqueue-input): Declare as functions.
13893
13894 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu>
13895
13896 * textmodes/org-export-latex.el (org-export-latex-cleaned-string):
13897 Move args on defun line.
13898
13899 * textmodes/org.el (org-calendar-holiday):
13900 Use calendar-check-holidays instead of the obsolete
13901 check-calendar-holidays.
13902 (add-to-diary-list, table--at-cell-p, Info-find-node, bbdb)
13903 (bbdb-company, bbdb-current-record, bbdb-name)
13904 (bbdb-record-getprop, bbdb-record-name)
13905 (bibtex-beginning-of-entry, bibtex-generate-autokey)
13906 (bibtex-parse-entry, bibtex-url, cdlatex-tab)
13907 (dired-get-filename, gnus-article-show-summary, mh-display-msg)
13908 (mh-find-path, mh-get-header-field, mh-get-msg-num)
13909 (mh-header-display, mh-index-previous-folder)
13910 (mh-normalize-folder-name, mh-search, mh-search-choose, mh-show)
13911 (mh-show-buffer-message-number, mh-show-header-display)
13912 (mh-show-msg, mh-show-show, mh-visit-folder)
13913 (org-export-latex-cleaned-string, remember)
13914 (remember-buffer-desc, rmail-narrow-to-non-pruned-header)
13915 (rmail-what-message, elmo-folder-exists-p)
13916 (elmo-message-entity-field, elmo-message-field)
13917 (vm-beginning-of-message, vm-follow-summary-cursor)
13918 (vm-get-header-contents, vm-isearch-narrow, vm-isearch-update)
13919 (vm-select-folder-buffer, vm-su-message-id, vm-su-subject)
13920 (vm-summarize, wl-folder-get-elmo-folder)
13921 (wl-summary-goto-folder-subr)
13922 (wl-summary-jump-to-msg-by-message-id, wl-summary-line-from)
13923 (wl-summary-line-subject, wl-summary-message-number)
13924 (wl-summary-redisplay): Declare as functions.
13925
13926 2007-11-30 Martin Rudalics <rudalics@gmx.at>
13927
13928 * longlines.el (longlines-show-hard-newlines): Remove handling of
13929 buffer-undo-list and buffer-modified status.
13930 (longlines-show-region, longlines-unshow-hard-newlines):
13931 Handle buffer-undo-list, buffer-modified status, inhibit-read-only, and
13932 inhibit-modification-hooks here to avoid that a buffer appears
13933 modified when toggling visibility of hard newlines.
13934
13935 2007-11-30 Glenn Morris <rgm@gnu.org>
13936
13937 * nxml/rng-maint.el (rng-do-some-validation): Fix declaration.
13938
13939 * progmodes/idlw-complete-structtag.el
13940 (idlwave-sintern-structtag):
13941 * progmodes/idlw-help.el (idlwave-sintern-sysvar)
13942 (idlwave-sintern-sysvartag):
13943 * progmodes/idlwave.el (idlwave-sintern-class-tag)
13944 (idlwave-sintern-sysvar, idlwave-sintern-sysvartag): Declare as
13945 functions.
13946
13947 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu>
13948
13949 * textmodes/reftex-index.el (texmathp):
13950 * textmodes/reftex-auc.el (TeX-argument-insert)
13951 (TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
13952 (LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
13953 (LaTeX-label-list):
13954 * nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
13955 (rng-clear-conditional-region, rng-do-some-validation): Declare as
13956 functions.
13957 (rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
13958
13959 2007-11-30 Glenn Morris <rgm@gnu.org>
13960
13961 * emacs-lisp/byte-run.el (declare-function): Add optional fourth
13962 argument and document it.
13963
13964 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13965 Third argument to declare-function must be a list to specify arglist.
13966
13967 * emacs-lisp/check-declare.el (check-declare-scan): Doc fix.
13968 Handle declare-function third argument `t' and fourth argument.
13969 (check-declare-verify): Doc fix. Handle `fileonly' case.
13970 Use progn rather than prog1.
13971
13972 * desktop.el (uniquify-item-base):
13973 * term/mac-win.el (url-type): Declare as functions.
13974
13975 * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-record-phones)
13976 (bbdb-address-city, bbdb-address-state, bbdb-address-zip)
13977 (bbdb-address-location, bbdb-record-addresses): Pass non-nil
13978 fourth arg to declare-function.
13979
13980 * play/dunnet.el: Don't require cl when compiling.
13981 (byte-compile-warnings): Set via file local variables.
13982 (dun-parse): Let-bind `beg' and `line'.
13983
13984 2007-11-29 Alexandre Julliard <julliard@winehq.org>
13985
13986 * vc-git.el (vc-git-dir-state): Fix the git command arguments.
13987
13988 2007-11-29 Ari Roponen <ari.roponen@gmail.com> (tiny change)
13989
13990 * calendar/time-date.el (encode-time-value): Doc fix.
13991
13992 2007-11-29 Glenn Morris <rgm@gnu.org>
13993
13994 * calendar/time-date.el (with-decoded-time-value): Doc fix.
13995
13996 * textmodes/css-mode.el (prog-mode): Remove.
13997 (css-mode): Derive from fundamental-mode rather than prog-mode.
13998
13999 * emacs-lisp/byte-run.el (declare-function): Doc fix.
14000
14001 * emacs-lisp/check-declare.el (check-declare-locate)
14002 (check-declare-verify): Handle `external' files.
14003 (check-declare-errmsg): New function.
14004 (check-declare-verify, check-declare-file, check-declare-directory):
14005 Use check-declare-errmsg to report the number of problems.
14006
14007 * ffap.el (w3-view-this-url)
14008 * mail/mspools.el (vm-visit-folder)
14009 * net/browse-url.el (w3-fetch-other-window, w3-fetch)
14010 * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-phone-string)
14011 (bbdb-record-phones, bbdb-address-city, bbdb-address-state)
14012 (bbdb-address-zip, bbdb-address-location, bbdb-record-addresses)
14013 (bbdb-records)
14014 * net/eudc-export.el (bbdb-parse-phone-number, bbdb-string-trim)
14015 * net/imap.el (sasl-find-mechanism, sasl-mechanism-name)
14016 (sasl-make-client, sasl-next-step, sasl-step-data)
14017 (sasl-step-set-data)
14018 * net/newsticker.el (w3m-toggle-inline-image, htmlr-reset)
14019 (htmlr-step): Declare as functions.
14020
14021 * net/eudcb-bbdb.el (eudc-bbdb-extract-addresses):
14022 Use bbdb-address-zip rather than bbdb-address-zip-string.
14023
14024 2007-11-28 Richard Stallman <rms@gnu.org>
14025
14026 * md4.el, net/hmac-def.el, net/hmac-md5.el, net/ntlm.el:
14027 Move here from gnus/.
14028
14029 2007-11-28 Martin Rudalics <rudalics@gmx.at>
14030
14031 * newcomment.el (comment-region-internal): Fix newline insertion
14032 in `block' case.
14033
14034 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
14035
14036 * pcvs-parse.el (cvs-parse-table): Adjust regexp for resurrections.
14037
14038 2007-11-28 Glenn Morris <rgm@gnu.org>
14039
14040 * Makefile.in (maintainer-clean): Depend on bootstrap-clean to
14041 delete .elc files.
14042
14043 * nxml/char-name/unicode: Move to etc/nxml/.
14044 * nxml/nxml-uchnm.el (top-level): Adapt for moved unicode files.
14045
14046 * nxml/nxml-enc.el (xmltok-get-declared-encoding-position):
14047 Declare as a function.
14048
14049 * nxml/nxml-maint.el (nxml-create-unicode-char-name-sets):
14050 * nxml/nxml-mode.el (nxml-get-char-name, nxml-insert-named-char):
14051 * nxml/xsd-regexp.el (xsdre-gen-categories): Change mapcar -> mapc.
14052
14053 * nxml/nxml-outln.el (nxml-token-start-tag-p)
14054 (nxml-token-end-tag-p): Move definitions before use.
14055
14056 * nxml/nxml-rap.el (nxml-prolog-regions): Declare for compiler.
14057
14058 * nxml/nxml-uchnm.el (top-level)
14059 (nxml-enable-unicode-char-name-sets-1): Use mapc rather than mapcar.
14060 (nxml-enabled-unicode-blocks): Add custom group.
14061
14062 * nxml/xmltok.el (xmltok-scan-char-ref, xmltok-char-number):
14063 Use string-to-number rather than string-to-int.
14064
14065 * dired-x.el (dired-omit-old-add-entry): Declare as function.
14066 Move definition before use.
14067 (dired-old-find-buffer-nocreate): Declare as function.
14068
14069 * emacs-lisp/check-declare.el (check-declare-locate): Reflow doc.
14070 (check-declare-verify): Handle fset.
14071
14072 * emulation/edt.el (edt-user-emulation-setup):
14073 Test edt-setup-user-bindings is bound before calling.
14074
14075 * emulation/tpu-edt.el: Don't require cl when compiling.
14076 (tpu-emacs-search, tpu-emacs-rev-search): Declare as functions.
14077 (tpu-edt-off): Use condition-case rather than ignore-errors.
14078 Use with-no-warnings.
14079
14080 * eshell/esh-util.el (top-level): Use require rather than load for
14081 ange-ftp.
14082
14083 * mail/supercite.el (sc-version): Redefine as an alias for
14084 emacs-version.
14085 (sc-help-address): Remove.
14086 (sc-version): Use emacs-version rather than sc-version.
14087 (sc-submit-bug-report): Redefine as an alias for report-emacs-bug.
14088
14089 * net/socks.el (socks-original-open-network-stream): Declare as
14090 function. Move definition before use.
14091
14092 2007-11-28 Jay Belanger <jay.p.belanger@gmail.com>
14093
14094 * calc/calc-ext.el (math-sqrt-raw, math-map-vec)
14095 (math-make-frac): Declare as functions.
14096
14097 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
14098
14099 * progmodes/cperl-mode.el (compilation-error-regexp-alist):
14100 Pacify byte compiler.
14101 (cperl-mode): Use with-no-warnings for setting vc-header-alist.
14102
14103 * progmodes/idlwave.el (idlwave-shell-get-path-info)
14104 (idlwave-shell-temp-file, idlwave-shell-is-running)
14105 (widget-value, comint-dynamic-complete-filename, Info-goto-node):
14106 * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
14107 (idlwave-all-method-classes, idlwave-all-method-keyword-classes)
14108 (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
14109 (idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
14110 (idlwave-completing-read, idlwave-current-routine)
14111 (idlwave-downcase-safe, idlwave-entry-find-keyword)
14112 (idlwave-expand-keyword, idlwave-find-class-definition)
14113 (idlwave-find-inherited-class, idlwave-find-struct-tag)
14114 (idlwave-get-buffer-visiting, idlwave-in-quote)
14115 (idlwave-make-full-name, idlwave-members-only)
14116 (idlwave-popup-select, idlwave-routine-source-file)
14117 (idlwave-routines, idlwave-sintern-class)
14118 (idlwave-sintern-keyword, idlwave-sintern-method)
14119 (idlwave-sintern-routine-or-method)
14120 (idlwave-substitute-link-target, idlwave-sys-dir)
14121 (idlwave-this-word, idlwave-what-module-find-class)
14122 (idlwave-where):
14123 * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
14124 * mail/uce.el (rmail-msg-is-pruned)
14125 (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
14126 (rmail-toggle-header):
14127 * mail/sendmail.el (dired-view-file, dired-get-filename):
14128 * mail/rmailkwd.el (rmail-maybe-set-message-counters)
14129 (rmail-display-labels, rmail-msgbeg)
14130 (rmail-set-message-deleted-p, rmail-message-labels-p)
14131 (rmail-show-message, mail-comma-list-regexp)
14132 (mail-parse-comma-list):
14133 * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
14134 (rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
14135 (rfc822-addresses, mail-abbrev-make-syntax-table)
14136 (mail-sendmail-delimit-header, mail-header-end):
14137 * mail/hashcash.el (message-narrow-to-headers-or-head)
14138 (message-fetch-field, message-goto-eoh)
14139 (message-narrow-to-headers):
14140 * vc.el (view-mode-exit): Declare as functions.
14141
14142 * mail/vms-pmail.el:
14143 * vmsproc.el:
14144 * vms-patch.el: Don't byte compile these files, they don't work.
14145
14146 2007-11-27 Glenn Morris <rgm@gnu.org>
14147
14148 * calc/calc-ext.el (math-read-big-rec):
14149 * calc/calc-nlfit.el (math-map-binop):
14150 * calc/calc.el (math-normalize-nonstandard): Fix declarations.
14151
14152 * eshell/eshell.el (eshell-report-bug): Add version number of
14153 obsolescence.
14154
14155 * emulation/viper.el, emulation/viper-util.el,
14156 emulation/viper-macs.el, emulation/viper-keym.el,
14157 emulation/viper-ex.el, emulation/viper-cmd.el:
14158 Load viper-*.el files silently.
14159
14160 * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el,
14161 ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el, ediff.el:
14162 Load ediff-*.el files silently.
14163
14164 * ediff.el: Load dired silently. Don't load info, pcl-cvs when
14165 compiling.
14166 (Info-goto-node): Declare as a function.
14167
14168 * ediff-init.el: Don't load ange-ftp when compiling.
14169 * ediff-util.el: Don't load reporter when compiling.
14170
14171 * ediff-wind.el (ediff-display-pixel-width)
14172 (ediff-display-pixel-height):
14173 * generic-x.el (ini-generic-mode):
14174 * ps-print.el (ps-mule-encode-header-string, ps-mule-begin-page)
14175 (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
14176 (ps-mule-initialize, ps-mule-begin-job):
14177 * calendar/cal-bahai.el (add-to-diary-list, diary-name-pattern)
14178 (mark-calendar-days-named):
14179 * calendar/cal-hebrew.el (holiday-filter-visible-calendar)
14180 (add-to-diary-list, diary-name-pattern)
14181 (mark-calendar-days-named):
14182 * calendar/cal-islam.el (add-to-diary-list, diary-name-pattern)
14183 (mark-calendar-days-named):
14184 * calendar/cal-x.el (make-fancy-diary-buffer):
14185 * calendar/holidays.el (calendar-absolute-from-julian):
14186 * calendar/todo-mode.el (calendar-current-date):
14187 * calendar/cal-menu.el (calendar-increment-month)
14188 (calendar-month-name, extract-calendar-year)
14189 (calendar-cursor-to-date, holiday-list, calendar-sunrise-sunset)
14190 (calendar-current-date, calendar-cursor-holidays)
14191 (calendar-date-string, insert-diary-entry, calendar-set-mark)
14192 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
14193 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
14194 (cal-tex-cursor-filofax-daily, cal-tex-cursor-filofax-2week)
14195 (cal-tex-cursor-filofax-week, cal-tex-cursor-month)
14196 (cal-tex-cursor-month-landscape, cal-tex-cursor-year)
14197 (cal-tex-cursor-filofax-year, cal-tex-cursor-year-landscape)
14198 (calendar-day-of-year-string, calendar-iso-date-string)
14199 (calendar-julian-date-string, calendar-astro-date-string)
14200 (calendar-absolute-from-gregorian, calendar-hebrew-date-string)
14201 (calendar-persian-date-string, calendar-bahai-date-string)
14202 (calendar-islamic-date-string, calendar-chinese-date-string)
14203 (calendar-coptic-date-string, calendar-ethiopic-date-string)
14204 (calendar-french-date-string, calendar-mayan-date-string)
14205 (calendar-print-chinese-date, calendar-goto-date):
14206 Declare as functions.
14207
14208 * calendar/calendar.el (nongregorian-diary-listing-hook): Doc fix.
14209 (Info-find-emacs-command-nodes, Info-find-node): Declare as functions.
14210
14211 * ffap.el (ffap-bug, ffap-submit-bug): Redefine as obsolete
14212 aliases for report-emacs-bug.
14213 (gnus-summary-select-article, gnus-configure-windows): Declare as
14214 functions.
14215
14216 * pgg-parse.el (pgg-parse-24, pgg-parse-crc24-string): Declare for
14217 compiler.
14218
14219 * pgg.el (pgg-clear-string): Declare as a function.
14220 (pgg-run-at-time-1): Wrap whole definition in (featurep 'xemacs) test.
14221 (pgg-run-at-time, pgg-cancel-timer): Move definitions before use.
14222
14223 * emacs-lisp/check-declare.el (check-declare-locate):
14224 Handle compressed files.
14225 (check-declare-verify): Handle define-generic-mode,
14226 define-global(ized)-minor-mode, define-obsolete-function-alias.
14227
14228 2007-11-27 Jay Belanger <jay.p.belanger@gmail.com>
14229
14230 * calc/calc-menu.el (calc-modes-menu): Add normal and incomplete
14231 algebraic modes.
14232
14233 * calc/calc-aent.el (calc-refresh-evaltos, calc-execute-kbd-macro)
14234 (math-is-true, calc-explain-why, calc-alg-edit)
14235 (math-composite-inequalities, math-flatten-lands)
14236 (math-multi-subst, calcFunc-vmatches, math-simplify)
14237 (math-known-matrixp, math-parse-fortran-subscr, math-to-radians-2)
14238 (math-read-string, math-read-brackets, math-read-angle-brackets):
14239 Declare as functions.
14240
14241 * calc/calcalg3.el (calc-fit-s-shaped-logistic-curve)
14242 (calc-fit-bell-shaped-logistic-curve)
14243 (calc-fit-hubbert-linear-curve, calc-graph-add-curve)
14244 (calc-graph-lookup, calc-graph-set-styles, math-min-list)
14245 (math-max-list): Declare as functions.
14246 (math-map-binop): New function.
14247 (calc-curve-fit): Replace `mapcar*' by `math-map-binop'.
14248
14249 * calc/calc.el (calc-set-language, calc-edit-finish)
14250 (calc-edit-cancel, calc-do-quick-calc, calc-do-calc-eval)
14251 (calc-do-keypad, calcFunc-unixtime, math-parse-date)
14252 (math-lessp, calc-embedded-finish-command)
14253 (calc-embedded-select-buffer, calc-embedded-mode-line-change)
14254 (calc-push-list-in-macro, calc-replace-selections)
14255 (calc-record-list, calc-normalize-fancy, calc-do-handle-whys)
14256 (calc-top-selected, calc-sel-error, calc-pop-stack-in-macro)
14257 (calc-embedded-stack-change, calc-refresh-evaltos)
14258 (calc-do-refresh, calc-binary-op-fancy, calc-unary-op-fancy)
14259 (calc-delete-selection, calc-alg-digit-entry, calc-alg-entry)
14260 (calc-dots, calc-temp-minibuffer-message, math-read-radix-digit)
14261 (calc-digit-dots, math-normalize-fancy, math-normalize-nonstandard)
14262 (math-recompile-eval-rules, math-apply-rewrites, calc-record-why)
14263 (math-dimension-error, calc-incomplete-error, math-float-fancy)
14264 (math-neg-fancy, math-zerop, calc-add-fractions)
14265 (math-add-objects-fancy, math-add-symb-fancy, math-mul-zero)
14266 (calc-mul-fractions, math-mul-objects-fancy, math-mul-symb-fancy)
14267 (math-reject-arg, math-div-by-zero, math-div-zero, math-make-frac)
14268 (calc-div-fractions, math-div-objects-fancy, math-div-symb-fancy)
14269 (math-compose-expr, math-comp-width, math-composition-to-string)
14270 (math-stack-value-offset-fancy, math-format-flat-expr-fancy)
14271 (math-adjust-fraction, math-format-binary, math-format-radix)
14272 (math-group-float, math-mod, math-format-number-fancy)
14273 (math-format-bignum-fancy, math-read-number-fancy)
14274 (calc-do-grab-region, calc-do-grab-rectangle, calc-do-embedded)
14275 (calc-do-embedded-activate, math-do-defmath)
14276 (calc-load-everything): Declare as functions.
14277
14278 * calc/calc-ext.el (math-clip, math-round, math-simplify)
14279 (math-simplify-extended, math-simplify-units, calc-set-language)
14280 (calc-flush-caches, calc-save-modes, calc-embedded-modes-change)
14281 (calc-embedded-var-change, math-mul-float, math-arctan-raw)
14282 (math-sqrt-float, math-exp-minus-1-raw, math-normalize-polar)
14283 (math-normalize-hms, math-normalize-mod, math-make-sdev)
14284 (math-make-intv, math-normalize-logical-op, math-possible-signs)
14285 (math-infinite-dir, math-calcFunc-to-var)
14286 (calc-embedded-evaluate-expr, math-known-nonzerop)
14287 (math-read-expr-level, math-read-big-rec, math-read-big-balance)
14288 (math-format-date, math-vector-is-string, math-vector-to-string)
14289 (math-format-radix-float, math-compose-expr, math-abs)
14290 (math-format-bignum-binary, math-format-bignum-octal)
14291 (math-format-bignum-hex, math-format-bignum-radix)
14292 (math-compute-max-digits): Declare as functions.
14293 (math-provably-realp): Fix typo.
14294
14295 * calc/calc-forms.el (calendar-current-time-zone)
14296 (calendar-absolute-from-gregorian, dst-in-effect): Declare as
14297 functions.
14298
14299 * calc/calc-help.el (Info-goto-node, Info-last): Declare as functions.
14300
14301 * calc/calc-lang.el (math-read-factor, math-read-expr-level):
14302 Declare as functions.
14303
14304 * calc/calc-macs.el (math-zerop, math-negp, math-looks-negp)
14305 (math-posp, math-compare, math-bignum, math-compare-bignum):
14306 Declare as functions.
14307
14308 * calc/calc-misc.el (calc-do-keypad, calc-inv-hyp-prefix-help)
14309 (calc-inverse-prefix-help, calc-hyperbolic-prefix-help)
14310 (calc-explain-why, calc-clear-command-flag)
14311 (calc-roll-down-with-selections, calc-roll-up-with-selections)
14312 (calc-last-args, calc-is-inverse, calc-do-prefix-help)
14313 (math-objvecp, math-known-scalarp, math-vectorp, math-matrixp)
14314 (math-trunc-special, math-trunc-fancy, math-floor-special)
14315 (math-floor-fancy, math-square-matrixp, math-matrix-inv-raw)
14316 (math-known-matrixp, math-mod-fancy, math-pow-of-zero)
14317 (math-pow-zero, math-pow-fancy): Declare as functions.
14318
14319 * calc/calc-mode.el (calc-embedded-save-original-modes):
14320 Declare as a function.
14321
14322 * calc/calc-nlfit.el (calc-get-fit-variables, math-map-binop):
14323 Declare as functions.
14324 (math-nlfit-make-matrix, math-nlfit-find-qmax, math-nlfit-fit)
14325 (math-nlfit-fit-curve, calc-fit-hubbert-linear-curve):
14326 Replace `mapcar*' by `math-map-binop'.
14327 (math-nlfit-make-matrix): Replace `copy-list' with `copy-sequence'.
14328
14329 * calc/calc-prog.el (edmacro-format-keys, edmacro-parse-keys)
14330 (math-read-expr-level): Declare as functions.
14331
14332 * calc/calc-vec.el (math-read-expr-level): Declare as a function.
14333
14334 2007-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
14335
14336 * emacs-lisp/lisp.el (end-of-defun): Restructure so that
14337 end-of-defun-function is called consistently, even for negative
14338 arguments.
14339 (end-of-defun-function): Default to forward-sexp.
14340
14341 2007-11-26 Juanma Barranquero <lekktu@gmail.com>
14342
14343 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
14344
14345 2007-11-26 Glenn Morris <rgm@gnu.org>
14346
14347 * calendar/cal-menu.el (cal-menu-holidays-menu): Use :label rather
14348 than :suffix.
14349
14350 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
14351
14352 2007-11-26 Simon Josefsson <simon@josefsson.org>
14353
14354 * net/imap.el: Move from ../gnus.
14355
14356 2007-11-25 Reiner Steib <Reiner.Steib@gmx.de>
14357
14358 * doc-view.el (doc-view-mode-p): New function.
14359
14360 2007-11-25 Dan Nicolaescu <dann@ics.uci.edu>
14361
14362 * mail/mspools.el (rmail-get-new-mail):
14363 * mail/reporter.el (mail-position-on-field, mail-text):
14364 * mail/rmail.el (mail-position-on-field, mail-text-start)
14365 (rmail-update-summary):
14366 * mail/rmailedit.el (rmail-summary-disable, rmail-summary-enable):
14367 * mail/rmailmsc.el (rmail-parse-file-inboxes, rmail-show-message):
14368 * mail/rmailout.el (rmail-update-summary):
14369 * mail/rmailsort.el (rmail-update-summary):
14370 * mail/sendmail.el (dired-move-to-filename, dired-get-filename)
14371 (dired-view-file):
14372 * mail/uce.el (mail-strip-quoted-names):
14373 * mail/undigest.el (rmail-update-summary):
14374 * mail/unrmail.el (mail-strip-quoted-names):
14375 * ediff.el (diff-latest-backup-file): Declare as functions.
14376
14377 * obsolete/mlsupport.el (ml-previous-page): Fix typo.
14378 (kill-to-end-of-line):
14379 * obsolete/rnews.el (news-set-minor-modes):
14380 Remove non working functions.
14381
14382 2007-11-25 Glenn Morris <rgm@gnu.org>
14383
14384 * eshell/esh-maint.el (top-level): Use require with NOERROR for
14385 pcomplete. Don't mess with load-path.
14386
14387 * eshell/eshell.el (eshell-report-bug-address): Remove.
14388 (eshell-report-bug): Redefine as an alias for report-emacs-bug.
14389
14390 2007-11-24 Glenn Morris <rgm@gnu.org>
14391
14392 * calendar/appt.el: Remove leading `*' from defcustom doc-strings.
14393 (appt-disp-window): Don't require electric.
14394 Simplify minibuffer-avoidance code.
14395 (appt-select-lowest-window): Avoid minibuffer.
14396
14397 * eshell/eshell.el: Remove leading `*' from defcustom doc-strings.
14398 (esh-mode): Require it.
14399 (esh-util): Use require rather than featurep and load.
14400 (eshell): No need to test if eshell-mode is bound; remove obsolete
14401 reference to eshell-auto.
14402 (eshell-command, eshell-command-result): Don't require esh-mode
14403 now that the file does.
14404 (top-level): Move provide statement to the end of the file.
14405 Re-order and update commentary.
14406
14407 2007-11-24 Thien-Thi Nguyen <ttn@gnuvola.org>
14408
14409 * vc.el (vc-annotate-mode): Frob buffer invisibility spec.
14410 (vc-annotate-toggle-annotation-visibility): New command.
14411 (vc-annotate-mode-map): Bind "V" to it.
14412 (vc-annotate-mode-menu): Add entry for it.
14413 (vc-annotate-get-time-set-line-props): New func.
14414 (vc-annotate-display-autoscale)
14415 (vc-annotate-display-difference): Use it.
14416
14417 * vc-git.el (vc-git-annotate-time): Handle optional field FILENAME.
14418 Also, match one space at end of annotation text, after last paren.
14419
14420 2007-11-24 Michael Albinus <michael.albinus@gmx.de>
14421
14422 * ido.el (ido-file-name-all-completions-1): Check for fboundp of
14423 `tramp-completion-mode-p' as it is in Tramp 2.1. Let-bind
14424 `tramp-completion-mode'.
14425
14426 2007-11-24 Thien-Thi Nguyen <ttn@gnuvola.org>
14427
14428 * vc-git.el (vc-git-show-log-entry): New func.
14429
14430 * vc-git.el (vc-git--call, vc-git--out-ok): New funcs.
14431 (vc-git-state): Use vc-git--call.
14432 (vc-git-registered, vc-git-working-revision)
14433 (vc-git-previous-revision, vc-git-next-revision)
14434 (vc-git--run-command-string, vc-git-symbolic-commit):
14435 Use vc-git--out-ok.
14436
14437 2007-11-24 Glenn Morris <rgm@gnu.org>
14438
14439 * emacs-lisp/byte-run.el (declare-function): Doc fix.
14440
14441 2007-11-24 Kenichi Handa <handa@m17n.org>
14442
14443 * international/ucs-tables.el (ucs-8859-7-alist): Update the table.
14444
14445 2007-11-23 David Kastrup <dak@gnu.org>
14446
14447 * server.el (server-process-filter): Use `command-line-args-left'.
14448
14449 2007-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
14450
14451 * nxml/subdirs.el, nxml/char-data/subdirs.el, nxml/rng-auto.el: Remove.
14452
14453 2007-11-23 Dan Nicolaescu <dann@ics.uci.edu>
14454
14455 * vc.el (vc-deduce-fileset): Also look for a fileset in the parent
14456 buffer if the parent buffer is in vc-dired-mode.
14457
14458 2007-11-23 Mark A. Hershberger <mah@everybody.org>
14459
14460 * nxml: Initial merge of nxml. Kept nxml/char-name subdir for now.
14461
14462 2007-11-23 Juri Linkov <juri@jurta.org>
14463
14464 * dired.el (dired-read-dir-and-switches): For C-x d, set the
14465 value for M-n to the visited file name of the current buffer.
14466 Use minibuffer-with-setup-hook to set minibuffer-default to
14467 buffer-file-name inside read-file-name.
14468
14469 * man.el (Man-getpage-in-background): Don't disregard user option
14470 `Man-width' on non-window systems. Remove test for `window-system'
14471 around setting envvar "COLUMNS" depending on the value of `Man-width'.
14472
14473 * progmodes/grep.el (grep-process-setup): Set envvar "TERM" to
14474 "emacs-grep". Set envvar "GREP_OPTIONS" to "--color=auto" instead
14475 of "--color=always".
14476
14477 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
14478
14479 * emacs-lisp/lisp.el (beginning-of-defun-raw): Pass `arg' down to
14480 beginning-of-defun-function.
14481
14482 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
14483
14484 * mail/hashcash.el: Move from ../gnus. Add hashcash payments to email.
14485
14486 2007-11-22 Glenn Morris <rgm@gnu.org>
14487
14488 * emulation/cua-base.el (x-clipboard-yank): Fix declaration.
14489
14490 * emacs-lisp/check-declare.el (check-declare-locate): New function.
14491 (check-declare-scan): Use check-declare-locate.
14492 (check-declare-verify): No longer adjust fnfile, now
14493 check-declare-locate does it.
14494
14495 * emacs-lisp/byte-run.el (declare-function): Doc fix.
14496
14497 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
14498
14499 * subr.el (posn-col-row): Make the `default-value' use explicit.
14500
14501 * window.el (balance-windows): Remove unused var `counter'.
14502 (bw-balance-sub): Remove unused var `lastchild'.
14503 (split-window-vertically): Remove unused var `switch'.
14504 (recenter-top-bottom): Remove unused vars `bottom', `current', `total'.
14505
14506 * emacs-lisp/bytecomp.el
14507 (byte-compile-file-form-custom-declare-variable): Simplify.
14508
14509 2007-11-22 Juanma Barranquero <lekktu@gmail.com>
14510
14511 * cus-edit.el (custom-mode): Define with `define-derived-mode'.
14512 Set `show-trailing-whitespace' to nil.
14513
14514 * dired.el (make-symbolic-link):
14515 * dired-aux.el (mailcap-parse-mailcaps, mailcap-parse-mimetypes)
14516 (mailcap-extension-to-mime, mailcap-mime-info, make-symbolic-link):
14517 * dired-x.el (make-symbolic-link):
14518 * frame.el (x-initialize-window-system):
14519 * menu-bar.el (x-menu-bar-open):
14520 * select.el (x-get-cut-buffer-internal, x-rotate-cut-buffers-internal)
14521 (x-store-cut-buffer-internal):
14522 * wdired.el (make-symbolic-link):
14523 * x-dnd.el (x-register-dnd-atom, x-get-atom-name)
14524 (x-send-client-message):
14525 * emulation/cua-base.el (x-clipboard-yank): Declare as functions.
14526
14527 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
14528
14529 * term/x-win.el (x-gtk-map-stock): Check if FILE is a string.
14530
14531 2007-11-22 Glenn Morris <rgm@gnu.org>
14532
14533 * dos-fns.el (int86):
14534 * term/mac-win.el (mac-font-panel-mode): Fix declarations.
14535
14536 * calendar/cal-menu.el (cal-menu-holidays-menu): Fix holiday-list call.
14537
14538 * calendar/holidays.el (holiday-list): Add autoload cookie.
14539
14540 * emacs-lisp/check-declare.el (check-declare-scan): Expand .c
14541 files relative to src/ directory.
14542 (check-declare-verify): Handle .c files. Warn if could not find
14543 an arglist to check.
14544
14545 * emacs-lisp/byte-run.el (declare-function): Doc fix.
14546
14547 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
14548
14549 * replace.el (occur-mode-map): Add a major mode menu with entries
14550 for all occur operations.
14551
14552 * international/titdic-cnv.el (dos-8+3-filename):
14553 * obsolete/fast-lock.el (msdos-long-file-names):
14554 * frame.el (msdos-mouse-p):
14555 * files.el (msdos-long-file-names, w32-long-file-name):
14556 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14557 (mac-resume-apple-event, mac-font-panel-mode)
14558 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14559 (mac-clear-font-name-table):
14560 * term/pc-win.el (msdos-remember-default-colors)
14561 (w16-set-clipboard-data, w16-get-clipboard-data):
14562 * term/w32-win.el (w32-send-sys-command, w32-select-font)
14563 (set-message-beep):
14564 * net/browse-url.el (w32-shell-execute):
14565 * w32-fns.el (set-message-beep, w32-get-clipboard-data)
14566 (w32-get-locale-info, w32-get-valid-locale-ids)
14567 (w32-set-clipboard-data):
14568 * dos-fns.el (int86, msdos-long-file-names):
14569 * dos-w32.el (default-printer-name): Declare as functions.
14570
14571 2007-11-21 Jason Rumney <jasonr@gnu.org>
14572
14573 * emacs-lisp/byte-run.el (declare-function): Return nil.
14574
14575 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14576
14577 * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
14578
14579 2007-11-21 Juanma Barranquero <lekktu@gmail.com>
14580
14581 * w32-fns.el: Undo 2007-11-21 change by Dan Nicolaescu.
14582
14583 2007-11-21 Glenn Morris <rgm@gnu.org>
14584
14585 * emacs-lisp/check-declare.el (check-declare-verify): Skip C files
14586 for now. Handle define-minor-mode, and defalias (with no argument
14587 checking).
14588
14589 2007-11-21 Dan Nicolaescu <dann@ics.uci.edu>
14590
14591 * frame.el (msdos-mouse-p):
14592 * files.el (msdos-long-file-names, w32-long-file-name):
14593 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14594 (mac-resume-apple-event, mac-font-panel-mode)
14595 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14596 (mac-clear-font-name-table):
14597 * term/pc-win.el (msdos-remember-default-colors)
14598 (w16-set-clipboard-data, w16-get-clipboard-data):
14599 * term/w32-win.el (w32-send-sys-command, w32-select-font)
14600 (set-message-beep):
14601 * net/browse-url.el (w32-shell-execute):
14602 * dos-fns.el (int86, msdos-long-file-names):
14603 * dos-w32.el (default-printer-name): Undo previous change.
14604
14605 2007-11-21 Eli Zaretskii <eliz@gnu.org>
14606
14607 * international/mule-cmds.el (set-locale-environment):
14608 Set default-file-name-coding-system _after_ keyboard and terminal
14609 coding systems. This fixes last change.
14610
14611 * mail/rmail.el (rmail-current-subject-regexp): Allow more than
14612 one space after "Subject:".
14613
14614 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14615
14616 * pcvs-parse.el (cvs-parse-table): Ignore errors when looking up files
14617 in order to determine if there's a conflict.
14618
14619 2007-11-21 Richard Stallman <rms@gnu.org>
14620
14621 * bindings.el (esc-map): Bind C-M-l here; moved from reposition.el.
14622
14623 * reposition.el (reposition-window):
14624 Binding C-M-l moved to bindings.el.
14625
14626 * bindings.el (ctl-x-4-map): Bind C-x 4 a here; moved from add-log.el.
14627
14628 * add-log.el (add-change-log-entry-other-window):
14629 Key binding C-x 4 a moved to bindings.el.
14630
14631 * bindings.el (minibuffer-local-map): Bind C-tab here; moved
14632 from filecache.el.
14633
14634 * filecache.el: Minibuffer map bindings moved to bindings.el.
14635
14636 2007-11-21 Jason Rumney <jasonr@gnu.org>
14637
14638 * international/mule-cmds.el (set-locale-environment):
14639 Set default-file-name-coding-system from system defaults on Windows.
14640
14641 2007-11-21 Jason Rumney <jasonr@gnu.org>
14642
14643 * term/w32console.el: New term init file for w32 console.
14644
14645 * w32-fns.el (x-alternatives-map): Copy from term/x-win.el.
14646 (x-setup-function-keys): Likewise, replacing top-level key definitions.
14647 (w32-tty-standard-colors): Move to term/w32console.el.
14648
14649 * term/w32-win.el (x-setup-function-keys): Remove.
14650
14651 * term/tty-colors.el (tty-register-default-colors): Remove special
14652 case for w32.
14653
14654 2007-11-21 Dan Nicolaescu <dann@ics.uci.edu>
14655
14656 * frame.el (msdos-mouse-p):
14657 * generic-x.el (w32-shell-name):
14658 * files.el (msdos-long-file-names, w32-long-file-name)
14659 (dired-get-filename, dired-unmark, dired-do-flagged-delete)
14660 (dos-8+3-filename, vms-read-directory, view-mode-disable):
14661 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14662 (mac-resume-apple-event, mac-font-panel-mode)
14663 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14664 (mac-clear-font-name-table):
14665 * term/pc-win.el (msdos-remember-default-colors)
14666 (w16-set-clipboard-data, w16-get-clipboard-data):
14667 * term/w32-win.el (w32-send-sys-command, w32-select-font)
14668 (set-message-beep):
14669 * w32-fns.el (set-message-beep, w32-get-clipboard-data)
14670 (w32-get-locale-info, w32-get-valid-locale-ids)
14671 (w32-set-clipboard-data):
14672 * help-fns.el (ad-get-advice-info):
14673 * font-lock.el (fast-lock-after-fontify-buffer)
14674 (fast-lock-after-unfontify-buffer, fast-lock-mode)
14675 (lazy-lock-after-fontify-buffer)
14676 (lazy-lock-after-unfontify-buffer, lazy-lock-mode):
14677 * net/browse-url.el (w32-shell-execute):
14678 * dos-fns.el (int86, msdos-long-file-names):
14679 * dos-w32.el (default-printer-name): Declare as functions.
14680
14681 2007-11-21 Juanma Barranquero <lekktu@gmail.com>
14682
14683 * textmodes/paragraphs.el (forward-sentence): Doc fix.
14684 Reported by Drew Adams <drew.adams@oracle.com>.
14685
14686 2007-11-20 Jason Rumney <jasonr@gnu.org>
14687
14688 * term/w32-win.el (x-setup-function-keys): Protect against
14689 multiple calls on the same terminal.
14690
14691 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14692
14693 * term/mac-win.el (x-setup-function-keys): Only setup
14694 local-function-key-map if it has not been setup already for the
14695 current frame. Move the suspend-emacs processing here.
14696
14697 2007-11-20 Juanma Barranquero <lekktu@gmail.com>
14698
14699 * progmodes/grep.el (xargs-program): New variable.
14700 (grep-compute-defaults): Use it.
14701 (grep-default-command): Doc fix.
14702 (grep, lgrep, rgrep): Reflow docstrings.
14703
14704 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14705
14706 * vc.el (vc-find-revision): Set the parent buffer.
14707 Use when instead of if.
14708
14709 * progmodes/python.el (info-lookup-maybe-add-help):
14710 * progmodes/ps-mode.el (doc-view-minor-mode):
14711 * mail/emacsbug.el (Info-menu, Info-goto-node):
14712 * emulation/viper-keym.el (viper-ex)
14713 (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for):
14714 * emulation/viper-cmd.el (widget-type, widget-button-press)
14715 (viper-set-hooks):
14716 * emacs-lisp/tcover-unsafep.el (unsafep-function):
14717 * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells)
14718 (ses-load, ses-vector-delete, ses-create-header-string)
14719 (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump):
14720 * emacs-lisp/gulp.el (mail-subject, mail-send): Declare as functions.
14721
14722 2007-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14723
14724 * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
14725
14726 2007-11-20 Glenn Morris <rgm@gnu.org>
14727
14728 * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp
14729 for end of function-name. Handle define-derived-mode.
14730
14731 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14732
14733 * progmodes/idlw-help.el: Require browse-url unconditionally, it
14734 is available by default.
14735 (idlwave-help-browse-url-available): Change default to t.
14736
14737 * emulation/edt.el (defgroup, defcustom): Remove definition.
14738 (eval-when-compile): Remove.
14739 (c-mark-function):
14740 * textmodes/reftex-dcr.el (bibtex-beginning-of-entry):
14741 * textmodes/fill.el (comment-search-forward)
14742 (comment-string-strip):
14743 * progmodes/prolog.el (comint-mode, comint-send-string)
14744 (comint-send-region, comint-send-eof):
14745 * progmodes/dcl-mode.el (imenu-default-create-index-function):
14746 * emulation/viper-util.el (viper-forward-Word):
14747 * emulation/vi.el (c-mark-function):
14748 * emulation/edt-vt100.el (vt100-wide-mode):
14749 * emacs-lisp/timer.el (diary-entry-time): Declare as functions.
14750
14751 2007-11-19 Michael Albinus <michael.albinus@gmx.de>
14752
14753 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
14754 Still some tuning in case of an echoing shell.
14755 (tramp-send-command): Connection property "remote-echo" is not
14756 persistent; cache key is the process therefore.
14757
14758 2007-11-19 Juanma Barranquero <lekktu@gmail.com>
14759
14760 * replace.el (map-query-replace-regexp): Doc fix (revert part of
14761 2000-05-21T17:04:47Z!fx@gnu.org made on 2000-05-21 with no ChangeLog entry).
14762
14763 2007-11-19 Dan Nicolaescu <dann@ics.uci.edu>
14764
14765 * progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
14766 * play/yow.el (doctor-ret-or-read):
14767 * vc-hooks.el (vc-dired-resynch-file):
14768 * vc-hg.el (log-view-get-marked):
14769 * smerge-mode.el (ediff-cleanup-mess):
14770 * pcvs.el (vc-editable-p, vc-checkout):
14771 * pcomplete.el (comint-bol):
14772 * informat.el (texinfo-format-refill):
14773 * ido.el (tramp-tramp-file-p):
14774 * ibuffer.el (ibuffer-mark-on-buffer, ibuffer-format-qualifier)
14775 (ibuffer-generate-filter-groups, ibuffer-format-filter-group-data):
14776 * add-log.el (c-beginning-of-defun, c-end-of-defun): Declare as
14777 functions.
14778
14779 * textmodes/ispell.el (ispell-int-char): Make it a defalias
14780 instead of fset.
14781 (ispell-message): Use with-no-warnings for sc-cite-regexp call.
14782
14783 * ido.el (ido-file-internal): Move with-no-warnings to include the
14784 ffap-string-at-point call.
14785
14786 * pcomplete.el (pcomplete-executables): Move defsubst before first use.
14787
14788 * vc-hg.el (vc-hg-revision-table): Fix last change.
14789
14790 2007-11-19 Martin Rudalics <rudalics@gmx.at>
14791
14792 * menu-bar.el (top-level): Deactivate clipboard-kill-region and
14793 clipboard-yank when the buffer is read-only.
14794
14795 * cus-edit.el (custom-field-keymap): Move to other Custom mode
14796 keymaps such that it's before the definition of Custom-mode-menu.
14797 (Custom-mode-menu): Show it for custom-field-keymap too.
14798
14799 2007-11-19 Nick Roberts <nickrob@snap.net.nz>
14800
14801 * progmodes/gdb-ui.el: Update commentary.
14802
14803 2007-11-18 Dan Nicolaescu <dann@ics.uci.edu>
14804
14805 * net/tramp.el (tramp-terminal-type): Remove duplicated definition.
14806
14807 2007-11-19 Glenn Morris <rgm@gnu.org>
14808
14809 * emacs-lisp/check-declare.el (check-declare-verify): If fnfile
14810 does not exist, try adding `.el' extension. Also search for defsubsts.
14811
14812 * cus-edit.el (recentf-expand-file-name):
14813 * dired.el (dired-relist-entry):
14814 * subr.el (w32-shell-dos-semantics):
14815 * emacs-lisp/bytecomp.el (compilation-forget-errors):
14816 Declare as functions.
14817
14818 2007-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14819
14820 * abbrev.el (kill-all-abbrevs, insert-abbrevs)
14821 (prepare-abbrev-list-buffer): Use dolist.
14822 (clear-abbrev-table): Preserve properties.
14823
14824 2007-11-18 Shigeru Fukaya <shigeru.fukaya@gmail.com> (tiny change)
14825
14826 * textmodes/texinfmt.el (texinfo-format-printindex):
14827 Collect combined indexes using texinfo-short-index-format-cmds-alist.
14828 Reported on <bug-texinfo@gnu.org>.
14829
14830 2007-11-18 Michael Albinus <michael.albinus@gmx.de>
14831
14832 * net/tramp.el (tramp-completion-reread-directory-timeout):
14833 New defcustom.
14834 (tramp-handle-file-name-all-completions): Flush directory contents
14835 from cache regularly.
14836 (tramp-set-auto-save-file-modes): Check also for `buffer-modified-p'.
14837 (tramp-open-connection-setup-interactive-shell):
14838 Call `tramp-cleanup-connection' via funcall.
14839
14840 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Temp file is already
14841 created when copying.
14842
14843 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
14844
14845 * eshell/esh-util.el (eshell-under-xemacs-p): Remove.
14846 * eshell/esh-mode.el (eshell-mode-syntax-table, command-running-p):
14847 * eshell/esh-ext.el (eshell-external-command):
14848 * eshell/esh-cmd.el (require):
14849 * eshell/em-unix.el (eshell-plain-locate-behavior):
14850 * eshell/em-cmpl.el (eshell-cmpl-initialize):
14851 Replace eshell-under-xemacs-p with (featurep 'xemacs).
14852 * eshell/esh-mode.el (characterp, char-int): Remove unused
14853 conditional defaliases.
14854
14855 * pcomplete.el (pcomplete-event-matches-key-specifier-p):
14856 Rename from event-matches-key-specifier-p, define unconditionally.
14857 (event-basic-type): Remove unused defalias.
14858 (pcomplete-show-completions):
14859 Use pcomplete-event-matches-key-specifier-p.
14860
14861 2007-11-17 Eli Zaretskii <eliz@gnu.org>
14862
14863 * eshell/esh-module.el (eshell-load-defgroups): Don't make backups
14864 when saving esh-groups.el.
14865
14866 2007-11-17 Martin Rudalics <rudalics@gmx.at>
14867
14868 * wid-edit.el (widget-default-complete):
14869 * progmodes/flymake.el (flymake-goto-file-and-line):
14870 Fix typo in (doc-)string.
14871
14872 2007-11-17 Glenn Morris <rgm@gnu.org>
14873
14874 * emacs-lisp/byte-run.el (declare-function): New macro.
14875 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
14876 New function, byte-hunk-handler for declare-function.
14877 (byte-compile-callargs-warn): Handle declared functions.
14878
14879 * emacs-lisp/check-declare.el: New file.
14880 * Makefile.in (check-declare): New target.
14881
14882 * progmodes/fortran.el (gud-find-c-expr): Declare as a function.
14883
14884 * subr.el (process-lines): Move here from ../admin/admin.el.
14885 * emacs-lisp/authors.el (authors-process-lines): Remove.
14886 (authors): Use process-lines rather than authors-process-lines.
14887
14888 * progmodes/compilation-perl.el, progmodes/compilation-weblint.el:
14889 Remove these files.
14890
14891 2007-11-17 Juanma Barranquero <lekktu@gmail.com>
14892
14893 * emacs-lisp/backquote.el (backquote):
14894 Improve argument/docstring consistency.
14895
14896 * emacs-lisp/ring.el (ring-size, ring-p, ring-insert)
14897 (ring-length, ring-empty-p): Use c[ad]dr.
14898 (ring-plus1): Use `1+'.
14899 (ring-minus1): Use `zerop'.
14900 (ring-remove): Use c[ad]dr. Use `when'.
14901 (ring-copy): Use c[ad]dr. Use `let', not `let*'.
14902 (ring-ref): Use `let', not `let*'.
14903 (ring-insert-at-beginning): Use c[ad]dr. Doc fix.
14904 (ring-insert+extend): Use c[ad]dr. Fix typo in docstring.
14905 (ring-member): Simplify. Doc fix.
14906 (ring-convert-sequence-to-ring): Simplify.
14907
14908 2007-11-17 Juri Linkov <juri@jurta.org>
14909
14910 * dired-aux.el (dired-create-directory): Allow creating
14911 a directory of an arbitrary depth. Add a loop to find the topmost
14912 nonexistent parent dir `new', and call `dired-add-file' on it.
14913 Set the `PARENTS' arg of `make-directory' to t.
14914
14915 2007-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14916
14917 * calc/calc-aent.el (calc-last-user-lang-parse-table): New variable.
14918 (math-build-parse-table): Get parse information from math-parse-table.
14919
14920 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
14921
14922 * window.el (recenter-last-op): New var.
14923 (recenter-top-bottom): New command.
14924 (global-map): Bind it to C-l.
14925
14926 * abbrev.el (abbrev--write): Fix error in transcription from C.
14927
14928 * emulation/pc-select.el (pc-select-shifted-mark): Remove.
14929 (pc-select-ensure-mark): Set mark-active to a special value instead.
14930 Rename from ensure-mark. Update call callers.
14931 (pc-select-maybe-deactivate-mark): Rename from maybe-deactivate-mark.
14932 Rewrite. Update all callers.
14933 (pc-selection-mode): Remove redundant var declaration.
14934
14935 2007-11-16 Tassilo Horn <tassilo@member.fsf.org>
14936
14937 * doc-view.el (doc-view-search-backward, doc-view-search):
14938 Fix assignment to free variable bug.
14939
14940 2007-11-16 Martin Pohlack <mp26@os.inf.tu-dresden.de> (tiny change)
14941
14942 * emulation/pc-select.el (pc-select-shifted-mark): New var.
14943 (ensure-mark): Set it.
14944 (maybe-deactivate-mark): New fun.
14945 Use it everywhere instead of (setq mark-active nil).
14946
14947 2007-11-16 Dan Nicolaescu <dann@ics.uci.edu>
14948
14949 * textmodes/reftex-dcr.el (reftex-start-itimer-once):
14950 Add check for XEmacs.
14951
14952 * calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
14953
14954 * doc-view.el (doc-view-resolution): Add missing :group.
14955
14956 2007-11-16 Juanma Barranquero <lekktu@gmail.com>
14957
14958 * subr.el (make-variable-frame-local):
14959 Fix typo in obsolescence declaration.
14960
14961 2007-11-16 Werner Lemberg <wl@gnu.org>
14962
14963 * files.el (set-auto-mode-1): Check second line for -*- if file
14964 starts with '\" (which is used by man pages to identify needed
14965 troff preprocessors).
14966
14967 2007-11-16 Glenn Morris <rgm@gnu.org>
14968
14969 * mail/mail-extr.el (mail-extr-all-top-level-domains): Update domains.
14970
14971 2007-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14972
14973 * calc/calc-lang.el (math-oper-table): Fix typo.
14974 Reduce precedence of "/" for TeX.
14975
14976 * calc/calc-menu.el (calc-modes-menu): Add Languages submenu.
14977
14978 2007-11-16 Juri Linkov <juri@jurta.org>
14979
14980 * dired-aux.el (dired-read-shell-command-default): New function.
14981 (dired-read-shell-command): Use its return value for DEFAULT arg.
14982
14983 * replace.el (keep-lines-read-args, occur-read-primary-args):
14984 Use a list of default values for DEFAULT arg of read-from-minibuffer.
14985
14986 * man.el (Man-heading-regexp): Add 0-9.
14987 (Man-first-heading-regexp): Remove leading space [ \t]* before NAME.
14988
14989 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
14990
14991 * doc-view.el (doc-view-ghostscript-options): Remove resolution arg.
14992 (doc-view-resolution): New custom var.
14993 (doc-view-pdf/ps->png): Use it.
14994 (doc-view-shrink-factor): New var.
14995 (doc-view-enlarge, doc-view-shrink): New commands.
14996 (doc-view-mode-map): Use them.
14997
14998 2007-11-15 Juanma Barranquero <lekktu@gmail.com>
14999
15000 * ediff-wind.el (ediff-window-setup-function):
15001 * simple.el (normal-erase-is-backspace):
15002 * eshell/em-unix.el (eshell/info):
15003 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
15004 Fix typos in docstrings.
15005
15006 * emulation/cua-base.el (cua--keymaps-initialized):
15007 Rename from `cua--keymaps-initalized'. Callers changed.
15008 (cua-highlight-region-shift-only): Doc fix.
15009 (cua-paste-pop): Fix typo in docstring.
15010
15011 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * emulation/cua-base.el (cua--pre-command-handler-1):
15014 Use input-decode-map instead of function-key-map.
15015 Use event-modifiers now that it works reliably.
15016
15017 * vc.el (vc-diff-internal): Pop-to-buffer later.
15018
15019 * subr.el (event-modifiers): Use internal-event-symbol-parse-modifiers.
15020
15021 * pcvs.el (cvs-revert-if-needed): Ignore `unknown' files, since cvs
15022 did not touch them.
15023
15024 2007-11-15 Jay Belanger <jay.p.belanger@gmail.com>
15025
15026 * calc/calc-menu.el: New file.
15027 * calc/calc.el (calc-mode): Require calc-menu.
15028
15029 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
15030
15031 * isearch-multi.el (isearch-buffers-next-buffer-function): Doc fix.
15032
15033 2007-11-14 Nick Roberts <nickrob@snap.net.nz>
15034
15035 * progmodes/gdb-ui.el (gdb-parent-bptno-enabled): New variable.
15036 (gdb-breakpoint-regexp, gdb-mouse-toggle-breakpoint-margin)
15037 (gdb-mouse-toggle-breakpoint-fringe, gdb-delete-breakpoint)
15038 (gdb-goto-breakpoint): Generalise for breakpoints with multiple
15039 locations.
15040 (gdb-info-breakpoints-custom, gdb-assembler-custom)
15041 (gdb-toggle-breakpoint): Update for new gdb-breakpoint-regexp.
15042 (gdb-put-breakpoint-icon): Only display icon for parent breakpoint.
15043
15044 2007-11-13 Noah Friedman <friedman@splode.com>
15045
15046 * calc/calc.el: Add `backward-delete-char-untabify' to the list of
15047 bindings to remap when `calc-scan-for-dels' is non-nil.
15048
15049 2007-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
15050
15051 * emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
15052 constant forms.
15053 (byte-compile-nilconstp): New function.
15054 (byte-optimize-cond): Kill subsequent branches when a branch is
15055 know to be taken or not taken.
15056 (byte-optimize-if): Use byte-compile-nilconstp instead of hand coding.
15057
15058 2007-11-13 Dan Nicolaescu <dann@ics.uci.edu>
15059
15060 * vc.el (vc-register): Allow registering a file passed as a
15061 parameter instead of just the current buffer.
15062
15063 2007-11-12 Michael Albinus <michael.albinus@gmx.de>
15064
15065 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
15066 Check whether the output of "uname -sr" has been changed.
15067
15068 2007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15069
15070 * progmodes/compile.el (compilation-error-regexp-alist-alist): Insert
15071 patterns from compilation-perl.el and compilation-weblint.el files.
15072
15073 2007-11-12 Dan Nicolaescu <dann@ics.uci.edu>
15074
15075 * progmodes/compilation-perl.el:
15076 * progmodes/compilation-weblint.el: Disable autoloads, they cause
15077 a bootstrap failure.
15078
15079 * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them
15080 instead of doing "cvs diff" in order to avoid accessing the repository.
15081
15082 2007-11-12 Kevin Ryde <user42@zip.com.au>
15083
15084 * progmodes/compilation-perl.el:
15085 * progmodes/compilation-weblint.el: New files.
15086
15087 2007-11-11 Juanma Barranquero <lekktu@gmail.com>
15088
15089 * international/iso-cvt.el (iso-translate-conventions): Doc fix.
15090 (iso-aggressive-german-trans-tab, iso-conservative-german-trans-tab)
15091 (iso-tex2iso-trans-tab, iso-gtex2iso-trans-tab): Reflow docstring.
15092 (iso-spanish, iso-german, iso-iso2tex, iso-tex2iso, iso-gtex2iso)
15093 (iso-iso2gtex, iso-iso2duden, iso-iso2sgml, iso-sgml2iso):
15094 Rewrite in active voice.
15095
15096 2007-11-11 Tassilo Horn <tassilo@member.fsf.org>
15097
15098 * doc-view.el: Add comments about isearch support.
15099
15100 2007-11-11 Dan Nicolaescu <dann@ics.uci.edu>
15101
15102 * vc.el (vc-start-entry): Fix setting the in the case the function
15103 is called from vc-dired. Use when instead of if where appropriate.
15104
15105 2007-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15106
15107 * ps-print.el (ps-do-despool): Do not force ps-lpr-switches
15108 to be a list.
15109 (ps-begin-job): Error if ps-lpr-switches is not a list.
15110
15111 2007-11-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15112
15113 * faces.el (face-normalize-spec): Remove function.
15114 (frame-set-background-mode): Undo last change.
15115
15116 2007-11-10 Jason Rumney <jasonr@gnu.org>
15117
15118 * w32-fns.el: Sync charset names with setup-default-fontset.
15119 Append "-1" where second part missing.
15120
15121 2007-11-10 Juri Linkov <juri@jurta.org>
15122
15123 * isearch.el (isearch-mode-end-hook, isearch-mode-end-hook-quit):
15124 Fix docstring. Reported by Leo <sdl.web@gmail.com>.
15125
15126 * custom.el (custom-note-var-changed): Remove the `interactive'
15127 spec from this new non-interactive function.
15128
15129 2007-11-10 Tassilo Horn <tassilo@member.fsf.org>
15130
15131 * doc-view.el (doc-view-mode-map, doc-view-menu)
15132 (doc-view-pdf->txt-sentinel): Adapt to new search UI.
15133 (doc-view-search-backward): New function.
15134 (doc-view-search): Query new regexp if prefix arg is given, else
15135 jump to next/previous match.
15136 (doc-view-mode): Handle compressed files.
15137 (jka-compr): Required for compressed files.
15138
15139 2007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
15140
15141 * replace.el (query-replace-show-replacement): New defcustom.
15142 (perform-replace): Use `match-substitute-replacement' if
15143 `query-replace-show-replacement' is non-nil.
15144
15145 2007-11-10 David Kastrup <dak@gnu.org>
15146
15147 * subr.el (match-substitute-replacement): New function.
15148
15149 2007-11-10 Carsten Dominik <dominik@science.uva.nl>
15150
15151 * files.el (auto-mode-alist): Select org-mode for files with the
15152 extension ".org".
15153
15154 2007-11-10 Martin Rudalics <rudalics@gmx.at>
15155
15156 * help.el (help-window, help-window-point-marker): New variables.
15157 (help-window-select): New option.
15158 (with-help-window): New macro for displaying help windows.
15159 (help-window-display-message, help-window-setup-finish)
15160 (help-window-setup): New functions used for setting up help windows.
15161 (print-help-return-message): Reset help-window to nil.
15162 (view-lossage): Use with-help-window instead of
15163 with-output-to-temp-buffer and move help-window-point-marker after
15164 inserted text.
15165 (describe-bindings, describe-key, describe-mode): Use
15166 with-help-window instead of with-output-to-temp-buffer.
15167
15168 * help-mode.el (help-mode): Set view-exit-action to bury the
15169 buffer instead of fiddling with windows. Simplify code.
15170 (help-mode-finish): When help-window eqs t set it to the selected
15171 window and have with-help-window set up view-return-to-alist.
15172 (help-buffer): Add autoload cookie.
15173
15174 * view.el (view-remove-frame-by-deleting): Change default value to t.
15175 Add autoload cookie.
15176 (view-exit-action, view-file, view-file-other-window)
15177 (view-file-other-frame, view-buffer, view-buffer-other-window)
15178 (view-buffer-other-frame): Rewrite doc strings.
15179 (view-return-to-alist-update): New function to remove stale entries
15180 from view-return-to-alist.
15181 (view-mode-enter): Rewrite doc string and simplify code.
15182 (view-mode-exit): Handle new case 'keep-frame. Don't reset
15183 view-exit-action to nil. Simplify code and rewrite doc string.
15184
15185 * apropos.el (apropos-describe-plist):
15186 * descr-text.el (describe-char):
15187 * disp-table.el (describe-display-table):
15188 * faces.el (list-faces-display, describe-face):
15189 * facemenu.el (list-colors-display):
15190 * help-fns.el (describe-function, describe-variable)
15191 (describe-syntax, describe-categories):
15192 Use with-help-window instead of with-output-to-temp-buffer.
15193
15194 2007-11-10 Dan Nicolaescu <dann@ics.uci.edu>
15195
15196 * emacs-lisp/byte-opt.el (byte-optimize-featurep):
15197 Optimize (featurep 'emacs) to t.
15198
15199 * emacs-lisp/bytecomp.el (byte-compile-find-bound-condition):
15200 New function.
15201 (byte-compile-maybe-guarded): Use it to also look for bound
15202 symbols inside `and' forms. Comment out non-working code that was
15203 trying to avoid warnings for XEmacs code.
15204
15205 * vc.el (vc-diff-internal): Make the *vc-diff* buffer read only.
15206
15207 * vc-svn.el (vc-svn-print-log, vc-svn-diff):
15208 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-annotate-command):
15209 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff)
15210 (vc-cvs-annotate-command):
15211 * vc-arch.el (vc-arch-diff): Remove test to check if start-process
15212 is bound, it always is.
15213
15214 2007-11-10 Jason Rumney <jasonr@gnu.org>
15215
15216 * term/w32-win.el (w32-initialize-window-system): Move SJIS font
15217 setup here from global scope.
15218
15219 2007-11-10 Juanma Barranquero <lekktu@gmail.com>
15220
15221 * ido.el (ido-save-history): Save the history file in UTF-8, not
15222 the current filename coding system.
15223
15224 2007-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
15225
15226 * simple.el (interprogram-cut-function, interprogram-paste-function):
15227 Don't make them frame-local any more.
15228
15229 * faces.el (x-create-frame-with-faces, tty-create-frame-with-faces):
15230 Don't set interprogram-(cut|paste)-function on each frame.
15231
15232 * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
15233 Make them work in tty frames.
15234 (interprogram-cut-function, interprogram-paste-function):
15235 Set them globally.
15236
15237 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15238
15239 * international/iso-cvt.el (iso-spanish, iso-german, iso-iso2tex)
15240 (iso-tex2iso, iso-gtex2iso, iso-iso2gtex, iso-iso2duden): Doc fixes.
15241 (iso-iso2duden-trans-tab): Add docstring.
15242
15243 2007-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
15244
15245 * abbrev.el (define-abbrev-table): Record the variable definition.
15246
15247 * emacs-lisp/bytecomp.el (byte-compile-file-form-define-abbrev-table):
15248 New function.
15249
15250 2007-11-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15251
15252 * ps-print.el: Clean the code for checking suitable Emacs version.
15253 (ps-do-despool): If ps-lpr-switches is not a list, force it to be one.
15254 (ps-print-version): New version 6.8.1.
15255
15256 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15257
15258 * files.el (enable-local-variables): Doc fix.
15259
15260 2007-11-09 Nick Roberts <nickrob@snap.net.nz>
15261
15262 * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code.
15263
15264 2007-11-09 Sven Joachim <svenjoac@gmx.de>
15265
15266 * dired-aux.el (dired-copy-file-recursive):
15267 Preserve directory permissions.
15268
15269 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15270
15271 * whitespace.el (whitespace-write-file-hook): Remove interactive spec.
15272 (whitespace-unload-function): New-style unload function. When run,
15273 unintern `whitespace-unload-hook' and call `unload-feature' recursively
15274 to stop the old hook from messing with the unloading.
15275
15276 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15277
15278 * emacs-lisp/elp.el (elp-report-limit, elp-restore-all)
15279 (elp-unset-master, elp-results): Fix typos.
15280 (elp-sort-by-function, elp-use-standard-output, elp-recycle-buffers-p):
15281 Doc fixes.
15282
15283 * msb.el (msb--many-menus): Remove variable.
15284 (msb-max-menu-items, msb--add-to-menu): Doc fixes.
15285 (msb-menu-cond, msb-item-handling-function, msb--create-function-info)
15286 (msb--toggle-menu-type): Fix typos in docstrings.
15287
15288 * shadowfile.el (shadow-inhibit-overload, shadow-remove-from-todo)
15289 (shadow-insert-var): Doc fixes.
15290 (shadow-file-match, shadow-define-cluster, shadow-define-regexp-group):
15291 Reflow docstrings.
15292 (shadow-parse-fullname, shadow-read-files): Fix typos in docstrings.
15293
15294 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15295
15296 * ediff-hook.el (ediff, ediff-files, ediff-buffers, ebuffers, ediff3)
15297 (ediff-files3, ediff-buffers3, ebuffers3, erevision, ediff-revision):
15298 Fix typos in autoload docstrings.
15299
15300 2007-11-09 Richard Stallman <rms@gnu.org>
15301
15302 * savehist.el (savehist-save): Obey savehist-ignored-variables.
15303
15304 2007-11-09 Nick Roberts <nickrob@snap.net.nz>
15305
15306 * progmodes/gdb-ui.el (gdb-delete-out-of-scope): New option.
15307 (gdb-var-update-handler-1): Use it.
15308
15309 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15310
15311 * loadhist.el (unload-feature): Remove erroneous check for the
15312 FEATURE-unload-function variable; check the existence of the
15313 function (that's what the docstring says, and it makes more sense).
15314
15315 * follow.el (follow-unload-function): Add docstring.
15316 (follow-unload-function): Remove variable.
15317
15318 * server.el (server-unload-function): Remove variable.
15319 (server-unload-function): Unbind `server-edit' from `C-x #'.
15320
15321 * ses.el (ses-unload-function): New function.
15322
15323 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
15324
15325 * emacs-lisp/unsafep.el (unsafep, unsafep-function)
15326 (unsafep-progn, unsafep-let): Fix typos in docstrings.
15327
15328 * uniquify.el (uniquify-maybe-rerationalize-w/o-cb): Define it
15329 before use to avoid a warning in packages that require uniquify.
15330 (uniquify-unload-function): New function and var.
15331
15332 2007-11-09 Dan Nicolaescu <dann@ics.uci.edu>
15333
15334 * ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
15335 (ediff-has-face-support-p, ediff-BAD-INFO, ediff-check-version)
15336 (ediff-current-diff-A, ediff-current-diff-B)
15337 (ediff-current-diff-C, ediff-fine-diff-C, ediff-fine-diff-A)
15338 (ediff-fine-diff-B, ediff-fine-diff-Ancestor, ediff-even-diff-A)
15339 (ediff-even-diff-B, ediff-even-diff-C, ediff-even-diff-Ancestor)
15340 (ediff-odd-diff-A, ediff-odd-diff-B, ediff-odd-diff-C)
15341 (ediff-odd-diff-Ancestor, ediff-reset-mouse):
15342 * ediff-wind.el (ediff-narrow-control-frame-leftward-shift)
15343 (ediff-setup-windows-plain-merge)
15344 (ediff-setup-windows-plain-compare, ediff-setup-control-frame)
15345 (ediff-refresh-control-frame, ediff-get-visible-buffer-window):
15346 * ediff-util.el (ediff-setup-keymap, )
15347 (ediff-toggle-wide-display, ediff-toggle-multiframe)
15348 (ediff-toggle-use-toolbar, ediff-really-quit)
15349 (ediff-good-frame-under-mouse)
15350 (ediff-highlight-diff-in-one-buffer)
15351 (ediff-remove-flags-from-buffer, ediff-place-flags-in-buffer1)
15352 (ediff-make-bullet-proof-overlay):
15353 * ediff-mult.el (ediff-setup-meta-map, ediff-emacs-p)
15354 (ediff-set-meta-overlay):
15355 * ediff-help.el (ediff-help-region-map, ediff-set-help-overlays):
15356 * ediff.el (ediff-documentation): Replace ediff-xemacs-p and
15357 ediff-emacs-p with their former definitions.
15358
15359 * emulation/viper-init.el (viper-xemacs-p, viper-emacs-p): Remove.
15360 (viper-has-face-support-p, viper-inactivate-input-method)
15361 (viper-activate-input-method)
15362 (viper-use-replace-region-delimiters, viper-restore-cursor-type):
15363 * emulation/viper-mous.el (viper-multiclick-timeout)
15364 (viper-surrounding-word, viper-mouse-click-insert-word)
15365 (viper-mouse-click-search-word, viper-parse-mouse-key):
15366 * emulation/viper-macs.el (viper-char-array-to-macro):
15367 * emulation/viper.el (viper-go-away, viper-set-hooks)
15368 (viper-non-hook-settings):
15369 * emulation/viper-util.el (viper-get-saved-cursor-color-in-replace-mode)
15370 (viper-get-saved-cursor-color-in-insert-mode)
15371 (viper-get-saved-cursor-color-in-emacs-mode)
15372 (viper-check-version, viper-get-visible-buffer-window)
15373 (viper-file-checked-in-p, viper-set-replace-overlay)
15374 (viper-set-replace-overlay-glyphs, viper-set-minibuffer-overlay)
15375 (viper-check-minibuffer-overlay, viper-read-key-sequence)
15376 (viper-key-to-emacs-key): Replace viper-xemacs-p and viper-emacs-p
15377 with their former definitions.
15378 (viper-eventify-list-xemacs): Only do work for XEmacs.
15379 (viper-set-unread-command-events): Only do work for Emacs.
15380 (viper-overlay-p, viper-make-overlay, viper-overlay-live-p)
15381 (viper-move-overlay, viper-overlay-start, viper-overlay-end)
15382 (viper-overlay-get, viper-overlay-put, viper-read-event)
15383 (viper-characterp, viper-int-to-char, viper-get-face)
15384 (viper-color-defined-p, viper-iconify): New defaliases replacing
15385 the old fsets.
15386
15387 * progmodes/fortran.el (comment-region-function)
15388 (uncomment-region-function): Pacify byte compiler.
15389
15390 * vc.el (vc-diff-internal): Remove code for an old version of gnus.
15391
15392 2007-11-08 Michael Albinus <michael.albinus@gmx.de>
15393
15394 * net/tramp.el (tramp-maybe-open-connection): Use a local copy of
15395 `process-environment'.
15396
15397 2007-11-08 David Hansen <david.hansen@gmx.net> (tiny change)
15398
15399 * eshell/em-dirs.el (eshell-expand-multiple-dots): Change regexp to
15400 match dir like "a...b".
15401
15402 2007-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
15403
15404 * smerge-mode.el (smerge-refine-subst): Pass "-d" to diff.
15405
15406 2007-11-07 Michael Albinus <michael.albinus@gmx.de>
15407
15408 * net/tramp.el (tramp-handle-substitute-in-file-name):
15409 Don't expand the remote connection identification.
15410 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15411 Set also $PS2 and $PS3 when setting $PS1. Check for shell echoing
15412 before calling stty.
15413
15414 * net/tramp-cache.el (tramp-cache-print)
15415 (tramp-dump-connection-properties): Fix docstring.
15416 (tramp-list-connections): Rename from `tramp-cache-list-connections'.
15417
15418 * net/tramp-cmds.el (tramp-cleanup-connection): Apply it.
15419
15420 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Don't expand the
15421 remote connection identification when setting connection property.
15422
15423 * net/tramp-smb.el (tramp-smb-handle-substitute-in-file-name):
15424 "//" substitutes only in the local filename part.
15425
15426 2007-11-07 David Hansen <david.hansen@gmx.net>
15427
15428 * eshell/em-glob.el (eshell-extended-glob): Sort matches.
15429
15430 2007-11-07 Glenn Morris <rgm@gnu.org>
15431
15432 * emulation/tpu-mapper.el (tpu-map-key): Use unless rather than cond.
15433 Remove superfluous concats. Move final set-buffer to
15434 non-emacs-specific code.
15435
15436 2007-11-07 Rob Riepel <riepel@networking.stanford.edu>
15437
15438 * emulation/tpu-mapper.el (tpu-map-key): Remove un-needed cond branch.
15439
15440 2007-11-07 Johan Bockgård <bojohan@gnu.org>
15441
15442 * eshell/esh-mode.el (eshell-output-filter):
15443 * eshell/esh-proc.el (eshell-insertion-filter, eshell-sentinel):
15444 Use `with-current-buffer'.
15445
15446 2007-11-07 Andreas Schwab <schwab@suse.de>
15447
15448 * server.el (server-start): Only register cleanup after server was
15449 started.
15450
15451 2007-11-06 Michael Albinus <michael.albinus@gmx.de>
15452
15453 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
15454
15455 * net/tramp-cache.el (tramp-cache-print): Move down.
15456 (tramp-cache-list-connections): New defun.
15457
15458 * net/tramp-cmds.el (tramp-cleanup-connection): Use it.
15459
15460 2007-11-06 Juanma Barranquero <lekktu@gmail.com>
15461
15462 * ido.el (ido-save-history): Write the history file in the current
15463 filename coding system, and add `coding' file-local variable.
15464
15465 2007-11-06 Carsten Dominik <dominik@science.uva.nl>
15466
15467 * textmodes/org.el (org-table-formula-substitute-names):
15468 Remove forgotten temporary debugging code.
15469
15470 2007-11-05 Michael Albinus <michael.albinus@gmx.de>
15471
15472 * net/tramp.el (tramp-wait-for-output): Ignore escape sequences in
15473 the prompt.
15474
15475 2007-10-05 Chris Moore <christopher.ian.moore@gmail.com>
15476
15477 * wdired.el (wdired-use-dired-vertical-movement): Doc fix.
15478
15479 2007-11-05 Simon Josefsson <simon@josefsson.org>
15480
15481 * net/tls.el (tls-end-of-info): Doc fix.
15482
15483 2007-11-05 Kenichi Handa <handa@ni.aist.go.jp>
15484
15485 * international/utf-7.el (utf-7-imap): New coding system.
15486 (utf-7-imap-post-read-conversion): New function.
15487 (utf-7-imap-pre-write-conversion): New function.
15488
15489 2007-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
15490
15491 * abbrev.el (abbrev--write): Fix up typo.
15492
15493 2007-11-04 Juanma Barranquero <lekktu@gmail.com>
15494
15495 * abbrev.el (define-abbrev-table): Doc fix.
15496
15497 2007-11-04 Thien-Thi Nguyen <ttn@gnuvola.org>
15498
15499 * info.el (Info-revert-buffer-function): New func.
15500 (Info-mode): Arrange to use it for reverting.
15501 (Info-copy-current-node-name): Add space between filename and nodename.
15502
15503 2007-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
15504
15505 * abbrev.el (expand-abbrev): Move point back to expansion's end.
15506
15507 2007-11-04 Glenn Morris <rgm@gnu.org>
15508
15509 * net/tls.el: Don't require rx when compiling.
15510 (tls-end-of-info): Rewrite without using rx.
15511 (open-tls-stream): Use with-current-buffer.
15512
15513 2007-11-04 Riccardo Murri <riccardo.murri@gmail.com>
15514
15515 * net/tls.el: Require rx when compiling.
15516 (tls-end-of-info): New variable.
15517 (open-tls-stream): Keep reading input until `tls-end-of-info' is
15518 matched.
15519
15520 2007-11-03 Sean O'Rourke <seano@cs.ucla.edu>
15521
15522 * register.el (append-to-register, prepend-to-register):
15523 Don't signal error on empty register; use the text, instead.
15524
15525 2007-11-03 Michael Olson <mwolson@gnu.org>
15526
15527 * textmodes/remember.el (remember-buffer):
15528 Use define-obsolete-function-alias rather than defalias.
15529
15530 2007-11-03 Ulrich Mueller <ulm@gentoo.org> (tiny change)
15531
15532 * simple.el (bad-packages-alist): Anchor semantic regexp.
15533
15534 2007-11-03 Glenn Morris <rgm@gnu.org>
15535
15536 * newcomment.el (comment-dwim): Call comment-insert-comment-function,
15537 if defined, for blank lines. Doc fix.
15538
15539 * progmodes/fortran.el (fortran-mode-map): Don't bind M-;.
15540 (fortran-mode): Set values for comment-region-function,
15541 uncomment-region-function and comment-insert-comment-function.
15542 (fortran-uncomment-region): New function.
15543
15544 * textmodes/nroff-mode.el (nroff-mode):
15545 Set comment-insert-comment-function rather than indent-line-function.
15546 (nroff-indent-line-function): Remove.
15547 (nroff-insert-comment-function): New function.
15548
15549 2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
15550
15551 * ediff-vers.el (ediff-vc-working-revision): Add a quote.
15552
15553 2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
15554
15555 * emulation/viper-ex.el (viper-ex): Do not ignore the region.
15556
15557 * emulation/viper-cmd.el (viper-prev-destructive-command)
15558 (viper-insert-prev-from-insertion-ring): Use ring-copy instead of
15559 copy-sequence.
15560
15561 * ediff-util.el (ediff-make-current-diff-overlay): Do not use face-name.
15562 Got rid of ediff-copy-list.
15563
15564 * ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): Do not
15565 use face-name.
15566 (ediff-test-utility, ediff-diff-mandatory-option)
15567 (ediff-reset-diff-options): Remove to simplify the mandatory option
15568 handling on Windows.
15569 (ediff-set-diff-options): Add.
15570 (ediff-diff-options): Set "--binary" option as default in some cases.
15571
15572 * ediff-vers.el (ediff-vc-internal): Use ediff-vc-revision-other-window.
15573 (ediff-vc-merge-internal): Use ediff-vc-revision-other-window and
15574 ediff-vc-working-revision. Require vc-hooks.
15575
15576 2007-11-02 Drake Wilson <drake@begriffli.ch> (tiny change)
15577
15578 * files.el (hack-local-variables): Fix membership tests to avoid
15579 treating all variables as safe if `enable-local-variables' is
15580 set to :safe (CVE-2007-5795).
15581
15582 2007-11-02 Glenn Morris <rgm@gnu.org>
15583
15584 * newcomment.el (comment-indent): Let comment-insert-comment-function,
15585 if defined, do all the work of inserting a new comment.
15586
15587 * progmodes/etags.el (tags-table-mode): Disable undo.
15588
15589 * simple.el (bad-packages-alist): Revert previous change.
15590
15591 2007-11-02 Dan Nicolaescu <dann@ics.uci.edu>
15592
15593 * emacs-lisp/lselect.el: Move to obsolete/lselect.el.
15594
15595 * obsolete/lselect.el: Do not warn about unknown functions.
15596
15597 2007-11-02 Michael Olson <mwolson@gnu.org>
15598
15599 * textmodes/remember.el (remember-buffer): Make this an alias of
15600 remember-finalize, because Org uses it.
15601
15602 2007-11-01 Michael Olson <mwolson@gnu.org>
15603
15604 * textmodes/remember.el: Improve documentation in heading.
15605 (remember-before-remember-hook): Turn into a customizable option.
15606 (remember): Document INITIAL argument.
15607 (remember-region): Remove autoload cookie. Improve docstring to
15608 mention that it is called from the *Remember* buffer, and does not
15609 have any functional overlap with the `remember' function.
15610 (remember-finalize): Remove autoload cookie. Rename from
15611 remember-buffer to emphasize that this does not have any
15612 functional overlap with the `remember' function.
15613 (remember-destroy): Remove autoload cookie.
15614 (remember-mode-map): Define and initialize in one step.
15615 (remember-mode): Improve docstring.
15616 (remember-annotation-functions): Default to just '(buffer-file-name),
15617 and don't try to take the default value from Planner.
15618
15619 2007-11-01 Glenn Morris <rgm@gnu.org>
15620
15621 * doc-view.el (doc-view-cache-directory): Remove superfluous concat.
15622
15623 * simple.el (bad-packages-alist): Add an entry for standalone vc-svn.
15624
15625 * emacs-lisp/authors.el (authors-scan-change-log)
15626 (authors-scan-el): Don't enable local eval; enable only safe local
15627 variables, without querying.
15628
15629 * mail/footnote.el (footnote-numeric-regexp)
15630 (footnote-english-upper-regexp, footnote-english-lower-regexp)
15631 (footnote-roman-lower-regexp, footnote-roman-upper-regexp):
15632 Match multi-character footnotes.
15633
15634 * textmodes/nroff-mode.el (nroff-mode): Set indent-line-function.
15635 (nroff-indent-line-function): New function.
15636 (nroff-count-text-lines): Use nroff-forward-text-line rather than
15637 obsolete alias.
15638
15639 2007-11-01 Ryan Yeske <rcyeske@gmail.com>
15640
15641 * net/rcirc.el (rcirc-last-quit-line, rcirc-last-line)
15642 (rcirc-elapsed-lines): New argument PROCESS. Update callers.
15643 (rcirc-print): Only update the line count when not marking the
15644 line as omittable.
15645 (rcirc-log-write): Specify coding system when writing logfile.
15646 (rcirc-markup-fill): Make sure ellipsis does not cause line to wrap.
15647
15648 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
15649
15650 * printing.el (printing): Fix :version, printing.el was included
15651 for in emacs-22.1.
15652 (pr-path-style, pr-path-alist, pr-txt-name)
15653 (pr-txt-printer-alist, pr-ps-name, pr-ps-printer-alist)
15654 (pr-temp-dir, pr-ps-temp-file, pr-file-modes, pr-gv-command)
15655 (pr-gs-command, pr-gs-switches, pr-gs-device, pr-gs-resolution)
15656 (pr-print-using-ghostscript, pr-file-tumble, pr-auto-region)
15657 (pr-auto-mode, pr-mode-alist, pr-ps-utility)
15658 (pr-ps-utility-alist, pr-menu-char-height, pr-menu-char-width)
15659 (pr-setting-database, pr-visible-entry-list)
15660 (pr-delete-temp-file, pr-list-directory, pr-buffer-name)
15661 (pr-buffer-name-ignore, pr-buffer-verbose): Remove incorrect :version.
15662
15663 * ediff-util.el (ediff-nuke-selective-display): Move definition to
15664 top level, make it dependent on the emacs flavor.
15665
15666 * play/gamegrid.el (gamegrid-kill-timer, gamegrid-start-timer):
15667 Test for XEmacs not for itimer.
15668
15669 * term/sun-mouse.el:
15670 * obsolete/sun-fns.el:
15671 * obsolete/sun-curs.el: Remove files.
15672
15673 * term/sun.el (select-previous-complex-command): Remove obsolete code.
15674
15675 2007-10-31 Tassilo Horn <tassilo@member.fsf.org>
15676
15677 * doc-view.el (doc-view-cache-directory): Fix bug where an integer
15678 was given to concat.
15679
15680 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15681
15682 * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
15683 used normally for goto-line. Change `g' to revert the buffer.
15684 Add redundant `r' binding for buffer-revert.
15685
15686 * mail/mailabbrev.el (mail-abbrevs-mode): Use define-minor-mode.
15687 (mail-abbrevs-setup): Use abbrev-expand-functions.
15688 (build-mail-abbrevs): Use with-temp-buffer.
15689 (define-mail-abbrev): Simplify.
15690 (mail-abbrev-expand-wrapper): Rename sendmail-pre-abbrev-expand-hook.
15691 Change it for use on abbrev-expand-functions.
15692 (mail-abbrev-complete-alias): Use with-syntax-table.
15693
15694 2007-10-31 Michael Albinus <michael.albinus@gmx.de>
15695
15696 * net/tramp.el (tramp-handle-shell-command): Call `start-file-process'
15697 directly. Fix bug in deleting temp file.
15698
15699 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15700
15701 * progmodes/python.el (python-mode-abbrev-table): Use :regexp.
15702 Merge defvar and define-abbrev-table.
15703 (def-python-skeleton): Use :case-fixed and :enable-function.
15704 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
15705 Remove.
15706 (python-mode): Don't modify pre-abbrev-expand-hook.
15707
15708 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
15709
15710 * ediff-util.el (ediff-file-checked-out-p)
15711 (ediff-file-checked-in-p): Only call vc-locking-user for XEmacs.
15712
15713 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15714
15715 * abbrev.el (abbrev-symbol): Correct let->let*.
15716 (abbrev--before-point): Only use abbrev-start-location if before point.
15717
15718 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
15719
15720 * strokes.el (strokes-alphabetic-lessp): Simplify. Doc fix.
15721 (strokes-unload-hook): Remove function and variable.
15722 (strokes-unload-function): New-style unload function, adapted
15723 from `strokes-unload-hook'.
15724
15725 * emacs-lisp/cl.el (cl-cannot-unload): Remove function.
15726 (cl-unload-hook): Remove variable.
15727 (cl-unload-function): New-style unload function, adapted
15728 from `cl-cannot-unload'.
15729
15730 * emacs-lisp/elp.el (elp-unload-hook): Remove function and variable.
15731 (elp-unload-function): New-style unload function, adapted
15732 from `elp-unload-hook'.
15733
15734 2007-10-31 Sean O'Rourke <sorourke@cs.ucsd.edu>
15735
15736 * emacs-lisp/find-func.el (find-library): Use library at
15737 point as default interactive argument.
15738
15739 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
15740
15741 * shadowfile.el (shadow-join): Remove.
15742 (shadow-shadows): Use `mapconcat' instead of `shadow-join'.
15743 (shadow-initialize): Use `write-file-functions', not `write-file-hooks'.
15744 (shadowfile-unload-hook): Remove function and variable.
15745 (shadowfile-unload-function): New-style unload function, adapted
15746 from `shadowfile-unload-hook'.
15747
15748 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
15749
15750 * progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
15751 only if it is bound.
15752
15753 * textmodes/reftex.el: Move autoloads for before all uses.
15754 (reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
15755 (reftex-delete-overlay): Move to the top level with the condition
15756 in the body.
15757
15758 * progmodes/simula.el: Use when instead of if.
15759
15760 * iimage.el (iimage-locate-file): Define unconditionally.
15761
15762 * mail/mailabbrev.el (mail-abbrev-next-line):
15763 * emulation/vip.el (vip-enlarge-region, vip-line)
15764 (vip-next-line-at-bol, vip-previous-line)
15765 (vip-previous-line-at-bol, vip-find-char, vip-put-back, ex-read):
15766 Wrap with-no-warnings around uses of next-line and previous-line.
15767
15768 * ediff.el (run-ediff-from-cvs-buffer):
15769 * ediff-vers.el (cvs-run-ediff-on-file-descriptor):
15770 Remove function not used by pcl-cvs anymore.
15771 (noninteractive, generic-sc-get-latest-rev)
15772 (ediff-generic-sc-internal, ediff-generic-sc-merge-internal):
15773 Delete support for long obsolete generic-sc.el.
15774
15775 2007-10-31 Glenn Morris <rgm@gnu.org>
15776
15777 * cvs-status.el: No longer require pcvs when compiling.
15778
15779 * doc-view.el (doc-view-conversion-refresh-interval)
15780 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
15781 (doc-view-reset-slice): Doc fixes.
15782 (doc-view-menu): Remove deleted function doc-view-edit-doc.
15783
15784 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
15785
15786 * help-at-pt.el (help-at-pt-unload-hook): Remove.
15787 Timers are automatically canceled by `unload-feature'.
15788
15789 * delsel.el (delsel-unload-hook): Remove function and variable.
15790 (delsel-unload-function): New-style unload function, adapted
15791 from `delsel-unload-hook'.
15792
15793 * msb.el (msb-unload-hook): Remove function and variable.
15794 (msb-unload-function): New-style unload function, adapted from
15795 `msb-unload-hook'.
15796
15797 2007-10-30 Juanma Barranquero <lekktu@gmail.com>
15798
15799 * desktop.el (uniquify-managed): Pacify byte compiler.
15800 (desktop-buffer-info): If the buffer name is managed by uniquify,
15801 save the base name, not the uniquified one.
15802 (desktop-create-buffer): Allow `rename-buffer' to generate a new
15803 name in case of conflict.
15804
15805 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15806
15807 * doc-view.el: Use expand-file-name rather than concat.
15808 (doc-view-cache-directory): Add the UID so multiple users won't clash.
15809 (doc-view-current-overlay, doc-view-pending-cache-flush): New vars.
15810 (doc-view-goto-page, doc-view-insert-image, doc-view-buffer-message)
15811 (doc-view-toggle-display): Use an overlay over the whole buffer so as
15812 not to have to touch the buffer's content.
15813 (doc-view-initiate-display): New function, extracted from doc-view-mode.
15814 (doc-view-mode): Use it. Don't mark as a special mode.
15815 Put the page numbers in the modeline.
15816 Set up the overlay. Hide the cursor. Run the mode hook.
15817 Use after-revert-hook rather than revert-buffer-function.
15818 (doc-view-search-internal): Fix typo.
15819 (doc-view-convert-current-doc, doc-view-insert-image): Delay the
15820 image-cache flush.
15821 (doc-view-reconvert-doc): Don't reset the whole mode.
15822 (doc-view-make-safe-dir): New function.
15823 (doc-view-current-cache-dir): Use it.
15824
15825 2007-10-30 Jason Rumney <jasonr@gnu.org>
15826
15827 * time.el (display-time-world-list): Test for zoneinfo support.
15828
15829 2007-10-30 Michael Albinus <michael.albinus@gmx.de>
15830
15831 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
15832
15833 * net/tramp-cache.el (tramp-flush-file-function): Check also
15834 `default-directory' if `buffer-file-name' does not return a
15835 string. Added to `eshell-pre-command-hook'.
15836
15837 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15838
15839 * doc-view.el (doc-view-current-doc): Remove.
15840 Replace all uses by buffer-file-name.
15841 (doc-view-menu): New menu.
15842 (doc-view-reconvert-doc): Don't bind inhibit-read-only and remove
15843 unused var `doc'.
15844 (doc-view-sort): Simplify.
15845 (doc-view-buffer-message): Don't change buffer-modified-p.
15846 (doc-view-mode): Change it here instead.
15847 Tighten scoping of prev-major-mode. Don't re-insert the file's content.
15848 Don't modify the global value of revert-buffer-function.
15849
15850 * image-mode.el (image-forward-hscroll, image-next-line, image-eol)
15851 (image-eob, image-mode, image-minor-mode, image-toggle-display-text)
15852 (image-toggle-display): Take overlays into account and don't assume
15853 point-min==1.
15854
15855 2007-10-30 Thien-Thi Nguyen <ttn@gnuvola.org>
15856
15857 * vc.el (vc-annotate): Fix omission bug:
15858 Specify value for vc-sentinel-movepoint.
15859
15860 2007-10-30 Michael Olson <mwolson@gnu.org>
15861
15862 * textmodes/remember.el (remember-mode-hook)
15863 (remember-handler-functions, remember-annotation-functions):
15864 Add additional items as options, including some Org functions.
15865
15866 2007-10-30 Tassilo Horn <tassilo@member.fsf.org>
15867
15868 * doc-view.el: Remove cl-dependency.
15869 (doc-view-buffer-message): Mention new binding K.
15870 (doc-view-convert-current-doc): Use function d-v-current-cache-dir
15871 instead of variable.
15872 (doc-view-current-cache-dir): Better cache dir naming.
15873 (doc-view-current-display): Remove variable.
15874 (doc-view-edit-doc, doc-view-display-maybe): Remove functions.
15875 (doc-view-kill-proc): Set converter process to nil.
15876 (doc-view-minor-mode): New minor mode.
15877 (doc-view-minor-mode-map): New keymap.
15878 (doc-view-mode): Remove text/image switching code. Use plain defun.
15879 (doc-view-mode-map): New binding K kills converter process.
15880 Remove C-c C-e binding.
15881 (doc-view-mode-text-map): Remove keymap.
15882 (doc-view-pdf/ps->png): Timer calls d-v-display instead of
15883 d-v-display-maybe.
15884 (doc-view-previous-major-mode): New variable.
15885 (doc-view-ps->pdf): Resort args to make ps2pdf happy.
15886 (doc-view-remove-if): New function.
15887 (doc-view-search-next-match, doc-view-search-previous-match): Use it.
15888 (doc-view-toggle-display): Toggle modes instead of display styles.
15889 (doc-view-reconvert-doc): Adapt to new way of doing things.
15890
15891 * progmodes/ps-mode.el (ps-mode-map): Enable doc-view-minor-mode.
15892
15893 2007-10-30 Glenn Morris <rgm@gnu.org>
15894
15895 * dirtrack.el (dirtrack-mode): Doc fix.
15896
15897 * shell.el (shell-dirtrack-verbose, shell-mode)
15898 (shell-directory-tracker, shell-dirtrack-mode): Doc fix.
15899
15900 * emacs-lisp/bytecomp.el (byte-compile-disable-warning)
15901 (byte-compile-enable-warning): Doc fix.
15902
15903 * emulation/tpu-mapper.el (tpu-map-key): Use with-no-warnings to
15904 suppress byte-opt warning.
15905
15906 2007-10-30 Dan Nicolaescu <dann@ics.uci.edu>
15907
15908 * emulation/edt.el (edt-emacs19-p, edt-x-emacs19-p)
15909 (edt-gnu-emacs19-p): Remove.
15910 (edt-emacs-variant, edt-window-system): Use feature 'emacs.
15911 (edt-xserver, edt-page-backward, edt-beginning-of-line)
15912 (edt-end-of-line-forward, edt-end-of-line-backward)
15913 (edt-one-word-forward, edt-one-word-backward, edt-character)
15914 (edt-line-forward, edt-next-line, edt-previous-line, edt-top)
15915 (edt-find-forward, edt-find-backward, edt-find-next-forward)
15916 (edt-find-next-backward, edt-reset, edt-advance, edt-backup)
15917 (edt-define-key, edt-bottom-check, edt-sentence-forward)
15918 (edt-sentence-backward, edt-paragraph-forward)
15919 (edt-paragraph-backward, edt-restore-key, edt-window-top)
15920 (edt-window-bottom, edt-scroll-window-forward-line)
15921 (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
15922 (edt-line-to-top-of-window, edt-paragraph-backward)
15923 (edt-restore-key, edt-window-top, edt-window-bottom)
15924 (edt-scroll-window-forward-line)
15925 (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
15926 (edt-line-to-middle-of-window, edt-goto-percentage)
15927 (edt-display-the-time, edt-remember, edt-split-window)
15928 (edt-emulation-on, edt-emulation-off)
15929 (edt-default-emulation-setup, edt-user-emulation-setup)
15930 (edt-select-default-global-map, edt-select-user-global-map):
15931 Replace uses of edt-x-emacs19-p and edt-gnu-emacs19-p with feature
15932 tests.
15933
15934 * textmodes/reftex-index.el (reftex-index-selection-or-word):
15935 Use feature test instead of boundp test so it can be resolved at
15936 compile time.
15937
15938 * net/newsticker.el (replace-regexp-in-string): Only define for XEmacs.
15939
15940 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15941
15942 * abbrev.el: Rename `count' and `system-flag' to :count and :system.
15943 Update all users.
15944 (abbrev-get, abbrev-put): Simplify.
15945 (define-abbrev): Don't store the `force' value in the :system property.
15946 (abbrev--before-point): Obey the :enable-function of the abbrev as well.
15947
15948 2007-10-30 Michael Olson <mwolson@gnu.org>
15949
15950 * desktop.el (desktop-minor-mode-table): Add line for ERC.
15951
15952 * textmodes/remember.el: New file that implements a mode for
15953 quickly jotting down things to remember.
15954
15955 * textmodes/remember-diary.el: A backend for remember.el that
15956 implements saving notes to a Diary file.
15957
15958 2007-10-29 Ken Manheimer <ken.manheimer@gmail.com>
15959
15960 * allout.el (allout-command-prefix, allout-inhibit-auto-fill):
15961 Relocate in file.
15962 (allout-doublecheck-at-and-shallower): Increase to include
15963 slightly greater depths, since yank interaction is now ok.
15964 Also, elaborate the docstring to explain the situation.
15965 (produce-allout-mode-map, allout-hotspot-key-handler): Use vconcat
15966 instead of concat, so we accommodate key sequences expressed as
15967 vectors as well as strings and lists.
15968 (allout-flag-region, allout-hide-by-annotation): Make the
15969 hidden-text overlays 'front-advance.
15970 (allout-overlay-insert-in-front-handler): Correct docstring's grammar.
15971 (allout-aberrant-container-p, allout-on-current-heading-p)
15972 (allout-e-o-prefix-p, allout-next-heading)
15973 (allout-previous-heading, allout-goto-prefix)
15974 (allout-end-of-prefix, allout-next-sibling-leap)
15975 (allout-next-visible-heading, allout-auto-fill)
15976 (allout-rebullet-heading, allout-kill-line, allout-kill-topic)
15977 (allout-yank-processing, allout-resolve-xref)
15978 (allout-current-topic-collapsed-p, allout-hide-region-body)
15979 (allout-latex-verbatim-quote-curr-line, allout-encrypt-string)
15980 (allout-encrypted-topic-p, allout-next-topic-pending-encryption)
15981 (count-trailing-whitespace-region): Preserve match data, so allout
15982 outline navigation doesn't disrupt other Emacs operations.
15983 (allout-beginning-of-line): Retreat to the beginning of the hidden
15984 text, so fields are respected (for submodes that care).
15985 (allout-end-of-line): Preserve mark activation status when jumping.
15986 (allout-open-topic): Account for opening after a child that
15987 contains a hidden trailing newline. Preserve match data.
15988 Run allout-structure-added-hook
15989 (allout-encrypt-decrypted): Preserve match data.
15990 (allout-toggle-current-subtree-exposure): Add new interactive
15991 function for toggle subtree exposure - suggested by tassilo.
15992 (move-beginning-of-line, move-end-of-line): Don't use
15993 line-move-invisible-p, it's obsolete - substitute the code, instead.
15994
15995 2007-10-29 Dan Nicolaescu <dann@ics.uci.edu>
15996
15997 * textmodes/flyspell.el (message-signature-separator):
15998 * longlines.el (message-indent-citation-function): Pacify byte
15999 compiler.
16000
16001 * emacs-lisp/cl-loaddefs.el:
16002 * ldefs-boot.el: Regenerate.
16003
16004 * Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable.
16005 (.el.elc, compile, compile-always, compile-calc)
16006 ($(lisp)/progmodes/cc-mode.elc): Use it.
16007
16008 * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p):
16009 Only do work for XEmacs.
16010 (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs.
16011 (ps-xemacs-extent-sorter): Rename from ps-extent-sorter, only work
16012 on XEmacs.
16013 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
16014 (ps-x-color-name, ps-x-color-specifier-p)
16015 (ps-x-copy-coding-system, ps-x-device-class)
16016 (ps-x-extent-end-position, ps-x-extent-face)
16017 (ps-x-extent-priority, ps-x-extent-start-position)
16018 (ps-x-face-font-instance, ps-x-find-coding-system)
16019 (ps-x-font-instance-properties, ps-x-make-color-instance)
16020 (ps-x-map-extents, ps-e-face-bold-p, ps-e-face-italic-p)
16021 (ps-e-next-overlay-change, ps-e-overlays-at, ps-e-overlay-get)
16022 (ps-e-overlay-end, ps-e-x-color-values, ps-e-color-values):
16023 (ps-generate-postscript-with-faces): Delete defaliases.
16024 (ps-face-foreground-name, ps-face-background-name)
16025 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
16026 Move definitions to top level, make the body conditional on the Emacs
16027 flavor. Replace uses of deleted aliases and renamed functions.
16028 (ps-generate-postscript-with-faces, ps-color-device): Replace uses
16029 of deleted aliases and renamed functions.
16030
16031 * calc/calc.el (calc-emacs-type-lucid): Remove.
16032 (calc-digit-map, calcDigit-start, calc-read-key)
16033 (calc-clear-unread-commands):
16034 * calc/calc-ext.el (calc-user-key-map): Replace uses of
16035 calc-emacs-type-lucid with (featurep 'xemacs)
16036
16037 * emulation/tpu-mapper.el: Replace tpu-lucid-emacs19-p with
16038 (featurep 'xemacs).
16039 (tpu-lucid-emacs19-p): Remove.
16040 (tpu-map-key): Make it a function instead of using fset. Inline
16041 tpu-emacs-map-key and tpu-lucid-map-key. Use featurep 'xemacs.
16042 (tpu-emacs-map-key, tpu-lucid-map-key): Remove.
16043
16044 * ielm.el: Use featurep 'xemacs.
16045
16046 * progmodes/cperl-mode.el (cperl-xemacs-p): Remove.
16047 (condition-case, cperl-can-font-lock, cperl-singly-quote-face)
16048 (cperl-define-key, cperl-mode-map, cperl-mode, cperl-init-faces)
16049 (cperl-write-tags, cperl-tags-hier-init, cperl-perldoc): Replace
16050 cperl-xemacs-p with (featurep 'xemacs).
16051 (font-lock-cache-position): Pacify byte compiler.
16052
16053 2007-10-29 Drew Adams <drew.adams@oracle.com>
16054
16055 * faces.el (read-color): New function.
16056 (face-at-point, foreground-color-at-point)
16057 (background-color-at-point): New functions.
16058
16059 2007-10-28 Richard Stallman <rms@gnu.org>
16060
16061 * net/browse-url.el (browse-url-text-xterm): Rename from
16062 browse-url-lynx-xterm and made generic.
16063 (browse-url-text-emacs): Likewise.
16064 (browse-url-text-browser): New variable.
16065 (browse-url-text-emacs-args): Rename from browse-url-lynx-emacs-args.
16066 (browse-url-text-input-field, browse-url-text-input-attempts)
16067 (browse-url-kde-program): Likewise.
16068
16069 2007-10-29 Glenn Morris <rgm@gnu.org>
16070
16071 * textmodes/org-publish.el (org-publish-get-plist-from-filename):
16072 Use mapc rather than mapcar (reinstall change deleted without log
16073 entry 2007-10-22).
16074
16075 2007-10-29 Martin Rudalics <rudalics@gmx.at>
16076
16077 * wdired.el (wdired-next-line, wdired-previous-line):
16078 Use next-line and previous-line wrapped in with-no-warnings.
16079
16080 2007-10-29 Ryan Yeske <rcyeske@gmail.com>
16081
16082 * net/rcirc.el (rcirc-server-alist): Use keywords for parameter names.
16083 (rcirc-recent-quit-alist): New function.
16084 (rcirc): Print a better message when there is only one connected server.
16085 (rcirc-complete-nick): Do not update the nick table here.
16086 (rcirc-mode-map): Add M-o.
16087 (rcirc-current-line): Add variable.
16088 (rcirc-mode): Setup variables for line based omit.
16089 (rcirc-edit-multiline): Strip text properties.
16090 (rcirc-omit-responses): Add NICK.
16091 (rcirc-omit-threshold): Add variable.
16092 (rcirc-last-quit-line, rcirc-last-line, rcirc-elapsed-lines):
16093 Add functions.
16094 (rcirc-print): Keep track of current line. Do not fill text if
16095 `rcirc-fill-flag' is null. Only omit text if the last activity
16096 from the sender is more than `rcirc-omit-threshold' lines ago.
16097 (rcirc-put-nick-channel, rcirc-handler-PRIVMSG): Track line
16098 numbers instead of time.
16099 (rcirc-channel-nicks): Sort by line numbers instead of time.
16100 (rcirc-omit-mode): Add `...' when omitting text and recenter.
16101 (rcirc-handler-JOIN): Restore the joiners linestamp.
16102 (rcirc-maybe-remember-nick-quit): Add function.
16103 (rcirc-handler-QUIT): Record sender in table of recently quit nicks.
16104
16105 2007-10-29 Juanma Barranquero <lekktu@gmail.com>
16106
16107 * loadhist.el (unload-feature-special-hooks):
16108 Add `delete-frame-functions' and `suspend-tty-functions'.
16109
16110 * server.el (server-unload-function): Rename from `server-unload-hook'
16111 and adapt to new `unload-feature' functionality. Remove hook from
16112 `kill-buffer-hook' buffer-locally.
16113 (server-unload-hook): Remove.
16114 (server-unload-function): New var; replaces `server-unload-hook'.
16115
16116 2007-10-29 Glenn Morris <rgm@gnu.org>
16117
16118 * dirtrack.el (dirtrack-debug): Doc fix.
16119 (dirtrack-mode, dirtrack-debug-mode): New names for
16120 dirtrack-toggle and dirtrack-debug-toggle. Use define-minor-mode.
16121 (dirtrack-toggle, dirtrack-debug-toggle, dirtrackp, dirtrack-debug):
16122 Make obsolete.
16123 (dirtrack-debug-message): Only print message if
16124 dirtrack-debug-mode is non-nil. Use with-current-buffer.
16125 (dirtrack): Doc fix. Use dirtrack-mode rather than dirtrackp.
16126 Remove dirtrack-debug checks now that dirtrack-debug-message does this.
16127
16128 2007-10-28 Glenn Morris <rgm@gnu.org>
16129
16130 * emacs-lisp/bytecomp.el (byte-compile-warnings): Document `not'.
16131 (byte-compile-warnings-safe-p): Handle `not'.
16132 (byte-compile-warning-enabled-p, byte-compile-disable-warning)
16133 (byte-compile-enable-warning): New functions.
16134 (byte-compile-eval-before-compile)
16135 (byte-compile-file-form-require): Use byte-compile-disable-warning.
16136 (byte-compile-close-variables): Locally bind byte-compile-warnings,
16137 but do not modify it.
16138 (byte-compile-eval, byte-compile-obsolete)
16139 (byte-compile-warn-about-unresolved-functions)
16140 (byte-compile-file-form-defvar)
16141 (byte-compile-file-form-custom-declare-variable)
16142 (byte-compile-file-form-require)
16143 (byte-compile-file-form-defmumble, byte-compile-lambda)
16144 (byte-compile-form, byte-compile-normal-call)
16145 (byte-compile-variable-ref, byte-compile-defvar)
16146 (byte-compile-make-variable-buffer-local):
16147 Use byte-compile-warning-enabled-p.
16148 * emacs-lisp/advice.el (ad-compile-function):
16149 Use byte-compile-disable-warning.
16150 * emacs-lisp/cl.el: Move local variables to end of file, and set
16151 byte-compile-warnings to `(not cl-functions)'.
16152 * emacs-lisp/cl-compat.el: Add a local variables section, and set
16153 byte-compile-warnings to `(not cl-functions)'.
16154 * emacs-lisp/cl-macs.el: Unify local variable section, and set
16155 byte-compile-warnings to `(not cl-functions)'.
16156 (cl-do-proclaim): Use byte-compile-disable-warning and
16157 byte-compile-enable-warning.
16158 * emacs-lisp/cl-seq.el: Unify local variable section, and set
16159 byte-compile-warnings to `(not cl-functions)'.
16160 * progmodes/cc-bytecomp.el (cc-bytecomp-ignore-obsolete):
16161 Use byte-compile-disable-warning.
16162
16163 2007-10-28 Dan Nicolaescu <dann@ics.uci.edu>
16164
16165 * cus-edit.el (custom-browse-insert-prefix):
16166 * emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
16167
16168 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
16169
16170 * server.el (server-process-filter): Fix typo in docstring.
16171 (server-log): Reflow docstrings.
16172 (server-delete-client, server-kill-emacs-query-function): Doc fixes.
16173 (server-goto-line-column): Use `when'.
16174
16175 2007-10-28 Juri Linkov <juri@jurta.org>
16176
16177 * isearch.el (isearch-other-meta-char): Call `isearch-edit-string'
16178 when mouse is clicked on the isearch message.
16179 (isearch-resume): Call `isearch-update' at the end.
16180 Rename argument `search' to `string' to conform to the
16181 isearch terminology.
16182
16183 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16184
16185 Rewrite abbrev.c in Elisp.
16186 * abbrev.el (abbrev-mode): Move custom group from cus-edit.el.
16187 (abbrev-table-get, abbrev-table-put, abbrev-get)
16188 (abbrev-put, make-abbrev-table, abbrev-table-p, clear-abbrev-table)
16189 (define-abbrev, abbrev--check-chars, define-global-abbrev)
16190 (define-mode-abbrev, abbrev--active-tables, abbrev-symbol)
16191 (abbrev-expansion, abbrev--before-point, expand-abbrev)
16192 (unexpand-abbrev, abbrev--write, abbrev--describe)
16193 (insert-abbrev-table-description, define-abbrev-table):
16194 New funs, largely transcribed from abbrev.c.
16195 (abbrev-with-wrapper-hook): New macro.
16196 (abbrev-table-name-list, global-abbrev-table)
16197 (abbrev-minor-mode-table-alist, fundamental-mode-abbrev-table)
16198 (abbrevs-changed, abbrev-all-caps, abbrev-start-location)
16199 (abbrev-start-location-buffer, last-abbrev, last-abbrev-text)
16200 (last-abbrev-location, pre-abbrev-expand-hook, abbrev-expand-function):
16201 New vars, largely transcribed from abbrev.c.
16202 * cus-edit.el (abbrev-mode): Remove. Move to abbrev.el.
16203 * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook.
16204 * loadup.el: Load "abbrev.el" before "lisp-mode.el".
16205
16206 2007-10-27 Glenn Morris <rgm@gnu.org>
16207
16208 * shell.el (shell-dirtrack-verbose, shell-directory-tracker): Doc fix.
16209 (shell-dirtrack-toggle): Mark as obsolete.
16210 (dirtrack-toggle, dirtrack-mode): No longer alias to
16211 shell-dirtrack-mode.
16212
16213 2007-10-27 Jay Belanger <jay.p.belanger@gmail.com>
16214
16215 * calc/calc.el (math-standard-opers): Lower the precedence
16216 of negation.
16217 * calc/calc-lang.el (math-oper-table): Lower precedence of
16218 negation for C, TeX, and eqn.
16219
16220 2007-10-27 Dan Nicolaescu <dann@ics.uci.edu>
16221
16222 * progmodes/cc-defs.el: Reorder conditions to avoid warnings.
16223
16224 2007-10-27 Juanma Barranquero <lekktu@gmail.com>
16225
16226 * desktop.el (desktop-load-locked-desktop, desktop-base-lock-name)
16227 (desktop-not-loaded-hook): Fix :version tags.
16228
16229 2007-10-27 Michael Albinus <michael.albinus@gmx.de>
16230
16231 * net/tramp.el (tramp-wrong-passwd-regexp): Tune regexp.
16232 (tramp-get-remote-tmpdir): New defun.
16233 (tramp-make-tramp-temp-file): Use it.
16234 (tramp-local-call-process): New defun. Replace all calls of
16235 `call-process' by this when appropriate.
16236 (tramp-handle-write-region): Replace calls of `file-attributes' by
16237 `tramp-compat-file-attributes'.
16238 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16239 Make the first command a `tramp-send-command' call, with let-bind
16240 of `tramp-end-of-output'.
16241 (tramp-version, tramp-bug, tramp-reporter-dump-variable)
16242 (tramp-load-report-modules, tramp-append-tramp-buffers):
16243 Move to tramp-cmds.el.
16244
16245 * net/tramp-fish.el (tramp-fish-handle-copy-file)
16246 (tramp-fish-do-copy-or-rename-file)
16247 (tramp-fish-do-copy-or-rename-file-directly):
16248 * net/tramp-smb.el (tramp-smb-handle-copy-file):
16249 Add parameter PRESERVE-UID-GID.
16250
16251 2007-10-27 Eli Zaretskii <eliz@gnu.org>
16252
16253 * time.el (zoneinfo-style-world-list, legacy-style-world-list):
16254 New defcustoms.
16255 (display-time-world-list): Use them as appropriate for the current
16256 value of `system-type'.
16257
16258 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
16259
16260 * emulation/pc-select.el (next-line-mark, next-line-nomark)
16261 (previous-line-mark, previous-line-nomark): Wrap with-no-warnings
16262 around uses of previous-line and next-line.
16263
16264 * diff.el (diff-old-file, diff-new-file, diff-extra-args):
16265 New defvars.
16266
16267 * textmodes/css-mode.el (comment-continue):
16268 * net/browse-url.el (url-handler-regexp):
16269 * progmodes/idlw-help.el (idlwave-system-routines):
16270 Pacify byte-compiler.
16271
16272 * textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
16273 line-move-invisible-p with its former definition: invisible-p.
16274 line-move-invisible-p was removed on 2007-08-29.
16275
16276 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
16277
16278 * files.el (kill-emacs-query-functions): Doc fix;
16279 `save-buffers-kill-emacs' is no longer bound to a key.
16280
16281 2007-10-26 Richard Stallman <rms@gnu.org>
16282
16283 * isearch-multi.el (isearch-buffers-multi): New option.
16284 (isearch-buffers-search-fun): Test it.
16285
16286 * progmodes/ps-mode.el (ps-mode-map): Delete C-c v binding.
16287 Put ps-run-clear on C-c C-l.
16288
16289 * newcomment.el (comment-styles): New style indent-or-triple.
16290 (comment-style): Make that the default.
16291 (comment-add defvar): Doc fix.
16292 (comment-add): Delete arg EXTRA.
16293 (comment-region-default): Open code call to comment-add.
16294 Handle indent-or-triple style which uses `multi-char' for INDENT.
16295
16296 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
16297
16298 * eshell/em-unix.el (nil-blank-string): Doc fix.
16299
16300 2007-10-26 John Wiegley <johnw@newartisans.com>
16301
16302 * eshell/em-unix.el (eshell/diff): Before calling the `diff'
16303 function, ensure that the third argument is turned into a nil if
16304 the string is otherwise completely empty (either no characters, or
16305 all tabs/spaces). This fixes a bug from a user who found himself
16306 unable to customize `diff-switches' and still use Eshell's diff
16307 command.
16308
16309 2007-10-26 Glenn Morris <rgm@gnu.org>
16310
16311 * emacs-lisp/bytecomp.el (byte-compile-warnings): Autoload the
16312 safe-local-variable property.
16313
16314 2007-10-26 Gwern Branwen <gwern0@gmail.com> (tiny change)
16315
16316 * net/browse-url.el (browse-url-browser-function): Delete grail.
16317 (browse-url-grail): Function and variable deleted.
16318 (browse-url-browser-function): Delete IXI Mosaic.
16319 (browse-url-default-browser): Don't try IXI Mosaic.
16320 (browse-url-iximosaic): Function deleted.
16321 (browse-url-browser-function): Delete MMM.
16322 (browse-url-default-browser): Don't try MMM.
16323 (browse-url-mmm): Function deleted.
16324
16325 2007-10-26 Drew Adams <drew.adams@oracle.com>
16326
16327 * custom.el (custom-note-var-changed): New function.
16328
16329 2007-10-25 Dan Nicolaescu <dann@ics.uci.edu>
16330
16331 * emulation/edt-mapper.el (edt-emacs-variant): Replace the only
16332 use with the definition. Remove.
16333
16334 * add-log.el (change-log-start-entry-re): New defconst.
16335 (change-log-sortable-date-at): Use it.
16336 (change-log-beginning-of-defun, change-log-end-of-defun):
16337 New functions.
16338 (change-log-mode): Use them for beginning-of-defun-function and
16339 end-of-defun-function.
16340
16341 2007-10-25 Jonathan Yavner <jyavner@member.fsf.org>
16342
16343 * ses.el: Make `ses--symbolic-formulas' a safe local variable.
16344 (ses-mode-print-map): Add `c' and `t' (suggested by Gareth Rees).
16345 (ses-recalculate-cell): Deal with point being just beyond end of
16346 data area (why does this happen?)
16347 (ses-set-curcell): Ditto.
16348 (ses-column-letter): Handle columns beyond 702. Code written by
16349 Gareth Rees.
16350
16351 2007-10-25 Carsten Dominik <dominik@science.uva.nl>
16352
16353 * textmodes/org.el (org-agenda-get-restriction-and-command):
16354 Use `mapc' instead of `mapcar'.
16355 (org-agenda-list): Numeric prefix argument can specify the number
16356 of days.
16357 (remember-register, remember-buffer): Prevent byte compiler from
16358 complaining.
16359 (org-todo): Save and restore match data.
16360 (org-no-warnings): New macro.
16361 (org-columns-eval): Use `org-no-warnings'.
16362
16363 2007-10-25 Chris Moore <christopher.ian.moore@gmail.com>
16364
16365 * comint.el (comint-password-prompt-regexp):
16366 Handle `[sudo] password'-style prompt.
16367
16368 2007-10-25 Glenn Morris <rgm@gnu.org>
16369
16370 * custom.el (custom-declare-variable): Add :risky and :safe keywords.
16371 (defcustom): Doc fix.
16372
16373 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
16374 Add `non_intrinsic'.
16375 (f90-constants-re): Add ieee modules.
16376 (f90-typedef-matcher, f90-typedec-matcher)
16377 (f90-imenu-type-matcher): New functions.
16378 (f90-font-lock-keywords-1): Give module procedures function-name face.
16379 Use `f90-typedef-matcher' for derived types. Fix `abstract interface'.
16380 Add `use, intrinsic'.
16381 (f90-font-lock-keywords-2): Use `f90-typedec-matcher' for derived types.
16382 Move start of `enum' blocks to separate entry.
16383 (f90-start-block-re): Fix `type', `abstract interface'.
16384 (f90-imenu-generic-expression): Use `f90-imenu-type-matcher' for
16385 derived types.
16386 (f90-mode-abbrev-table): Add `abstract interface', `asynchronous',
16387 `elemental', change `enumerator'.
16388 (f90-no-block-limit): Fix `abstract interface'.
16389
16390 * progmodes/f90.el (f90-indented-comment-re)
16391 (f90-directive-comment-re, f90-break-delimiters):
16392 * progmodes/fortran.el (fortran-comment-line-start-skip)
16393 (fortran-directive-re):
16394 * textmodes/conf-mode.el (conf-space-keywords): Mark these regexps
16395 as safe if they are strings.
16396
16397 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16398
16399 * startup.el (window-system): Remove. Don't make it frame-local.
16400
16401 2007-10-24 Richard Stallman <rms@gnu.org>
16402
16403 * savehist.el (savehist-save): Omit unreadable elements.
16404
16405 * loadhist.el (unload-function-defs-list): Rename from
16406 unload-function-features-list.
16407 (unload-feature-special-hooks, unload-feature): Doc fixes.
16408
16409 * indent.el (indent-to-left-margin): If point's in the indentation,
16410 move to the end of the indentation.
16411
16412 * cus-edit.el (customize-changed-options): Make arg optional.
16413
16414 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
16415
16416 * bs.el (bs-select, bs-select-other-window): Fix typos in docstrings.
16417
16418 2007-10-24 Dan Nicolaescu <dann@ics.uci.edu>
16419
16420 * textmodes/org-publish.el (org-publish-attachment): Re-install
16421 accidentally deleted change.
16422
16423 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16424
16425 * term/iris-ansi.el (iris-function-map): Move init into declaration.
16426
16427 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
16428
16429 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
16430 (Buffer-menu-mode-map): Initialize in the declaration.
16431 (Buffer-menu-mode): Define with `define-derived-mode'.
16432
16433 2007-10-24 Carsten Dominik <dominik@science.uva.nl>
16434
16435 * textmodes/org.el (org-version): Change to 5.13e.
16436 (org-agenda-file-regexp): Fix typo in docstring.
16437 (org-add-planning-info): Fix bug in parenthesis settings.
16438 (org-scan-tags): Catch the case of indirect buffers with no filename.
16439 (org-fast-tag-selection, org-export-as-ascii, org-export-as-html):
16440 Re-install switch to mapc, had been removed by accident.
16441 (org-columns-map): New binding `C-c C-o'.
16442 (org-columns-menu): Change menu text and added new entry.
16443 (org-columns-eval): Document the use of `next-line'.
16444 (org-columns-open-link): New function.
16445 (org-columns-follow-link): Remove function.
16446 (org-open-link-from-string): New function.
16447 (org-read-date-get-relative): Fix typo in docstring.
16448 (org-read-date-get-relative): Leading +/- is not optional.
16449 (org-agenda-get-restriction-and-command): Always resize window on
16450 first loop cycle.
16451 (org-agenda-open-link): Make sure the link abbreviations are
16452 present in the agenda buffer.
16453 (org-agenda-copy-local-variable): New function.
16454
16455 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16456
16457 * vc.el (vc-update-changelog-rcs2log): Remove incorrect `backend' arg.
16458
16459 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16460
16461 * simple.el (reindent-then-newline-and-indent): Use a `move after
16462 insert' kind of marker in the save-excursion.
16463
16464 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
16465
16466 * textmodes/css-mode.el: Require CL.
16467 (comment-continue): Declare.
16468
16469 * subr.el (make-variable-frame-localizable): Remove.
16470 (make-variable-frame-local): Mark obsolete.
16471
16472 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
16473
16474 * textmodes/tex-mode.el (tex-uptodate-p): Don't signal an error if one
16475 of the subdirs is unreadable.
16476
16477 2007-10-23 Michael Albinus <michael.albinus@gmx.de>
16478
16479 * net/tramp.el (tramp-set-file-uid-gid): Protect `call-process'
16480 when we are local.
16481
16482 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
16483
16484 * progmodes/python.el (python-current-defun): Remove left-over
16485 assignment to `start'.
16486
16487 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
16488
16489 * ibuf-ext.el (ibuffer-auto-update-changed): Use `dolist' rather
16490 than `mapcar'; return value is not used.
16491
16492 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
16493
16494 * progmodes/gud.el (gdb-source-window, gud-tooltip-mode)
16495 (hl-line-mode, hl-line-sticky-flag): Pacify byte compiler.
16496
16497 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
16498
16499 * ibuf-ext.el (ibuffer-switch-to-saved-filters)
16500 (ibuffer-switch-to-saved-filter-groups): Doc fixes.
16501
16502 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
16503
16504 * term/xterm.el (terminal-init-xterm): Experiment with a longer timeout.
16505
16506 2007-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
16507
16508 * emacs-lisp/advice.el (ad-make-advised-docstring):
16509 Add ad-advice-info text property to doc string.
16510
16511 2007-10-23 Glenn Morris <rgm@gnu.org>
16512
16513 * progmodes/f90.el (f90-do-indent, f90-if-indent)
16514 (f90-type-indent, f90-program-indent, f90-associate-indent)
16515 (f90-continuation-indent, f90-comment-region)
16516 (f90-beginning-ampersand, f90-smart-end)
16517 (f90-break-before-delimiters, f90-auto-keyword-case)
16518 (f90-leave-line-no, f90-mode-hook):
16519 Give an appropriate safe-local-variable property.
16520
16521 * progmodes/fortran.el (fortran-tab-mode-default)
16522 (fortran-tab-mode-string, fortran-do-indent, fortran-if-indent)
16523 (fortran-structure-indent, fortran-continuation-indent)
16524 (fortran-comment-indent, fortran-comment-line-extra-indent)
16525 (fortran-comment-line-start)
16526 (fortran-minimum-statement-indent-fixed)
16527 (fortran-minimum-statement-indent-tab)
16528 (fortran-comment-indent-char, fortran-line-number-indent)
16529 (fortran-check-all-num-for-matching-do)
16530 (fortran-blink-matching-if, fortran-continuation-string)
16531 (fortran-comment-region, fortran-electric-line-number)
16532 (fortran-column-ruler-fixed, fortran-column-ruler-tab)
16533 (fortran-analyze-depth, fortran-break-before-delimiters):
16534 Give an appropriate safe-local-variable property.
16535
16536 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
16537
16538 * printing.el: Move variable definitions before use.
16539 (pr-menu-char-width, pr-menu-char-height): Pacify byte compiler.
16540
16541 2007-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
16542
16543 * emulation/tpu-edt.el (tpu-edt-old-global-values): New var.
16544 (tpu-edt-off): Use it.
16545 (tpu-edt-on): Set it. Make sure the tpu-global-map is not already on
16546 the global-map before adding it to global-map.
16547
16548 * menu-bar.el (global-buffers-menu-map): New var.
16549 (global-map, menu-bar-update-buffers): Use it.
16550 * msb.el (msb-menu-bar-update-buffers): Use it.
16551 (msb-sort-by-directory, msb--choose-menu, msb--mode-menu-cond)
16552 (msb--most-recently-used-menu, msb--create-buffer-menu-2):
16553 Use with-current-buffer.
16554
16555 2007-10-22 Juri Linkov <juri@jurta.org>
16556
16557 * isearch-multi.el: New file.
16558
16559 * isearch.el (isearch-search-string): After finding the next
16560 occurrence switch to buffer isearch-buffers-current-buffer when
16561 isearch-buffers-next-buffer-function is non-nil and
16562 isearch-buffers-current-buffer is live.
16563
16564 * add-log.el (change-log-mode): Make and set buffer-local variable
16565 isearch-buffers-next-buffer-function to change-log-next-buffer.
16566 Call isearch-buffers-minor-mode.
16567 (change-log-next-buffer): New function.
16568
16569 2007-10-22 Bastien Guerry <Bastien.Guerry@ens.fr>
16570
16571 * textmodes/org-export-latex.el (org-export-latex-protect-string):
16572 Renaming of `org-latex-protect'.
16573 (org-export-latex-emphasis-alist): By default, don't protect
16574 any emphasis formatter from further conversion.
16575 (org-export-latex-tables): Honor column grouping for tables.
16576 (org-export-latex-title-command): New option.
16577 (org-export-latex-treat-backslash-char): Use \textbackslash{} to
16578 export backslash character.
16579
16580 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
16581
16582 * textmodes/org.el (org-read-date-get-relative): New function.
16583 (org-agenda-file-regexp): New variable.
16584 (org-agenda-files): Allow directories in the variable.
16585 (org-agenda-get-restriction-and-command): New function.
16586 (org-agenda): Use `org-agenda-get-restriction-and-command'.
16587 (org-todo-blocker-hook, org-todo-trigger-hook): New hooks.
16588 (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
16589 New functions.
16590 (org-entry-add-to-multivalued-property)
16591 (org-entry-remove-from-multivalued-property)
16592 (org-entry-member-in-multivalued-property): New functions.
16593 (org-remember-apply-template): Catch C-g and make sure window
16594 configuration is restored.
16595 (org-agenda-open-link): Make it work with several links in the line.
16596 (org-drawers, org-set-regexps-and-options)
16597 (org-get-current-options): Add support for a DRAWERS in-buffer option.
16598 (org-agenda-window-frame-fractions): New option.
16599 (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
16600 (org-columns-cleanup-item, org-find-entry-with-id)
16601 (org-insert-columns-dblock, org-listtable-to-string)
16602 (org-dblock-write:columnview, org-columns-capture-view)
16603 (org-edit-headline): New functions.
16604 (org-agenda-to-appt): Require calendar.
16605 (org-entry-get-with-inheritance): Widen for search.
16606 (org-columns-display-here): Don't mark buffer as modified when
16607 adding space characters to accomodate column overlays.
16608 (org-export-as-html): Better formatting of tags in the toc.
16609 (org-columns-display-here): Make the ITEM column as compact as possible.
16610 (org-remember-templates): Customization interface improved.
16611 (org-export-with-property-drawer): Variable removed.
16612 (org-export-with-drawers): New option.
16613 (org-complex-heading-regexp): New variable.
16614 (org-sort-entries): Rewrite using `sort-subr'.
16615 (org-set-property): More appropriate completion during interactive use.
16616 (org-sort-entries): Allow sorting by property.
16617 (org-additional-option-like-keywords): Add more values.
16618 (org-sort-entries-or-items): Rename from `org-sort-entries'.
16619
16620 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
16621
16622 * textmodes/org.el (org-get-date-from-calendar): New function.
16623 (org-at-timestamp-p, org-timestamp-change)
16624 (org-remember-templates): First element of each entry is now a
16625 name for the template.
16626 (org-store-log-note): Check for `org-note-abort'.
16627 (org-kill-note-or-show-branches): New command.
16628 (org-fontify-priorities): New option.
16629 (org-fontify-priorities): New function.
16630 (org-cut-subtree, org-copy-subtree): New argument N to
16631 act on N sequential subtrees.
16632 (org-paste-subtree): Fix the level at which a tree is pasted.
16633 (org-fit-agenda-window): Limitations on window size removed.
16634 (org-agenda-find-same-or-today-or-agenda): Rename from
16635 `org-agenda-find-today-or-agenda'.
16636 (org-scheduled-past-days): New option.
16637 (org-agenda-scheduled-leaders)
16638 (org-agenda-deadline-leaders): New options.
16639 (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
16640 (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
16641 (org-export-with-tags, org-export-plist-vars)
16642 (org-infile-export-plist): New "tags" option.
16643 (org-use-property-inheritance): New option.
16644 (org-cached-entry-get): Use `org-use-property-inheritance'.
16645 (org-remember-apply-template): Fix typo.
16646
16647 2007-10-22 Michael Albinus <michael.albinus@gmx.de>
16648
16649 * net/tramp.el (tramp-find-shell)
16650 (tramp-open-connection-setup-interactive-shell): Improve sending
16651 initial commands.
16652 (tramp-action-terminal): Send debug message.
16653 (tramp-wait-for-shell-prompt, tramp-send-command-internal): Remove.
16654 (tramp-barf-if-no-shell-prompt): Insert code of
16655 `tramp-wait-for-shell-prompt'.
16656
16657 2007-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
16658
16659 * term/AT386.el (terminal-init-AT386): Use input-decode-map.
16660
16661 * term/vt200.el (terminal-init-vt200):
16662 * term/vt201.el (terminal-init-vt201):
16663 * term/vt220.el (terminal-init-vt220):
16664 * term/vt240.el (terminal-init-vt240):
16665 * term/vt300.el (terminal-init-vt300):
16666 * term/vt320.el (terminal-init-vt320):
16667 * term/vt400.el (terminal-init-vt400):
16668 * term/vt420.el (terminal-init-vt420): Use input-decode-map.
16669
16670 * term/wyse50.el (wyse50-terminal-map): New var.
16671 (terminal-init-wyse50): Use it and input-decode-map.
16672 (enable-arrow-keys): Emasculate.
16673
16674 * term/tvi970.el (tvi970-terminal-map): New var.
16675 (terminal-init-tvi970): Use it and input-decode-map.
16676 (tvi970-keypad-numeric): Remove.
16677 (tvi970-set-keypad-mode): Use a terminal-parameter rather than var.
16678
16679 * term/sun.el (sun-raw-prefix): Fill as part of declaration.
16680 (terminal-init-sun): Use it and input-decode-map.
16681
16682 * term/news.el (terminal-init-news):
16683 * term/lk201.el (terminal-init-lk201):
16684 * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
16685
16686 2007-10-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
16687
16688 * complete.el (PC-expand-many-files): Remove.
16689 (PC-do-completion): Call file-expand-wildcards instead of
16690 PC-expand-many-files.
16691
16692 * net/tramp.el (tramp-handle-expand-many-files): Remove.
16693 (PC-expand-many-files): Remove advice.
16694
16695 2007-10-22 Glenn Morris <rgm@gnu.org>
16696
16697 * progmodes/f90.el: Remove leading "*" from defcustom doc-strings.
16698 Add some support for Fortran 2003 syntax:
16699 (f90-type-indent): Now also applies to `enum'.
16700 (f90-associate-indent): New user option.
16701 (f90-keywords-re, f90-keywords-level-3-re, f90-procedures-re):
16702 Add some F2003 keywords.
16703 (f90-constants-re): New constant.
16704 (f90-font-lock-keywords-1): Add `associate' blocks, and `abstract
16705 Interface'.
16706 (f90-font-lock-keywords-2): Add `enumerator', `generic', `procedure',
16707 `class'. Arguments for `type'/`class' may have spaces. Add a new
16708 element for functions with specified types. Add `end enum' and
16709 `select type'. Add `implicit enumerator' and `procedure'.
16710 Add `class default' and `type is', `class is'. Fix `go to' regexp.
16711 (f90-font-lock-keywords-3): Add `asynchronous' attribute.
16712 (f90-font-lock-keywords-4): Add `f90-constants-re'.
16713 (f90-blocks-re): Add `enum' and `associate'.
16714 (f90-else-like-re): Add `class is', `type is', and `class default'.
16715 (f90-end-type-re): Add `enum'.
16716 (f90-end-associate-re, f90-typeis-re): New constants.
16717 (f90-end-block-re): Add `enum' and `associate'. Change from
16718 optional whitespace to end-of-word, to avoid `enumerator'.
16719 (f90-start-block-re): Add `select type', `abstract interface', and
16720 `enum'. Avoid `type is', and `type (sometype)'.
16721 (f90-mode-abbrev-table): Add `enumerator', `protected', and `volatile'.
16722 (f90-mode): Doc fix.
16723 (f90-looking-at-select-case): Doc fix. Add `select type'.
16724 (f90-looking-at-associate): New function.
16725 (f90-looking-at-type-like): Avoid `type is' and `type (sometype)'.
16726 Add `enum' and `abstract interface'.
16727 (f90-no-block-limit): Add `select type' and `abstract interface'.
16728 (f90-get-correct-indent, f90-calculate-indent)
16729 (f90-end-of-block, f90-beginning-of-block, f90-next-block)
16730 (f90-indent-region, f90-match-end): Handle `associate' blocks.
16731
16732 2007-10-22 Martin Rudalics <rudalics@gmx.at>
16733
16734 * progmodes/fortran.el (fortran-mode-map, fortran-window-create):
16735 Use window-full-width-p.
16736
16737 2007-10-22 Dan Nicolaescu <dann@ics.uci.edu>
16738
16739 * mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
16740
16741 * tooltip.el: Use featurep 'xemacs.
16742
16743 * printing.el: Move variable definitions before use, no code change.
16744
16745 2007-10-22 Juri Linkov <juri@jurta.org>
16746
16747 * simple.el (goto-history-element): Allow minibuffer-default to be
16748 a list of default values accessible by typing M-n in the minibuffer.
16749
16750 * dired-x.el (dired-guess-shell-command): Put all guesses to the
16751 minibuffer default value list instead of pushing them temporarily
16752 to the history list.
16753
16754 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
16755
16756 * hexl.el (hexl-menu): New major mode menu.
16757
16758 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
16759
16760 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Fix paren typo.
16761
16762 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
16763
16764 * w32-fns.el (w32-quote-process-args):
16765 * dos-w32.el (print-region-function, lpr-headers-switches)
16766 (ps-print-region-function): Pacify byte-compiler.
16767
16768 * emulation/edt-mapper.el (function-key-map):
16769 (edt-map-key): Make it a function instead of using fset.
16770 Inline edt-gnu-map-key and edt-lucid-map-key. Use featurep 'xemacs.
16771 (edt-gnu-map-key, edt-lucid-map-key): Remove.
16772 (edt-x-emacs-p): Remove.
16773 (edt-emacs-variant, edt-window-system, edt-xserver):
16774 Use featurep 'xemacs.
16775
16776 * net/eudc.el: Use (featurep 'xemacs) instead of the string test.
16777 Replace eudc-xemacs-p with its definition.
16778 (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
16779 (eudc-emacs-mule-p): Remove.
16780 (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
16781 eudc-xemacs-p with feature tests.
16782
16783 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
16784 (eudc-bob-url-keymap, eudc-bob-sound-keymap)
16785 (eudc-bob-generic-keymap, eudc-bob-popup-menu)
16786 (eudc-bob-toggle-inline-display):
16787 * net/eudc-hotlist.el (eudc-hotlist-emacs-menu):
16788 Replace eudc-emacs-p and eudc-xemacs-p with feature tests.
16789
16790 * net/eudcb-ph.el (eudc-ph-open-session):
16791 Replace eudc-xemacs-mule-p with its former definition.
16792
16793 * progmodes/octave-mod.el (octave-xemacs-p): Remove.
16794 (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs).
16795
16796 * progmodes/vera-mode.el (vera-xemacs): Remove.
16797 (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs).
16798
16799 * progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
16800 (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
16801 (vhdl-speedbar-initialize, vhdl-ps-print-init)
16802 (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
16803 (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
16804 with (featurep 'xemacs).
16805
16806 * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
16807 (save-buffer-state-x):
16808 * obsolete/fast-lock.el (fast-lock-verbose):
16809 * emulation/viper-init.el (viper-xemacs-p)
16810 (viper-cond-compile-for-xemacs-or-emacs):
16811 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
16812 * ps-print.el (case-fold-search):
16813 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
16814 * calculator.el (calculator-help): Use featurep 'xemacs.
16815
16816 * progmodes/prolog.el: Undo previous change.
16817 (comint-prompt-regexp, comint-process-echoes): Pacify byte-compiler.
16818
16819 * progmodes/dcl-mode.el:
16820 * play/yow.el:
16821 * calendar/todo-mode.el:
16822 * calendar/cal-hebrew.el:
16823 * vc-hg.el: Undo previous change.
16824
16825 * vms-patch.el: Likewise.
16826 (print-region-function): Pacify byte-compiler.
16827
16828 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
16829
16830 * files.el (backup-buffer-copy): Call `copy-file' with non-nil
16831 preserve-uid-gid.
16832
16833 * net/ange-ftp.el (ange-ftp-copy-file): Add PRESERVE-UID-GID for
16834 compatibility. It is not used, though.
16835
16836 * net/tramp.el (top): Put load of all tramp-* files into a dolist.
16837 Require tramp-cmds.el.
16838 (tramp-make-tramp-temp-file): We can get rid of DONT-CREATE.
16839 (tramp-handle-file-name-all-completions): Expand DIRECTORY.
16840 (tramp-do-copy-or-rename-file-directly): Make more rigid checks.
16841 (tramp-do-copy-or-rename-file-out-of-band)
16842 (tramp-maybe-open-connection): Use `make-temp-name'. This is
16843 possible, because we don't need to create the temporary file, but
16844 we need a prefix for ssh, which has its own temporary file handling.
16845 (tramp-handle-delete-directory): Add "-f" to rmdir.
16846 (tramp-handle-dired-recursive-delete-directory): Call "rm -rf".
16847 (tramp-handle-insert-file-contents): Don't raise a tramp-error but
16848 a signal, in order to give the callee a chance to suppress.
16849 (tramp-handle-write-region): Set owner also in case of short
16850 track. Don't use compatibility calls for `write-region' anymore.
16851 (tramp-clear-passwd): Add parameter VEC. Adapt all callees.
16852 (tramp-append-tramp-buffers): Apply `tramp-list-tramp-buffers'.
16853
16854 * net/tramp-cmds.el: New file.
16855
16856 * net/tramp-gw.el (tramp-gw-basic-authentication): Apply VEC to
16857 `tramp-clear-passwd'.
16858
16859 * net/trampver.el: Update release number.
16860
16861 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
16862
16863 * progmodes/gud.el (gud-target-name): Move definition before use.
16864
16865 * progmodes/dcl-mode.el: Require imenu at compile time.
16866
16867 * progmodes/cc-engine.el (c-maybe-stale-found-type):
16868 Pacify byte-compiler.
16869
16870 * obsolete/fast-lock.el: Use featurep test instead of string-match.
16871
16872 * eshell/esh-mode.el (eshell-handle-ansi-color):
16873 Require ansi-color at compile time too.
16874
16875 * eshell/em-unix.el (eshell/info): Require info at compile time too.
16876
16877 * w32-fns.el: Require w32-vars.
16878
16879 * diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
16880 time too.
16881
16882 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
16883
16884 * double.el ([ignore]): Use `ignore'.
16885 (double-setup): Inline into double-mode.
16886 (double-mode): Use define-minor-mode.
16887
16888 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
16889
16890 * textmodes/reftex.el: Move require easymenu before first use.
16891 (reftex-info): Require info at compile too.
16892
16893 * textmodes/org-publish.el (org-publish-org-to-html)
16894 (org-publish-org-to): Require org at compile time too.
16895 (org-publish-attachment): Require at compile time too.
16896
16897 * term/tty-colors.el (w32-tty-standard-colors):
16898 Pacify byte-compiler.
16899
16900 * term/pc-win.el (frame-creation-function-alist): Add to this
16901 instead of setting frame-creation-function.
16902
16903 * play/blackbox.el (bb-up, bb-down): Use forward-line.
16904
16905 * net/rcirc.el (rcirc-markup-text-functions): Move definition earlier.
16906
16907 * calendar/todo-mode.el: Require calendar at compile time.
16908
16909 * calendar/cal-hebrew.el: Require holidays at compile time.
16910
16911 * w32-vars.el: Provide w32-vars.
16912
16913 * term/w32-win.el: Require w32-vars.
16914 (w32-color-map): Pacify byte-compiler.
16915
16916 * loadup.el: Load w32-vars before term/w32-win.
16917
16918 2007-10-20 Juri Linkov <juri@jurta.org>
16919
16920 * textmodes/fill.el (fill-paragraph): When the region is active,
16921 don't try other `or' branches regardless of the value returned by
16922 fill-region; just return t.
16923
16924 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
16925
16926 * vc.el (vc-do-command): Condition out a misleading message when
16927 running asynchronously.
16928 (vc-deduce-fileset): New argument enables using an unregistered
16929 visited file as a singleton fileset if nothing else is available.
16930 (vc-next-action): Restore file-registering behavior.
16931
16932 2007-10-20 Jay Belanger <jay.p.belanger@gmail.com>
16933
16934 * calc/README: Add recent news.
16935
16936 2007-10-20 Dan Nicolaescu <dann@ics.uci.edu>
16937
16938 * term/x-win.el (x-gtk-stock-map, icon-map-list)
16939 (x-gtk-map-stock): Delete duplicated definitions from merge.
16940
16941 * progmodes/compile.el (compilation-skip-to-next-location)
16942 (compilation-skip-threshold, compilation-skip-visited):
16943 Move definitions earlier.
16944
16945 * play/decipher.el (decipher-keypress):
16946 * play/zone.el (zone-fall-through-ws):
16947 * play/landmark.el (lm-move-down, lm-move-up):
16948 * play/handwrite.el (handwrite):
16949 * mail/mspools.el (mspools-visit-spool):
16950 * wdired.el (wdired-next-line, wdired-previous-line):
16951 * tar-mode.el (tar-subfile-save-buffer):
16952 * scroll-lock.el (scroll-lock-next-line)
16953 (scroll-lock-previous-line):
16954 * image-dired.el (image-dired-next-line)
16955 (image-dired-previous-line):
16956 * ediff-help.el (ediff-help-message-line-length):
16957 Use forward-line.
16958
16959 * smerge-mode.el (smerge-auto-refine):
16960 * diff-mode.el (diff-auto-refine): Add :group.
16961
16962 * play/yow.el: Require doctor at compile time.
16963
16964 * vmsproc.el: Provide vmsproc.
16965 (command-send-input): Use forward-line.
16966
16967 * vms-patch.el: Require ps-print and vmsproc at compile time.
16968
16969 * vc-mtn.el (log-view-message-re, log-view-file-re)
16970 (log-view-font-lock-keywords): Pacify byte-compiler.
16971
16972 * vc-hg.el: Require log-view at compile time.
16973
16974 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
16975
16976 * log-view.el (log-view-diff): Adapt log-view-diff for new VC API.
16977
16978 2007-10-20 Glenn Morris <rgm@gnu.org>
16979
16980 * progmodes/f90.el (f90-font-lock-keywords-2)
16981 (f90-looking-at-type-like): Fix regexp typos.
16982
16983 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
16984
16985 * bs.el (bs--track-window-changes): Don't refresh the whole list.
16986 (bs-mode): Set mode-class property to special.
16987
16988 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
16989
16990 * diff-mode.el (diff-auto-refine): New var.
16991 (diff-hunk): Use it.
16992 (diff-ignore-whitespace-hunk): Rename diff-refine-ignore-spaces-hunk.
16993 (diff-refine-change): Rename from diff-fine-change. Change it.
16994 (diff-refine-preproc): Rename from diff-fine-highlight-preproc.
16995 (diff-refine-hunk): Rename from diff-fine-highlight.
16996
16997 2007-10-20 John Paul Wallington <jpw@pobox.com>
16998
16999 * help-fns.el (describe-variable-custom-version-info): New function
17000 to return variable's version or package version note.
17001 (describe-variable): Use it, display result.
17002
17003 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
17004
17005 * smerge-mode.el (smerge-auto-refine): New var.
17006 (smerge-next, smerge-prev): Use it.
17007 (smerge-batch-resolve): Ad-hoc trick for Arch's .rej files.
17008
17009 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
17010 Add `body' arg. Cleanup the check-narrow-maybe/re-narrow-maybe mess.
17011
17012 * vc-bzr.el (vc-bzr-diff-tree):
17013 * vc-git.el (vc-git-diff-tree):
17014 * vc-hg.el (vc-hg-diff-tree):
17015 * vc-mcvs.el (vc-mcvs-diff-tree):
17016 * vc-mtn.el (vc-mtn-diff-tree):
17017 * vc-svn.el (vc-svn-diff-tree): Remove.
17018
17019 * vc-mtn.el (vc-mtn-revision-completion-table):
17020 * vc-cvs.el (vc-cvs-revision-completion-table):
17021 * vc-arch.el (vc-arch-revision-completion-table):
17022 * vc-hg.el (vc-hg-revision-completion-table, vc-hg-revision-table):
17023 * vc-git.el (vc-git-revision-completion-table, vc-git-revision-table):
17024 Make it work when the arg is a list of files.
17025
17026 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17027
17028 * vc.el: Remove `diff-tree' operation, now subsumed by `diff'.
17029 Also `revision-completion-table' now takes a list of files.
17030 (vc-deduce-fileset): Remove unused var `regexp'.
17031 Only obey allow-directory-wildcard in dired buffers.
17032 (vc-default-diff-tree): Remove.
17033 (vc-diff-added-files): New var.
17034 (vc-diff-internal): Use it. Remove arg `backend'. Update callers.
17035 (vc-version-diff): Revert from `vc-history-diff' to the original name.
17036 Remove the `backend' arg.
17037 (vc-contains-version-controlled-file): Remove.
17038 (vc-diff): Bring it closer to the version in Emacs-22.
17039 (vc-revert): Fix typo in let-binding.
17040 (vc-default-unregister): Remove.
17041 (vc-dired-buffers-for-dir): Remove N^2 behavior.
17042
17043 2007-10-19 Dan Nicolaescu <dann@ics.uci.edu>
17044
17045 * textmodes/two-column.el (2C-split, 2C-merge):
17046 * textmodes/bib-mode.el (bib-find-key, mark-bib):
17047 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
17048 * progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
17049 * progmodes/ada-xref.el (ada-get-all-references):
17050 * obsolete/mlsupport.el (ml-next-line, ml-previous-line):
17051 * emulation/vi.el (vi-previous-line-first-nonwhite)
17052 (vi-effective-range, vi-put-before):
17053 * emulation/edt.el (edt-next-line, edt-previous-line)
17054 (edt-paragraph-forward): Use forward-line.
17055
17056 * progmodes/etags.el (tags-apropos): Require apropos at compile
17057 time too.
17058
17059 * progmodes/prolog.el: Require comint when compiling.
17060 (inferior-prolog-flavor): Move defvar before use.
17061
17062 2007-10-19 Richard Stallman <rms@gnu.org>
17063
17064 * font-core.el (turn-on-font-lock-if-desired):
17065 Rename from `turn-on-font-lock-if-enabled'.
17066 Fully obey `font-lock-global-modes'.
17067
17068 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17069
17070 * diff-mode.el (diff-fine-highlight-preproc): Stick to minimal changes
17071 which will not affect the behavior of things like forward-word.
17072 (diff-fine-highlight): Preserve point.
17073
17074 * doc-view.el (doc-view-mode-map): Use remapping.
17075 Don't rebind C-v, M-v to their default value.
17076 Don't bind mouse-4 and mouse-5: it's mwheel.el's job.
17077
17078 * smerge-mode.el: Add word-granularity refinement.
17079 (smerge-refine-forward-function, smerge-refine-ignore-whitespace)
17080 (smerge-refine-weight-hack): New vars.
17081 (smerge-refine-forward): New fun.
17082 (smerge-refine-chopup-region, smerge-refine-highlight-change): Use them.
17083 (smerge-refine-subst): Use them as well. Preserve point.
17084
17085 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
17086
17087 * follow.el (follow-unload-function): New function.
17088
17089 * loadhist.el (unload-function-features-list):
17090 Rename from `unload-hook-features-list'.
17091 (unload-hook-features-list): Add as obsolete alias.
17092 (unload-feature): Use `unload-function-features-list'
17093 and new FEATURE-unload-function.
17094
17095 2007-10-19 Glenn Morris <rgm@gnu.org>
17096
17097 * bindings.el (mouse-minor-mode-menu)
17098 (minor-mode-menu-from-indicator): Move to mouse.el.
17099 * mouse.el (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17100 Move here from bindings.el.
17101
17102 2007-10-19 Richard Stallman <rms@gnu.org>
17103
17104 * help-fns.el (describe-function-1): Don't use the advice origname
17105 if it has no function definition.
17106
17107 2007-10-18 Johan Bockgård <bojohan@gnu.org>
17108
17109 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
17110 Use `save-restriction' rather than `widen'.
17111
17112 2007-10-18 Richard Stallman <rms@gnu.org>
17113
17114 * time.el (display-time-world-time-format): Display day # not month #.
17115
17116 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
17117
17118 * files.el (auto-mode-alist): Don't use doc-view for PS and EPS.
17119
17120 * doc-view.el: Remove version keyword.
17121 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17122 (doc-view-ps2pdf-program): Use executable-find. Simplify custom type.
17123 (doc-view-ghostscript-options): Improve custom type.
17124 (doc-view-cache-directory, doc-view-conversion-buffer)
17125 (doc-view-conversion-refresh-interval): Simplify custom type.
17126
17127 2007-10-18 Tassilo Horn <tassilo@member.fsf.org>
17128
17129 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
17130 (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
17131 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
17132 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf):
17133 Remove superfluous messages.
17134 (doc-view-mode-map): Use the image-mode scrolling commands.
17135 Don't rebind C-x k.
17136
17137 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
17138
17139 * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
17140 Add comment about "-dSAFER".
17141
17142 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17143
17144 * term/xterm.el: Don't require xt-mouse.
17145 (terminal-init-xterm): Run terminal-init-xterm-hook rather than
17146 calling turn-on-xterm-mouse-tracking-on-terminal directly.
17147
17148 * xt-mouse.el: Don't change the global function-key-map anny more.
17149 (xterm-mouse-mode): Use terminal-init-xterm-hook.
17150 Don't use after-make-frame-functions now that term/xterm.el calls
17151 us directly.
17152 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
17153 Use turn-*-xterm-mouse-tracking-on-terminal. Only once per terminal.
17154 (turn-on-xterm-mouse-tracking-on-terminal): Make param optional.
17155 Setup input-decode-map and remember that xterm-mouse-mode was
17156 enabled in this terminal.
17157 (turn-off-xterm-mouse-tracking-on-terminal): Only disable on those
17158 terminals where it has been enabled.
17159
17160 * faces.el (tty-create-frame-with-faces): Make sure not only
17161 tty-run-terminal-initialization but also set-locale-environment
17162 are run only once per terminal.
17163 (tty-run-terminal-initialization): Don't check if the terminal was
17164 already initted.
17165
17166 * international/encoded-kb.el (encoded-kbd-setup-display): Be careful
17167 not to remove keymaps that just happen to inherit from one of ours.
17168 When setting up our keymap, make sure it won't be accidentally
17169 modified by someone else.
17170
17171 2007-10-18 Thien-Thi Nguyen <ttn@gnuvola.org>
17172
17173 * textmodes/artist.el (artist-previous-line, artist-next-line):
17174 * dired.el (dired-next-line, dired-previous-line):
17175 * progmodes/delphi.el (delphi-newline):
17176 * textmodes/org.el (org-columns-eval):
17177 Use forward-line.
17178
17179 * emerge.el (emerge-setup): Use insert-buffer-substring.
17180 (emerge-prepare-error-list, emerge-setup-with-ancestor): Likewise.
17181
17182 2007-10-18 Juanma Barranquero <lekktu@gmail.com>
17183
17184 * textmodes/fill.el (fill-individual-paragraphs): Doc fix.
17185 (adaptive-fill-function): Doc fix. Remove * from docstring.
17186
17187 2007-10-18 Tom Horsley <tom.horsley@att.net>
17188
17189 * simple.el (interprogram-paste-function): Doc fix.
17190 (current-kill): Accept list of strings as well
17191 as single string from `interprogram-paste-function'.
17192
17193 2007-10-18 Glenn Morris <rgm@gnu.org>
17194
17195 * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix.
17196
17197 2007-10-18 Drew Adams <drew.adams@oracle.com>
17198
17199 * bindings.el (mode-line-minor-mode-keymap):
17200 Add mouse-minor-mode-menu on mouse-1.
17201 (mode-line-modes): Add mouse-1 to help-echo text.
17202 (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17203 New functions.
17204 (mode-line-minor-mode-help): Doc fix.
17205
17206 2007-10-17 Juri Linkov <juri@jurta.org>
17207
17208 * textmodes/fill.el (fill-paragraph-or-region): Remove function
17209 at the request of RMS.
17210 (fill-paragraph): Change `arg' to optional `justify'. Add interactive
17211 arg `region'. Fix docstring. At the first `or' branch add call to
17212 `fill-region' if it the region is active in transient-mark-mode.
17213
17214 * bindings.el (esc-map): Bind M-q to fill-paragraph
17215 instead of fill-paragraph-or-region.
17216
17217 * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
17218 with fill-paragraph.
17219
17220 * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
17221 Fix docstring.
17222
17223 * indent.el (indent-for-tab-command): Change interactive spec from
17224 "P" to "p". Add check for interactive arg before indenting the
17225 active region.
17226
17227 * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
17228 Regroup.
17229
17230 2007-10-17 Juanma Barranquero <lekktu@gmail.com>
17231
17232 * emacs-lisp/find-func.el: Don't require loadhist.
17233
17234 * loadhist.el (feature-symbols, file-provides, file-requires)
17235 (file-set-intersect, file-dependents): Simplify.
17236 (unload-feature-special-hooks): Update list of special hooks.
17237
17238 2007-10-17 Tassilo Horn <tassilo@member.fsf.org>
17239
17240 * bindings.el (completion-ignored-extensions): Remove pdf and dvi
17241 extensions since they can be viewed with doc-view.
17242
17243 * files.el (auto-mode-alist): Make doc-view-mode the default mode
17244 for pdf, ps and dvi files.
17245
17246 * doc-view.el: Make doc-view-mode the standard mode for viewing
17247 pdf, [e]ps and dvi files and add binding C-c C-c to toggle between
17248 text and image display. Add binding C-c C-e to switch to an
17249 editing mode.
17250 (doc-view-ghostscript-options, doc-view-ps->pdf): Add "-dSAFER" to
17251 avoid security problems when rendering files from untrusted sources.
17252
17253 2007-10-17 Aaron Hawley <aaronh@garden.org>
17254
17255 * tutorial.el (tutorial--save-tutorial): Display message when tutorial
17256 position is not saved.
17257
17258 2007-10-17 Reiner Steib <Reiner.Steib@gmx.de>
17259
17260 * doc-view.el: Mention xpdf. Fix spelling of Ghostscript.
17261 (doc-view-ghostscript-options): Fix typo in doc string.
17262
17263 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17264
17265 * progmodes/compile.el (compilation-next-error-function): Fix timestamp
17266 handling, so compilation-fake-loc works again.
17267
17268 * server.el (server-select-display): Nop if we do not support m-f-o-d.
17269 (server-process-filter): Revert last change.
17270
17271 * vc.el (vc-diff-sentinel, vc-diff-internal): Revert some change in the
17272 behavior unrelated to filesets.
17273
17274 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
17275
17276 * longlines.el (longlines-wrap-follows-window-size): Integer value
17277 specifies wrapping margin.
17278 (longlines-mode, longlines-window-change-function):
17279 Set window-specific wrapping margin based on the above.
17280
17281 2007-10-17 John Wiegley <johnw@newartisans.com>
17282
17283 * eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
17284
17285 2007-10-17 Dan Nicolaescu <dann@ics.uci.edu>
17286
17287 * server.el (server-process-filter): Only set display if X11 is
17288 supported.
17289
17290 2007-10-17 Glenn Morris <rgm@gnu.org>
17291
17292 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
17293 Tweak regexp to avoid stack overflow.
17294
17295 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
17296
17297 * simple.el (reindent-then-newline-and-indent): Don't assume that
17298 indent-according-to-mode preserves point.
17299
17300 2007-10-16 Juanma Barranquero <lekktu@gmail.com>
17301
17302 * bs.el (bs--make-header-match-string, bs-show-in-buffer)
17303 (bs--nth-wrapper): Simplify.
17304 (bs-select, bs--insert-one-entry): Simplify. Use `when'.
17305 (bs-buffer-list): Simplify. Use `when'. Use `string-match-p'.
17306 (bs-sort-buffer-interns-are-last): Use `string-match-p'.
17307 (bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp)
17308 (bs-maximal-buffer-name-column, bs-minimal-buffer-name-column)
17309 (bs-configurations, bs-default-configuration)
17310 (bs-alternative-configuration, bs-cycle-configuration-name)
17311 (bs-string-show-always, bs-string-show-never, bs-string-current)
17312 (bs-string-current-marked, bs-string-marked, bs-string-show-normally)
17313 (bs-sort-functions, bs-default-sort-name): Remove * in docstrings.
17314 (bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete)
17315 (bs-apply-sort-faces, bs-next-config-aux): Use `when'.
17316 (bs--window-config-coming-from): Revert 2006-11-09 change.
17317 (bs--restore-window-config): Keep the selected frame.
17318 (bs--track-window-changes, bs--remove-hooks): New functions.
17319 (bs-mode): Use `define-derived-mode'. Set hook to track window changes.
17320 (bs--create-header): Remove.
17321 (bs--create-header-line): New function, based on `bs--create-header'.
17322 (bs--show-header): Use `bs--create-header-line'.
17323 (bs--show-with-configuration): Revert 2006-11-09 change.
17324 Don't reuse window unless it is visible on the selected frame.
17325 Restore window configuration (possibly in a different frame)
17326 before creating any window.
17327
17328 2007-10-16 Glenn Morris <rgm@gnu.org>
17329
17330 * simple.el (blink-matching-open): Don't report false errors with
17331 the `$' syntax class.
17332
17333 2007-10-16 Richard Stallman <rms@gnu.org>
17334
17335 * emacs-lisp/advice.el (ad-get-advice-info): Change to a function.
17336 (ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
17337 (ad-is-advised, ad-get-advice-info-field)
17338 (ad-set-advice-info-field): Use ad-get-advice-info-macro.
17339
17340 2007-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
17341
17342 * vc-hooks.el (vc-workfile-version): Compatibility alias.
17343 (vc-default-working-revision): Compatibility for backends.
17344
17345 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
17346
17347 * filesets.el (filesets-alist-get): Use `let' rather than `let*'.
17348 (filesets-ormap, filesets-sort-case-sensitive-flag)
17349 (filesets-remake-shortcut, filesets-ingroup-collect-files):
17350 Fix typos in docstrings.
17351 (filesets-conditional-sort, filesets-find-or-display-file)
17352 (filesets-data-get-name, filesets-data-get-data)
17353 (filesets-data-set, filesets-cmd-query-replace-getargs)
17354 (filesets-ingroup-collect): Doc fixes.
17355
17356 2007-10-15 Sam Steingold <sds@gnu.org>
17357
17358 * mail/sendmail.el (sendmail-error-reporting-interactive)
17359 (sendmail-error-reporting-non-interactive): New variables for
17360 sendmail error reporting options to simplify support for imperfect
17361 sendmail emulators.
17362 (sendmail-send-it): Use them instead of list literals.
17363
17364 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
17365
17366 * help-fns.el: Revert previous change; it creates a
17367 dependency loop between advice.el and help-fns.el.
17368
17369 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
17370
17371 * help-fns.el: Require advice when compiling.
17372
17373 2007-10-14 Drew Adams <drew.adams@oracle.com>
17374
17375 * emacs-lisp/ring.el (ring-convert-sequence-to-ring)
17376 (ring-insert+extend, ring-remove+insert+extend, ring-member)
17377 (ring-next, ring-previous): New functions.
17378
17379 2007-10-14 Richard Stallman <rms@gnu.org>
17380
17381 * emacs-lisp/advice.el (documentation): Advice deleted.
17382 Doc for advised functions is now handled at C level.
17383 (ad-stop-advice, ad-start-advice): Don't enable or disable
17384 advice for `documentation'.
17385 (ad-advised-definition-docstring-regexp): Var deleted.
17386 (ad-make-advised-definition-docstring): Store orig name
17387 as text property of string.
17388 (ad-advised-definition-p): Check for text property of docstring.
17389
17390 * help-fns.el (describe-function-1): Find source of advised functions.
17391
17392 2007-10-14 Juri Linkov <juri@jurta.org>
17393
17394 * faces.el (describe-face): Allow handling a string as the face name.
17395
17396 * textmodes/ispell.el (ispell-word): Call `ispell-region' on the
17397 active region in transient-mark-mode.
17398 (ispell-region): Change messages displayed at the start and end of
17399 the spell-checking to be the same.
17400
17401 * startup.el (fancy-startup-tail): Say exactly what does the button
17402 dismiss ("Dismiss this startup screen"). Use text "Never show
17403 it again" for the checkbox after this button.
17404 (fancy-startup-screen, fancy-about-screen): Put point before the
17405 first link, so the user can quickly select links with the keyboard.
17406 (normal-mouse-startup-screen): Add more useful text describing how
17407 to follow a link.
17408
17409 2007-10-14 Glenn Morris <rgm@gnu.org>
17410
17411 * progmodes/etags.el (select-tags-table): Disable undo in the
17412 `*Tags Table List*' buffer.
17413
17414 2007-10-13 Eli Zaretskii <eliz@gnu.org>
17415
17416 * dired.el (dired-warn-writable): New face.
17417 (dired-warn-writable-face): New variable.
17418 (dired-font-lock-keywords): Use dired-warn-writable-face, instead
17419 of dired-warning-face, for group- and world-writable files.
17420
17421 2007-10-13 Richard Stallman <rms@gnu.org>
17422
17423 * files.el (directory-abbrev-alist): Doc fix.
17424
17425 2007-10-13 Jari Aalto <jari.aalto@cante.net>
17426
17427 * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
17428
17429 2007-10-12 Martin Rudalics <rudalics@gmx.at>
17430
17431 * frame.el (set-frame-configuration): Assign name parameter only
17432 if it has been set explicitly before.
17433
17434 2007-10-11 Tom Tromey <tromey@redhat.com>
17435
17436 * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
17437 frame is visible.
17438
17439 2007-10-10 Richard Stallman <rms@gnu.org>
17440
17441 * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
17442 in *Backtrace*.
17443
17444 * faces.el (face-font-selection-order): Doc fix.
17445
17446 * loadhist.el (unload-feature): Doc fix.
17447
17448 2007-10-13 Glenn Morris <rgm@gnu.org>
17449
17450 * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
17451 (octave-re-search-forward-kw, octave-re-search-backward-kw):
17452 Add doc string, and an explicit COUNT argument.
17453 (octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
17454 `inc' to search functions.
17455
17456 * faces.el (face-spec-set): When FRAME is nil, set the default for
17457 new frames (restores pre-2007-09-17 behavior). Doc fix.
17458
17459 2007-10-13 John W. Eaton <jwe@octave.org>
17460
17461 * progmodes/octave-mod.el (octave-looking-at-kw)
17462 (octave-re-search-forward-kw, octave-re-search-backward-kw):
17463 New functions.
17464 (octave-in-defun-p, calculate-octave-indent)
17465 (octave-blink-matching-block-open, octave-beginning-of-defun)
17466 (octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
17467 to search for regexps that contain case-sensitive keywords.
17468 (octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
17469 (octave-scan-blocks): Likewise, for octave-re-search-forward-kw.
17470
17471 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
17472
17473 * frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
17474 Do not use a single clause cond.
17475
17476 * cus-start.el (all): Use test that does not match the X11 version
17477 for mac.
17478
17479 2007-10-13 Markus Gritsch <m.gritsch@gmail.com> (tiny change)
17480
17481 * progmodes/ebrowse.el (ebrowse-tree-mode): Disable undo in the
17482 BROWSE buffer.
17483
17484 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
17485
17486 * cus-start.el (all): Undo previous change.
17487
17488 2007-10-13 Glenn Morris <rgm@gnu.org>
17489
17490 * woman.el (woman0-rename): Fix paren typo.
17491
17492 * mail/feedmail.el (feedmail-run-the-queue)
17493 (feedmail-look-at-queue-directory):
17494 * mail/reporter.el (reporter-dump-state):
17495 * net/eudc-hotlist.el (eudc-edit-hotlist):
17496 * net/eudc.el (eudc-display-records)
17497 (eudc-filter-duplicate-attributes)
17498 (eudc-distribute-field-on-records, eudc-query-form, eudc-process-form):
17499 * net/eudcb-bbdb.el (eudc-bbdb-filter-non-matching-record)
17500 (eudc-bbdb-query-internal):
17501 * net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
17502 * net/socks.el (socks-build-auth-list):
17503 * progmodes/cc-cmds.el (top level):
17504 * progmodes/cc-styles.el (c-make-styles-buffer-local, c-set-style):
17505 * progmodes/cperl-mode.el (top level, cperl-imenu-addback)
17506 (cperl-write-tags, cperl-tags-treeify):
17507 * progmodes/ebnf-yac.el (ebnf-yac-token-table):
17508 * progmodes/ebnf2ps.el (ebnf-map-name, ebnf-dimensions):
17509 * progmodes/idlw-shell.el (idlwave-shell-filter-bp, top level):
17510 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
17511 (idlwave-toolbar-remove-everywhere):
17512 * progmodes/idlwave.el (idlwave-indent-line)
17513 (idlwave-sintern-keyword-list, idlwave-scan-user-lib-files)
17514 (idlwave-write-paths, idlwave-all-method-classes)
17515 (idlwave-all-method-keyword-classes, idlwave-entry-keywords)
17516 (idlwave-fix-keywords, idlwave-display-calling-sequence)
17517 (idlwave-complete-in-buffer):
17518 * textmodes/org.el (org-export-as-html, org-export-as-ascii)
17519 (org-fast-tag-selection):
17520 * textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
17521 than mapcar.
17522
17523 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
17524
17525 * diff-mode.el (diff-fine-change): Add :group.
17526
17527 2007-10-12 Dan Nicolaescu <dann@ics.uci.edu>
17528
17529 * cus-start.el (all): Use the same test as the 22.2 branch.
17530
17531 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17532
17533 * diff-mode.el (diff-current-defun): Force recomputation of
17534 change-log-default-name.
17535
17536 2007-10-12 Chong Yidong <cyd@stupidchicken.com>
17537
17538 * startup.el (fancy-startup-screen): Remove an unnecessary newline
17539 and some leftover logic regarding dedicated frames. If showing
17540 concise startup screen, fit window to buffer.
17541 (command-line-1): If we will be using the splash screen, use
17542 find-file instead of find-file-other-window to find additional files.
17543 Comment out unused code for coping with the old sit-for behavior.
17544
17545 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17546
17547 * term/xterm.el (xterm-function-map, xterm-alternatives-map): Use the
17548 `meta' modifier consistently, rather than using sometimes meta
17549 sometimes alt.
17550
17551 2007-10-12 Martin Rudalics <rudalics@gmx.at>
17552
17553 * window.el (handle-select-window): Revert part of 2007-10-08
17554 change setting the input focus.
17555
17556 2007-10-12 Glenn Morris <rgm@gnu.org>
17557
17558 * startup.el (command-line): Do not read abbrev file in batch mode.
17559
17560 * emacs-lisp/byte-opt.el (top level):
17561 * mail/rmail.el (rmail-list-to-menu):
17562 * obsolete/hilit19.el (hilit-mode):
17563 * progmodes/cc-mode.el (c-postprocess-file-styles)
17564 (c-submit-bug-report):
17565 * textmodes/org-publish.el (org-publish-get-plist-from-filename):
17566 * textmodes/reftex.el (reftex-erase-all-selection-and-index-buffers)
17567 (reftex-access-parse-file):
17568 * textmodes/reftex-cite.el (reftex-do-citation)
17569 (reftex-insert-bib-matches):
17570 * textmodes/reftex-ref.el (reftex-offer-label-menu):
17571 * textmodes/reftex-sel.el (reftex-select-unmark):
17572 * textmodes/reftex-toc.el (reftex-toc-do-promote):
17573 * vc-mcvs.el (vc-mcvs-checkin): Use mapc rather than mapcar.
17574
17575 * cus-edit.el (custom-variable-menu, custom-face-menu)
17576 (custom-group-menu): Check init-file-user rather than
17577 user-init-file, in case cus-edit is loaded by site-run-file.
17578
17579 2007-10-11 Dan Nicolaescu <dann@ics.uci.edu>
17580
17581 * vc.el (vc-deduce-fileset): Delete unused code.
17582 (vc-next-action): Fix typos.
17583
17584 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
17585
17586 * bs.el (bs--mark-unmark): New function.
17587 (bs-mark-current, bs-unmark-current): Use it.
17588
17589 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
17590
17591 * vc.el (vc-diff):
17592 (vc-diff-internal): Merge a patch by Juanma Barranquero. Also,
17593 temporarily disable the check for his edge case of
17594 vc-diff (stopping it from grinding when called from $HOME), as
17595 it's calling some brittle code in vc-hooks.el.
17596 (with-vc-properties): Fix evaluation time of a macro argument.
17597 * ediff-vers.el (ediff-vc-internal):
17598 * vc-hooks.el:
17599 * loaddefs.el: Follow up on VC terminology change.
17600
17601 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
17602
17603 * follow.el (follow-stop-intercept-process-output):
17604 Use `follow-call-process-filter' rather than `process-filter'.
17605 Simplify.
17606
17607 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
17608
17609 * vc-hooks.el (vc-registered): Robustify this function a bit
17610 against filenames with no directory component.
17611
17612 2007-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17613
17614 * international/characters.el: Undo unwanted and unexplained change.
17615
17616 2007-10-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17617
17618 * ps-print.el: Fix the usage of :foreground and :background face
17619 attributes. Reported by Nikolaj Schumacher <n_schumacher@web.de>.
17620 (ps-print-version): New version 6.7.6.
17621 (ps-face-attributes, ps-face-attribute-list, ps-face-background):
17622 Fix code.
17623 (ps-face-foreground-color-p, ps-face-background-color-p)
17624 (ps-face-color-p): New inline funs.
17625
17626 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
17627
17628 * textmodes/org.el (org-additional-option-like-keywords): New constant.
17629 (org-complete): Use `org-additional-option-like-keywords'.
17630 (org-parse-local-options): New function.
17631
17632 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
17633
17634 * textmodes/org.el (org-in-clocktable-p): New function.
17635 (org-clock-report): Only update the table at point, or insert a new one.
17636 (org-clock-goto): New function.
17637 (org-open-file): Use `start-process-shell-command' instead of
17638 `shell-command' with an ampersand.
17639 (org-deadline, org-schedule): New argument REMOVE to remove the
17640 date from the entry.
17641 (org-agenda-schedule, org-agenda-deadline): Pass the prefix
17642 argument to `org-schedule' and `org-deadline'.
17643 (org-trim): Use the correct expressions for beginning and end of
17644 the string.
17645 (org-get-cleaned-entry): Trim the string before returning it.
17646 (org-clock-find-position): New function.
17647 (org-clock-into-drawer): New option.
17648 (org-agenda-tags-column): Rename from
17649 `org-agenda-align-tags-to-column'.
17650 (org-agenda-align-tags): Allow negative values for
17651 `org-agenda-tags-column'.
17652 (org-insert-labeled-timestamps-before-properties-drawer): Remove var.
17653 (org-agenda-to-appt): New optional argument FILTER.
17654 (org-completion-fallback-command): New variable.
17655 (org-complete): Use `org-completion-fallback-command'.
17656 (org-find-base-buffer-visiting): Catch the case that there is no
17657 buffer visiting the file.
17658 (org-property-or-variable-value): New function.
17659 (org-todo): Use `org-property-or-variable-value'
17660 (org-agenda-compact-blocks): New option.
17661 (org-prepare-agenda, org-agenda-list): Use `org-agenda-compact-blocks'.
17662 (org-agenda-schedule, org-agenda-deadline):
17663 Call `org-agenda-show-new-time'.
17664 (org-agenda-show-new-time): New argument PREFIX.
17665 (org-colgroup-info-to-vline-list): Fix but that cause a
17666 shift in the vertical lines.
17667 (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
17668 (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
17669 (org-indent-item): No arg in call to `org-fix-bullet-type'.
17670 (org-fix-bullet-type): Remove argument.
17671 (org-read-date): Check for am/pm twice, to catch the end time.
17672 (org-goto-map): Use `suppress-keymap'.
17673 (org-remember-apply-template): Respect the dynamically scoped
17674 selection character.
17675
17676 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
17677
17678 * frame.el (frame-inherited-parameters): Remove unused `environment'
17679 parameter, and let server.el add `client' when needed.
17680
17681 * server.el (server-create-tty-frame)
17682 (server-create-window-system-frame): Set frame-inherited-parameters.
17683
17684 * frame.el (frame-inherited-parameters): New var.
17685 (make-frame): Use it.
17686
17687 * font-lock.el (lisp-font-lock-keywords-2): Remove let-environment.
17688
17689 * env.el (let-environment): Remove. Unused.
17690 (read-envvar-name): Simplify.
17691 (setenv): Remove unused arg `frame'.
17692
17693 * help-fns.el (describe-variable): Add missing " " for multiline
17694 obsolescence info and missing EOL after global value.
17695
17696 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
17697
17698 * add-log.el:
17699 * ediff-vers.el:
17700 * log-view.el:
17701 * pcvs.el:
17702 * vc-arch.el:
17703 * vc-bzr.el:
17704 * vc-cvs.el:
17705 * vc.el:
17706 * vc-git.el:
17707 * vc-hg.el:
17708 * vc-hooks.el:
17709 * vc-mcvs.el:
17710 * vc-mtn.el:
17711 * vc-rcs.el:
17712 * vc-sccs.el:
17713 * vc-svn.el: Terminology cleanup: workfile-version -> working-revision,
17714 {find,init,next,previous,annotate-*,log}-version ->
17715 {find,init,next,previous,annotate-*,log}-revision,
17716 annotate-focus-version -> annotate-working-revision, The term
17717 'focus' is gone. The term 'revision' is now used consistently
17718 everywhere that reference to a revision ID is intended, replacing
17719 older use of 'version'.
17720
17721 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
17722
17723 * follow.el: Change all instances of "Follow Mode" to "Follow
17724 mode" in docstrings and messages.
17725 (follow-menu-filter): Fix arg passed to `bound-and-true-p'.
17726
17727 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
17728
17729 * vc.el (vc-next-action): Rewrite completely; this principal
17730 entry point now operates on a current fileset selected either
17731 explicitly via VC-Dired or implicitly by visiting a file buffer,
17732 rather than always operating on the file of the current buffer as
17733 in older versions. Rewrite the rest of the mode to match.
17734 (with-vc-properties): Rewrite to operate on a file list.
17735 (with-vc-file): vc-checkin takes a file list argument now.
17736 (vc-post-command-functions): This hook now receives a file list.
17737 (vc-do-command): Take a either a file or a file list as argument.
17738 (vc-deduce-fileset): New function for deducing a file list to
17739 operate on.
17740 (vc-next-action-on-file, vc-next-action-dired): Remove.
17741 Merge into vc-next-action.
17742 (vc-register): Adapt to the fact that vc-start-entry now takes a
17743 file list.
17744 (vc-register-with): New function.
17745 (vc-start-entry): Take a file list argument rather than a
17746 file argument.
17747 (vc-checkout): Cope with vc-start-entry taking a file list.
17748 (vc-steal-lock): Cope with with-vc-properties taking a
17749 file list.
17750 (vc-checkin): Take a file list argument rather than a file argument.
17751 (vc-finish-logentry): Use the filelist passed by vc-start-entry.
17752 (vc-diff-internal): Rewrite for filesets.
17753 (vc-diff-sentinel): New function, tests whether changes were
17754 written into a diff buffer.
17755 (vc-diff): Rewrite for filesets.
17756 (vc-version-diff): Rewrite for filesets.
17757 (vc-print-log): Take a fileset argument.
17758 (vc-revert): Revert the entire selected fileset, not just the
17759 current buffer.
17760 (vc-rollback): Roll back the entire selected fileset, if
17761 possible. No longer accepts a prefix argument.
17762 (vc-update): Merge new changes for the entire selected
17763 fileset, not just the current buffer.
17764 (vc-revert-file): Cope with with-vc-properties taking a file list.
17765 (vc-default-dired-state-info): Add + status suffix if the file is
17766 modified.
17767 (vc-annotate-warp-version): Use the new diff machinery.
17768 (vc-log-edit): Take a file list argument rather than a file argument.
17769
17770 2007-10-10 Michael Albinus <michael.albinus@gmx.de>
17771
17772 Sync with Tramp 2.1.11.
17773
17774 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
17775 Pacify byte compiler.
17776
17777 * net/trampver.el: Update release number.
17778
17779 2007-10-09 Richard Stallman <rms@gnu.org>
17780
17781 * play/gamegrid.el (gamegrid-setup-default-font): Use face-spec-set.
17782
17783 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
17784
17785 * follow.el: Require easymenu.
17786 (follow-mode-hook, follow-mode): Doc fixes.
17787 (follow-mode-off-hook): Mark as obsolete.
17788
17789 2007-10-08 Martin Rudalics <rudalics@gmx.at>
17790
17791 * window.el (mouse-autoselect-window-cancel): Don't cancel for
17792 select-window or select-frame events.
17793 (handle-select-window): When autoselecting window set input
17794 focus. Restructure.
17795
17796 * frame.el (focus-follows-mouse): Move to frame.c.
17797 * cus-start.el (all): Add focus-follows-mouse.
17798
17799 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
17800
17801 * bs.el (bs-mode): Make sure global-font-lock-mode doesn't
17802 activate font-locking in the *buffer-selection* buffer.
17803 (bs-show-sorted): Doc fix.
17804
17805 * bs.el (bs--get-marked-string, bs--get-modified-string)
17806 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
17807 (bs--get-mode-name, bs-mode): Fix typos in docstrings.
17808 (bs--format-aux): Doc fix.
17809
17810 2007-10-08 Michaël Cadilhac <michael@cadilhac.name>
17811
17812 * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
17813
17814 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
17815
17816 * progmodes/gud.el (gud-gud-gdb-command-name): New option.
17817 (gud-gdb): New function for old M-x gdb (text command mode).
17818 (gud-gdb-command-name, gdb): Move to...
17819
17820 * progmodes/gdb-ui.el: ...here and adapt doc string.
17821 (gud-gdba-command-name, gdba): Delete.
17822
17823 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
17824
17825 * bs.el: Don't defvar `font-lock-verbose'.
17826 (bs-config-clear, bs-kill, bs-string-show-normally, bs-sort-functions)
17827 (bs--get-file-name): Fix typos in docstrings.
17828 (bs--show-header): Use `dolist' instead of `mapcar'.
17829 (bs-mode): Set `show-trailing-whitespace' to nil.
17830 (bs-buffer-sort-function, bs-mouse-select-other-frame)
17831 (bs-visits-non-file, bs-sort-buffer-interns-are-last, bs-show):
17832 Doc fixes.
17833
17834 2007-10-08 Adam Hupp <adam@hupp.org> (tiny change)
17835
17836 * progmodes/gud.el (pdb): Specify file for gud-break.
17837
17838 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
17839
17840 * progmodes/gud.el (gdb): Make graphical mode the default and
17841 switch to text command mode if appropriate, i.e., reverse previous
17842 arrangement.
17843 (gud-gdb-marker-filter): Adapt for above change.
17844
17845 * progmodes/gdb-ui.el (gdb-init-1): Don't set the values
17846 gud-minor-mode and gud-marker-filter.
17847 (gdb-fullname-regexp): New variable.
17848 (gud-gdba-marker-filter): Use it to switch to text command
17849 mode if appropriate.
17850
17851 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
17852
17853 * progmodes/gud.el (gud-display-line): Find source buffer even when
17854 GUD buffer has its own frame.
17855
17856 2007-10-08 Jan Djärv <jan.h.d@swipnet.se>
17857
17858 * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
17859
17860 2007-10-08 Jan Djärv <jan.h.d@swipnet.se>
17861
17862 * term/x-win.el (x-gtk-stock-map): Version is 22.2.
17863
17864 2007-10-08 Martin Rudalics <rudalics@gmx.at>
17865
17866 * allout.el (allout-before-change-handler): Replace got-char by
17867 goto-char.
17868
17869 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17870
17871 * vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.
17872 Used to try and automatically enabled smerge-mode in the presence of
17873 conflicts and to call `svn resolved' when the conflicts are gone.
17874 (vc-svn-parse-status): Remember the svn-specific status.
17875
17876 2007-10-08 Eli Zaretskii <eliz@gnu.org>
17877
17878 * menu-bar.el (menu-bar-search-documentation-menu): Rename from
17879 menu-bar-apropos-menu. All users changed.
17880 (menu-bar-help-menu): Change menu symbols to better match the text
17881 displayed by the menu.
17882
17883 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
17884
17885 * files.el (file-name-sans-versions): Use [:alnum:] and also allow
17886 #, @, : and ^.
17887
17888 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
17889
17890 * pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
17891
17892 * log-view.el (log-view-mode-map): Likewise.
17893
17894 * diff-mode.el (diff-mode-shared-map): Likewise.
17895
17896 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
17897
17898 * files.el (file-name-sans-versions): Also allow `A-Z'.
17899
17900 * vc.el: Mention all supported VC backends.
17901
17902 2007-10-08 Richard Stallman <rms@gnu.org>
17903
17904 * wid-edit.el (widget-specify-button): Don't merge mouse-face with
17905 neighbouring buttons.
17906
17907 2007-10-08 Andreas Schwab <schwab@suse.de>
17908
17909 * files.el (file-name-sans-versions): Also allow `_'.
17910
17911 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
17912
17913 * files.el (file-name-sans-versions): Allow - and a-z in version names.
17914
17915 * log-view.el (log-view-mode-map, log-view-mode-menu):
17916 Bind log-view-annotate-version.
17917 (log-view-beginning-of-defun, log-view-end-of-defun)
17918 (log-view-annotate-version): New functions.
17919 (log-view-mode): Use log-view-beginning-of-defun and
17920 log-view-end-of-defun.
17921
17922 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17923
17924 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix staging.
17925
17926 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17927
17928 * wid-edit.el (widget-image-insert): Don't merge mouse-face with
17929 neighbouring buttons.
17930
17931 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17932 Recognize gcc's use of "note" for informational messages.
17933
17934 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17935
17936 * textmodes/css-mode.el (css-electric-keys): electrick->electric.
17937 (css-mode): Update correspondingly.
17938
17939 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
17940
17941 * vc-git.el (vc-git-log-view-mode): Add font-lock patterns for
17942 Signed-off-by, Acked-by and Merge.
17943
17944 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17945
17946 * ediff-init.el (ediff-verbose-p): This var is not a constant.
17947
17948 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17949
17950 * vc-mtn.el: New file.
17951
17952 * vc-hooks.el (vc-handled-backends): Add Mtn.
17953
17954 2007-10-08 Eli Zaretskii <eliz@gnu.org>
17955
17956 * files.el (find-file, find-file-other-window)
17957 (find-file-other-frame, find-file-existing, find-file-read-only)
17958 (find-file-read-only-other-window)
17959 (find-file-read-only-other-frame)
17960 (find-alternate-file-other-window, find-alternate-file): Doc fixes.
17961
17962 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
17963
17964 * progmodes/gud.el (gdb-ready): New variable.
17965 (gdb): Set it to nil. Set gud-running to nil here...
17966 (gud-common-init): ...instead of here.
17967
17968 * progmodes/gdb-ui.el (gdba, gdb-send, gdb-source-info):
17969 Use gdb-ready. Discard input until GDB is ready to accept it.
17970
17971 2007-10-08 Martin Rudalics <rudalics@gmx.at>
17972
17973 * dired.el (dired-warning): Inherit from font-lock-warning-face to
17974 make it show up with eight colors.
17975
17976 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17977
17978 * diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
17979 diffs are concatenated with no intervening line.
17980
17981 2007-10-08 Dave Love <fx@gnu.org>
17982
17983 * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
17984 (python-font-lock-keywords): Update to the 2.5 version of the language.
17985 (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
17986 (python-backspace): Only behave funny in code.
17987 (python-compilation-regexp-alist): Add PDB stack trace regexp.
17988 (inferior-python-mode): Add PDB prompt regexp.
17989 (python-fill-paragraph): Refine the fenced-string regexp.
17990 (python-find-imports): Handle imports spanning several lines.
17991 (python-mode): Add `class' to hideshow support.
17992
17993 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17994
17995 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
17996 Use add-log-buffer-file-name-function rather than binding
17997 buffer-file-name, so we don't end up calling change-log-mode in *cvs*
17998 when `fi' is the ChangeLog file itself.
17999
18000 * outline.el (outline-flag-region): Use front-advance.
18001
18002 2007-10-08 Ilya Zakharevich <ilyaz@cpan.org>
18003
18004 * progmodes/cperl-mode.el: Merge upstream 5.23.
18005 (cperl-where-am-i): Remove function.
18006 (cperl-backward-to-noncomment): Don't go too far when skipping POD/HEREs
18007 (cperl-sniff-for-indent): De-invert [string] and [comment].
18008 When looking for label, skip s:m:y:tr.
18009 (cperl-indent-line): Likewise.
18010 (cperl-mode): Don't assume `font-lock-multiline' is auto-local.
18011 (cperl-windowed-init): Wrong `ps-print' handling.
18012 Both thanks to Chong Yidong.
18013 (cperl-look-at-leading-count): Could fail with unfinished RExen.
18014 (cperl-find-pods-heres): If the second part of s()[] is missing,
18015 don't try to highlight delimiters...
18016
18017 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
18018
18019 * progmodes/compile.el (compilation-get-file-structure): Complete last
18020 change by also using spec-directory in the puthash.
18021
18022 2007-10-08 Riccardo Murri <riccardo.murri@gmail.com>
18023
18024 * vc-bzr.el (vc-bzr-file-name-relative): Use 'when' instead of 'and'.
18025 (vc-bzr-status): Fix shadowing of variable 'status'.
18026 (vc-bzr-workfile-version): Use correct path to 'last-revision' file.
18027 Use `expand-file-name' instead of `concat'.
18028 (vc-bzr-annotate-command): Use option name '--long' instead of '-l'.
18029 Update annotation line regexp. Fixes launchpad.net [Bug 137435].
18030
18031 2007-10-08 Jason Rumney <jasonr@gnu.org>
18032
18033 * frame.el (focus-follows-mouse): Doc-fix. Change default on w32.
18034
18035 2007-10-08 Richard Stallman <rms@gnu.org>
18036
18037 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
18038 Add `safe-local-variable' property.
18039 (lisp-body-indent): Likewise.
18040
18041 2007-10-08 Richard Stallman <rms@gnu.org>
18042
18043 * files.el (hack-local-variables-confirm): Rename arg VARS to ALL-VARS.
18044 Add doc string.
18045
18046 2007-10-08 Martin Rudalics <rudalics@gmx.at>
18047
18048 * files.el (backup-buffer-copy): Try to overwrite old backup first.
18049
18050 2007-10-08 Martin Rudalics <rudalics@gmx.at>
18051
18052 * repeat.el (repeat): Use last-repeatable-command instead of
18053 real-last-command. Run pre- and post-command hooks for
18054 self-insertion. Update doc-string.
18055
18056 2007-10-08 Alexandre Julliard <julliard@winehq.org>
18057
18058 * vc-git.el (vc-git-state): Call git-add --refresh to update the
18059 state of the file.
18060 (vc-git-workfile-unchanged-p): Delegate implementation to vc-git-state.
18061 (vc-git-create-repo): Fix invalid command.
18062
18063 2007-10-08 Richard Stallman <rms@gnu.org>
18064
18065 * textmodes/flyspell.el (flyspell-mode):
18066 Catch errors in flyspell-mode-on.
18067
18068 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
18069
18070 * term/x-win.el (x-alternatives-map): Remove spurious parenthesis.
18071
18072 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
18073
18074 * international/encoded-kb.el (encoded-kbd-setup-display):
18075 Use input-decode-map rather than local-key-translation-map.
18076
18077 * term/rxvt.el (rxvt-alternatives-map): New map.
18078 (terminal-init-rxvt): Use it.
18079 Bind rxvt-function-map in input-decode-map.
18080
18081 * term/xterm.el (xterm-alternatives-map): New map.
18082 (terminal-init-xterm): Use it.
18083 Bind xterm-function-map in input-decode-map.
18084
18085 * term/x-win.el (x-alternatives-map): New var.
18086 (x-setup-function-keys): Use it.
18087
18088 * help-fns.el (describe-variable): Slightly change the layout of
18089 meta-info to separate it better from the docstring.
18090 Standardize insertion of extra empty lines in various circumstances.
18091
18092 * diff-mode.el (diff-hunk-style): New fun.
18093 (diff-end-of-hunk): Use it.
18094 (diff-context->unified): Use the new `apply' undo element,
18095 if applicable, so as to save undo-log space.
18096 (diff-fine-change): New face.
18097 (diff-fine-highlight-preproc): New function.
18098 (diff-fine-highlight): New command.
18099 (diff-mode-map, diff-mode-menu): Add diff-fine-highlight.
18100
18101 * smerge-mode.el (smerge-refine-chopup-region): Add `preproc' argument.
18102 (smerge-refine-highlight-change): Add `props' argument.
18103 (smerge-refine-subst): New function holding most of smerge-refine.
18104 (smerge-refine): Use it.
18105
18106 2007-10-08 Eric S. Raymond <esr@snark.thyrsus.com>
18107
18108 * vc.el (vc-default-wash-log): Remove unused code, the
18109 log washers all live in the backends now.
18110 (vc-default-comment-history): Correct for the fact
18111 that wash-log is argumentless in the new API.
18112
18113 2007-10-08 Michael Albinus <michael.albinus@gmx.de>
18114
18115 * net/tramp.el (tramp-find-foreign-file-name-handler): Check also host.
18116 (tramp-maybe-send-script): Apply `member' but `memq'.
18117 (tramp-advice-file-expand-wildcards): Simplify implementation.
18118
18119 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
18120
18121 * follow.el (follow-mode): Don't run hooks twice. Use `when'.
18122
18123 * mb-depth.el (minibuf-depth-indicator-function): New variable.
18124 (minibuf-depth-setup-minibuffer): Use it.
18125
18126 2007-10-07 Glenn Morris <rgm@gnu.org>
18127
18128 * simple.el (bad-packages-alist): Clarify Semantic and CEDET
18129 version numbers.
18130
18131 2007-10-06 Juri Linkov <juri@jurta.org>
18132
18133 * textmodes/fill.el (fill-paragraph-or-region): New function.
18134
18135 * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region
18136 instead of fill-paragraph.
18137
18138 * tutorial.el (tutorial--default-keys): Replace fill-paragraph
18139 with fill-paragraph-or-region. Suspend command is now the same
18140 `suspend-frame' on window systems and on tty.
18141
18142 * image.el (image-type): Check if image-types is bound to not fail
18143 on tty.
18144
18145 * delsel.el (delete-selection-pre-hook):
18146 * emulation/cua-base.el (cua-paste): Check if mouse-region-match
18147 is fbound to not fail on mouseless tty.
18148
18149 2007-10-06 Michael Albinus <michael.albinus@gmx.de>
18150
18151 * net/tramp.el (top): Move loading of tramp-util.el and
18152 tramp-vc.el to tramp-compat.el.
18153 (tramp-make-tramp-temp-file): Complete rewrite. Create remote
18154 temporary file if possible, in order to avoid a security hole.
18155 (tramp-do-copy-or-rename-file-out-of-band)
18156 (tramp-maybe-open-connection): Call `tramp-make-tramp-temp-file'
18157 with DONT-CREATE, because the connection is not setup yet.
18158 (tramp-handle-process-file): Rewrite temporary file handling.
18159 (tramp-completion-mode): New defvar.
18160 (tramp-completion-mode-p): Use it.
18161
18162 * net/tramp-compat.el (top): Load tramp-util.el and tramp-vc.el.
18163
18164 * net/tramp-fish.el (tramp-fish-handle-process-file):
18165 Rewrite temporary file handling.
18166
18167 2007-10-06 Eric S. Raymond <esr@snark.thyrsus.com>
18168
18169 * vc.el: Workfile version -> focus version change. Port various
18170 comments from new VC to reduce the noise in the diff.
18171 Patch in the new vc-create-repo function to go with the
18172 header comment about it already present.
18173 There are no changes to existing logic in this patch.
18174 (vc-revert-buffer1): Rename to vc-revert-buffer-internal.
18175
18176 2007-10-06 Aaron Hawley <aaronh@garden.org>
18177
18178 * autoinsert.el (auto-insert-alist): Add a Texinfo entry.
18179
18180 2007-10-05 Chris Moore <dooglus@gmail.com>
18181
18182 * server.el (server-kill-new-buffers): Doc fix.
18183
18184 2007-10-05 John W. Eaton <jwe@octave.org>
18185
18186 * progmodes/octave-mod.el (octave-abbrev-table): Add "until".
18187 (octave-begin-keywords): Add "do".
18188 (octave-end-keywords): Remove "end".
18189 (octave-reserved-words): Add "end". Remove "all_va_args",
18190 "gplot", and 'gsplot".
18191 (octave-text-functions): Remove "gset", "gshow", "set", and "show".
18192 (octave-variables): Remove "IMAGEPATH", "INFO_FILE",
18193 "INFO_PROGRAM", "LOADPATH", "__error_text__", "automatic_replot",
18194 "default_return_value", "define_all_return_values",
18195 "do_fortran_indexing", "empty_list_elements_ok",
18196 "gnuplot_has_multiplot", "implicit_str_to_num_ok",
18197 "ok_to_lose_imaginary_part", "prefer_column_vectors",
18198 "prefer_zero_one_indexing", "propagate_empty_matrices",
18199 "resize_on_range_error", "treat_neg_dim_as_zero",
18200 "warn_assign_as_truth_value", "warn_comma_in_global_decl",
18201 "warn_divide_by_zero", "warn_function_name_clash",
18202 "warn_missing_semicolon", "whitespace_in_literal_matrix".
18203 Add "DEFAULT_EXEC_PATH", "DEFAULT_LOADPATH", "IMAGE_PATH",
18204 "crash_dumps_octave_core", "sighup_dumps_octave_core",
18205 "sigterm_dumps_octave_core".
18206 (octave-block-match-alist): Remove "end" from block-end keywords.
18207 (octave-mode): Update ftp site address.
18208
18209 2007-10-05 Dan Nicolaescu <dann@ics.uci.edu>
18210
18211 * vc.el: Reorder functions, no code changes.
18212
18213 2007-10-04 Michael Albinus <michael.albinus@gmx.de>
18214
18215 * net/tramp.el (tramp-make-temp-file): Move to tramp-compat.el.
18216 (tramp-do-copy-or-rename-file-directly): Handle tmpfile only in
18217 the cond clauses where needed.
18218 (tramp-handle-write-region): Rearrange code for proper handling of
18219 tmpfile.
18220
18221 * net/tramp-compat.el (tramp-compat-make-temp-file): New defsubst.
18222
18223 * net/tramp.el:
18224 * net/tramp-fish.el:
18225 * net/tramp-ftp.el:
18226 * net/tramp-smb.el: Rename `tramp-make-temp-file' to
18227 `tramp-compat-make-temp-file'.
18228
18229 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
18230
18231 * image-dired.el (image-dired-image-at-point-p): Fix typo in docstring.
18232
18233 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18234
18235 * emacs-lisp/copyright.el (copyright-update): Don't update if the file
18236 already uses a more recent copyright version than the "current" one.
18237
18238 2007-10-03 Michaël Cadilhac <michael@cadilhac.name>
18239
18240 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
18241 (doc-view-insert-image): Minor aesthetical docstring changes.
18242
18243 2007-10-03 Tassilo Horn <tassilo@member.fsf.org>
18244
18245 * doc-view.el (doc-view): Don't ignore pdf and dvi files when
18246 completing filename.
18247 (doc-view-search-internal): Docstring change.
18248
18249 2007-10-03 Michael Albinus <michael.albinus@gmx.de>
18250
18251 * net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
18252 (tramp-file-name-handler-alist):
18253 Add `tramp-handle-insert-file-contents-literally'. Needed for XEmacs.
18254 (tramp-make-temp-file): Use `make-temp-name'. `make-temp-file',
18255 used before, creates the file already, which is not desired.
18256 (tramp-do-copy-or-rename-file-directly): Simplify handling of
18257 temporary file.
18258 (tramp-handle-insert-file-contents): Assign the result in the
18259 short track case.
18260 (tramp-handle-insert-file-contents-literally): New defun.
18261 (tramp-completion-mode-p): Revert change from 2007-09-24.
18262 Checking for `return' etc as last character is not sufficient, for
18263 example in dired-mode when entering <g> (revert-buffer) or
18264 <s> (dired-sort).
18265
18266 * net/tramp-compat.el (top): Add also compatibility code for loading
18267 appropriate timer package.
18268 (tramp-compat-copy-tree): Check for `subrp' and `symbol-file' in
18269 order to avoid autoloading problems.
18270
18271 * net/tramp-fish.el:
18272 * net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
18273
18274 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
18275 where the second parameter of `copy-file' or `rename-file' is a
18276 remote file but not via ftp.
18277
18278 2007-10-02 Richard Stallman <rms@gnu.org>
18279
18280 * frame.el (cursor-in-non-selected-windows): Doc fix.
18281
18282 2007-10-01 Thien-Thi Nguyen <ttn@gnuvola.org>
18283
18284 * play/zone.el (zone): Let-bind show-trailing-whitespace to nil.
18285 Suggested by Chris Moore <christopher.ian.moore@gmail.com>.
18286
18287 2007-10-01 Jay Belanger <jay.p.belanger@gmail.com>
18288
18289 * calc/calc-math.el (math-largest-emacs-expt): Handle the cases
18290 when `expt' doesn't give range errors.
18291
18292 2007-10-01 Markus Triska <markus.triska@gmx.at>
18293
18294 * calc/calc-math.el (math-smallest-emacs-expt):
18295 Make the computation more robust.
18296
18297 2007-09-30 David Kastrup <dak@gnu.org>
18298
18299 * startup.el (argv): Alias for `command-line-args-left' to use as
18300 `(pop argv)' inside of --eval command sequences. Allows for
18301 passing shell commands into Emacs verbatim without need for Lisp
18302 quoting.
18303
18304 * autorevert.el (auto-revert-handler): In `auto-revert-tail-mode',
18305 check only for changed size.
18306 (auto-revert-tail-handler): Get size from caller. If the file has
18307 shrunk, tail the whole file again (the file presumably has been
18308 rewritten).
18309
18310 * woman.el (woman-topic-all-completions, woman-mini-help):
18311 Fix fallout from 2007-09-07 introduction of `dolist' when the list
18312 actually was being manipulated in the loop.
18313 (woman-Cyg-to-Win, woman-pre-process-region)
18314 (woman-horizontal-escapes, woman-if-body, woman-unescape)
18315 (woman-strings, woman-special-characters, woman1-hc)
18316 (woman-change-fonts, woman-find-next-control-line):
18317 Use `match-beginning' rather than `match-string' when the result is
18318 just used as a flag.
18319
18320 2007-09-30 Michael Albinus <michael.albinus@gmx.de>
18321
18322 * net/tramp-compat.el: New file.
18323
18324 * net/tramp.el:
18325 * net/tramp-fish.el:
18326 * net/tramp-smb.el:
18327 * net/tramp-uu.el:
18328 * net/trampver.el: Move compatibility code to tramp-compat.el.
18329 Apply `mapc' instead of `mapcar' when the code needs side effects
18330 only. Move utf-8 coding cookie to the second line.
18331
18332 2007-09-30 Reiner Steib <Reiner.Steib@gmx.de>
18333
18334 * term/x-win.el (x-gtk-stock-map): Add Gnus and MH-E icons.
18335 Improve custom type.
18336 (icon-map-list): Make it customizable. Document how to disable
18337 stock icons.
18338
18339 2007-09-30 Richard Stallman <rms@gnu.org>
18340
18341 * play/zone.el (zone-hiding-modeline): Use mode-line-format.
18342
18343 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
18344
18345 * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode. Rewrite.
18346 (t-mouse-mode): New compatibility alias.
18347
18348 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
18349
18350 * server.el (server-delete-client): Only delete the terminal if it
18351 is non-nil.
18352
18353 2007-09-28 Michael Albinus <michael.albinus@gmx.de>
18354
18355 * net/tramp.el (with-file-property, with-connection-property):
18356 Highlight as keyword.
18357 (tramp-rfn-eshadow-setup-minibuffer)
18358 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
18359 (tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
18360 (tramp-do-copy-or-rename-file-directly)
18361 (tramp-do-copy-or-rename-file-out-of-band)
18362 (tramp-handle-shell-command, tramp-get-debug-buffer)
18363 (tramp-send-command-and-read, tramp-equal-remote)
18364 (tramp-get-local-gid): Pacify byte-compiler.
18365 (tramp-handle-file-name-directory): Result shall not be expanded.
18366 (tramp-find-foreign-file-name-handler): Rewrite.
18367 (tramp-dissect-file-name): Add optional parameter NODEFAULT.
18368
18369 * net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
18370
18371 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
18372 Apply `tramp-completion-mode-p'.
18373 (tramp-fish-handle-set-file-times)
18374 (tramp-fish-handle-executable-find)
18375 (tramp-fish-handle-process-file, tramp-fish-get-file-entries)
18376 (tramp-fish-retrieve-data): Pacify byte-compiler.
18377
18378 * net/tramp-gw.el (tramp-gw-basic-authentication):
18379 Call `tramp-read-passwd' with first parameter `nil'.
18380
18381 2007-09-28 Glenn Morris <rgm@gnu.org>
18382
18383 * mail/supercite.el (sc-attribs-filter-namelist): Use mapc rather
18384 than mapcar.
18385
18386 * textmodes/tex-mode.el (tex-suscript-height-ratio)
18387 (tex-suscript-height-minimum): New customizable variables.
18388 (tex-suscript-height): New function.
18389 (superscript, subscript): Set height using tex-suscript-height
18390 rather than fixing at 0.8.
18391 (tex-fontify-script, tex-font-script-display): Add :version tag.
18392
18393 2007-09-27 Juanma Barranquero <lekktu@gmail.com>
18394
18395 * progmodes/python.el (python-eldoc-function): Doc fix.
18396
18397 2007-09-27 Glenn Morris <rgm@gnu.org>
18398
18399 * image.el (image-type-auto-detected-p): Doc fix. Don't detect an
18400 image if it is not in image-type-auto-detectable, or is there with
18401 a nil value.
18402
18403 2007-09-27 Michael Albinus <michael.albinus@gmx.de>
18404
18405 * net/tramp.el (tramp-maybe-open-connection): Make test for alive
18406 connection more robust.
18407
18408 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
18409
18410 * emacs-lisp/eldoc.el (eldoc-function-argstring-format):
18411 Deal with the case that special &keywords are at the beginning or
18412 end of the argument list. Also add some (incomplete) support for
18413 non-standard arglists.
18414
18415 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
18416
18417 * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
18418 (eldoc-message-commands, eldoc-current-idle-delay)
18419 (eldoc-function-argstring-format): Fix typos in docstrings.
18420
18421 2007-09-26 Jay Belanger <jay.p.belanger@gmail.com>
18422
18423 * calc/calc-units.el (calc-convert-units)
18424 (calc-convert-temperature): Remove unnecessary colons.
18425
18426 2007-09-26 Bastien Guerry <bzg@altern.org>
18427
18428 * textmodes/org-export-latex.el (org-export-latex-tables-verbatim):
18429 New function.
18430 (org-export-latex-remove-from-headlines): Name changed because of typo.
18431 (org-export-latex-quotation-marks-convention): Option removed.
18432 (org-export-latex-make-preamble): Handle the DATE option.
18433 (org-export-latex-cleaned-string): Now the only cleaning function,
18434 synched up with org.el.
18435 (org-export-latex-lists, org-export-latex-parse-list)
18436 (org-export-list-to-latex): New functions.
18437
18438 2007-09-26 Carsten Dominik <dominik@science.uva.nl>
18439
18440 * textmodes/org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
18441 (org-outline-regexp): New constant.
18442 (org-remember-handler): Throw error when the target file is not in
18443 org-mode.
18444 (org-cleaned-string-for-export): No longer call
18445 `org-export-latex-cleaned-string' with an argument.
18446 (org-get-tags): Returns now a list, not a string.
18447 (org-get-tags-string): New function.
18448 (org-archive-subtree): No need to split return of `org-get-tags'.
18449 (org-set-tags, org-entry-properties): Call `org-get-tags-string'
18450 instead of `org-get-tags'.
18451 (org-agenda-format-date): Rename from `org-agenda-date-format'.
18452 (org-time-from-absolute, org-agenda-format-date-aligned): New funs.
18453 (org-compatible-face): New argument INHERITS. Inherit from this
18454 face if possible.
18455 (org-level-1, org-level-2, org-level-3, org-level-4)
18456 (org-level-5, org-level-6, org-level-7, org-level-8)
18457 (org-special-keyword, org-drawer, org-column, org-warning)
18458 (org-archived, org-todo, org-done, org-headline-done, org-table)
18459 (org-formula, org-code, org-agenda-structure)
18460 (org-scheduled-today, org-scheduled-previously)
18461 (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
18462 in the new way.
18463 (org-get-heading): New argument NO-TAGS.
18464 (org-fast-tag-selection-include-todo): Made defvar instead of
18465 defcustom, feature is not deprecated.
18466 (org-remember-store-without-prompt): New default value t.
18467 (org-todo-log-states): New variable.
18468 (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
18469 Compute the log states.
18470 (org-goto-map): More commands copied from global map. Also bind
18471 `org-occur'.
18472 (org-goto): Made into a general lookup command.
18473 (org-get-location): Complete rewrite.
18474 (org-goto-exit-command): New variable.
18475 (org-goto-selected-point): New variable.
18476 (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit):
18477 Set the new variables.
18478 (org-paste-subtree): Whitespace insertion strategy revised.
18479 (org-remember-apply-template): Protect v-A from the possibility
18480 that v-a might be nil.
18481 (org-remember-handler): Insertion rules revised.
18482 (org-todo): Respect org-todo-log-states.
18483 (org-up-heading-safe): New function.
18484 (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
18485
18486 2007-09-26 Dan Nicolaescu <dann@ics.uci.edu>
18487
18488 * progmodes/cc-cmds.el (c-indent-line-or-region): Only indent the
18489 region if in transient-mark-mode.
18490
18491 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
18492
18493 * calc/calc-ext.el (calc-init-extensions, calc-reset):
18494 * calc/calc-help.el (calc-full-help):
18495 * calc/calc-misc.el (another-calc):
18496 * calc/calc-store.el (calc-var-name-map):
18497 * calc/calc-stuff.el (calc-flush-caches):
18498 * calc/calc-units.el (math-build-units-table):
18499 * calc/calc.el (calc-digit-map, calc-dispatch-map, calc-mode)
18500 (calc-quit):
18501 * calendar/icalendar.el (icalendar--format-ical-event)
18502 (icalendar--convert-ical-to-diary):
18503 * emacs-lisp/authors.el (authors):
18504 * emacs-lisp/cust-print.el (custom-print-install)
18505 (custom-print-uninstall):
18506 * emacs-lisp/disass.el (disassemble-1):
18507 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
18508 * emacs-lisp/edebug.el (byte-compile-resolve-functions):
18509 * emacs-lisp/elint.el (elint-current-buffer, elint-check-defun-form)
18510 (elint-check-let-form, elint-check-condition-case-form)
18511 (elint-initialize):
18512 * emacs-lisp/elp.el (elp-results):
18513 * emacs-lisp/generic.el (generic-mode-internal):
18514 * emacs-lisp/re-builder.el (reb-delete-overlays):
18515 * emacs-lisp/regi.el (regi-interpret):
18516 * emacs-lisp/sregex.el (sregex--char-aux):
18517 * emulation/cua-rect.el (cua--deactivate-rectangle)
18518 (cua--highlight-rectangle, cua--rectangle-post-command):
18519 * emulation/viper-keym.el (viper-toggle-key, viper-ESC-key):
18520 * emulation/viper-macs.el (viper-describe-kbd-macros)
18521 (viper-describe-one-macro):
18522 * emulation/viper-util.el (viper-setup-master-buffer):
18523 * emulation/viper.el (set-viper-state-in-major-mode):
18524 * international/mule-diag.el (describe-current-coding-system):
18525 * language/ethio-util.el (ethio-fidel-to-sera-buffer):
18526 * mail/emacsbug.el (report-emacs-bug):
18527 * net/ange-ftp.el (ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
18528 * obsolete/hilit19.el (hilit-unhighlight-region)
18529 (hilit-set-mode-patterns):
18530 * play/solitaire.el (solitaire-check, solitaire-solve):
18531 * play/zone.el (zone-pgm-rotate):
18532 * progmodes/ada-mode.el (ada-save-exceptions-to-file):
18533 * progmodes/ada-prj.el (ada-prj-display-page):
18534 * progmodes/delphi.el (delphi-search-directory, delphi-find-unit-file)
18535 (delphi-debug-mode-map, delphi-mode-map, delphi-mode):
18536 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-view-exit-fn)
18537 (ebrowse-member-mode, ebrowse-save-tree-as, ebrowse-save-class):
18538 * progmodes/sh-script.el (sh-make-vars-local)
18539 (sh-reset-indent-vars-to-global-values):
18540 * progmodes/sql.el (top):
18541 * progmodes/vhdl-mode.el (vhdl-set-style, vhdl-regress-line):
18542 * progmodes/xscheme.el (top):
18543 * textmodes/artist.el (artist-mt-get-symbol-from-keyword-sub)
18544 (artist-go-retrieve-from-symbol-sub, artist-go-get-symbol-shift-sub)
18545 (artist-fc-retrieve-from-symbol-sub, artist-vaporize-line)
18546 (artist-vaporize-lines, artist-ellipse-compute-fill-info)
18547 (artist-submit-bug-report):
18548 * textmodes/flyspell.el (flyspell-delay-commands)
18549 (flyspell-deplacement-commands):
18550 * textmodes/table.el (table--generate-source-epilogue, table-insert)
18551 (table--generate-source-cells-in-a-row, table--make-cell-map)
18552 (*table--cell-describe-bindings): Use `mapc' rather than `mapcar'.
18553
18554 2007-09-25 Juanma Barranquero <lekktu@gmail.com>
18555
18556 * allout.el (produce-allout-mode-map, allout-process-exposed):
18557 * ansi-color.el (ansi-color-make-color-map):
18558 * autoinsert.el (auto-insert):
18559 * bookmark.el (bookmark-bmenu-list, bookmark-show-all-annotations):
18560 * dired-aux.el (dired-create-files):
18561 * dired.el (dired-restore-desktop-buffer):
18562 * ediff-diff.el (ediff-setup-fine-diff-regions):
18563 * ediff-mult.el (ediff-intersect-directories)
18564 (ediff-redraw-directory-group-buffer, ediff-dir-diff-copy-file)
18565 (ediff-redraw-registry-buffer):
18566 * ediff-ptch.el (ediff-fixup-patch-map):
18567 * ediff-util.el (ediff-toggle-multiframe, ediff-toggle-use-toolbar)
18568 (ediff-really-quit, ediff-clear-diff-vector):
18569 * emerge.el (emerge-really-quit):
18570 * ffap.el (ffap-replace-file-component):
18571 * filecache.el (file-cache-add-directory)
18572 (file-cache-add-directory-recursively)
18573 (file-cache-add-from-file-cache-buffer, file-cache-delete-file-regexp)
18574 (file-cache-delete-directory, file-cache-files-matching-internal)
18575 (file-cache-display):
18576 * files.el (cd):
18577 * find-lisp.el (find-lisp-insert-directory):
18578 * finder.el (finder-compile-keywords):
18579 * help.el (view-emacs-news):
18580 * hi-lock.el (hi-lock-write-interactive-patterns):
18581 * ido.el (ido-to-end, ido-set-matches-1):
18582 * image-dired.el (image-dired-display-thumbs, image-dired-remove-tag)
18583 (image-dired-mark-tagged-files):
18584 * jka-cmpr-hook.el (jka-compr-get-compression-info):
18585 * printing.el (pr-eval-local-alist, pr-eval-setting-alist):
18586 * ps-print.el (ps-background, ps-begin-file)
18587 (ps-build-reference-face-lists):
18588 * simple.el (clone-buffer):
18589 * startup.el (command-line):
18590 * tempo.el (tempo-insert-template, tempo-is-user-element)
18591 (tempo-forward-mark, tempo-backward-mark):
18592 * woman.el (woman-dired-define-keys): Use `mapc' rather than `mapcar'.
18593
18594 2007-09-25 Glenn Morris <rgm@gnu.org>
18595
18596 * textmodes/tex-mode.el (tex-font-script-display): Doc fix.
18597
18598 * view.el (view-search-no-match-lines): Add a doc string.
18599 Rewrite to simplify and work better.
18600
18601 2007-09-24 Dan Nicolaescu <dann@ics.uci.edu>
18602
18603 * progmodes/cc-mode.el (c-mode-base-map):
18604 Use c-indent-line-or-region instead of c-indent-line.
18605
18606 * indent.el (indent-for-tab-command): First check if the region is
18607 active.
18608
18609 2007-09-24 Michaël Cadilhac <michael@cadilhac.name>
18610
18611 * whitespace.el (whitespace-tickle-timer): Don't install the timer if
18612 whitespace-rescan-timer-time is 0.
18613
18614 2007-09-24 Karl Berry <karl@gnu.org>
18615
18616 * international/mule.el (coding-system-base): Fix doc string grammar.
18617
18618 2007-09-24 Michael Albinus <michael.albinus@gmx.de>
18619
18620 * net/tramp.el (tramp-completion-mode-p): Rename from
18621 `tramp-completion-mode'. Revert logic, check `return', `newline'
18622 and such alike. Packages like Icicles tend to use other completion
18623 characters but `tab' and `space' only.
18624
18625 2007-09-24 Adam Hupp <adam@hupp.org>
18626
18627 * progmodes/python.el (run-python): Import emacs module without
18628 waiting; prevents lockup on error.
18629
18630 2007-09-23 Richard Stallman <rms@gnu.org>
18631
18632 * mail/sendmail.el (mail-bury): Delete the frame
18633 if this frame looks like it was made for this message.
18634
18635 * completion.el (completion-separator-self-insert-command)
18636 (completion-separator-self-insert-autofilling):
18637 If `self-insert-command' has been remapped, use the substitute.
18638
18639 * simple.el (copy-region-as-kill): Doc fix.
18640
18641 * textmodes/org.el (org-confirm-shell-link-function)
18642 (org-confirm-elisp-link-function): Doc fixes.
18643
18644 2007-09-23 Glenn Morris <rgm@gnu.org>
18645
18646 * ses.el (ses-calculate-cell): Don't evaluate unsafe formulae.
18647
18648 2007-09-23 Dan Nicolaescu <dann@ics.uci.edu>
18649
18650 * term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
18651
18652 * term/tvi970.el (terminal-init-tvi970): Likewise.
18653
18654 * term/sun-mouse.el (print-mouse-format): Likewise.
18655
18656 * term/sun.el (scroll-down-in-place, scroll-up-in-place):
18657 Use forward-line instead of previous-line and next-line.
18658
18659 2007-09-22 Juri Linkov <juri@jurta.org>
18660
18661 * textmodes/org.el (org-confirm-shell-link-function): Doc fix.
18662
18663 * tutorial.el (tutorial--default-keys): Update standard bindings:
18664 rename `iconify-or-deiconify-frame' to `suspend-frame',
18665 and `save-buffers-kill-emacs' to `save-buffers-kill-terminal'.
18666
18667 2007-09-22 Juri Linkov <juri@jurta.org>
18668
18669 * startup.el (fancy-startup-text, fancy-about-text, fancy-startup-tail):
18670 Add help-echo to external links and to links without description.
18671 (fancy-splash-insert): Use help-echo from the 3rd element of the
18672 link specification list, or "Follow this link" if it's nil. Doc fix.
18673
18674 2007-09-22 Juri Linkov <juri@jurta.org>
18675
18676 * startup.el (command-line): Rename `inhibit-startup-message' to
18677 `inhibit-startup-screen'.
18678 (fancy-about-text): Use shorter label for "Ordering Manuals".
18679 (fancy-startup-tail): Add optional arg `concise'. When `concise'
18680 is nil, display a line with "To start..." and 3 links to useful
18681 tasks. Display the "Dismiss" button and "Don't show this message
18682 again" only when concise is non-nil.
18683 (fancy-startup-screen): Call `fancy-startup-tail' with optional
18684 arg `concise'. If CONCISE is non-nil, display a concise version
18685 of the splash screen in another window. Otherwise, switch to the
18686 startup buffer in the same window.
18687 (startup-echo-area-message): Change displayed binding from
18688 C-h C-p (describe-project) to C-h C-a (about-emacs), and change
18689 text "about the GNU system and GNU/Linux" to "about GNU Emacs and
18690 the GNU system".
18691 (display-startup-screen): Fix buffer name from "*About GNU Emacs*"
18692 to "*GNU Emacs*".
18693 (display-about-screen): Don't check the existence of the buffer
18694 "*About GNU Emacs*".
18695 (display-splash-screen): Make alias to `display-startup-screen'.
18696 (command-line-1): Rename `inhibit-startup-message' to
18697 `inhibit-startup-screen'. Inhibit startup screen when Emacs is
18698 started with command line options "-f", "-funcall", "-e", "-eval",
18699 "-execute", "-insert", "-find-file", "-file", "-visit".
18700 Inhibit startup screen when Emacs is started with a file name only
18701 on tty (i.e. don't inhibit it when started with a file name like
18702 "emacs FILE..." on a window system).
18703 (command-line-1): Simplify logic of displaying the startup screen:
18704 if file-count > 0, then display the concise version in another
18705 window, otherwise display full version in the same window.
18706
18707 * help.el (help-map): Bind C-h C-a to about-emacs.
18708 (help-for-help-internal): Add C-a description to C-h help text.
18709
18710 2007-09-22 Dan Nicolaescu <dann@ics.uci.edu>
18711
18712 * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
18713 (checkdoc-permit-comma-termination-flag): Autoload the
18714 safe-local-variable setting.
18715
18716 * bookmark.el (bookmark-xemacsp): Remove.
18717 (bookmark-make): Don't use bookmark-xemacsp,
18718 use (featurep 'xemacs) instead.
18719
18720 * speedbar.el (speedbar-frame-mode)
18721 (speedbar-frame-reposition-smartly)
18722 (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps)
18723 (speedbar-check-vc): Remove use of non-existent variable
18724 dframe-xemacsp, use (featurep 'xemacs) instead.
18725
18726 * indent.el (indent-for-tab-command): Indent the region if
18727 transient-mark-mode and the region is active.
18728
18729 2007-09-21 Francesco Potortì <pot@gnu.org>
18730
18731 * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
18732 add inferior-octave-directory-tracker to the buffer-local value
18733 of comint-input-filter-functions.
18734
18735 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
18736
18737 * xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
18738
18739 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
18740
18741 * frame.el (suspend-frame): Call `iconify-or-deiconify-frame' also
18742 on w32 frames.
18743
18744 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
18745
18746 * startup.el (normal-top-level): Remove DISPLAY from
18747 process-environment to let it be computed dynamically in callproc.c.
18748
18749 * frame.el (frame-initialize, make-frame):
18750 * faces.el (tty-set-up-initial-frame-faces):
18751 * env.el (setenv): Don't set display-environment-variable.
18752
18753 * server.el (server-getenv-from): Remove. Use getenv-internal instead.
18754 (server-create-tty-frame): Don't set unused `tty' property.
18755 Set `display' instead of display-environment-variable.
18756 (server-create-window-system-frame): No display-environment-variable.
18757
18758 2007-09-21 Michael Albinus <michael.albinus@gmx.de>
18759
18760 * rfn-eshadow.el (rfn-eshadow-setup-minibuffer-hook)
18761 (rfn-eshadow-update-overlay-hook): New defvars.
18762 (rfn-eshadow-setup-minibuffer, rfn-eshadow-update-overlay):
18763 Run the hooks.
18764
18765 * net/tramp.el (tramp-rfn-eshadow-overlay): New defvar.
18766 (tramp-rfn-eshadow-setup-minibuffer)
18767 (tramp-rfn-eshadow-update-overlay): New defuns. Hook into
18768 rfn-eshadow.el.
18769
18770 * net/tramp-smb.el (tramp-smb-errors): Add error message for call
18771 timeout.
18772
18773 2007-09-21 Glenn Morris <rgm@gnu.org>
18774
18775 * obsolete/sun-fns.el (emacs-quit-menu): Remove emacstool-related code.
18776 * term/sun-mouse.el (suspend-emacstool): Remove.
18777 * term/sun.el: Remove emacstool-related code.
18778
18779 * emacs-lisp/bytecomp.el (byte-compile-warnings)
18780 (byte-compile-warnings-safe-p): Add `mapcar'.
18781 (byte-compile-warning-types): Add mapcar and make-local.
18782 (byte-compile-normal-call): Add option to suppress mapcar warning.
18783 (top-level): Use mapc rather than mapcar in eval-when-compile.
18784
18785 * textmodes/tex-mode.el (tex-validate-region): Handle escaped parens.
18786 (tex-next-unmatched-eparen, tex-last-unended-eparen): New functions.
18787 (latex-forward-sexp-1, latex-backward-sexp-1): Doc fix.
18788 Handle escaped parens.
18789 (latex-forward-sexp): Doc fix.
18790
18791 * eshell/esh-mode.el (eshell-output-filter-functions):
18792 Add eshell-postoutput-scroll-to-bottom.
18793
18794 * loadup.el: Remove termdev.
18795
18796 * progmodes/fortran.el (fortran-mode-abbrev-table, fortran-line-length):
18797 * progmodes/f90.el (f90-mode-abbrev-table): Use mapc rather than mapcar.
18798
18799 2007-09-21 Markus Triska <markus.triska@gmx.at>
18800
18801 * emacs-lisp/bytecomp.el (byte-compile-normal-call): Warn when
18802 `mapcar' is called for effect.
18803
18804 2007-09-21 Kevin Ryde <user42@zip.com.au>
18805
18806 * international/mule.el (sgml-html-meta-auto-coding-function):
18807 Bind `case-fold-search' to t.
18808
18809 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18810
18811 * termdev.el: Remove.
18812
18813 * frame.el (get-device-terminal): New function. Moved from termdev.el.
18814 (frames-on-display-list): Use it.
18815
18816 * bindings.el: Bind C-z to suspend-frame instead of suspend-emacs.
18817
18818 * termdev.el (terminal-id): Ask terminal-live-p before giving up.
18819
18820 2007-09-20 Richard Stallman <rms@gnu.org>
18821
18822 * newcomment.el (comment-add): If EXTRA, double `comment-add' value.
18823
18824 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18825
18826 * add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
18827
18828 2007-09-20 Glenn Morris <rgm@gnu.org>
18829
18830 * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
18831 motion functions, rather than hard-coding "\n\n".
18832 (tex-validate-region): Check for eobp, to speed up.
18833 (tex-next-unmatched-end): Doc fix.
18834
18835 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18836
18837 * files.el (auto-mode-alist): Use archive-mode for .rar files.
18838
18839 * international/mule.el (auto-coding-alist): Rar archives are binary.
18840
18841 * arc-mode.el: Add basic support for Rar.
18842 (archive-find-type): Recognize Rar's signature.
18843 (archive-desummarize): New fun.
18844 (archive-summarize): Use it to restore the buffer's data in case
18845 someone wants to switch to some other major mode.
18846 (archive-resummarize): Use it as well.
18847 (archive-rar-summarize, archive-rar-extract): New functions.
18848
18849 * filesets.el: Remove spurious * in docstrings.
18850 (filesets-running-xemacs): Remove. Use (featurep 'xemacs) instead.
18851 (filesets-conditional-sort): Remove unused arg `simply-do-it'.
18852 (filesets-ingroup-collect): Remove unused arg `depth'.
18853 (filesets-update): Remove unused arg `version'.
18854
18855 * finder.el (finder-compile-keywords): Fix up comment style.
18856 (finder-mouse-face-on-line): previous-line -> forward-line.
18857
18858 * recentf.el: Remove spurious * in docstrings.
18859 (recentf-save-list): Fix up comment style.
18860
18861 * progmodes/octave-mod.el: Remove spurious * in docstrings.
18862 (octave-mode-map): Move init into declaration and remove \t binding.
18863 (octave-mode-startup-message): Remove unused var.
18864 (octave-scan-blocks): Remove unused arg `from'.
18865 (octave-forward-block, octave-down-block, octave-up-block):
18866 Update callers.
18867
18868 * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
18869 (meta-mode-map): Likewise and remove \t binding.
18870
18871 * net/snmp-mode.el: Remove spurious * in docstrings.
18872 (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
18873 (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
18874 (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
18875 that completion accepts lists of strings.
18876 (snmp-mode-syntax-table): Move initialization into declaration.
18877 (snmp-mode-map): Likewise and remove \t binding.
18878 (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
18879 (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
18880 (snmp-indent-command): Remove.
18881
18882 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
18883 binding, so tab-always-indent works right.
18884
18885 2007-09-19 Johannes Weiner <hannes@saeurebad.de>
18886
18887 * net/browse-url.el (browse-url-elinks-new-window): New function.
18888 (browse-url-elinks): Use browse-url-elinks-new-window.
18889 Accept optional second argument `new-window'. Fix typo in doc-string.
18890 (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
18891 Improve error message.
18892
18893 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
18894
18895 * net/browse-url.el (browse-url-url-encode-chars): Use the right
18896 parameter name in the function body.
18897 Reported by Johannes Weiner.
18898
18899 2007-09-19 Glenn Morris <rgm@gnu.org>
18900
18901 * net/socks.el (socks-open-network-stream): Signal an explicit
18902 error if the port associated with a service string can't be found.
18903
18904 * textmodes/tex-mode.el (tex-terminate-paragraph):
18905 Use backward-paragraph.
18906
18907 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18908
18909 * server.el (server-running-p): New function.
18910
18911 2007-09-18 Jason Rumney <jasonr@gnu.org>
18912
18913 * term/w32-win.el (w32-focus-frame): Make obsolete alias for
18914 x-focus-frame.
18915
18916 * frame.el (select-frame-set-input-focus, select-frame-by-name):
18917 Use x-focus-frame for w32.
18918
18919 2007-09-17 David Kastrup <dak@gnu.org>
18920
18921 * textmodes/tex-mode.el (tex-verbatim-environments):
18922 Eliminate CL dependency.
18923
18924 2007-09-17 Richard Stallman <rms@gnu.org>
18925
18926 * newcomment.el (comment-add): New arg EXTRA.
18927 (comment-region-default): Pass EXTRA if not indenting lines.
18928
18929 2007-09-17 Michaël Cadilhac <michael@cadilhac.name>
18930
18931 * net/browse-url.el (browse-url-url-encode-chars): New function.
18932 URL-encode some chars in a string.
18933 (browse-url-encode-url): Rewrite using the previous function.
18934 (browse-url-file-url): Use `browse-url-url-encode-chars'.
18935 (browse-url-elinks-sentinel): Fix typo.
18936 (browse-url-new-window-flag): Doc change.
18937
18938 2007-09-17 Glenn Morris <rgm@gnu.org>
18939
18940 * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
18941 filename from `--file-line-error', if it is available.
18942
18943 2007-09-17 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
18944
18945 * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
18946 TeX `--file-line-error' format.
18947
18948 2007-09-17 Dan Nicolaescu <dann@ics.uci.edu>
18949
18950 * xt-mouse.el: Delete add-hook calls that were moved to
18951 xterm-mouse-mode.
18952 (xterm-mouse-mode): Disable resume-tty-functions, explain why it
18953 does not work.
18954
18955 2007-09-17 Richard Stallman <rms@gnu.org>
18956
18957 * cus-face.el (custom-theme-set-faces): Undo previous change.
18958
18959 * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
18960
18961 2007-09-17 Glenn Morris <rgm@gnu.org>
18962
18963 * textmodes/tex-mode.el (tex-region): Simplify previous change,
18964 handling the case where the region is not in `tex-main-file'.
18965 (tex-region-1): Delete.
18966 (tex-region-header): New function, doing the header part of the
18967 old tex-region-1.
18968
18969 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18970
18971 * simple.el (newline): Simplify use of prefix-numeric-value.
18972 (line-move-partial): Remove unused var `ppos'.
18973 (line-move-1): Replace 9999 with most-positive-fixnum.
18974 (move-end-of-line): Use more efficient single-property search.
18975 (move-beginning-of-line): Remove unused var `start'.
18976 (blink-matching-open): Restructure in a more functional style.
18977
18978 2007-09-16 Michaël Cadilhac <michael@cadilhac.name>
18979
18980 * calendar/holidays.el (list-holidays): Remove the cyclic alias.
18981
18982 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18983
18984 * server.el (server-clients): Only keep procs, no properties any more.
18985 (server-client): Remove.
18986 (server-client-get, server-client-set): Remove, replace all callers by
18987 process-get and process-put resp.
18988 (server-clients-with, server-add-client, server-delete-client)
18989 (server-create-tty-frame, server-create-window-system-frame)
18990 (server-process-filter, server-execute, server-visit-files)
18991 (server-buffer-done, server-kill-buffer-query-function)
18992 (server-kill-emacs-query-function, server-switch-buffer)
18993 (server-save-buffers-kill-terminal): Update accordingly.
18994
18995 * server.el (server-with-environment): Simplify.
18996 (server-select-display, server-unselect-display): Re-add functions that
18997 seem to have been lost in the multi-tty merge.
18998 (server-eval-and-print, server-create-tty-frame)
18999 (server-create-window-system-frame, server-goto-toplevel)
19000 (server-execute, server-return-error): New functions extracted from
19001 server-process-filter.
19002 (server-execute-continuation): New functions.
19003 (server-process-filter): Restructure so that all arguments are analysed
19004 first and then acted upon in a subsequent stage. This way
19005 server-goto-toplevel can be executed later, when we know if
19006 it's necessary.
19007 Remove the "-version" and "-version-good" support.
19008
19009 2007-09-16 Drew Adams <drew.adams@oracle.com>
19010
19011 * cus-edit.el (custom-face-edit-activate): Doc fix.
19012
19013 2007-09-16 Glenn Morris <rgm@gnu.org>
19014
19015 * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
19016 Following cal-bahai renaming, update all instances of
19017 list-bahai-diary-entries to diary-bahai-list-entries,
19018 mark-bahai-diary-entries to diary-bahai-mark-entries,
19019 calendar-goto-bahai-date to calendar-bahai-goto-date,
19020 insert-bahai-diary-entry to diary-bahai-insert-entry,
19021 insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
19022 insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
19023 calendar-print-bahai-date to calendar-bahai-print-date.
19024
19025 * textmodes/tex-mode.el (tex-region): Handle the case where the
19026 region is not in `tex-main-file'. Move the old code that applies
19027 to both cases...
19028 (tex-region-1): ...to this new function.
19029
19030 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19031
19032 * vc.el (vc-process-sentinel): New function.
19033 (vc-exec-after): Use it instead of using ugly hackish analysis and
19034 construction of Elisp code.
19035 (vc-sentinel-movepoint): New dynamically scoped var.
19036 (vc-print-log, vc-annotate): Set it to move the user's point.
19037
19038 * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
19039 inhibit-modification-hooks.
19040
19041 * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
19042 (calendar-bahai-print-date, calendar-bahai-goto-date)
19043 (diary-bahai-list-entries, diary-bahai-insert-entry):
19044 New names to clean up the namespace a bit more.
19045 (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
19046
19047 2007-09-15 Glenn Morris <rgm@gnu.org>
19048
19049 * calendar/holidays.el (holiday-list): Rename it back to
19050 `list-holidays', but leave `holiday-list' as an alias.
19051
19052 * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
19053 custom group.
19054
19055 * textmodes/css-mode.el (css): New custom group.
19056 (css-electrick-keys, css-selector, css-property)
19057 (css-indent-offset): Specify custom group.
19058
19059 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19060
19061 * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
19062 (cvs-execute-single-file): Use process-file.
19063 (cvs-run-process): Use start-file-process.
19064
19065 2007-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19066
19067 * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
19068 level. Remove the hooks when turning off the mode.
19069
19070 * term/xterm.el: Require xt-mouse at compile time.
19071 (terminal-init-xterm): Turn on xterm mouse tracking for this
19072 terminal if xterm-mouse-mode is enabled.
19073
19074 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
19075
19076 * term/xterm.el (xterm-function-map): Replace bindings that were
19077 deleted by the merge.
19078
19079 2007-09-14 Ulf Jasper <ulf.jasper@web.de>
19080
19081 * play/bubbles.el (bubbles-version): Bump value to "0.5".
19082 (bubbles-mode-map): Move define-key statements here.
19083 (bubbles-game-theme-menu): Ditto.
19084 (bubbles-graphics-theme-menu): Ditto.
19085 (bubbles-menu): Ditto.
19086 (bubbles-mode): Initialize buffer-undo-list, redisplay.
19087 (bubbles--initialize): Reset buffer-undo-list, redisplay.
19088 (bubbles-plop): Set buffer-undo-list, redisplay.
19089 (bubbles-undo): Reset buffer-undo-list, redisplay.
19090 (bubbles--show-images): Take care of missing text properties.
19091
19092 2007-09-14 Glenn Morris <rgm@gnu.org>
19093
19094 * startup.el (fancy-startup-text, fancy-about-text): Fix face
19095 quoting.
19096
19097 * calendar/cal-hebrew.el, calendar/cal-menu.el
19098 * calendar/calendar.el, calendar/diary-lib.el
19099 * calendar/holidays.el: Rename all instances of
19100 list-calendar-holidays callers to calendar-list-holidays,
19101 list-holidays to holiday-list, check-calendar-holidays to
19102 calendar-check-holidays, mark-calendar-holidays to
19103 calendar-mark-holidays, and filter-visible-calendar-holidays to
19104 holiday-filter-visible-calendar.
19105
19106 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
19107
19108 * term/xterm.el (xterm-function-map): Add C-M- bindings.
19109
19110 2007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change)
19111
19112 * play/bubbles.el (bubbles--initialize-images): Fix bug:
19113 Use transparent background for empty cells in graphics mode.
19114
19115 2007-09-13 Jari Aalto <jari.aalto@cante.net>
19116
19117 * man.el (Man-default-man-entry): At end of line, continue looking
19118 to the next line for possible end of hyphenated command.
19119
19120 2007-09-13 Chris Moore <dooglus@gmail.com>
19121
19122 * shell.el (shell-resync-dirs): Don't move the cursor relative to
19123 the command being edited.
19124
19125 2007-09-12 Jim Meyering <jim@meyering.net> (tiny change)
19126
19127 * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
19128
19129 2007-09-12 Dan Nicolaescu <dann@ics.uci.edu>
19130
19131 * term/xterm.el (xterm-function-map): Add bindings for M-S- and
19132 C-M-S- keys.
19133
19134 * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
19135
19136 2007-09-12 Michaël Cadilhac <michael@cadilhac.name>
19137
19138 * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
19139 New argument `filename-p' to use one set of confusing chars or another.
19140 (browse-url-file-url): Use the argument.
19141 Suggested by Johannes Weiner.
19142
19143 2007-09-12 Romain Francoise <romain@orebokech.com>
19144
19145 * cus-start.el (all): Revert 2007-09-08 change.
19146
19147 2007-09-12 Aaron Hawley <aaronh@garden.org>
19148
19149 * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
19150 extract .Z files, since it is more common than uncompress.
19151
19152 2007-09-12 Glenn Morris <rgm@gnu.org>
19153
19154 * textmodes/org-publish.el (org-publish-org-to-html): Remove
19155 duplicate function definition.
19156
19157 2007-09-10 Chris Moore <dooglus@gmail.com>
19158
19159 * diff-mode.el (diff-sanity-check-hunk):
19160 Also accept single-line hunks.
19161
19162 2007-09-10 Chong Yidong <cyd@stupidchicken.com>
19163
19164 * startup.el (startup-screen-inhibit-startup-screen)
19165 (pure-space-overflow-message): New vars.
19166 (fancy-splash-insert): Allow functions for face and link specs.
19167 (fancy-splash-head): Remove unused arg. Move splash text...
19168 (fancy-startup-text, fancy-about-text): ...here.
19169 (fancy-startup-tail): Rename from fancy-splash-tail.
19170 (fancy-startup-screen, fancy-about-screen): Split off from
19171 fancy-splash-screens.
19172 (display-startup-screen): New function.
19173 (display-about-screen): Rename from display-splash-screen.
19174 (command-line-1): Use concise startup screen if necessary.
19175
19176 2007-09-10 Thien-Thi Nguyen <ttn@gnuvola.org>
19177
19178 * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
19179 Reported by Jan Djärv <jan.h.d@swipnet.se>.
19180
19181 2007-09-10 Dave Love <fx@gnu.org>
19182
19183 * outline.el (outline-4, outline-5, outline-7):
19184 Move font-lock-builtin-face down from 4 to 7 to better keep the
19185 progression of color brightness, and to better match Org-mode's faces.
19186
19187 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
19188
19189 * progmodes/meta-mode.el (meta-font-lock-keywords)
19190 (font-lock-match-meta-declaration-item-and-skip-to-next)
19191 (meta-comment-indent, meta-indent-previous-line)
19192 (meta-indent-unfinished-line, meta-beginning-of-defun)
19193 (meta-end-of-defun, meta-common-initialization): Handle \f.
19194 (meta-indent-unfinished-line): Do not handle a `%' in a string as
19195 a comment-start.
19196
19197 * files.el (file-modes-char-to-who, file-modes-char-to-right)
19198 (file-modes-rights-to-number): Auxiliary functions for symbolic to
19199 numeric notation of file modes.
19200 (file-modes-symbolic-to-number): New. Convert symbolic modes to its
19201 numeric value.
19202 (read-file-modes): New. Read either an octal value of a file mode or a
19203 symbolic value, and return its numeric value.
19204
19205 * dired-aux.el (dired-do-chmod): Change to use the built-in
19206 `set-file-modes' and the previous symbolic mode parsing functions.
19207
19208 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
19209
19210 * textmodes/texinfo.el: Remove spurious * in docstrings.
19211 (texinfo-mode-syntax-table, texinfo-mode-map):
19212 Initialize in the declaration.
19213
19214 * tmm.el: Remove spurious * in docstrings.
19215 (tmm-prompt): Use with-current-buffer.
19216
19217 * vcursor.el: Remove spurious * in docstrings.
19218 (vcursor-map): Initialize in the declaration.
19219 (vcursor-use-vcursor-map): Use define-minor-mode.
19220 (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
19221
19222 * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
19223 Initialize in the declaration.
19224 (widget-minor-mode): Use define-minor-mode.
19225
19226 * woman.el (woman-mode-map, woman-syntax-table):
19227 Initialize in the declaration.
19228
19229 2007-09-09 Tassilo Horn <tassilo@member.fsf.org>
19230
19231 * doc-view.el: New file.
19232
19233 2007-09-09 Juri Linkov <juri@jurta.org>
19234
19235 * Makefile.in (update-authors): Add etc/ to AUTHORS.
19236
19237 * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
19238
19239 * startup.el (initial-buffer-choice): Rename choice "Splash screen"
19240 to "Startup screen". Fix docstring.
19241 (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
19242 (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
19243 (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
19244 (initial-scratch-message): Fix docstring.
19245 (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
19246 Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
19247 Add link to "Customize Startup" and set interval between links to
19248 5 spaces.
19249 (fancy-about-text): Add links "Authors" and "Contributing".
19250 (fancy-splash-head): Add text "Welcome to " on the startup screen,
19251 and "This is " on the about screen. Add link to
19252 "http://www.gnu.org/software/emacs/" for "GNU Emacs".
19253 For the about screen move emacs version to the header from
19254 `fancy-splash-tail' (as it's done already for normal about screen).
19255 (fancy-splash-tail): Insert emacs version only for startup screen.
19256 (normal-splash-screen): Remove duplicate empty lines.
19257 (normal-about-screen): Add links "Authors" and "Contributing".
19258
19259 * menu-bar.el (menu-bar-help-menu):
19260 Move "About Emacs" and "About GNU" to the end of the Help menu.
19261 Move "Emacs Psychotherapist" after "Send Bug Report...".
19262 Move "External Packages" after "Find Emacs Packages".
19263
19264 2007-09-09 Michael Albinus <michael.albinus@gmx.de>
19265
19266 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
19267 they are useless with the byte compiler.
19268 (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
19269 (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
19270 (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
19271 (tramp-file-name-real-host, tramp-file-name-port)
19272 (tramp-find-method, tramp-find-user, tramp-find-host): Make them
19273 defuns.
19274
19275 * net/tramp-cache.el (top): Improve error message when
19276 `tramp-persistency-file-name' is corrupted.
19277
19278 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
19279
19280 * textmodes/org.el (org-re): Also replace the :alpha: class.
19281 (org-todo-tag-alist): Variable removed.
19282 (org-todo-key-alist, org-todo-key-trigger): New variables.
19283 (org-use-fast-todo-selection): New option.
19284 (org-log-done): Docstring fixed.
19285 (org-deadline-warning-days): New default value 14.
19286 (org-edit-timestamp-down-means-later): New option.
19287 (org-tag-alist): Docstring fixed.
19288 (org-fast-tag-selection-include-todo): New option.
19289 (org-export-language-setup): New languages added.
19290 (org-set-regexps-and-options): Compute the new variables.
19291 (org-paste-subtree): Cleaning up.
19292 (org-remember-apply-template): New escape %A.
19293 (org-todo): Call fast TODO selection.
19294 (org-fast-todo-selection): New function.
19295 (org-add-log-note): Allow prefix for abort exit.
19296 (org-at-property-p, org-entry-properties)
19297 (org-columns-get-autowidth-alist): Use :alpha: class.
19298 (org-get-wdays): New function.
19299 (org-agenda-remove-date): New variable.
19300 (org-agenda-get-deadlines): Use `org-get-wdays'.
19301 (org-agenda-get-deadlines): Reverse ee before returning.
19302 (org-format-agenda-item): New argument REMOVE-RE.
19303 (org-agenda-convert-date): Baha'i calendar added.
19304 (org-infile-export-plist): Also find DATE line.
19305 (org-get-min-level): New function.
19306 (org-export-as-html, org-export-as-ascii): Use the date format.
19307 (org-shiftup, org-shiftdown): Use.
19308 `org-edit-timestamp-down-means-later'.
19309 (org-assign-fast-keys): New function.
19310
19311 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
19312
19313 * cus-start.el (all): Add prefer-window-split-horizontally from
19314 window.c.
19315
19316 2007-09-08 Eli Zaretskii <eliz@gnu.org>
19317
19318 * net/browse-url.el (browse-url-galeon): Fix last change.
19319 (top-level): Require cl when compiling.
19320
19321 2007-09-08 Carsten Dominik <dominik@science.uva.nl>
19322
19323 * textmodes/org-export-latex.el: arch-tag restored.
19324
19325 * textmodes/org-publish.el: arch-tag restored.
19326
19327 2007-09-08 Masatake YAMATO <jet@gyve.org>
19328
19329 * progmodes/which-func.el (which-func-modes): Add diff-mode.
19330
19331 * progmodes/cc-langs.el: Support new keywords added to
19332 objective-c frontend of gcc.
19333 (c-simple-stmt-kwds): Add @throw.
19334 (c-block-stmt-2-kwds): Add @synchronized.
19335 (c-block-stmt-1-kwds): Add @finally and @try.
19336
19337 2007-09-07 Carsten Dominik <dominik@science.uva.nl>
19338
19339 * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
19340 (org-agenda-after-show-hook): New variable.
19341 (org-columns-compile-format)
19342 (org-columns-get-autowidth-alist, org-buffer-property-keys)
19343 (org-entry-properties, org-at-property-p): Allow [:alnum:] in
19344 property names.
19345 (org-get-wdays): New function.
19346
19347 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19348
19349 * simple.el (normal-erase-is-backspace-setup-frame): Massage.
19350
19351 * term/xterm.el (xterm-function-map): Initialize in the declaration.
19352
19353 * vc-arch.el (vc-arch-checkin): Fix typo.
19354
19355 2007-09-07 Johan Bockgård <bojohan@gnu.org>
19356
19357 * cus-face.el (custom-theme-set-faces): Set face attributes
19358 locally for each frame.
19359
19360 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19361
19362 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
19363 via font-lock-defaults.
19364
19365 * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
19366 derived-mode-p.
19367
19368 2007-09-07 Thien-Thi Nguyen <ttn@gnuvola.org>
19369
19370 * progmodes/autoconf.el (autoconf-definition-regexp):
19371 Handle optional square brackets around definition name.
19372
19373 2007-09-07 Johannes Weiner <hannes@saeurebad.de>
19374
19375 * net/browse-url.el (browse-url-browser-function): Add elinks.
19376 (browse-url-elinks-wrapper): New option.
19377 (browse-url-encode-url, browse-url-elinks)
19378 (browse-url-elinks-sentinel): New functions.
19379 (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
19380 (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
19381 Use new function browse-url-encode-url.
19382
19383 2007-09-07 Glenn Morris <rgm@gnu.org>
19384
19385 * version.el (emacs-version): Revert 2007-08-29 change: no need to
19386 say if multi-tty is present.
19387
19388 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19389
19390 * cus-start.el (split-window-preferred-function): Add custom info.
19391
19392 * calendar/holidays.el (holiday-list, calendar-check-holidays)
19393 (calendar-mark-holidays, calendar-list-holidays)
19394 (holiday-filter-visible-calendar): New names to clean up namespace.
19395 (filter-visible-calendar-holidays, list-calendar-holidays)
19396 (mark-calendar-holidays, check-calendar-holidays, list-holidays):
19397 Add compatibility aliases.
19398 (calendar-check-holidays, calendar-mark-holidays)
19399 (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
19400 (holiday-sexp): Replace append with list.
19401 (holiday-filter-visible-calendar): Replace append with push.
19402
19403 * woman.el: Remove spurious * in docstrings.
19404 (woman-mini-help, woman-non-underline-faces, woman0-rename)
19405 (woman-topic-all-completions-merge, woman-file-name-all-completions)
19406 (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
19407 (woman-write-directory-cache, woman-display-extended-fonts)
19408 (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
19409 (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
19410 (woman-mode): Use inhibit-read-only.
19411 (woman-negative-vertical-space): Use dotimes.
19412 (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
19413
19414 2007-09-06 Romain Francoise <romain@orebokech.com>
19415
19416 * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
19417 (vc-bzr-workfile-version): Use it.
19418
19419 2007-09-06 Sean O'Rourke <sorourke@cs.ucsd.edu>
19420
19421 * complete.el (PC-do-completion): Don't try to treat
19422 empty string as an abbreviation.
19423
19424 2007-09-06 Johan Bockgård <bojohan@dd.chalmers.se>
19425
19426 * help-fns.el (describe-variable): Keep doc's text properties.
19427
19428 2007-09-06 Dan Nicolaescu <dann@ics.uci.edu>
19429
19430 * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
19431 instead of a file.
19432
19433 2007-09-06 Glenn Morris <rgm@gnu.org>
19434
19435 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
19436 (checkdoc-minor-mode): Allow user to specify lighter via
19437 checkdoc-minor-mode-string.
19438
19439 2007-09-05 Richard Stallman <rms@gnu.org>
19440
19441 * startup.el (fancy-startup-text): Rename from fancy-splash-text.
19442 Several items removed, simplified, or put on one line.
19443 (fancy-about-text): Add substantial contents, part of startup text.
19444 (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
19445 (normal-splash-screen): Call normal-mouse-startup-screen,
19446 normal-no-mouse-startup-screen, or normal-about-screen.
19447 (normal-mouse-startup-screen): New fn, broken out, shortened.
19448 (normal-no-mouse-startup-screen): New fn, broken out.
19449 (normal-about-screen): New function, contents all new.
19450
19451 2007-09-05 Michaël Cadilhac <michael@cadilhac.name>
19452
19453 * emacs-lisp/rx.el (rx): Fix typo in docstring.
19454
19455 2007-09-05 Glenn Morris <rgm@gnu.org>
19456
19457 * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
19458 is bound.
19459
19460 2007-09-05 Johan Bockgård <bojohan@dd.chalmers.se>
19461
19462 * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
19463 in doc string.
19464
19465 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
19466
19467 * server.el (server-start, server-unload-hook): Undo previous change.
19468
19469 * xt-mouse.el: Undo previous change.
19470
19471 2007-09-04 Juri Linkov <juri@jurta.org>
19472
19473 * startup.el (fancy-about-text): New variable.
19474 (fancy-splash-delay, fancy-splash-max-time): Remove user options.
19475 (fancy-current-text, fancy-splash-stop-time)
19476 (fancy-splash-outer-buffer): Remove variables.
19477 (fancy-splash-head, fancy-splash-tail): Add new optional argument
19478 `startup' and use it to conditionally display different texts for
19479 Startup and About screens. Don't display Help commands on the About
19480 screen.
19481 (fancy-splash-screens-1): Remove function and move its content to
19482 `fancy-splash-screens' to the part that dislpays the About screen.
19483 (exit-splash-screen): Don't treat specially exiting from
19484 alternating screens.
19485 (fancy-splash-screens): Rename argument `static' to `startup'.
19486 Fix docstring. Remove code for displaying alternating screens.
19487 Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
19488 Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
19489 for `inhibit-read-only'.
19490 (normal-splash-screen): Rename argument `static' to `startup'.
19491 Fix docstring. Use argument `startup' to conditionally display
19492 different texts for Startup and About screens. Don't display Help
19493 commands on the About screen. Remove `unwind-protect' `sit-for'
19494 delay and `kill-buffer' after it.
19495 (display-startup-echo-area-message): Remove call to
19496 `use-fancy-splash-screens-p' because image.el is preloaded and
19497 doesn't display "Loading image... done".
19498 (display-splash-screen): Rename argument `static' to `startup'.
19499 Fix docstring.
19500
19501 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
19502
19503 * server.el (server-start, server-unload-hook):
19504 suspend-tty-functions has been renamed to suspend-tty-hook.
19505
19506 * xt-mouse.el: Likewise. resume-tty-functions has been renamed to
19507 resume-tty-hook.
19508
19509 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
19510
19511 * loadup.el: Fix merge problem, only load "button" once.
19512
19513 2007-09-03 Glenn Morris <rgm@gnu.org>
19514
19515 * vc-svn.el (vc-svn-print-log): If there is only one file, use
19516 "Working file:" as the prefix, for the sake of
19517 log-view-current-file.
19518
19519 2007-09-02 Dan Nicolaescu <dann@ics.uci.edu>
19520
19521 * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
19522 (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
19523 if the selected frames is in
19524 xterm-modify-other-keys-terminal-list.
19525 (xterm-turn-off-modify-other-keys): Add an optional frame
19526 parameter. Only turn off modify-other-keys if FRAME is in
19527 xterm-modify-other-keys-terminal-list.
19528 (xterm-remove-modify-other-keys): New function.
19529 (terminal-init-xterm): Use it. Deal with delete-frame hook.
19530 Add the selected frame to xterm-modify-other-keys-terminal-list.
19531
19532 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
19533
19534 * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
19535 (icon-map-list): New variable.
19536 (x-gtk-map-stock): Use icon-map-list.
19537
19538 2007-09-02 Romain Francoise <romain@orebokech.com>
19539
19540 * log-view.el (log-view-current-file): Balance parens.
19541
19542 2007-09-02 Glenn Morris <rgm@gnu.org>
19543
19544 * comint.el (comint-mode): Don't set scroll-conservatively.
19545
19546 * eshell/em-unix.el (eshell/time): Stringify and flatten the
19547 non-command arguments.
19548
19549 * log-view.el (log-view-current-file): Give a more explicit error
19550 if log-view-file-re fails to find a match.
19551
19552 2007-09-01 Thien-Thi Nguyen <ttn@gnuvola.org>
19553
19554 * emacs-lisp/bytecomp.el (byte-recompile-directory):
19555 Fix bug: Don't expand top-level file name more than once.
19556 Reported by Dmitry Antipov <dmantipov@yandex.ru>.
19557
19558 2007-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
19559
19560 * server.el (server-process-filter): Don't display the splash screen.
19561 It's annoying enough on the initial screen and becomes positively
19562 obnoxious here.
19563
19564 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
19565
19566 * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
19567 Change naming to use "avl-tree--" for internal functions.
19568
19569 2007-08-31 Dan Nicolaescu <dann@ics.uci.edu>
19570
19571 * term/x-win.el (x-menu-bar-open): Delete duplicated function from
19572 the merge.
19573 (global-set-key): Delete f10 mapping, now done in menu-bar.el.
19574 (provide): Move to the end of file.
19575
19576 * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
19577
19578 2007-08-31 Michaël Cadilhac <michael@cadilhac.name>
19579
19580 * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
19581 New variable. List of exceptions for the duplicated word rule.
19582 (flyspell-mark-duplications-flag): Mention it.
19583 (flyspell-word): Treat it.
19584
19585 * files.el (create-file-buffer): If the filename sans directory starts
19586 with spaces, remove them.
19587
19588 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
19589
19590 * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
19591 (x-gtk-map-stock): Use two directory elements when matching
19592 file name.
19593
19594 2007-08-31 James Wright <james@chumsley.org>
19595
19596 * eshell/em-unix.el (eshell/info): New function.
19597
19598 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
19599
19600 * frame.el (frame-initialize, make-frame):
19601 * server.el (server-process-filter):
19602 * faces.el (tty-set-up-initial-frame-faces): Don't set
19603 term-environment-variable since it's not used any more.
19604
19605 * env.el (setenv): Don't treat $TERM specially.
19606
19607 * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
19608 stated otherwise, subprocesses do not send back escape sequences
19609 corresponding to the terminal from which Emacs was started.
19610
19611 2007-08-31 Thien-Thi Nguyen <ttn@gnuvola.org>
19612
19613 * calculator.el: Require cl for compilation.
19614
19615 2007-08-30 Daniel Pfeiffer <occitan@esperanto.org>
19616
19617 * outline.el (outline-font-lock-levels): Comment out unused var.
19618 (outline-font-lock-face): Wrap around face list to handle any
19619 nesting depth gracefully.
19620
19621 2007-08-30 Michael Albinus <michael.albinus@gmx.de>
19622
19623 * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
19624 `set-file-times'.
19625
19626 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
19627
19628 * textmodes/org.el (org-export-visible): Fix drawers before export.
19629 (org-do-sort): Allow sorting by priority.
19630 (org-agenda-files): Ignore non-existing files.
19631 (org-agenda-skip-unavailable-files): New variable.
19632 (org-ellipsis): All a face as value.
19633 (org-mode): Interprete the face value of `org-ellipsis'.
19634 (org-archive-save-context-info): New option.
19635 (org-archive-subtree): Store context info in archived entry.
19636 (org-fast-tag-selection-can-set-todo-state): New variable.
19637 (org-fast-tag-selection): Allow setting TODO states through this
19638 interface.
19639 (org-cycle): Docstring updated.
19640 (org-todo-keyword-faces): New option.
19641 (org-get-todo-face): New function.
19642 (org-set-font-lock-defaults, org-agenda-highlight-todo):
19643 Use `org-get-todo-face'.
19644 (org-switch-to-buffer-other-window): New function.
19645 (org-table-edit-field, org-table-show-reference)
19646 (org-table-edit-formulas, org-add-log-note)
19647 (org-fast-tag-selection, org-agenda, org-prepare-agenda)
19648 (org-timeline): Use `org-switch-to-buffer-other-window' instead of
19649 `switch-to-buffer-other-window' to make sure that the temporary
19650 windows show up on the current frame.
19651 (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
19652 (org-get-entries-from-diary, org-replace-region-by-html):
19653 Don't allow pop-up frames.
19654 (org-agenda-get-deadlines, org-agenda-get-scheduled):
19655 Fix problems with time-of-day.
19656 (org-export-get-title-from-subtree): New function.
19657 (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
19658 with listing items that are DONE.
19659 (org-change-tag-in-region): New command.
19660 (org-agenda-skip-scheduled-if-done)
19661 (org-agenda-skip-deadline-if-done): Docstring clarified.
19662 (org-mode): Hide drawers on startup.
19663 (org-get-todo-face): New function.
19664 (org-todo-keyword-faces): New option.
19665 (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
19666 (org-remove-keyword-keys): New function.
19667
19668 2007-08-30 Jari Aalto <jari.aalto@cante.net> (tiny change)
19669
19670 * progmodes/grep.el (grep-find-ignored-directories):
19671 Add monotone _MTN bookkeeping directory in workspaces.
19672 Add RCS control directory. List items in alphabetical order.
19673
19674 * progmodes/grep.el (grep-files-aliases): Add cc alias.
19675 Sort items in alphabetical order. Fix parens.
19676
19677 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
19678
19679 * vc-hg.el (vc-hg-extra-menu-map): New variable.
19680 (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
19681 (vc-hg-pull): New functions.
19682 (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
19683
19684 * term/mac-win.el: Don't require url, only autoloaded url
19685 functions are used in this file.
19686
19687 2007-08-29 Andreas Schwab <schwab@suse.de>
19688
19689 * shell.el (shell): Return correct value from interactive spec.
19690
19691 2007-08-29 Glenn Morris <rgm@gnu.org>
19692
19693 * version.el (emacs-version): Increase to 23.0.50.
19694
19695 2007-08-29 Jan Djärv <jan.h.d@swipnet.se>
19696
19697 * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
19698
19699 2007-08-29 Juri Linkov <juri@jurta.org>
19700
19701 * loadup.el: Add "button" loading after "faces" and move "startup"
19702 to load after "button".
19703
19704 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
19705
19706 * loadup.el: Load term/mac-win on a Mac using Carbon.
19707
19708 * term/mac-win.el: Provide mac-win.
19709 (mac-initialized): New variable.
19710 (mac-initialize-window-system): New function. Move global setup here.
19711 (handle-args-function-alist, frame-creation-function-alist):
19712 (window-system-initialization-alist): Add mac entries.
19713 (x-setup-function-keys): New function containing all the
19714 top level function key definitions.
19715
19716 * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
19717
19718 * env.el (read-envvar-name): Don't consider the environment frame param.
19719
19720 * env.el (setenv):
19721 * frame.el (frame-initialize, make-frame):
19722 * faces.el (tty-set-up-initial-frame-faces):
19723 * server.el (server-process-filter): Set
19724 display-environment-variable and term-environment-variable.
19725
19726 * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
19727
19728 2007-08-29 Jason Rumney <jasonr@gnu.org>
19729
19730 * loadup.el: Only load term/x-win when X is compiled in.
19731 Load term/w32-win and dependencies on windows-nt.
19732
19733 * term/w32-win.el: Reorder to match x-win.el more closely.
19734 Provide w32-win. Don't throw error when global window-system not w32.
19735 (internal-face-interactive): Remove obsolete function.
19736 (x-setup-function-keys): Use local-function-key-map.
19737 (w32-initialized): New variable.
19738 (w32-initialize-window-system): Set it.
19739 Move more global setup here.
19740 (x-setup-function-keys): New function.
19741 (w32-initialize-window-system): Move non function key global setup here.
19742 (x-cut-buffer-max): Remove.
19743 (w32-initialize-window-system): New function.
19744 (handle-args-function-alist, frame-creation-function-alist):
19745 (window-system-initialization-alist): Add w32 entries.
19746
19747 2007-08-29 David Kastrup <dak@gnu.org>
19748
19749 * env.el (getenv): Pass frame to getenv-internal.
19750
19751 2007-08-29 Károly Lőrentey <lorentey@elte.hu>
19752
19753 * version.el (emacs-version): Show if multi-tty is present.
19754
19755 * loadup.el: Delay loading env; mule-conf gets confused by cl
19756 during bootstrap. Also load termdev and term/x-win.
19757
19758 * bindings.el (mode-line-client): New variable.
19759 (help-echo): Add it to the default mode-line format.
19760
19761 * cus-start.el: Remove bogus window-system reference from GTK test.
19762
19763 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map)
19764 (ebrowse-electric-position-mode-map):
19765 * ebuff-menu.el (electric-buffer-menu-mode-map):
19766 * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
19767 not `suspend-emacs'.
19768
19769 * ediff-wind.el (ediff-setup-windows-automatic): New function.
19770 (ediff-window-setup-function): Use it as default.
19771
19772 * files.el (save-buffers-kill-terminal): New function.
19773 (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
19774
19775 * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
19776 and `with-selected-frame'.
19777
19778 * help-fns.el (describe-variable): Describe frame-local variables
19779 correctly.
19780
19781 * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
19782 display support.
19783 (normal-erase-is-backspace-setup-frame): New function.
19784
19785 * subr.el (with-selected-frame): New function.
19786 (read-quoted-char): Use terminal-local binding of
19787 local-function-key-map instead of function-key-map.
19788
19789 * talk.el (talk): New function.
19790 (talk-handle-delete-frame): New function.
19791 (talk-add-display): Open a new frame only if FRAME was not a frame.
19792
19793 * termdev.el: New file.
19794
19795 * menu-bar.el (menu-bar-open): New function. Bind it to f10.
19796 * term/x-win.el: Don't bind f10.
19797 * tmm.el: Remove autoload binding for f10.
19798
19799 * international/encoded-kb.el (encoded-kbd-setup-display): Use
19800 `set-input-meta-mode'. Fix broken condition before set-input-mode.
19801 Store the saved input method as a terminal parameter. Add keymap
19802 parameter. Use it instead of changing key-translation-map directly.
19803 (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
19804 Remove.
19805 (encoded-kbd-setup-display): New function.
19806
19807 * international/mule-cmds.el (set-locale-environment): Fix getenv
19808 call. Use save-buffers-kill-terminal. Ignore window-system; always
19809 set the keyboard coding system. Add DISPLAY parameter.
19810 (set-display-table-and-terminal-coding-system): Add DISPLAY
19811 parameter. Pass it to set-terminal-coding-system.
19812
19813 * international/mule.el (keyboard-coding-system): Test for
19814 encoded-kbd-setup-display, not encoded-kbd-mode.
19815 (set-terminal-coding-system, set-keyboard-coding-system): Add
19816 DISPLAY parameter.
19817 (set-keyboard-coding-system): Use encoded-kbd-setup-display.
19818
19819 * term/README: Update.
19820
19821 * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
19822
19823 * term/x-win.el (x-setup-function-keys): New function. Move
19824 function-key-map tweaks here. Protect against multiple calls on
19825 the same terminal. Use terminal-local binding of
19826 local-function-key-map instead of function-key-map.
19827 (x-initialize-window-system): Make a copy of pure list. Pass a
19828 frame getenv.
19829
19830 * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
19831 * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
19832 * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
19833 * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
19834 * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
19835 local-function-key-map instead of function-key-map.
19836
19837 * term/rxvt.el, term/xterm.el: Speed up load time by protecting
19838 `substitute-key-definition' and `define-key' calls against
19839 multiple execution. Use terminal-local binding of
19840 local-function-key-map instead of function-key-map. Pass a frame
19841 to getenv.
19842
19843 * edmacro.el (edmacro-format-keys):
19844 * emulation/cua-base.el (cua--pre-command-handler):
19845 * isearch.el (isearch-other-meta-char):
19846 * xt-mouse.el: Use terminal-local binding of
19847 local-function-key-map instead of function-key-map.
19848
19849 * fringe.el (set-fringe-mode): Simplify and fix using
19850 `modify-all-frames-parameters'.
19851 * scroll-bar.el (set-scroll-bar-mode): Ditto.
19852 * tool-bar.el (tool-bar-mode): Ditto. Remove 'tool-bar-map length
19853 check before calling `tool-bar-setup'.
19854 (tool-bar-setup): New variable.
19855 (tool-bar-setup): Use it to guard against multiple calls. Add
19856 optional frame parameter, and select that frame before adding items.
19857 (toggle-tool-bar-mode-from-frame): New function.
19858
19859 * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
19860 (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
19861 toggle-tool-bar-mode-from-frame to change "Menu-bar" and
19862 "Tool-bar" toggles to reflect the state of the current frame.
19863 (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
19864
19865 * env.el: Require cl for byte compilation (for `block' and `return').
19866 (environment, setenv-internal): New functions.
19867 (let-environment): New macro.
19868 (setenv, getenv): Add optional terminal parameter. Update docs.
19869 (setenv): Use setenv-internal. Always set process-environment.
19870 Handle `local-environment-variables'.
19871 (read-envvar-name, setenv, getenv): Use frame parameters
19872 to store the local environment, not terminal parameters. Include
19873 `process-environment' as well.
19874
19875 * faces.el (tty-run-terminal-initialization): New function.
19876 (tty-create-frame-with-faces): Use it. Set up faces and
19877 background mode only after the terminal has been initialized.
19878 Call terminal-init-*. Don't load the initialization file more
19879 than once. Call set-locale-environment.
19880 (frame-set-background-mode): Handle the 'background-mode terminal
19881 parameter.
19882 (tty-find-type): New function.
19883 (x-create-frame-with-faces): Remove bogus check for
19884 first frame. Call `tool-bar-setup'. Don't make frame visible
19885 until we are done setting up all its parameters. Call
19886 x-setup-function-keys.
19887
19888 * frame.el (make-frame): Always inherit 'environment and 'client
19889 parameters. Set up the 'environment frame parameter, when needed.
19890 Also inherit 'client parameter. Don't override explicitly
19891 specified values with inherited ones. Add 'terminal frame
19892 parameter. Append window-system-default-frame-alist to parameters
19893 before calling frame-creation-function.
19894 (frame-initialize): Copy the environment from the initial frame.
19895 (window-system-default-frame-alist): Enhance doc string.
19896 (frame-notice-user-settings): Don't put 'tool-bar-lines in
19897 `default-frame-alist' when initial frame is on a tty.
19898 (modify-all-frames-parameters): Simplify using `assq-delete-all'.
19899 Remove specified parameters from `window-system-default-frame-alist'.
19900 (make-frame-on-tty, framep-on-display, suspend-frame):
19901 Extend doc string, update parameter names.
19902 (frames-on-display-list): Use terminal-id to get the display id.
19903 (frame-notice-user-settings): Extend to apply
19904 settings in `window-system-default-frame-alist' as well.
19905 (terminal-id, terminal-parameters, terminal-parameter)
19906 (set-terminal-parameter, terminal-handle-delete-frame): New functions.
19907 (delete-frame-functions): Add to `delete-frame-functions' hook.
19908 (blink-cursor-mode): Adapt blink-cursor-mode default
19909 value from startup.el.
19910 (make-frame-on-display): Protect condition on x-initialized when
19911 x-win.el is not loaded. Update doc.
19912 (suspend-frame): Use display-controlling-tty-p to decide between
19913 suspend-emacs and suspend-tty.
19914 (frames-on-display-list): Update for display ids.
19915 (framep-on-display): Ditto.
19916 (suspend-frame): Use display-name, not frame-tty-name.
19917 (selected-terminal): New function.
19918
19919 * server.el: Use `device' instead of `display' or `display-id' in
19920 variable and client parameter names.
19921 (server-select-display): Remove (unused).
19922 (server-tty-live-p, server-handle-delete-tty): Remove.
19923 (server-unquote-arg, server-quote-arg, server-buffer-clients):
19924 Update docs.
19925 (server-getenv-from, server-with-environment, server-send-string)
19926 (server-save-buffers-kill-terminal): New functions.
19927 (server-delete-client): Handle quits in kill-buffer. Don't kill
19928 modified buffers. Add extra logging. Delete frames after
19929 deleting the tty. Clear 'client parameter before deleting a frame.
19930 Use delete-display, not delete-tty.
19931 (server-visit-files): Don't set `server-existing-buffer' if the
19932 buffer already has other clients. Return list of buffers
19933 created. Update doc. Don't set client-record when nowait.
19934 (server-handle-delete-frame): Delete the client if this was its
19935 last frame. Check that the frame is alive. Remove bogus comment.
19936 Add note on possible race condition. Delete tty clients, if needed.
19937 (server-handle-suspend-tty): Use server-send-string. Kill the
19938 client in case of errors from process-send-string. Use the display
19939 parameter.
19940 (server-unload-hook): Remove obsolete delete-tty hook.
19941 (server-start): Ask before restarting if the old server still has
19942 clients. Add feedback messages. Remove obsolete delete-tty hook.
19943 (server-process-filter): Use server-send-string. Accept `-dir'
19944 command. Switch to *scratch* immediately after creating the frame,
19945 before evaluating any -evals. Protect `display-splash-screen'
19946 call in a condition-case. Explain why. Call
19947 `display-startup-echo-area-message' before
19948 `display-splash-screen'. Don't display the splash screen when no
19949 frame was created. Show the Emacs splash screen and startup echo
19950 area message. Display the *scratch* buffer by default. Store the
19951 local environment in a frame (not terminal) parameter. Do not try
19952 to decode environment strings. Fix reference to the 'display
19953 frame parameter. Change syntax of environment variables. Put
19954 environment into terminal parameters, not client parameters. Use
19955 a dummy client with --no-wait's X frames. In `-position LINE'
19956 handler, don't ruin the request string until the line number is
19957 extracted. Log opened files. Handle -current-frame command.
19958 Don't create frames when it is given. Don't bind X frames to the
19959 client when we are in -no-wait mode. Set locale environment
19960 variables from client while creating tty frames. Disable call to
19961 configure-display-for-locale. When processing -position command,
19962 don't change the request string until the parameters are
19963 extracted. Don't try to create an X frame when Emacs does not
19964 support it. Improve logging. Temporarily set ncurses-related
19965 environment variables to those of the client while creating a new
19966 tty frame. Select buffers opened by nowait clients, don't leave
19967 them buried under others. Set the display parameter, and use it
19968 when appropriate.
19969
19970 * startup.el (display-startup-echo-area-message): Handle
19971 `inhibit-startup-echo-area-message' here.
19972 (command-line-1): Moved from here.
19973 (fancy-splash-screens): Use `overriding-local-map' instead of
19974 `overriding-terminal-local-map' for now; the latter doesn't work
19975 right, it looses keypresses to another terminal. Use
19976 `overriding-terminal-local-map' to set up keymap. Install a
19977 `delete-frame-functions' hook to catch `delete-frame' events.
19978 Ignore `select-window' events to cope better with
19979 `focus-follows-mouse'. Don't switch back to the original buffer
19980 if the splash frame has been killed. Restore previous buffer, even
19981 if it's *scratch*.
19982 (normal-splash-screen): Don't let-bind `mode-line-format'; it
19983 changes the global binding - setq it instead. Use
19984 `save-buffers-kill-terminal'.
19985 (display-splash-screen): Don't do anything if the splash screen is
19986 already displayed elsewhere.
19987 (fancy-splash-exit, fancy-splash-delete-frame): New functions.
19988 (command-line): Replace duplicated code with a call to
19989 tty-run-terminal-initialization. Don't load the terminal
19990 initialization file more than once. Remove call to nonexistent
19991 function `set-locale-translation-file-name'.
19992
19993 * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
19994 parameters.
19995 (xterm-mouse-position-function, xterm-mouse-event): Update.
19996 (xterm-mouse-mode): Don't depend on current value of window-system.
19997 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
19998 Update for multi-tty.
19999 (turn-on-xterm-mouse-tracking-on-terminal)
20000 (turn-off-xterm-mouse-tracking-on-terminal)
20001 (xterm-mouse-handle-delete-frame): New functions.
20002 (delete-frame-functions, after-make-frame-functions)
20003 (suspend-tty-functions, resume-tty-functions): Install extra hooks
20004 for multi-tty.
20005
20006 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20007
20008 * simple.el (invisible-p): Remove: implemented in C now.
20009 (line-move-invisible-p): Remove obsolete alias.
20010
20011 2007-08-28 Juri Linkov <juri@jurta.org>
20012
20013 * image-mode.el (image-type): New variable.
20014 (image-mode): Set default major mode name to "Image[text]".
20015 (image-minor-mode): Change LIGHTER to display image-type in the
20016 mode line.
20017 (image-minor-mode): Set default image-type to "text".
20018 (image-toggle-display): After switching to text mode, set
20019 image-type to "text" and major mode name to "Image[text]".
20020 After switching to image mode, set image-type to actual image
20021 type, and add image type to major mode name. Let-bind the same
20022 variable names as arguments of `image-type' and `create-image'.
20023 Bind `type' to the result of `image-type' and use it as arg
20024 of `create-image' to not determine the image type twice.
20025
20026 2007-08-28 Michael Albinus <michael.albinus@gmx.de>
20027
20028 * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
20029 (tramp-set-file-uid-gid, tramp-get-local-uid)
20030 (tramp-get-local-gid): New defuns.
20031 (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
20032 (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
20033 Improve fast track.
20034 (tramp-do-copy-or-rename-file-directly): Sync parameter list with
20035 the other tramp-do-copy-or-rename-file-* functions. Major rewrite.
20036 (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
20037 (tramp-handle-write-region): Improve fast track.
20038 (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
20039 (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
20040 be nil.
20041
20042 2007-08-28 Ivan Kanis <apple@kanis.eu>
20043
20044 * time.el: New feature to display several time zones in a buffer.
20045 (display-time-world-mode, display-time-world-display)
20046 (display-time-world, display-time-world-timer): New functions.
20047 (display-time-world-list, display-time-world-time-format)
20048 (display-time-world-buffer-name, display-time-world-timer-enable)
20049 (display-time-world-timer-second, display-time-world-mode-map):
20050 New variables.
20051
20052 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
20053
20054 * term/x-win.el (x-gtk-stock-map): New variable.
20055 (x-gtk-map-stock): New function.
20056
20057 * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
20058 prev/next-node.
20059
20060 2007-08-28 Johan Bockgård <bojohan@dd.chalmers.se> (tiny change)
20061
20062 * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
20063
20064 2007-08-28 Glenn Morris <rgm@gnu.org>
20065
20066 * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
20067
20068 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
20069
20070 * progmodes/modula2.el (m2-definition, m2-module):
20071 Don't use previous-line. Reported by T. V. Raman.
20072
20073 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20074
20075 * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
20076 argument to tool-bar-mode call.
20077
20078 2007-08-27 Glenn Morris <rgm@gnu.org>
20079
20080 * diff-mode.el (diff-find-file-name): Only accept regular files,
20081 to rule out /dev/null, directories, etc.
20082
20083 * vc-svn.el (vc-svn-diff): If the repository version of all the
20084 files is the same as the specified OLDVERS, do a local diff.
20085
20086 2007-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
20087
20088 * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
20089 of buffers in uniquify-managed.
20090
20091 * simple.el (invisible-p): Rename from text-invisible-p.
20092 Update callers.
20093
20094 * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
20095 (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
20096 (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
20097 (cperl-etags-goto-tag-location): Use new style backquotes.
20098
20099 * net/browse-url.el: Remove spurious * in custom docstrings.
20100 (browse-url-filename-alist): Use new-style backquote.
20101
20102 * emacs-lisp/backquote.el (backquote-unquote-symbol)
20103 (backquote-splice-symbol): Clarify they're not new-style unquotes.
20104
20105 * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
20106 (\,@): Backslash the , and ,@ which are not new-style unquotes.
20107
20108 * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
20109
20110 * net/socks.el (socks-username/password-auth-filter):
20111 Remove unused vars `state' and `desired-len'.
20112 (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
20113 (socks-wait-for-state-change): Use new-style backquotes.
20114
20115 * pcvs.el (cvs-mode-status): Fix long-standing typo.
20116
20117 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
20118 backquotes after each `read' rather than once per buffer.
20119
20120 * dframe.el: Remove spurious * in custom docstrings.
20121 (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
20122 (dframe-xemacs20p): Remove, inline at the sole use point.
20123 (defface): Don't defvar the face, don't use old-style backquote.
20124 (defcustom): Don't use old-style backquote.
20125 (dframe-frame-parameter, dframe-mouse-event-p):
20126 Make it obvious that it's always defined.
20127 (dframe-popup-kludge): New function to replace
20128 dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
20129 (dframe-frame-mode, dframe-set-timer-internal)
20130 (dframe-mouse-set-point): Remove use of with-no-warnings from
20131 XEmacs-specific code.
20132 (dframe-set-timer-internal): Fix very old bug with
20133 post-command-idle-hook.
20134
20135 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
20136
20137 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Display a big fat
20138 warning if the file uses old style backquotes.
20139
20140 * emacs-lisp/bytecomp.el (byte-compile-log-file)
20141 (byte-recompile-directory, byte-compile-file)
20142 (byte-compile-from-buffer): Use with-current-buffer.
20143
20144 * simple.el (text-invisible-p): Rename from line-move-invisible-p.
20145 (line-move-invisible-p): Keep as an obsolete alias, just to be safe.
20146 (line-move-1, line-move-finish, line-move-to-column)
20147 (move-end-of-line, move-beginning-of-line): Use new name.
20148
20149 * emacs-lisp/backquote.el (backquote-delay-process): Fix last change.
20150
20151 * progmodes/ada-mode.el: Fix up comment style in header.
20152 (ada-check-emacs-version): Remove.
20153 (ada-mode): Set parse-sexp-* even if they don't exist: can't hurt.
20154 (ada-region-selected): Use (featurep 'xemacs) rather than contortions
20155 to try and quieten the byte-compiler.
20156 (ada-create-keymap): Use [(..)] keys, which work on both (X)Emacs.
20157
20158 * vc.el (vc-annotate-warp-version): Don't use previous-line.
20159
20160 2007-08-27 Johan Bockgård <bojohan@dd.chalmers.se>
20161
20162 * net/browse-url.el (browse-url-emacs): New function.
20163
20164 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
20165
20166 * emacs-lisp/avl-tree.el: New file.
20167
20168 2007-08-26 Michaël Cadilhac <michael@cadilhac.name>
20169
20170 * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
20171 was used.
20172
20173 2007-08-26 Sean O'Rourke <seano@cs.ucsd.edu>
20174
20175 * complete.el (PC-do-completion): Make RET accept a non-unique but
20176 complete expansion again.
20177
20178 2007-08-26 Thien-Thi Nguyen <ttn@gnuvola.org>
20179
20180 * eshell/esh-opt.el (eshell-eval-using-options):
20181 Add debug declaration.
20182
20183 2007-08-26 Dan Nicolaescu <dann@ics.uci.edu>
20184
20185 * log-view.el (log-view-toggle-mark-entry): Add docstring.
20186 (log-view-get-marked): Likewise.
20187
20188 * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
20189 (vc-delete-automatic-version-backups): Likewise.
20190
20191 * vc.el (vc-dired-buffers-for-dir): Likewise.
20192
20193 2007-08-25 Dan Nicolaescu <dann@ics.uci.edu>
20194
20195 * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
20196 safe-local-variable setting.
20197 * progmodes/perl-mode.el (perl-indent-level): Likewise.
20198
20199 * log-view.el (log-view-marked-list): Delete variable.
20200 (log-view-mode): Don't use it.
20201 (log-view-toggle-mark-entry): Likewise, simplify.
20202 (log-view-current-tag): Don't return properties.
20203 (log-view-get-marked): New function.
20204
20205 2007-08-25 Alexandre Julliard <julliard@winehq.org>
20206
20207 * vc-git.el (vc-git-mode-line-string): New function.
20208
20209 2007-08-25 Alan Mackenzie <acm@muc.de>
20210
20211 * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
20212 new language variable.
20213
20214 * progmodes/cc-engine.el (c-brace-anchor-point): new function.
20215 (c-add-stmt-syntax): Give accurate anchor points for "namespace",
20216 "extern" etc., rather than BOI. Fix addition of spurious
20217 syntactic-symbol 'defun-block-intro, replacing it with
20218 'innamespace, etc.
20219
20220 2007-08-25 Juri Linkov <juri@jurta.org>
20221
20222 * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
20223
20224 * image-mode.el: Add autoloads to put associations in auto-mode-alist:
20225 associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
20226 "\\.svgz?\\'" with xml-mode and image-mode-maybe.
20227
20228 * image.el (image-type-header-regexps): Use more complex regexp for svg.
20229 (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
20230 (image-type-auto-detectable): Add (svg . maybe).
20231
20232 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
20233 to treat it like .tgz.
20234
20235 * calendar/cal-bahai.el: Add file coding cookie.
20236
20237 2007-08-25 Reiner Steib <Reiner.Steib@gmx.de>
20238
20239 * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
20240 Don't behave differently when executed via M-x. Add doc string.
20241
20242 * sort.el (sort-fold-case, sort-numeric-base): Mark as
20243 safe-local-variable.
20244
20245 2007-08-25 Jay Belanger <jay.p.belanger@gmail.com>
20246
20247 * calc/calc-forms.el (var-TimeZone): Make nil explicitly
20248 the default value.
20249 (math-calendar-tzinfo): New variable.
20250 (math-get-calendar-tzinfo): New function.
20251 (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
20252 to get information when zone is nil.
20253
20254 2007-08-24 Dan Nicolaescu <dann@ics.uci.edu>
20255
20256 * log-view.el (log-view-toggle-mark-entry): New function.
20257 (log-view-mode-map): Bind it.
20258 (log-view-marked-list): New variable.
20259 (log-view-mode): Make it local.
20260
20261 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
20262
20263 * play/zone.el (zone-pgm-rat-race): New func.
20264 (zone-programs): Add `zone-pgm-rat-race'.
20265
20266 2007-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
20267
20268 * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
20269 a list.
20270
20271 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
20272
20273 * progmodes/hideshow.el (hs-match-data): Delete alias.
20274 (hs-hide-block-at-point, hs-find-block-beginning)
20275 (hs-show-block): Use `match-data' directly.
20276
20277 2007-08-24 Martin Rudalics <rudalics@gmx.at>
20278
20279 * format.el (format-alist): Fix typo in doc-string.
20280
20281 2007-08-24 Michael Albinus <michael.albinus@gmx.de>
20282
20283 * net/tramp.el (tramp-local-host-p): New defun.
20284 (tramp-handle-file-local-copy, tramp-handle-write-region):
20285 Implement fast track when being on the local host.
20286 (tramp-file-name-handler): Don't set "started" property. It shall
20287 be reserved for the "ftp" method.
20288 (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
20289
20290 * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
20291 (tramp-ftp-file-name-handler): Set "started" property.
20292
20293 2007-08-24 Ulrich Mueller <ulm@gentoo.org> (tiny change)
20294
20295 * files.el (backup-buffer-copy): Don't wrap delete in
20296 condition-case, only try to delete if file exists.
20297
20298 2007-08-24 Glenn Morris <rgm@gnu.org>
20299
20300 * files.el (backup-buffer-copy): Revert 2007-08-22 change.
20301
20302 * startup.el (tutorial-directory): Set with eval-at-startup so it
20303 gets the right value in an installed Emacs.
20304
20305 2007-08-24 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
20306
20307 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
20308 (eldoc-highlight-function-argument): Use it.
20309
20310 2007-08-23 Masatake YAMATO <jet@gyve.org>
20311
20312 * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
20313 name of parameters in document body.
20314
20315 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
20316
20317 * emacs-lisp/bytecomp.el (byte-compile-output-docform)
20318 (byte-compile-output-as-comment): Use with-current-buffer rather than
20319 a weird set-buffer&prog1 combination.
20320
20321 * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
20322 test so as to optimise cases where the `progn's result is constant.
20323
20324 2007-08-23 Thien-Thi Nguyen <ttn@gnuvola.org>
20325
20326 * locate.el (locate-get-file-positions):
20327 Use line-beginning-position and line-end-position.
20328
20329 2007-08-23 John Wiegley <johnw@newartisans.com>
20330
20331 * calendar/cal-bahai.el: Added in the diacriticals that were
20332 missing for many of the month names.
20333
20334 2007-08-22 Jason Rumney <jasonr@gnu.org>
20335
20336 * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
20337
20338 2007-08-22 Chong Yidong <cyd@stupidchicken.com>
20339
20340 * image-mode.el (image-minor-mode): Use image-mode-text-map.
20341
20342 2007-08-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
20343
20344 * dabbrev.el (dabbrev--progress-reporter): New variable.
20345 (dabbrev--scanning-message): Delete func.
20346 (dabbrev--find-expansion): Use a progress reporter
20347 instead of dabbrev--scanning-message.
20348
20349 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
20350
20351 * comint.el (comint-exec-1): Raise an error if
20352 `start-file-process' does not return a process object.
20353
20354 * shell.el (shell): Prompt for `default-directory' if it is a
20355 remote file name, and if called with a prefix arg.
20356
20357 2007-08-22 Sam Steingold <sds@gnu.org>
20358
20359 * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
20360
20361 2007-08-22 Carsten Dominik <dominik@science.uva.nl>
20362
20363 * textmodes/org-export-latex.el: New file.
20364
20365 * textmodes/org-publish.el (org-publish-org-to-latex): New function.
20366
20367 * textmodes/org.el (org-agenda-skip): Allow a form for
20368 `org-agenda-skip-function'.
20369 (org-agenda-redo): Re-use local settings.
20370 (org-agenda): Store local settings.
20371 (org-agenda-deadline-faces): New option.
20372 (org-agenda-deadline-face): New function.
20373 (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
20374 entries on their due date.
20375 (org-agenda-get-timestamps): No longer handle the due dates of
20376 schedules and deadline items.
20377 (org-insert-link-global, org-open-at-point-global): New commands.
20378 (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
20379 :for-ascii parameter.
20380 (org-skip-comments): Function removed.
20381 (org-cleaned-string-for-export): Handle special table lines.
20382 (org-global-properties): New option.
20383 (org-entry-get-with-inheritance): Check global properties.
20384 (org-local-properties): New variable.
20385 (org-set-regexps-and-options): Find the #+PROPERTY line.
20386 (org-link-types): Change type into variable (was constant).
20387 (org-make-link-regexps): New function.
20388 (org-link-re-with-space, org-link-re-with-space2)
20389 (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
20390 (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
20391 these regular expressions happens now in the function
20392 `org-make-link-regexps'.
20393 (org-store-link): Call the functions in
20394 `org-store-link-functions'.
20395 (org-add-link-type): New function.
20396 (org-store-link-functions): New variable.
20397 (org-activate-tags): Force matches to be in headlines.
20398 (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
20399 (org-columns-display-here): Make sure this works in a narrowed
20400 buffer by checking for point-min.
20401 (org-columns-display-here): Make the rest of the line intangible,
20402 so that point never can be there.
20403 (org-cleaned-string-for-export): Use `with-current-buffer'.
20404 (org-replace-region-by-html): Use `with-current-buffer'.
20405 (org-unfontify-region, org-do-occur, org-columns-display-here)
20406 (org-columns-remove-overlays, org-columns-quit)
20407 (org-columns-edit-value, org-columns-next-allowed-value)
20408 (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
20409 (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
20410 (org-agenda-todo, org-agenda-change-all-lines)
20411 (org-agenda-align-tags, org-agenda-priority)
20412 (org-agenda-set-tags, org-agenda-toggle-archive-tag)
20413 (org-agenda-show-new-time, org-cleaned-string-for-export)
20414 (org-export-grab-title-from-buffer)
20415 (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
20416 instead of `buffer-read-only'.
20417 (org-export-as-html): Set `coding-system-for-write'.
20418 (org-remember-store-without-prompt): New option.
20419 (org-archive-subtree): Fixed bug with modifying TODO keyword.
20420 (org-beginning-of-line): Also treat C-a special in items.
20421 (org-table-convert-refs-to-rc): Fixed problem with column
20422 reference after "..".
20423 (org-columns-compute): Don't mark buffer modified because of text
20424 properties.
20425 (org-batch-store-agenda-views): Use the variable
20426 `default-directory', not the function.
20427 (org-clock-out-if-current): Respect `org-clock-out-when-done'.
20428 (org-clock-out-when-done): New option.
20429 (org-html-entities): Added HTML entities for smileys.
20430
20431 2007-08-22 Glenn Morris <rgm@gnu.org>
20432
20433 * image.el (create-image): Doc fix.
20434
20435 * startup.el (tutorial-directory): New constant.
20436 (fancy-splash-text): Tutorials now in tutorial-directory.
20437 * tutorial.el (help-with-tutorial): Tutorials now in
20438 tutorial-directory.
20439
20440 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
20441
20442 * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
20443 otherwise.
20444 (tramp-get-remote-path): New defun. Replace occurrences of
20445 `tramp-default-remote-path' by this function.
20446 (tramp-set-remote-path): Move most of the code to
20447 `tramp-get-remote-path'.
20448 (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
20449 existing directories, this is done already in
20450 `tramp-get-remote-path'.
20451
20452 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
20453
20454 * image-file.el (image-file-name-extensions): Add "svg".
20455 * image.el (image-type-header-regexps): Add svg entry.
20456
20457 2007-08-22 Glenn Morris <rgm@gnu.org>
20458
20459 * files.el (backup-buffer-copy): Check backup directory is
20460 writable, to avoid infloop deleting old backup.
20461
20462 * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
20463 movemail related variables.
20464 (rmail-insert-inbox-text): Use only rmail-movemail-program, which
20465 will now be set before this is called.
20466
20467 2007-08-21 Juri Linkov <juri@jurta.org>
20468
20469 * delsel.el (delete-selection-pre-hook):
20470 * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
20471 instead of checking last-command.
20472
20473 2007-08-21 Juri Linkov <juri@jurta.org>
20474
20475 * loadup.el: Preload "button".
20476
20477 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
20478
20479 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20480 Add previous-line and next-line.
20481
20482 * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
20483 (vc-arch-find-file-not-found-hook): Remove, it's now the default.
20484
20485 * vc-hooks.el (vc-menu-entry): New var.
20486 (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
20487 (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
20488 (vc-menu-map): Declare and initialize in one step.
20489 (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
20490
20491 * menu-bar.el (vc-menu-map): Don't setup any more.
20492 Instead, just create the proper spot in the menu.
20493
20494 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
20495
20496 * smerge-mode.el (smerge-resolve): New arg `safe'.
20497 (smerge-resolve-all, smerge-batch-resolve): New function.
20498 (smerge-refine): Make sure `diff' returns the expected result.
20499 (smerge-parsep-re): New const.
20500 (smerge-mode): Use it to adjust paragraph-separate.
20501
20502 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
20503 Correctly match / regexp matchers as first char on a line when
20504 fontifying only that line.
20505
20506 * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
20507
20508 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
20509
20510 * vc-bzr.el: Don't fiddle with vc-handled-backend.
20511 (vc-bzr-registered): Don't redundantly protect against
20512 file-error. Actually use the format-specific code.
20513 (vc-bzr-buffer-nonblank-p): Remove.
20514 (vc-bzr-status): Change `kindchange' -> `kindchanged'.
20515
20516 2007-08-20 Juri Linkov <juri@jurta.org>
20517
20518 * startup.el (fancy-splash-text): Change multiple tabs into one
20519 tab. Remove "Useful File menu items" section (with "Exit Emacs"
20520 and "Recover Crashed Session").
20521 (fancy-splash-screens): Set tab-width to 22.
20522 (normal-splash-screen): Replace literal tabs with \t and
20523 fix whitespace. Remove "Useful File menu items" section (with
20524 "Exit Emacs" and "Recover Crashed Session").
20525
20526 2007-08-20 Johannes Weiner <hannes@saeurebad.de> (tiny change)
20527
20528 * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
20529 extracted from `eval-last-sexp-1'.
20530 (eval-last-sexp-1): Call `preceding-sexp'.
20531
20532 2007-08-20 Thien-Thi Nguyen <ttn@gnuvola.org>
20533
20534 * vc-rcs.el (vc-rcs-annotate-command):
20535 Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
20536 Add back :vc-annotate-prefix propertization.
20537
20538 2007-08-20 Andreas Schwab <schwab@suse.de>
20539
20540 * mail/rmail.el (rmail-autodetect): Doc fix.
20541
20542 2007-08-19 Juri Linkov <juri@jurta.org>
20543
20544 * startup.el (normal-splash-screen): Add more links.
20545
20546 2007-08-19 Juri Linkov <juri@jurta.org>
20547
20548 * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
20549 because it's common to both types of splash screen: fancy and normal.
20550 Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
20551 (exit-splash-screen): Rename from `fancy-splash-quit'.
20552 Use `quit-window' instead of `kill-buffer'.
20553 (fancy-splash-head): Use make-button to insert GNU image link.
20554 (fancy-splash-screens, normal-splash-screen): Rename " About GNU
20555 Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
20556 (normal-splash-screen): Put "Browse manuals" on the same line with
20557 "Emacs manual". Remove descriptions from "Useful tasks" and put
20558 all links in two columns on two lines.
20559
20560 2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
20561
20562 * emulation/viper.el (viper-remove-hooks): Remove some additional
20563 viper hooks when the user calls viper-go-away.
20564 (viper-go-away): Restore the default of default-major-mode.
20565 Save the value of default-major-mode before vaperization.
20566
20567 * emulation/viper-cmd.el: Replace error "" with "Viper bell".
20568
20569 * emulation/viper-ex.el: Replace error "" with "Viper bell".
20570
20571 * ediff-util.el (ediff-make-temp-file): Use the coding system of the
20572 buffer for which file is created.
20573
20574 2007-08-19 Glenn Morris <rgm@gnu.org>
20575
20576 * Makefile.in (custom-deps, finder-data, autoloads, recompile)
20577 (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
20578 than $(EMACS), so that EMACSLOADPATH is set. Prevents any system
20579 shadow files messing up the compilation.
20580
20581 2007-08-18 Glenn Morris <rgm@gnu.org>
20582
20583 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
20584 string. Also apply eldoc-argument-case in the help-split-fundoc
20585 case. Adapt for changed behavior of eldoc-function-argstring,
20586 eldoc-function-argstring-format, and
20587 eldoc-highlight-function-argument.
20588 (eldoc-highlight-function-argument): Handle nil INDEX argument,
20589 just call eldoc-docstring-format-sym-doc in that case.
20590 (eldoc-function-argstring): Change the behavior. Now it converts
20591 an argument list to a string.
20592 (eldoc-function-argstring-format): Change the behavior. Now it
20593 applies `eldoc-argument-case' to a string.
20594
20595 * progmodes/scheme.el (scheme-mode-variables): Set
20596 font-lock-comment-start-skip.
20597
20598 2007-08-18 Martin Rudalics <rudalics@gmx.at>
20599
20600 * progmodes/ada-mode.el (ada-create-syntax-table): Move
20601 set-syntax-table from here to ...
20602 (ada-mode): ... here. Do not change global value of
20603 comment-multi-line. Call new function
20604 ada-initialize-syntax-table-properties and add new function
20605 ada-handle-syntax-table-properties to font-lock-mode-hook.
20606 (ada-deactivate-properties, ada-initialize-properties): Replace
20607 by new functions ...
20608 (ada-handle-syntax-table-properties)
20609 (ada-initialize-syntax-table-properties)
20610 (ada-set-syntax-table-properties): ... to set up syntax-table
20611 properties uniformly, independently from whether font-lock-mode
20612 is enabled or not. Handle read-only buffers and do not change
20613 undo-list when setting syntax-table properties.
20614 (ada-after-change-function): Use ada-set-syntax-table-properties.
20615
20616 2007-08-18 Michaël Cadilhac <michael@cadilhac.name>
20617
20618 * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
20619 (meta-indent-current-nesting): Use a computation of the nesting
20620 instead.
20621 (meta-indent-current-indentation): Indentation is given according
20622 to nesting and if the previous line was finished or not.
20623 (meta-indent-unfinished-line): Tell if the current line ends with
20624 a finished expression.
20625 (meta-indent-looking-at-code): Like `looking-at', but checks if
20626 the point is in a string before.
20627 (meta-indent-level-count): Use it. Don't count parenthesis as it's
20628 done in the nesting function.
20629 (meta-indent-in-string-p): Tell if the current point is in a
20630 string.
20631 (meta-indent-calculate): Treat b-o-b as a special case. Use the
20632 previous functions.
20633
20634 2007-08-17 Thien-Thi Nguyen <ttn@gnuvola.org>
20635
20636 * emacs-lisp/copyright.el (copyright-limit): New defsubst.
20637 (copyright-update-year, copyright-update)
20638 (copyright-fix-years): Use it.
20639
20640 2007-08-17 Kimit Yada <kimitto@gmail.com> (tiny change)
20641
20642 * emacs-lisp/copyright.el (copyright-update-year):
20643 Fix bug: Handle nil copyright-limit.
20644
20645 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
20646
20647 * calc/calc-units.el (math-standard-units): Give exact
20648 conversion for tsp.
20649
20650 * calc/calc.el (math-bignum-digit-length): Compute the
20651 appropriate value.
20652
20653 * calc/calc-bin.el (math-bignum-logb-digit-size)
20654 (math-bignum-digit-power-of-two):
20655 * calc/calc-comb.el (math-small-factorial-table):
20656 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
20657 (math-approx-gamma-const):
20658 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
20659 (math-besY1, math-bernoulli-b-cache):
20660 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
20661 Remove `eval-when-compile's.
20662
20663 2007-08-17 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
20664
20665 * progmodes/cperl-mode.el (cperl-look-at-leading-count)
20666 (cperl-find-pods-heres): Fix an error when typing expressions like
20667 `s{a}{b}'.
20668
20669 2007-08-17 Michaël Cadilhac <michael@cadilhac.name>
20670
20671 * mail/emacsbug.el (report-emacs-bug): Remove the last number of
20672 `emacs-version', use the topic prefix ``version; ''. Make MS-DOS
20673 a special case (there's no build number).
20674
20675 2007-08-17 T. V. Raman <raman@users.sf.net> (tiny change)
20676
20677 * completion.el (symbol-under-point, symbol-before-point)
20678 (symbol-before-point-for-complete): Use buffer-substring-no-properties.
20679
20680 2007-08-17 Glenn Morris <rgm@gnu.org>
20681
20682 * progmodes/compile.el (compilation-get-file-structure): Make use
20683 of the directory part when checking for an existing entry, to
20684 handle files with same basename in different directories.
20685
20686 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
20687
20688 * calc/calc.el (calc-language-alist): Add texinfo-mode.
20689
20690 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20691
20692 * ps-print.el (ps-header-font-size, ps-header-title-font-size)
20693 (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
20694 (ps-paragraph-spacing): Docstring fix.
20695
20696 2007-08-16 Glenn Morris <rgm@gnu.org>
20697
20698 * ps-print.el (ps-font-size): Doc fix.
20699
20700 2007-08-16 Richard Stallman <rms@gnu.org>
20701
20702 * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
20703
20704 2007-08-15 Juri Linkov <juri@jurta.org>
20705
20706 * startup.el (initialization): Change parent group from `internal'
20707 to `environment'.
20708 (initial-buffer-choice): New variable.
20709 (command-line): Revert 2007-07-02 change that sets
20710 buffer-offer-save in *scratch* and enables auto-save in it.
20711 (fancy-splash-text): Add links to existing items. Add new items
20712 with links for useful tasks. Move information about Control-g to
20713 fancy-splash-head. Move "Emacs Guided Tour" to the end.
20714 (fancy-splash-keymap): New variable.
20715 (fancy-splash-last-input-event): Remove variable.
20716 (fancy-splash-insert): Add processing of `:link' element.
20717 (fancy-splash-head): Replace "Type Control-l to begin editing"
20718 with "Type `q' to exit".
20719 (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
20720 (fancy-splash-default-action, fancy-splash-special-event-action):
20721 Remove functions.
20722 (fancy-splash-quit): New function.
20723 (fancy-splash-screens): Rename input arg from `hide-on-input' to
20724 `static' and reverse the condition of its usage. Don't preserve
20725 original values of `minor-mode-map-alist',
20726 `emulation-mode-map-alists', `special-event-map'.
20727 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
20728 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
20729 Remove processing of special events. Use local key map
20730 `fancy-splash-keymap'. Set buffer to read-only.
20731 (normal-splash-screen): Rename input arg from `hide-on-input' to
20732 `static' and reverse the condition of its usage.
20733 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
20734 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
20735 Add links to existing items. Add new items with links for useful
20736 tasks. Use local key map `fancy-splash-keymap'.
20737 (display-splash-screen): Rename input arg from `hide-on-input' to
20738 `static'.
20739 (about-emacs): Add alias to display-splash-screen.
20740 (command-line-1): Use `initial-buffer-choice'.
20741
20742 * menu-bar.el (menu-bar-help-menu):
20743 * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
20744 item to about-emacs instead of display-splash-screen.
20745
20746 2007-08-15 Jay Belanger <jay.p.belanger@gmail.com>
20747
20748 * calc/calc-units.el (math-standard-units): Update values.
20749 Put in exact, rational values when possible.
20750 (math-unit-prefixes): Replace floats with powers of ten.
20751 (math-standard-units-systems): Replace floats with integers.
20752 (math-make-unit-string): Remove extra spaces in output.
20753
20754 2007-08-15 Glenn Morris <rgm@gnu.org>
20755
20756 * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
20757 sloppier, for the sake of GNU Mailman.
20758 (rmail-digest-rfc1153): Initialize `result' correctly.
20759
20760 2007-08-15 Michaël Cadilhac <michael@cadilhac.name>
20761
20762 * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
20763 in the mail title. Suggested by Reiner Steib.
20764
20765 2007-08-14 Chris Hecker <checker@d6.com> (tiny change)
20766
20767 * calc/calc-aent.el (calc-do-quick-calc): Add binary
20768 representation of integers to the list of outputs.
20769
20770 2007-08-14 Glenn Morris <rgm@gnu.org>
20771
20772 * simple.el (bad-packages-alist): New constant.
20773 (bad-package-check): New function. Together, these two add elements
20774 to `after-load-alist' to check for problematic external packages.
20775 * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
20776
20777 2007-08-14 Jay Belanger <jay.p.belanger@gmail.com>
20778
20779 * calc/calc-units.el (math-get-standard-units)
20780 (math-get-units, math-make-unit-string)
20781 (math-get-default-units, math-put-default-units): New functions.
20782 (math-default-units-table): New variable.
20783 (calc-convert-units, calc-convert-temperature): Add machinery
20784 to supply default values.
20785
20786 2007-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
20787
20788 * emulation/tpu-edt.el: Add tpu-extras's autoloads.
20789 (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
20790 (tpu-gold-map): Bind F to tpu-cursor-free-mode.
20791 (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
20792
20793 * emulation/tpu-extras.el: Remove spurious * in docstrings.
20794 Put its autoloads into tpu-edt.el rather than loaddefs.el.
20795 (tpu-cursor-free-mode): Rename from tpu-cursor-free.
20796 Make into a proper minor-mode.
20797 (tpu-backward-char, tpu-next-line, tpu-previous-line)
20798 (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
20799 (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
20800 (tpu-set-cursor-free, tpu-set-cursor-bound):
20801 Delegate to tpu-cursor-free-mode.
20802 (tpu-next-line, tpu-previous-line, tpu-forward-line)
20803 (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
20804 Use line-move or forward-line instead of next-line-internal.
20805
20806 2007-08-13 Nick Roberts <nickrob@snap.net.nz>
20807
20808 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
20809
20810 2007-08-12 Richard Stallman <rms@gnu.org>
20811
20812 * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
20813 (cvs-execute-single-file): Use new name split-string-and-unquote.
20814 (cvs-header-msg): Use new name combine-and-quote-strings.
20815
20816 * emulation/vi.el (vi-next-line): Ignore return value of line-move.
20817
20818 * progmodes/gud.el (gud-common-init): Use new name
20819 split-string-and-unquote.
20820
20821 * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
20822 in javac regexp.
20823
20824 * pcvs-util.el (cvs-qtypedesc-strings): Use new names
20825 combine-and-quote-strings and split-string-and-unquote.
20826
20827 * subr.el (combine-and-quote-strings): Rename from strings->string.
20828 (split-string-and-unquote): Rename from string->strings.
20829
20830 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
20831
20832 * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
20833 to buffer-local settings.
20834
20835 * emacs-lisp/backquote.el (backquote-delay-process): New function.
20836 (backquote-process): Add internal arg `level'. Use the two to
20837 correctly handle nested backquotes.
20838
20839 2007-08-09 Riccardo Murri <riccardo.murri@gmail.com>
20840
20841 * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
20842 (vc-bzr-state-words): Add "kind changed" state word.
20843 (vc-bzr-status): New function. Return Bzr idea of file status,
20844 which is different from VC's.
20845 (vc-bzr-state): Use vc-bzr-status.
20846 (vc-workfile-unchanged-p): Use vc-bzr-status.
20847 (vc-bzr-revert): Use synchronous process; expect exitcode 0.
20848 (vc-dired-state): Process "kind changed" state word.
20849
20850 2007-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
20851
20852 * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
20853
20854 * vc-rcs.el (vc-rcs-find-file-not-found-hook):
20855 Move from vc-default-find-file-not-found-hook.
20856
20857 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
20858
20859 * man.el: Remove spurious * in docstrings.
20860 Merge defvars and toplevel setq-defaults.
20861 (Man-highlight-references0): Limit=nil rather than point-max.
20862 (Man-mode-map): Move initialization into the declaration.
20863 (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
20864 (Man-view-header-file): Use expand-file-name rather than concat.
20865 (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
20866
20867 * man.el (Man-next-section): Make sure we do not move backward.
20868
20869 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
20870
20871 * files.el (auto-mode-alist): Use the purecopied text (duh!).
20872
20873 2007-08-08 Glenn Morris <rgm@gnu.org>
20874
20875 * Replace `iff' in doc-strings and comments.
20876
20877 2007-08-08 Martin Rudalics <rudalics@gmx.at>
20878
20879 * dired.el (dired-pop-to-buffer):
20880 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
20881 * calendar/calendar.el (generate-calendar-window):
20882 * progmodes/compile.el (compilation-set-window-height):
20883 * textmodes/two-column.el (2C-two-columns, 2C-merge):
20884 Use window-full-width-p instead of comparing frame-width and
20885 window-width.
20886
20887 * progmodes/compile.el (compilation-find-buffer): Remove extra
20888 argument in call to compilation-buffer-internal-p.
20889
20890 2007-08-07 Tom Tromey <tromey@redhat.com>
20891
20892 * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
20893 Add safe-local-variable property.
20894
20895 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
20896
20897 * image-mode.el (image-toggle-display): Use image-refresh.
20898
20899 2007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
20900
20901 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
20902 unofficial version.
20903 (vc-bzr-command): Remove redundant setting of process-connection-type.
20904 (vc-bzr-admin-checkout-format-file): Add autoload.
20905 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
20906 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
20907 (vc-bzr-registered): Compare dirstate format tag with known good
20908 value, abort parsing if match fails. Warn user in docstring.
20909 (vc-bzr-workfile-version): Case for different Bzr branch formats.
20910 See bzrlib/branch.py in Bzr sources.
20911 (vc-bzr-diff): First argument FILES may be a string rather than a list.
20912 (vc-bzr-shell-command): Remove in favor of
20913 vc-bzr-command-discarding-stderr.
20914 (vc-bzr-command-discarding-stderr): New function.
20915
20916 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
20917
20918 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
20919 program, and return nil.
20920 (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
20921 (vc-bzr-state): Look for path names relative to the repository
20922 root after status keyword.
20923 (vc-bzr-file-name-relative): New function.
20924 (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
20925 depend on it.
20926 (vc-bzr-admin-dirname, ...-checkout-format-file)
20927 (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
20928 files that we now parse directly for speed.
20929 (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
20930 (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
20931 (vc-bzr-state): "bzr status" successful only if exitcode is 0.
20932 (vc-bzr-root): Use `vc-bzr-shell-command'. Stderr may contain
20933 Bzr warnings, so we must discard it.
20934 (vc-bzr-workfile-version): Speedup counting lines from
20935 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
20936 if that file doesn't exist.
20937 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
20938 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname' (not ".bzr"!)
20939 to `vc-directory-exclusion-list'.
20940 (vc-bzr-shell-command): New function.
20941
20942 2007-08-06 Tom Tromey <tromey@redhat.com>
20943
20944 * diff-mode.el (diff-unified->context, diff-reverse-direction)
20945 (diff-fixup-modifs): Typo in docstring.
20946
20947 2007-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
20948
20949 * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
20950 count-screen-lines.
20951 (tpu-edt-off): Disable relevant pieces of advice.
20952
20953 * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
20954 tpu-write-file-hook. Activate it with add-hook on buffer-save-hook.
20955 (newline, newline-and-indent, do-auto-fill): Use advice instead of
20956 redefining the function.
20957 (tpu-set-scroll-margins): Activate the pieces of advice.
20958
20959 2007-08-06 Martin Rudalics <rudalics@gmx.at>
20960
20961 * help.el (resize-temp-buffer-window): Use window-full-width-p
20962 instead of comparing frame-width and window-width.
20963
20964 2007-08-13 Stephen Leake <stephen_leake@stephe-leake.org>
20965
20966 * pcvs-parse.el (cvs-parse-table): Handle additional instance of
20967 optional quotes around files in NEED-UPDATE . REMOVED case.
20968
20969 * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
20970 (ada-treat-cmd-string): Improve error message.
20971 (ada-do-file-completion): Call `ada-require-project-file', so
20972 project variables are set properly.
20973 (ada-prj-find-prj-file): Delete Emacs 20.2 support.
20974 (ada-gnatfind-buffer-name): New constant.
20975 (ada-find-any-references): Use new constant. Set buffer name
20976 properly in compilation-start. Toggle read-only properly.
20977 (ada-find-in-src-path): Fix spelling error in docstring.
20978
20979 * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
20980 by zero error.
20981
20982 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
20983
20984 * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
20985
20986 2007-08-12 Richard Stallman <rms@gnu.org>
20987
20988 * progmodes/sh-script.el (sh): Delete group `unix'.
20989
20990 * progmodes/gud.el (gud): Change to group `processes'.
20991
20992 2007-08-11 Glenn Morris <rgm@gnu.org>
20993
20994 * progmodes/compile.el (compilation-buffer-name): Don't check
20995 compilation-arguments. It is superfluous, and the variable isn't
20996 even set when this function is called.
20997
20998 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20999
21000 * term/mac-win.el (mac-ae-reopen-application): New function.
21001 (mac-apple-event-map): Bind "reopen application" Apple event to it.
21002
21003 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21004
21005 * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
21006 take tex-font-script-display into account.
21007 (tex-font-script-display, tex-font-lock-suscript): Change from a cons
21008 cell to a list of 2 elements to simplify the unfontify code.
21009
21010 2007-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21011
21012 * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
21013 (ps-begin-job): Use ps-default-fg and ps-default-bg only when
21014 ps-print-color-p is neither nil nor black-white. Reported by Christian
21015 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
21016
21017 2007-08-08 Andreas Schwab <schwab@suse.de>
21018
21019 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
21020 self-insert-command, not self-insert.
21021
21022 2007-08-08 Glenn Morris <rgm@gnu.org>
21023
21024 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
21025 argument optional, for backwards compatibility, and only highlight
21026 args when present. Fix symbol name typo (doc/args).
21027
21028 * help-mode.el (help-make-xrefs): Search for symbol constituents,
21029 rather than just `-'.
21030
21031 2007-08-07 Jay Belanger <jay.p.belanger@gmail.com>
21032
21033 * calc/calc-units.el (calc-convert-temperature):
21034 Use `/' to create fractions.
21035
21036 2007-08-07 Michael Albinus <michael.albinus@gmx.de>
21037
21038 * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
21039 global matching.
21040 (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
21041 ERROR-BUFFER more robust. Display output.
21042 (tramp-file-name-handler): Add a connection property when we found
21043 a foreign file name handler. This allows backends like ftp to
21044 profit also from usr/host name completion based on connection
21045 cache.
21046 (tramp-send-command-and-read): Search for trash after the regexp
21047 until eol only. In XEmacs, there is a problem with \n.
21048
21049 * net/tramp-cache.el (top): Read persistent connection history
21050 when cache is empty.
21051
21052 2007-08-07 Nic Ferrier <nferrier@tapsellferrier.co.uk> (tiny change)
21053
21054 * net/tramp.el (tramp-handle-process-file): Fix bug inserting
21055 resulting output.
21056
21057 2007-08-07 Sam Steingold <sds@gnu.org>
21058
21059 * progmodes/compile.el (compilation-start): Pass nil as startfile
21060 to comint-exec.
21061
21062 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
21063
21064 * longlines.el (longlines-decoded): New variable.
21065 (longlines-mode): Avoid encoding or decoding the buffer twice.
21066
21067 2007-08-07 Martin Rudalics <rudalics@gmx.at>
21068
21069 * format.el (format-insert-file): Make sure that at most one undo
21070 entry is recorded for the insertion. Inhibit point-motion and
21071 modification hooks around call to insert-file-contents.
21072
21073 2007-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
21074
21075 * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
21076 Select the buffer's window before moving point.
21077
21078 2007-08-07 Richard Stallman <rms@gnu.org>
21079
21080 * term.el (term): Remove parent group `unix'.
21081
21082 * simple.el (default-indent-new-line): New function.
21083 It calls comment-line-break-function if there are comments.
21084 (do-auto-fill): Use that.
21085
21086 2007-08-07 Sean O'Rourke <sorourke@cs.ucsd.edu>
21087
21088 * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
21089 (PC-do-completion): Add "acronym completion" for symbols and
21090 filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
21091
21092 2007-08-06 Sam Steingold <sds@gnu.org>
21093
21094 * mouse.el (mouse-buffer-menu): Pass mode-name through
21095 format-mode-line because it may be a list,
21096 e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
21097
21098 2007-08-06 Vinicius Jose Latorre <viniciusig@ig.com.br>
21099
21100 * printing.el (pr-update-menus): Docstring fix.
21101
21102 2007-08-06 Jason Rumney <jasonr@gnu.org>
21103
21104 * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
21105
21106 * vc-hooks.el (vc-call): Add doc string.
21107
21108 2007-08-06 Michael Albinus <michael.albinus@gmx.de>
21109
21110 * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
21111 process-filter.
21112
21113 2007-08-06 Kenichi Handa <handa@m17n.org>
21114
21115 * international/quail.el: Wrap (require 'help-mode) by
21116 eval-when-compile.
21117 (quail-help-init): New function.
21118 (quail-help): Call quail-help-init.
21119 (quail-store-decode-map-key): Change it to a function.
21120
21121 2007-08-05 Jason Rumney <jasonr@gnu.org>
21122
21123 * vc.el (vc-rollback): Add norevert argument back.
21124 (vc-revert-buffer): Add back as obsolete alias.
21125
21126 2007-08-05 Peter Povinec <ppovinec@yahoo.com> (tiny change)
21127
21128 * term.el: Honor term-default-fg-color and term-default-bg-color
21129 settings when modifying term-current-face.
21130 (term-default-fg-color, term-default-bg-color): Initialize from
21131 default term-current-face.
21132 (term-mode, term-reset-terminal): Set term-current-face with
21133 term-default-fg-color and term-default-bg-color.
21134 (term-handle-colors-array): term-current-face has term-default-fg-color
21135 and term-default-bg-color after reset escape sequence.
21136 (term-handle-colors-array): Set term-current-color with
21137 term-default-fg/bg-color instead of ansi-term-color-vector when the
21138 index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
21139
21140 2007-08-05 Jay Belanger <jay.p.belanger@gmail.com>
21141
21142 * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
21143 (math-nlfit-givens): Let bind free variables.
21144
21145 2007-08-05 Vinicius Jose Latorre <viniciusig@ig.com.br>
21146
21147 * printing.el: Require lpr and ps-print when loading printing package.
21148 Reported by Glenn Morris <rgm@gnu.org>.
21149
21150 2007-08-05 Michael Albinus <michael.albinus@gmx.de>
21151
21152 * files.el (set-auto-mode): Handle also remote files wrt
21153 `auto-mode-alist'.
21154
21155 2007-08-04 Jay Belanger <jay.p.belanger@gmail.com>
21156
21157 * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
21158 curves and plotting.
21159
21160 * calc/calc-nlfit.el: New file.
21161
21162 2007-08-04 Glenn Morris <rgm@gnu.org>
21163
21164 * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
21165 zero, not nil, when the library is first loaded. Check for a file
21166 that has been modified on disk.
21167
21168 * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
21169 Remove duplicate defvar preventing initialization.
21170 (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
21171
21172 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
21173
21174 * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
21175 (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
21176 may match up to 4 lines.
21177 (diff-beginning-of-file-and-junk): Rewrite.
21178
21179 2007-08-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21180
21181 * printing.el: Evaluate require only during compilation.
21182 (pr-version): New version 6.9.1.
21183 (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
21184 (pr-global-menubar): Fix code.
21185
21186 2007-08-03 Dan Nicolaescu <dann@ics.uci.edu>
21187
21188 * term.el (term-erase-in-display): Fix case when point is not at
21189 the beginning of the line.
21190
21191 2007-08-03 Jay Belanger <jay.p.belanger@gmail.com>
21192
21193 * calc/calc-ext.el (math-get-value, math-get-sdev)
21194 (math-contains-sdev): New functions.
21195
21196 * calc/calc-graph.el (calc-graph-format-data)
21197 (calc-graph-add-curve): Check for error forms.
21198 (calc-graph-set-styles): Add option for error forms.
21199
21200 2007-08-03 Miles Bader <miles@gnu.org>
21201
21202 * vc-hooks.el (vc-handled-backends): Change capitalization of VC
21203 backend names for new backends to `Git', `Hg', and `Bzr'.
21204 * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
21205 not `HG'.
21206 * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
21207 name, not `GIT'.
21208 * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
21209 (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
21210
21211 2007-08-03 Richard Stallman <rms@gnu.org>
21212
21213 * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
21214 to update deleted flag.
21215
21216 * cus-edit.el (customize-apropos, customize-apropos-options)
21217 (customize-apropos-faces, customize-apropos-groups): Improve prompt.
21218
21219 * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
21220
21221 * startup.el (fancy-splash-head, startup-echo-area-message):
21222 Change message text.
21223
21224 * emulation/tpu-edt.el (next-line-internal): Setting deleted.
21225 All callers use line-move.
21226
21227 * progmodes/compile.el (compilation-find-buffer): Return current
21228 buffer immediately if suitable.
21229 (compile, compilation-buffer-name, compilation-start): Doc fixes.
21230
21231 2007-08-03 Daiki Ueno <ueno@unixuser.org>
21232
21233 * faces.el (face-normalize-spec): New function.
21234 (frame-set-background-mode): Normalize face-spec before calling
21235 face-spec-match-p.
21236
21237 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
21238
21239 * server.el (server-window): Add switch-to-buffer-other-frame option.
21240
21241 2007-08-03 Glenn Morris <rgm@gnu.org>
21242
21243 * cus-edit.el (customize-apropos): Make the error message indicate
21244 what kind of thing the user was trying to customize.
21245
21246 * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
21247
21248 * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
21249 Fix off-by-one error in previous change.
21250
21251 2007-08-03 Drew Adams <drew.adams@oracle.com>
21252
21253 * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
21254 Make buffer writable.
21255
21256 2007-08-01 Jay Belanger <jay.p.belanger@gmail.com>
21257
21258 * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
21259 (math-cos-raw-2, math-arctan-raw, math-ln-raw):
21260 Use native Emacs functions, when appropriate.
21261
21262 2007-08-01 Dan Nicolaescu <dann@ics.uci.edu>
21263 Stefan Monnier <monnier@iro.umontreal.ca>
21264
21265 * vc.el: Document new VC operation `extra-menu'.
21266
21267 * vc-hooks.el (vc-default-extra-menu): New function.
21268
21269 * menu-bar.el (menu-bar-vc-filter): New function.
21270 (menu-bar-tools-menu): Use it as a filter.
21271
21272 2007-08-01 Eric Hanchrow <offby1@blarg.net> (tiny change)
21273
21274 * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
21275
21276 2007-08-01 Glenn Morris <rgm@gnu.org>
21277
21278 * progmodes/fortran.el: Remove leading `*' from all defcustom doc
21279 strings.
21280 (fortran-tab-mode-default): Remove needless autoload.
21281 (fortran-tab-mode-string): Add help-echo and mouse properties, and
21282 mark as risky.
21283 (fortran-line-length): New buffer-local variable, safe if integer.
21284 (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
21285 Change from variables to constants.
21286 (fortran-font-lock-syntactic-keywords): Delete as a variable,
21287 replace with a new function definition.
21288 (fortran-mode): Use fortran-line-length, and
21289 fortran-font-lock-syntactic-keywords as a function. Add a
21290 hack-local-variables-hook function.
21291 (fortran-line-length, fortran-hack-local-variables): New functions.
21292 (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
21293 Use fortran-line-length rather than 72.
21294 (fortran-window-create-momentarily): Doc fix.
21295
21296 2007-07-31 Drew Adams <drew.adams@oracle.com> (tiny change)
21297
21298 * cus-edit.el (custom-group-value-create, custom-goto-parent):
21299 Fix parent groups link.
21300
21301 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net>
21302
21303 * progmodes/python.el (python-current-defun): Adjust to never fall
21304 into infinite loop.
21305
21306 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
21307
21308 * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
21309
21310 2007-07-29 Kimit Yada <kimitto@gmail.com> (tiny change)
21311
21312 * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
21313 (copyright-fix-years, copyright): Correctly handle the case where
21314 copyright-limit is nil.
21315
21316 2007-07-28 Konstantin Novitsky <knovitsk@Bear.com> (tiny change)
21317
21318 * progmodes/python.el (run-python): Fix path separator under w32.
21319
21320 2007-07-30 Richard Stallman <rms@gnu.org>
21321
21322 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21323 Treat non-break space as whitespace in Lisp.
21324
21325 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
21326
21327 * vc.el (vc-dired-hook): Use inhibit-read-only.
21328
21329 * progmodes/compile.el (compilation-forget-errors):
21330 Reset compilation-auto-jump-to-next.
21331
21332 2007-07-30 Michael Olson <mwolson@gnu.org>
21333
21334 * cus-edit.el (custom-group-save): Fix void function definition
21335 error. Thanks to Zhang Wei for the report.
21336
21337 * ps-print.el: Check in trivial changes to the autoloads section
21338 caused by the build process. These autoloads really ought to be
21339 placed in a separate file, methinks.
21340
21341 2007-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
21342
21343 * calendar/calendar.el (calendar-mode): Make sure
21344 displayed-(month|year) are set.
21345 (calendar-basic-setup): Display buffer before adjusting window sizes.
21346 (generate-calendar-window): Use inhibit-read-only. Simplify.
21347 Generate buffer and set displayed-month and displayed-year before
21348 calling update-calendar-mode-line.
21349
21350 2007-07-29 Michael Albinus <michael.albinus@gmx.de>
21351
21352 * net/tramp.el:
21353 * net/tramp-uu.el:
21354 * net/trampver.el: Use utf-8 encoding with coding cookie.
21355
21356 * net/tramp-cache.el:
21357 * net/tramp-fish.el:
21358 * net/tramp-ftp.el:
21359 * net/tramp-gw.el:
21360 * net/tramp-smb.el: Remove coding cookie.
21361
21362 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
21363 Flush buffer file-name's file property.
21364 (tramp-handle-file-remote-p): The first parameter is FILENAME.
21365
21366 * net/trampver.el: Update release number.
21367
21368 2007-07-29 Juri Linkov <juri@jurta.org>
21369
21370 * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
21371 Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
21372 when major-mode is not dired-mode.
21373 (dired-toggle-read-only): New function.
21374 (dired-recursive-deletes): Remove obsolete comments about old
21375 default value.
21376 (dired-do-flagged-delete, dired-do-delete): Refill docstring.
21377
21378 * wdired.el (wdired-exit): New function.
21379 (wdired-mode-map): Bind C-x C-q to wdired-exit.
21380
21381 2007-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
21382
21383 * cus-edit.el (customize-read-group): New fun.
21384 (customize-group-other-window, customize-face-other-window):
21385 Prompt before delegating to customize-(group|face).
21386 Bind pop-up-windows rather than use the other-window argument.
21387 (customize-group, customize-face): Prompt from the interactive spec.
21388 Remove args `prompt-for-group' and `other-window'.
21389
21390 * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
21391 (ad-body-forms, ad-advised-interactive-form): Revert this part of
21392 last change.
21393
21394 2007-07-28 Masatake YAMATO <jet@gyve.org>
21395
21396 * vc.el (vc-dired-mode): Add a menu for VC related operation.
21397 Use backend name as the menu label. Suggested by David Kastrup.
21398
21399 2007-07-28 Alan Mackenzie <acm@muc.de>
21400
21401 Fix problem with modes derived from CC Mode:
21402 * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
21403 macro to cc-langs.
21404 (c-init-language-vars-for): Remove call to above macro.
21405 * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
21406 been moved to here.
21407 (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
21408
21409 2007-07-28 Eli Zaretskii <eliz@gnu.org>
21410
21411 * net/trampver.el: Fix the `coding' cookie.
21412
21413 2007-07-28 Dan Nicolaescu <dann@ics.uci.edu>
21414
21415 * vc-git.el (vc-git-print-log): Support both the old single file
21416 interface and the new one.
21417
21418 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
21419
21420 * bindings.el (mode-line-remote): Use updated %@ construct.
21421
21422 2007-07-27 Stefan Monnier <monnier@iro.umontreal.ca>
21423
21424 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
21425 (calendar-bahai-epoch, calendar-bahai-leap-year-p)
21426 (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
21427 (diary-list-bahai-entries, diary-bahai-mark-entries)
21428 (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
21429 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
21430 New names to clean up namespace.
21431 (list-bahai-diary-entries, mark-bahai-diary-entries)
21432 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
21433 (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
21434 Add compatibility aliases.
21435
21436 * calendar/appt.el: Don't wrap defvar within eval-when-compile.
21437
21438 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
21439 (calendar-scroll-left-three-months)
21440 (calendar-scroll-right-three-months): Clean up namespace.
21441 (scroll-calendar-left, scroll-calendar-right)
21442 (scroll-calendar-left-three-months)
21443 (scroll-calendar-right-three-months): Add compatibility aliases.
21444
21445 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
21446 Behave like mouse-scroll-calendar-* when used from the mouse.
21447
21448 * calendar/cal-menu.el (cal-menu-scroll-menu)
21449 (cal-menu-global-mouse-menu):
21450 * calendar/calendar.el (calendar-mode-map):
21451 Use new calendar-scroll-* names.
21452 (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
21453 Remove. Use calendar-scroll-* directly instead.
21454
21455 2007-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
21456
21457 * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
21458 (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
21459 (ad-make-advised-definition, ad-cache-id-verification-code):
21460 Use commandp and interactive-form instead.
21461
21462 2007-07-26 Dan Nicolaescu <dann@ics.uci.edu>
21463
21464 * vc-git.el: Relicense to GPLv3 or later.
21465 (vc-directory-exclusion-list, vc-handled-backends): Remove.
21466
21467 * vc-hooks.el (vc-handled-backends): Add GIT.
21468
21469 * vc.el (vc-directory-exclusion-list): Add .git.
21470
21471 2007-07-26 Alexandre Julliard <julliard@winehq.org>
21472
21473 * vc-git.el (vc-git-revision-table)
21474 (vc-git-revision-completion-table): New functions.
21475
21476 2007-07-25 Glenn Morris <rgm@gnu.org>
21477
21478 * Relicense all FSF files to GPLv3 or later.
21479
21480 * COPYING: Switch to GPLv3.
21481
21482 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
21483
21484 * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
21485 Replace it with another one which disables undo before calling
21486 erase-buffer and then turns it back on if needed.
21487
21488 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
21489
21490 * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
21491
21492 2007-07-24 Glenn Morris <rgm@gnu.org>
21493
21494 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
21495 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
21496 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
21497 (cal-tex-cursor-week, cal-tex-cursor-week2)
21498 (cal-tex-cursor-week-iso, cal-tex-week-hours)
21499 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21500 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21501 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
21502
21503 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
21504
21505 * calendar/calendar.el (calendar-mode-map): Move initialization
21506 into declaration. Add menu bindings (used to be done in cal-menu).
21507 (calendar-mode): Don't add an activate-menubar-hook.
21508
21509 * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
21510 modify calendar-mode-map), use easy-menu, and make sure that C-h k
21511 can be used on the menu entries.
21512 (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
21513 (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
21514 (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
21515 (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
21516 (calendar-flatten, cal-menu-update): Remove.
21517 (calendar-mouse-insert-hebrew-diary-entry)
21518 (calendar-mouse-insert-islamic-diary-entry)
21519 (calendar-mouse-insert-bahai-diary-entry):
21520 Remove (fold into cal-menu-diary-menu).
21521 (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
21522 (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
21523 (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
21524 (calendar-mouse-view-diary-entries): Minor simplifications.
21525 (calendar-event-to-date): Use with-current-buffer.
21526
21527 2007-07-25 Nick Roberts <nickrob@snap.net.nz>
21528
21529 * add-log.el (change-log-redate): Remove (not needed anymore and
21530 doesn't appear to work).
21531
21532 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
21533
21534 * frame.el: Use mapc and dolist instead of mapcar where possible.
21535 (close-display-connection): New command.
21536
21537 2007-07-25 Alexandre Julliard <julliard@winehq.org>
21538
21539 * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
21540 (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
21541
21542 2007-07-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21543
21544 * ps-print.el (ps-multibyte-buffer): Docstring fix.
21545
21546 * ps-mule.el: Doc fix.
21547 (ps-multibyte-buffer, ps-mule-font-info-database-default)
21548 (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
21549
21550 2007-07-25 Glenn Morris <rgm@gnu.org>
21551
21552 * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
21553 (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
21554 (cal-tex-daily-end, cal-tex-hook)
21555 (cal-tex-cal-one-month, cal-tex-cal-multi-month)
21556 (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
21557 (cal-tex-cursor-week-iso, cal-tex-week-hours)
21558 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21559 (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
21560 (cal-tex-day-prefix, cal-tex-day-name-format)
21561 (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
21562 (cal-tex-caldate, cal-tex-LaTeX-hourbox)
21563 (cal-tex-LaTeX-subst-list): Change from variables to constants.
21564 (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
21565 (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
21566 etc, rather than \bf.
21567 (cal-tex-mini-calendar): Fix typos in previous change.
21568 (cal-tex-latexify-list): Remove inner let binding.
21569 (cal-tex-end-document, cal-tex-banner): Use multi-line
21570 cal-tex-comment.
21571 (cal-tex-comment): Handle embedded newlines.
21572 (cal-tex-LaTeXify-string): Use substring-no-properties.
21573
21574 2007-07-25 Joakim Verona <joakim@verona.se> (tiny change)
21575
21576 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21577 Add support for the Maden build tool.
21578
21579 2007-07-25 William Xu <william.xwl@gmail.com> (tiny change)
21580
21581 * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
21582
21583 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
21584
21585 * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
21586
21587 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
21588
21589 * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
21590 C-x C-q.
21591
21592 * vc-git.el (vc-git-print-log): Fix previous change.
21593
21594 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
21595
21596 * window.el (save-selected-window): Minor optimization.
21597 (bw-adjust-window): If operation failed, try with a smaller delta.
21598 (window-fixed-size-p): New function.
21599 (window-area-factor): New var.
21600 (balance-windows-area): New command.
21601
21602 * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
21603 (ps-mule-encode-ethiopic): Make it clear that it's always defined.
21604 (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
21605 (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
21606 (ps-mule-begin-job): Use dolist.
21607
21608 2007-07-24 Michael Albinus <michael.albinus@gmx.de>
21609
21610 * subr.el (start-file-process-shell-command)
21611 (process-file-shell-command): New defuns.
21612
21613 * progmodes/compile.el (compilation-start):
21614 Apply `start-file-process-shell-command'.
21615
21616 2007-07-24 Alexandre Julliard <julliard@winehq.org>
21617
21618 * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
21619
21620 2007-07-24 Alan Mackenzie <acm@muc.de>
21621
21622 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
21623 Initialise byte-compile-unresolved-functions before rather than
21624 after a compilation.
21625 (byte-compile-unresolved-functions): Amplify doc string.
21626
21627 2007-07-24 Glenn Morris <rgm@gnu.org>
21628
21629 * startup.el (normal-splash-screen): Use `emacs-copyright'.
21630
21631 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
21632 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
21633 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
21634 (cal-tex-cursor-week, cal-tex-cursor-week2)
21635 (cal-tex-cursor-week-iso, cal-tex-week-hours)
21636 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21637 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21638 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
21639
21640 * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
21641 (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
21642 (cal-tex-day-name-format, cal-tex-cal-one-month)
21643 (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
21644 (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
21645 (cal-tex-mini-calendar, cal-tex-em): Doc fix.
21646 (cal-tex-list-holidays, cal-tex-cursor-year)
21647 (cal-tex-cursor-year-landscape, cal-tex-year)
21648 (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
21649 (cal-tex-cursor-month, cal-tex-insert-days)
21650 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
21651 (cal-tex-first-blank-p, cal-tex-cursor-week)
21652 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
21653 (cal-tex-week-hours, cal-tex-cursor-week-monday)
21654 (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
21655 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
21656 (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
21657 (cal-tex-latexify-list, cal-tex-previous-month)
21658 (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
21659 modernization, including using dotimes rather than
21660 calendar-for-loop.
21661 (cal-tex-LaTeX-subst-list): Remove `@'.
21662 (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
21663 Use \textit and \textbf rather than \em and \it.
21664
21665 * calendar/cal-bahai.el (list-bahai-diary-entries)
21666 * calendar/cal-hebrew.el (list-hebrew-diary-entries)
21667 * calendar/cal-islam.el (list-islamic-diary-entries)
21668 * calendar/calendar.el (generate-calendar, generate-calendar-month)
21669 * calendar/diary-lib.el (diary-list-entries)
21670 (mark-calendar-date-pattern): Use `dotimes' rather than
21671 `calendar-for-loop'.
21672
21673 * calendar/calendar.el (calendar-for-loop): Doc fix.
21674
21675 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
21676
21677 * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
21678 underlying file is uptodate.
21679
21680 2007-07-23 Christopher J. Madsen <cjm@cjmweb.net>
21681
21682 * replace.el (perform-replace): Use isearch-no-upper-case-p.
21683
21684 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
21685
21686 * vc-hooks.el (vc-mode-line-map): New const.
21687 (vc-mode-line): Use it.
21688
21689 2007-07-23 Alexandre Julliard <julliard@winehq.org>
21690
21691 * vc-git.el (vc-git-delete-file, vc-git-rename-file)
21692 (vc-git-unregister): New functions.
21693 (vc-git-find-version): Use the result of ls-files as a parameter
21694 for cat-file.
21695
21696 2007-07-23 Michael Albinus <michael.albinus@gmx.de>
21697
21698 * net/tramp.el (tramp-perl-file-attributes)
21699 (tramp-perl-directory-files-and-attributes)
21700 (tramp-handle-file-attributes-with-stat)
21701 (tramp-handle-directory-files-and-attributes-with-stat)
21702 (tramp-convert-file-attributes): Handle huge file sizes.
21703
21704 2007-07-23 Juri Linkov <juri@jurta.org>
21705
21706 * isearch.el (isearch-message-function): New variable.
21707 (isearch-update, isearch-search): Use it.
21708
21709 * simple.el (goto-history-element): New function created from
21710 next-history-element.
21711 (next-history-element): Most code moved to goto-history-element.
21712 Call goto-history-element with (- minibuffer-history-position n).
21713 (previous-history-element): Call goto-history-element with (+
21714 minibuffer-history-position n).
21715 (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
21716 (minibuffer-history-isearch-message-overlay): New buffer-local variable.
21717 (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
21718 (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
21719 (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
21720 (minibuffer-history-isearch-pop-state): New functions.
21721
21722 2007-07-23 Thien-Thi Nguyen <ttn@gnuvola.org>
21723
21724 * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
21725 Also, if FILE is a list, return non-nil if any of its elements
21726 should stay local. Update docstring.
21727
21728 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
21729
21730 * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
21731 change by reverting a small part.
21732
21733 2007-07-23 Richard Stallman <rms@gnu.org>
21734
21735 * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
21736
21737 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
21738
21739 * vc-git.el (vc-git-checkin): Delete unused parameter and the code
21740 handling it. Use vc-git-command.
21741 (vc-git-find-version, vc-git-diff-tree): New functions.
21742 (vc-git-revert): Use vc-git-command.
21743 (vc-git--run-command): Delete.
21744
21745 2007-07-23 Alexandre Julliard <julliard@winehq.org>
21746
21747 * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
21748
21749 2007-07-20 Kenichi Handa <handa@m17n.org>
21750
21751 * international/utf-8.el (utf-8-post-read-conversion):
21752 Temporarily bind utf-8-compose-scripts to nil while running
21753 *-compose-region functions.
21754
21755 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
21756
21757 * vc-git.el: Update status.
21758 (vc-directory-exclusion-list): Use eval-after-load.
21759
21760 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
21761
21762 * bindings.el (mode-line-remote): New variable.
21763 (help-echo): Add to default values of mode-line-format.
21764
21765 * files.el: Mark mode-line-remote as risky.
21766
21767 2007-07-22 Juri Linkov <juri@jurta.org>
21768
21769 * isearch.el (isearch-edit-string): Save old point and
21770 isearch-other-end to old-point and old-other-end before reading
21771 the search string from minibuffer. After exiting minibuffer set
21772 point to old-other-end if point and the search direction is the
21773 same as before reading the search string.
21774 (isearch-del-char): Don't set isearch-yank-flag to t. Put point
21775 to isearch-other-end. Instead of isearch-search-and-update call
21776 three functions isearch-search, isearch-push-state and isearch-update.
21777
21778 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
21779
21780 * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
21781 deal with multiple file arguments.
21782 (vc-git-print-log): Deal with multiple file arguments.
21783
21784 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
21785
21786 * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
21787 diff-refine-hunk. Adjust users.
21788 (diff-unified-hunk-p, diff-splittable-p): New functions.
21789 (diff-mode-menu): Use it to disable Split when it doesn't work.
21790
21791 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
21792
21793 * diff-mode.el (diff-mode-menu): New entries.
21794
21795 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
21796
21797 * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
21798 if applicable, so as to save undo-log space.
21799
21800 * diff-mode.el (diff-find-file-name): Add arg `batch'.
21801
21802 * diff-mode.el (diff-beginning-of-file-and-junk): New function.
21803 (diff-file-kill): Use it.
21804 (diff-beginning-of-hunk): Add arg `try-harder' using it.
21805 (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
21806 Use it so they find the hunk even when we're in the file header.
21807
21808 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
21809
21810 * vc-git.el (vc-git-revision-granularity, vc-git-root)
21811 (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
21812 (vc-git-create-repo): New functions.
21813 (vc-git-registered): New autoloaded function definition.
21814 (vc-git-registered): Use vc-git-root.
21815 (vc-git-responsible-p): New defalias.
21816 (vc-git-annotate-extract-revision-at-line): Uncomment.
21817 (vc-git-print-log): Add the file name to the log.
21818 (vc-git-log-view-mode): New derived mode.
21819 (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
21820
21821 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
21822
21823 * progmodes/grep.el (grep-compute-defaults): Keep default values.
21824
21825 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
21826
21827 * textmodes/reftex.el (reftex-access-parse-file): Create parse
21828 file in a way that does not interfere with recentf mode.
21829 (reftex-access-parse-file): Do not risk destroying an existing
21830 buffer.
21831
21832 2007-07-22 Alexandre Julliard <julliard@winehq.org>
21833
21834 * vc-git.el: New file.
21835
21836 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
21837
21838 * textmodes/tex-mode.el (tex-font-script-display): Change default.
21839
21840 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
21841
21842 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
21843 for branches and new files.
21844
21845 * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
21846 local-map handling ...
21847 (vc-mode-line): ... here. Improve handling of help-echo.
21848
21849 * vc.el (mode-line-string): Document help-echo usage.
21850
21851 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
21852
21853 Sync with Tramp 2.1.10.
21854
21855 * net/tramp.el (tramp-get-ls-command): Fix typo.
21856
21857 * net/trampver.el: Update release number.
21858
21859 2007-07-22 Jan Djärv <jan.h.d@swipnet.se>
21860
21861 * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
21862
21863 * term/x-win.el (x-handle-no-bitmap-icon): New function.
21864
21865 2007-07-22 Martin Rudalics <rudalics@gmx.at>
21866
21867 * add-log.el (change-log-fill-parenthesized-list): New function.
21868 (change-log-indent): Call change-log-fill-parenthesized-list.
21869 (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
21870 Have lines with leading asterisk start a paragraph.
21871
21872 2007-07-21 Jay Belanger <jay.p.belanger@gmail.com>
21873
21874 * calc/calc-math.el (math-emacs-precision)
21875 (math-largest-emacs-expt, math-smallest-emacs-expt):
21876 New variables.
21877 (math-use-emacs-fn): New function.
21878 (math-exp-raw): Evaluate with `math-use-emacs-fn', when
21879 appropriate.
21880
21881 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
21882
21883 * image-dired.el (image-dired-sane-db-file): New func.
21884 (image-dired-write-tags, image-dired-remove-tag)
21885 (image-dired-list-tags, image-dired-write-comments)
21886 (image-dired-get-comment, image-dired-mark-tagged-files)
21887 (image-dired-create-gallery-lists): Call new func.
21888 Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
21889
21890 2007-07-21 Dan Nicolaescu <dann@ics.uci.edu>
21891
21892 * vc-hg.el (vc-hg-dir-state): Fix loop.
21893 (vc-hg-print-log): Fix expected return value for vc-hg-command.
21894 (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
21895 (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
21896 (vc-hg-revert): Likewise.
21897 (vc-hg-revision-table, vc-hg-revision-completion-table): New
21898 functions.
21899
21900 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
21901
21902 * add-log.el (change-log-resolve-conflict): Don't lose data if the
21903 merge fails.
21904
21905 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
21906
21907 * progmodes/compile.el (compilation-auto-jump-to-first-error):
21908 Add group and version.
21909
21910 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
21911
21912 * add-log.el (add-log-file-name): Use file-relative-name.
21913 (add-change-log-entry): Delay reading
21914 add-log-(full-name|mailing-address) to after we've switched to the
21915 ChangeLog buffer so we get the right value.
21916 (add-change-log-entry, add-log-current-defun, change-log-merge):
21917 Use derived-mode-p rather than checking major-mode directly.
21918
21919 * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
21920 name for buffer-file-name if it refers to a directory.
21921
21922 * vc-arch.el (vc-arch-diff): Fix last change.
21923
21924 * progmodes/compile.el (compilation-start): Remember the original
21925 directory in a buffer-local compilation-directory.
21926 (compile): Set the global value of compilation-directory.
21927 (recompile): Use compilation-directory even in the compilation buffer.
21928
21929 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
21930
21931 * vc-hg.el (vc-hg-diff): Use vc-hg-command.
21932
21933 2007-07-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21934
21935 * ps-print.el: Problem with foreground and background color when
21936 printing a buffer with and without faces. Reported by Christian
21937 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
21938 (ps-print-version): New version 6.7.5.
21939 (ps-default-fg): Change default value to nil, so black color is used
21940 when a face does not specify a foreground color.
21941 (ps-default-bg): Change default value to nil, so white color is used
21942 for background color.
21943 (ps-begin-job): Fix code.
21944
21945 2007-07-20 Eli Zaretskii <eliz@gnu.org>
21946
21947 * makefile.w32-in (install-lisp-SH): Don't create subdirectories
21948 in $(INSTALL_DIR)/lisp/ if they already exist.
21949
21950 2007-07-20 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
21951
21952 * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
21953 in $(INSTALL_DIR)/lisp/ if they already exist.
21954
21955 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
21956
21957 * progmodes/vera-mode.el (vera-re-search-forward)
21958 (vera-re-search-backward): Remove use of store-match-data.
21959 (vera-mode-map): Move initialization into declaration.
21960
21961 * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
21962 (flymake-find-buildfile): Use locate-dominating-file.
21963
21964 * vc.el (vc-delistify): Use mapconcat.
21965 (vc-do-command): Minor simplification.
21966 (vc-expand-dirs): Use push.
21967
21968 * vc-mcvs.el (vc-mcvs-create-repo):
21969 * vc-cvs.el (vc-cvs-create-repo): Remove.
21970
21971 * vc-hooks.el (vc-find-root): Fix case where `file' is the current
21972 directory and the root as well.
21973
21974 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
21975
21976 * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
21977 instead of a file.
21978
21979 * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
21980 (vc-hg-registered): Replace if with when.
21981 (vc-hg-state): Deal with nonexistent files and handle removed files.
21982 (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
21983 (vc-hg-checkout): Re-enable.
21984 (vc-hg-create-repo): Fix typos.
21985 (vc-hg-print-log): Fix for multiple files.
21986 (vc-hg-workfile-unchanged-p): New function.
21987
21988 * vc.el: Fix typo.
21989 (vc-print-log): Fix call to print-log.
21990 (vc-default-comment-history): Likewise.
21991 (vc-directory-exclusion-list): Add .hg and .bzr.
21992 (vc-diff-internal): Pass a list instead of a file.
21993
21994 * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
21995
21996 * vc-bzr.el (vc-bzr-create-repo): New function.
21997
21998 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
21999
22000 * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
22001 `file' from which to start the search.
22002
22003 2007-07-19 Eric S. Raymond <esr@snark.thyrsus.com>
22004
22005 * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
22006 having a single file argument to having a list of files as the
22007 first argument.
22008
22009 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
22010
22011 * files.el (locate-dominating-file): New function.
22012
22013 2007-07-18 Michael Albinus <michael.albinus@gmx.de>
22014
22015 * progmodes/grep.el (grep-host-defaults-alist): New defvar.
22016 (grep-compute-defaults): Use it.
22017
22018 2007-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
22019
22020 * uniquify.el: Docstring fixes.
22021
22022 2007-07-18 Eric S. Raymond <esr@snark.thyrsus.com>
22023
22024 * vc.el (revision-granularity, create-repo): Document new vc
22025 backend properties.
22026 (vc-rollback): Renamed from vc-cancel-version. Update references.
22027 Pass a list instead of a file.
22028 (vc-revert): Renamed from vc-revert-buffer. Update references.
22029 (vc-delistify, vc-expand-dirs): New functions.
22030 (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
22031 of files instead of a single file.
22032 (vc-position-context, vc-resync-window, vc-diff-internal)
22033 (vc-print-log): Pass a list instead of a file.
22034
22035 * vc-hooks.el (vc-stay-local-p, vc-backend)
22036 (vc-backend-subdirectory-name): Work on a file list, not a single
22037 file.
22038 (vc-workfile-version): Update docstring.
22039 (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
22040 vc-revert instead of vc-revert-buffer.
22041 (vc-prefix-map): Likewise. Bind vc-update.
22042
22043 * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
22044 (vc-svn-wash-log): New functions.
22045 (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
22046 (vc-svn-command): Deal with a list of files, not a single file.
22047
22048 * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
22049 (vc-rcs-wash-log): New functions.
22050 (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
22051 Deal with a list of files, not a single file.
22052 (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version.
22053
22054 * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
22055 functions.
22056 (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
22057 list of files, not a single file.
22058
22059 * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
22060 New functions.
22061 (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
22062 (vc-mcvs-diff): Deal with a list of files, not a single file.
22063
22064 * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
22065 functions.
22066 (vc-hg-print-log): Deal with a list of files, not a single file.
22067 (vc-hg-diff-tree): New function, replace defalias with the same
22068 name.
22069 (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
22070 FILES to denote that it is a file list, not a single file.
22071
22072 * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
22073 (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
22074 a single file.
22075 (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
22076 that it is a file list, not a single file.
22077 (vc-cvs-diff): Likewise. Simplify.
22078
22079 * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
22080 Deal with a list of files, not a single file.
22081
22082 * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
22083 (vc-bzr-print-log): Update FILE parameter name to denote that it
22084 is a file list, not a single file.
22085 (vc-bzr-diff): Likewise. Use the car of files.
22086
22087 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
22088
22089 * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
22090 (follow-delete-other-windows-and-split, follow-recenter)
22091 (follow-windows-aligned-p, follow-point-visible-all-windows-p)
22092 (follow-redisplay, follow-estimate-first-window-start)
22093 (follow-xemacs-scrollbar-support, follow-intercept-process-output):
22094 Fix typos in docstrings.
22095
22096 2007-07-18 Martin Rudalics <rudalics@gmx.at>
22097
22098 * add-log.el (change-log-mode): Use fill-nobreak-predicate to
22099 avoid that filling introduces lines with a single asterisk.
22100
22101 * kmacro.el (kmacro-end-macro): When ignoring empty macro
22102 avoid incorrect kmacro-ring-empty-p messages.
22103 Reported by Michael Schierl <schierlm@gmx.de>.
22104
22105 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
22106
22107 * vc.el: Add more info about the vc-registered function.
22108
22109 2007-07-17 Michael Albinus <michael.albinus@gmx.de>
22110
22111 * files.el (file-remote-p): Introduce optional parameter
22112 IDENTIFICATION.
22113
22114 * recentf.el (recentf-keep-default-predicate): Adapt call of
22115 `file-remote-p'.
22116
22117 * progmodes/grep.el (grep-probe): Use `process-file'.
22118 (grep-compute-defaults): Handle variables host specific.
22119
22120 * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
22121 parameter IDENTIFICATION.
22122
22123 * net/tramp.el (tramp-handle-file-remote-p): Handle optional
22124 parameter IDENTIFICATION.
22125 (tramp-handle-set-file-times): New defun. Replaces `tramp-touch'.
22126 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
22127 Add entry for `set-file-times'.
22128 (tramp-do-copy-or-rename-file-via-buffer)
22129 (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
22130 (tramp-handle-unhandled-file-name-directory): Rewrite.
22131 (tramp-convert-file-attributes): Add error handling when inode is
22132 extraordinary big.
22133 (tramp-get-inode): Change parameter from FILE to VEC.
22134 (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
22135 is nil. This is according to the specification. Goto (point-max)
22136 when ready.
22137 (tramp-handle-shell-command): Rewrite completely, using
22138 `process-file' and `start-file-process'.
22139 (tramp-methods, tramp-find-shell)
22140 (tramp-open-connection-setup-interactive-shell)
22141 (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
22142 var. Reported by Steve Youngs <steve@sxemacs.org>.
22143
22144 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
22145 entry for `set-file-times'. Rename `start-process' into
22146 `start-file-process'. Remove `call-process' entry.
22147 (tramp-fish-handle-set-file-times): New defun.
22148 (tramp-fish-handle-executable-find): Use `process-file'.
22149 (tramp-fish-handle-process-file): New defun. Replaces
22150 `tramp-fish-handle-call-process'.
22151 (tramp-fish-do-copy-or-rename-file-directly): Use
22152 `set-file-times'.
22153 (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
22154
22155 * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
22156 `tramp-get-inode' parameter.
22157
22158 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
22159
22160 * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
22161 (vc-bzr-post-command-function): Remove. Version 0.8 is already old
22162 nowadays, and by the time Emacs-23 comes out, nobody will even remember
22163 it has ever existed.
22164
22165 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
22166
22167 * vc.el: Undo previous change.
22168
22169 2007-07-16 Eli Zaretskii <eliz@gnu.org>
22170
22171 * makefile.w32-in (clean): Don't delete *~.
22172
22173 2007-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
22174
22175 * textmodes/tex-mode.el (tex-verbatim-environments):
22176 Add safe-local-variable property.
22177 (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
22178 when starting font-lock rather than when loading tex-mode.el.
22179
22180 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
22181 whole $( rather than just the $. Rename from sh-quoted-subshell.
22182 (sh-font-lock-syntactic-keywords): Adjust call accordingly.
22183
22184 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
22185
22186 * bookmark.el (bookmark-maybe-sort-alist): Don't modify
22187 bookmark-alist. Instead, if not sorting, simply return it.
22188 (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
22189 for its return value, not for its side effect.
22190
22191 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
22192 case of alignment under a constant symbol, find and consider
22193 the sexp actually at indentation to be the "last sexp".
22194
22195 2007-07-16 Drew Adams <drew.adams@oracle.com>
22196
22197 * mouse.el (mouse-yank-secondary): Better error message if no
22198 secondary selection.
22199
22200 2007-07-16 Dan Nicolaescu <dann@ics.uci.edu>
22201
22202 * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
22203
22204 * term/xterm.el (xterm-turn-on-modify-other-keys)
22205 (xterm-turn-off-modify-other-keys): New functions.
22206 (terminal-init-xterm): Enable the modifyOtherKeys feature if the
22207 terminal supports it.
22208
22209 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
22210
22211 * bookmark.el (bookmark-show-all-annotations):
22212 Make sure each inserted annotation ends with newline.
22213
22214 2007-07-15 Richard Stallman <rms@gnu.org>
22215
22216 * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
22217
22218 * tutorial.el (tutorial--find-changed-keys):
22219 Handle C-x specially like ESC.
22220
22221 2007-07-15 Aaron Hawley <aaronh@garden.org>
22222
22223 * tar-mode.el (tar-get-descriptor): No error for zero-length file.
22224
22225 2007-07-15 Juri Linkov <juri@jurta.org>
22226
22227 * delsel.el (delete-selection-pre-hook):
22228 * emulation/cua-base.el (cua-paste): Before a yank command,
22229 check also whether last-command is one of mouse-save-then-kill,
22230 mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
22231
22232 2007-07-15 Michael Albinus <michael.albinus@gmx.de>
22233
22234 * recentf.el (recentf-keep-default-predicate): New defun.
22235 (recentf-keep): Use it as initial value.
22236
22237 2007-07-15 Karl Fogel <kfogel@red-bean.com>
22238
22239 * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
22240 thus restoring bookmark bindings to three slots under C-x r. See
22241 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
22242
22243 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change)
22244
22245 * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
22246
22247 2007-07-15 Jason Rumney <jasonr@gnu.org>
22248
22249 * w32-fns.el (set-default-process-coding-system): Use dos line ends
22250 for input to cmdproxy on all versions of Windows.
22251 Use dos line ends for input to plink.
22252
22253 * comint.el (comint-simple-send): Concat newline before sending.
22254 (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
22255
22256 2007-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
22257
22258 * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
22259 safe-local-variable setting.
22260
22261 2007-07-14 David Kastrup <dak@gnu.org>
22262
22263 * emacs-lisp/advice.el (defadvice): Doc fix.
22264
22265 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
22266
22267 * subr.el (when, unless): Doc fix.
22268
22269 2007-07-13 Dan Nicolaescu <dann@ics.uci.edu>
22270
22271 * replace.el (match): Use yellow1 instead of yellow.
22272
22273 * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of
22274 red.
22275
22276 * pcvs-info.el (cvs-unknown): Likewise.
22277
22278 2007-07-13 Eli Zaretskii <eliz@gnu.org>
22279
22280 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
22281 (install): Use them to copy all *.el files before *.elc.
22282
22283 2007-07-13 Drew Adams <drew.adams@oracle.com>
22284
22285 * bookmark.el (bookmark-jump-other-window): New function.
22286 (bookmark-map): Bind it to "o".
22287
22288 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
22289 and its thread contains discussion about this change.
22290 The original patch was slightly tweaked by Karl Fogel
22291 <kfogel@red-bean.com> before committing.
22292
22293 2007-07-13 Karl Fogel <kfogel@red-bean.com>
22294
22295 * bookmark.el: Shorten some comments to fit within 80 lines.
22296
22297 2007-07-13 Karl Fogel <kfogel@red-bean.com>
22298
22299 * bookmark.el: Don't define bookmark keys under the "C-xr" map;
22300 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew
22301 Adams <drew.adams@oracle.com>, mildly tweaked by me. See
22302 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
22303
22304 2007-07-13 Carsten Dominik <dominik@science.uva.nl>
22305
22306 * textmodes/org.el: Bug fixes.
22307 (org-end-of-line): Move to end of line if in headline without tags.
22308
22309 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
22310
22311 * vc-hooks.el: Remove spurious * in docstrings.
22312 (vc-handled-backends): Add BZR.
22313
22314 * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
22315
22316 2007-07-12 Davis Herring <herring@lanl.gov>
22317
22318 * desktop.el (desktop-buffer-info, desktop-save):
22319 Use `desktop-dirname' instead of `dirname'.
22320
22321 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
22322
22323 * progmodes/which-func.el (which-func-modes): Add `python-mode'.
22324
22325 * progmodes/python.el (python-which-func-length-limit): New var.
22326 (python-which-func): New function.
22327 (python-current-defun): Add optional `length-limit' and try to fit
22328 computed function name to that length.
22329 (python-mode): Hook `python-which-func' up.
22330
22331 2007-07-12 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
22332
22333 * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
22334
22335 * comint.el (comint-dynamic-complete-as-filename):
22336 Use read-file-name-completion-ignore-case.
22337
22338 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
22339
22340 * comint.el (comint-dynamic-list-filename-completions):
22341 Use read-file-name-completion-ignore-case.
22342
22343 * vc-cvs.el: Require CL.
22344 (vc-cvs-revision-table, vc-cvs-revision-completion-table):
22345 New functions to provide completion of revision names.
22346
22347 * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
22348 (vc-cvs-annotate-first-line-re): New const.
22349 (vc-cvs-annotate-process-filter): New fun.
22350 (vc-cvs-annotate-command): Use them and run the command asynchronously.
22351
22352 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
22353
22354 * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
22355 (eldoc-print-current-symbol-info): Adjust for changed helper
22356 function signatures.
22357 (eldoc-get-fnsym-args-string): Add `args' argument. Use new
22358 `eldoc-highlight-function-argument'.
22359 (eldoc-highlight-function-argument): New function.
22360 (eldoc-get-var-docstring): Format documentation with
22361 `font-lock-variable-name-face'.
22362 (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
22363 where suited.
22364 (eldoc-fnsym-in-current-sexp): Return a list with argument index.
22365 (eldoc-beginning-of-sexp): Return number of skipped sexps.
22366
22367 2007-07-11 Michael Albinus <michael.albinus@gmx.de>
22368
22369 * progmodes/compile.el (compilation-start): `start-process' must
22370 still be redefined when calling `start-process-shell-command'.
22371
22372 * progmodes/gud.el (gud-file-name): When `default-directory' is a
22373 remote file name, prepend its remote part to the filename.
22374 (gud-common-init): When `default-directory' is a remote file name,
22375 make the filename relative to it.
22376 Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
22377
22378 2007-07-11 Dan Nicolaescu <dann@ics.uci.edu>
22379
22380 * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
22381 mouse binding and a tooltip.
22382
22383 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
22384
22385 * menu-bar.el (vc-menu-map): New defalias.
22386
22387 2007-07-10 Richard Stallman <rms@gnu.org>
22388
22389 * emacs-lisp/lisp-mode.el (eval-defun):
22390 Explain special handling of `defface'.
22391
22392 2007-07-10 Jim Meyering <jim@meyering.net> (tiny change)
22393
22394 * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
22395
22396 * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
22397
22398 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
22399
22400 * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
22401
22402 * vc-arch.el (vc-arch-complete): Remove.
22403 (vc-arch-revision-completion-table): Use complete-with-action.
22404
22405 * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
22406 (complete-with-action): New function.
22407 (dynamic-completion-table): Use it.
22408
22409 2007-07-10 Michael Albinus <michael.albinus@gmx.de>
22410
22411 * comint.el (make-comint, make-comint-in-buffer)
22412 (comint-exec-1): Replace `start-process' by `start-file-process'.
22413
22414 * progmodes/compile.el (compilation-start): Revert redefining
22415 `start-process'.
22416
22417 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
22418
22419 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
22420 with EOLs when generating MD5 checksums.
22421
22422 * follow.el: Don't change the global map from the follow-mode-map
22423 defvar, but from the toplevel. Use easy-menu to unify the Emacs and
22424 XEmacs code.
22425 (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
22426 since `follow-mode' should be used instead for that.
22427
22428 * emacs-lisp/easymenu.el (easy-menu-binding): New function.
22429 (easy-menu-do-define): Use it.
22430 (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
22431
22432 * progmodes/compile.el (compilation-auto-jump-to-first-error)
22433 (compilation-auto-jump-to-next): New vars.
22434 (compilation-auto-jump): New function.
22435 (compilation-error-properties): Use them to jump to first error.
22436 (compilation-start): Set the var if requested.
22437
22438 * emacs-lisp/autoload.el (update-directory-autoloads): Remove
22439 duplicates without also removing entries from other directories.
22440
22441 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
22442
22443 * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
22444 Remember span as default.
22445 (org-columns-edit-value): Rename from `org-column-edit'.
22446 (org-columns-display-here-title): Rename from
22447 `org-overlay-columns-title'.
22448 (org-columns-remove-overlays): Rename from org-remove-column-overlays.
22449 (org-columns-get-autowidth-alist): Rename from
22450 `org-get-columns-autowidth-alist'.
22451 (org-columns-display-here): Rename from `org-overlay-columns'.
22452 (org-columns-new-overlay): Rename from `org-new-column-overlay'.
22453 (org-columns-quit): Rename from `org-column-quit'.
22454 (org-columns-show-value): Rename from `org-column-show-value'.
22455 (org-columns-content, org-columns-widen)
22456 (org-columns-next-allowed-value)
22457 (org-columns-edit-allowed, org-columns-store-format)
22458 (org-columns-uncompile-format, org-columns-redo)
22459 (org-columns-edit-attributes, org-delete-property)
22460 (org-set-property, org-columns-update)
22461 (org-columns-compute, org-columns-eval)
22462 (org-columns-not-in-agenda, org-columns-compute-all)
22463 (org-property-next-allowed-value)
22464 (org-columns-compile-format)
22465 (org-fill-paragraph-experimental)
22466 (org-string-to-number, org-property-action)
22467 (org-columns-move-left, org-columns-new)
22468 (org-column-number-to-string)
22469 (org-property-previous-allowed-value)
22470 (org-at-property-p, org-columns-delete)
22471 (org-columns-previous-allowed-value)
22472 (org-columns-move-right, org-columns-narrow)
22473 (org-property-get-allowed-values)
22474 (org-verify-version, org-column-string-to-number)
22475 (org-delete-property-globally): New functions.
22476 (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
22477 (org-columns-overlays): Rename from `org-column-overlays'.
22478 (org-columns-map): Rename from `org-column-map'.
22479 (org-columns-current-maxwidths): Rename from
22480 `org-current-columns-maxwidths'.
22481 (org-columns-begin-marker, org-columns-current-fmt-compiled)
22482 (org-previous-header-line-format)
22483 (org-columns-inhibit-recalculation)
22484 (org-columns-top-level-marker): New variables.
22485 (org-columns-default-format): Rename from `org-default-columns-format'.
22486 (org-property-re): New constant.
22487
22488 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
22489
22490 * subr.el (looking-at-p, string-match-p): New functions.
22491
22492 2007-07-09 Reiner Steib <Reiner.Steib@gmx.de>
22493
22494 * textmodes/tex-mode.el (tex-fontify-script)
22495 (tex-font-script-display): New variables to make display of
22496 superscripts and subscripts customizable.
22497 (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
22498
22499 2007-07-09 Richard Stallman <rms@gnu.org>
22500
22501 * isearch.el (isearch-edit-string): Call to isearch-push-state
22502 after the search.
22503
22504 2007-07-09 Jan Djärv <jan.h.d@swipnet.se>
22505
22506 * window.el (fit-window-to-buffer): Remove setting of window-min-height
22507 to 1 as enlarge-window uses the value to resize/shrink windows other
22508 than WINDOW if needed.
22509
22510 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
22511
22512 * cus-start.el (file-coding-system-alist): Fix custom type.
22513
22514 2007-07-08 Chong Yidong <cyd@stupidchicken.com>
22515
22516 * longlines.el (longlines-wrap-region): Avoid marking buffer as
22517 modified.
22518 (longlines-auto-wrap, longlines-window-change-function):
22519 Remove unnecessary calls to set-buffer-modified-p.
22520
22521 2007-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
22522
22523 * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
22524 (vc-cvs-checkout): Remove last arg now unused; simplify.
22525
22526 2007-07-08 Michael Albinus <michael.albinus@gmx.de>
22527
22528 * files.el (file-remote-p): Introduce optional parameter CONNECTED.
22529
22530 * net/tramp.el:
22531 * net/tramp-ftp.el:
22532 * net/tramp-smb.el:
22533 * net/tramp-uu.el:
22534 * net/trampver.el: Migrate to Tramp 2.1.
22535
22536 * net/tramp-cache.el:
22537 * net/tramp-fish.el:
22538 * net/tramp-gw.el: New Tramp packages.
22539
22540 * net/tramp-util.el:
22541 * net/tramp-vc.el: Removed.
22542
22543 * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
22544 (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
22545
22546 * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
22547
22548 * progmodes/compile.el (compilation-start): Redefine
22549 `start-process' temporarily when `default-directory' is remote.
22550 Remove case of synchronous compilation, this won't happen ever.
22551 (compilation-setup): Make local variable `comint-file-name-prefix'
22552 for remote compilation.
22553
22554 2007-07-08 Martin Rudalics <rudalics@gmx.at>
22555
22556 * novice.el (disabled-command-function): Fit window to buffer to
22557 make last line visible.
22558 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
22559
22560 * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
22561 when handling the terminating event.
22562
22563 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
22564
22565 * calc/calc.el (math-read-number-simple): Remove leading 0s.
22566 (math-bignum-digit-length): Change to optimal value.
22567
22568 * calc/calc-bin.el (math-bignum-logb-digit-size)
22569 (math-bignum-digit-power-of-two): Evaluate when compiled.
22570
22571 * calc/calc-comb.el (math-small-factorial-table)
22572 (math-init-random-base, math-prime-test): Remove unnecessary calls
22573 to `math-read-number-simple'.
22574
22575 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
22576 (math-approx-gamma-const): Add docstrings.
22577
22578 * calc/calc-forms.el (math-julian-date-beginning)
22579 (math-julian-date-beginning-int): New constants.
22580 (math-format-date-part, math-parse-standard-date, calcFunc-julian):
22581 Use the new constants.
22582
22583 * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
22584
22585 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
22586 Add docstrings.
22587
22588 2007-07-07 Tom Tromey <tromey@redhat.com>
22589
22590 * vc.el (vc-annotate): Jump to line and output message only after the
22591 process is really all done.
22592
22593 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
22594
22595 * vc.el (vc-exec-after): Don't move point from the sentinel.
22596 Forcefully read all the remaining text in the pipe upon process exit.
22597 (vc-annotate-display-autoscale, vc-annotate-lines):
22598 Don't stop at the first unrecognized line.
22599 (vc-annotate-display-select): Run autoscale after the process is done
22600 since it depends on the whole result.
22601
22602 2007-07-07 Eli Zaretskii <eliz@gnu.org>
22603
22604 * term/w32-win.el (menu-bar-open): New function.
22605 Bind <f10> to it.
22606
22607 2007-07-07 Michael Albinus <michael.albinus@gmx.de>
22608
22609 * simple.el (start-file-process): New defun.
22610
22611 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
22612
22613 * files.el (find-file-confirm-nonexistent-file): Rename from
22614 find-file-confirm-inexistent-file. Update users.
22615
22616 * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
22617 format of autoload block where the file's time-stamp is replaced by its
22618 MD5 checksum.
22619 (autoload-generate-file-autoloads): Use MD5 checksum instead of
22620 time-stamp for secondary autoloads files.
22621 (update-directory-autoloads): Remove duplicate entries.
22622 Use time-less-p for time-stamps, as done in autoload-find-destination.
22623
22624 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
22625
22626 * calc/calc.el (math-read-number): Replace number by variable.
22627 (math-read-number-simple): Properly parse small integers.
22628
22629 2007-07-07 Dan Nicolaescu <dann@ics.uci.edu>
22630
22631 * vc.el: Fix doc for the checkout function.
22632
22633 2007-07-06 Dan Nicolaescu <dann@ics.uci.edu>
22634
22635 * vc-hg.el (vc-hg-root): New function.
22636 (vc-hg-registered): Use it.
22637 (vc-hg-diff-tree): New defalias.
22638 (vc-hg-responsible-p): Likewise.
22639 (vc-hg-checkout): Comment out, not needed.
22640 (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
22641 (vc-hg-find-version, vc-hg-next-version): New functions.
22642
22643 2007-07-06 Andreas Schwab <schwab@suse.de>
22644
22645 * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
22646 dynamic bindings around the evaluation of the expression.
22647 Reported by Jay Belanger <jay.p.belanger@gmail.com>.
22648
22649 2007-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
22650
22651 * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
22652 Run before-revert-hook. Suggested by Denis Bueno <denbuen@sandia.gov>.
22653 Use run-hooks rather than run-mode-hooks.
22654
22655 2007-07-05 Jay Belanger <jay.p.belanger@gmail.com>
22656
22657 * calc/calc-comb.el (math-random-digit): Rename to
22658 `math-random-three-digit-number'.
22659 (math-random-digits): Don't depend on representation of integer.
22660
22661 * calc/calc-bin.el (math-bignum-logb-digit-size)
22662 (math-bignum-digit-power-of-two): New constants.
22663 (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
22664 (math-not-bignum, math-clip-bignum): Use the constants
22665 `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
22666 instead of their values.
22667 (math-clip): Use math-small-integer-size instead of its value.
22668
22669 * calc/calc.el (math-add-bignum): Replace number by constant.
22670
22671 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
22672
22673 * wid-edit.el (widget-documentation-string-value-create):
22674 Insert indentation spaces.
22675
22676 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
22677
22678 * emacs-lisp/byte-opt.el: Revert last change.
22679
22680 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
22681
22682 * vc-hooks.el (vc-handled-backends): Add HG.
22683
22684 * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
22685
22686 2007-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
22687
22688 * complete.el (PC-do-complete-and-exit): Add support for the new
22689 `confirm-only' confirmation mode.
22690
22691 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
22692
22693 * cus-edit.el (custom-commands): New variable.
22694 (custom-tool-bar-map): New variable. Initialize using
22695 `custom-commands'.
22696 (custom-mode): Use `custom-tool-bar-map'.
22697 (custom-buffer-create-internal): Insert action buttons only if
22698 tool bar is not used. Use `custom-commands'.
22699 (Custom-help, custom-command-apply): New function.
22700 (custom-command-apply, Custom-set, Custom-save)
22701 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
22702 Use `custom-command-apply' instead of duplicating code.
22703 (customize-group-other-window): Call `customize-group' instead of
22704 duplicating code.
22705 (customize-face-other-window): Call `customize-face' instead of
22706 duplicating code.
22707 (customize-group, customize-face): Add optional args for opening
22708 in another window.
22709 (custom-variable-tag): Don't inherit `variable-pitch' face.
22710 (custom-group-tag): Inherit `variable-pitch' face.
22711 (custom-variable-value-create): Set documentation indentation.
22712 (custom-group-value-create): Make group name a link, instead of
22713 using an extra "go to group" button.
22714 (custom-prompt-variable, custom-group-set, custom-group-save)
22715 (custom-group-reset-current, custom-group-reset-saved)
22716 (custom-group-reset-standard): Minor cleanup.
22717
22718 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
22719
22720 * Makefile.in (bootstrap-prepare): When copying from
22721 ldefs-boot.el, make sure loaddefs.el is writeable.
22722
22723 (bootstrap-prepare): Make $(lisp)/ps-print.el
22724 and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
22725
22726 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
22727
22728 * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
22729 only caller, and delete.
22730 (vc-hg-state): Deal with exceptions and only parse the output on
22731 successful return.
22732 (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
22733 caller, and delete.
22734 (vc-hg-workfile-version): Deal with exceptions and only parse the
22735 output on successful return.
22736 (vc-hg-revert): New function.
22737
22738 2007-07-04 Jay Belanger <jay.p.belanger@gmail.com>
22739
22740 * calculator.el (calculator-expt): Use more cases to determine
22741 the value.
22742
22743 2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
22744
22745 * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
22746 file names.
22747
22748 2007-07-03 Jay Belanger <jay.p.belanger@gmail.com>
22749
22750 * calculator.el (calculator-expt, calculator-integer-p):
22751 New functions.
22752 (calculator-fact): Check to see if the factorial will be too
22753 large before computing it.
22754 (calculator-initial-operators): Use `calculator-expt' to
22755 compute "^".
22756 (calculator-mode): Mention that results which are too large
22757 will return inf.
22758 * calc/calc-comb.el (math-small-factorial-table): Replace list
22759 by vector.
22760
22761 2007-07-03 David Kastrup <dak@gnu.org>
22762
22763 * shell.el: On request of the authors, remove their addresses for
22764 the sake of bug reports, and add the developer list address as
22765 maintainer information.
22766
22767 2007-07-03 Richard Stallman <rms@gnu.org>
22768
22769 * files.el (make-directory): Doc fix.
22770 (find-file-confirm-inexistent-file): Make it a defcustom.
22771 Make nil the default.
22772
22773 2007-07-02 Richard Stallman <rms@gnu.org>
22774
22775 * startup.el (command-line): Set buffer-offer-save in *scratch*
22776 and enable auto-save in it.
22777
22778 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
22779
22780 * textmodes/org.el (orgstruct-mode-map): New variable.
22781 (orgstruct-mode): New minor mode.
22782 (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
22783 (orgstruct-make-binding, org-context-p, org-get-local-variables)
22784 (org-run-like-in-org-mode): New functions.
22785 (org-cycle-list-bullet): New command.
22786 (org-special-properties, org-property-start-re)
22787 (org-property-end-re): New constants.
22788 (org-with-point-at): New macro.
22789 (org-get-property-block, org-entry-properties, org-entry-get)
22790 (org-entry-delete, org-entry-get-with-inheritance)
22791 (org-entry-put, org-buffer-property-keys): New functions.
22792 (org-insert-property-drawer): New command.
22793 (org-entry-property-inherited-from): New variable.
22794 (org-column): New face.
22795 (org-column-overlays, org-current-columns-fmt)
22796 (org-current-columns-maxwidths, org-column-map): New variables.
22797 (org-column-menu): New menu.
22798 (org-new-column-overlay, org-overlay-columns)
22799 (org-overlay-columns-title, org-remove-column-overlays)
22800 (org-column-show-value, org-column-quit, org-column-edit):
22801 New functions.
22802 (org-columns, org-agenda-columns): New commands.
22803 (org-get-columns-autowidth-alist): New functions.
22804 (org-properties): New customize group.
22805 (org-default-columns-format): New option.
22806 (org-priority): Realign tags after changing priority.
22807 (org-preserve-lc): New macro.
22808 (org-update-checkbox-count): Catch case when there is no headline.
22809 (org-agenda-quit): Remove any column overlays.
22810 (org-beginning-of-item-list): Fixed bug when non-item line is
22811 indented too deep.
22812 (org-cached-props): New variable.
22813 (org-cached-entry-get): New function.
22814 (org-make-tags-matcher): Handle property matches.
22815 (org-table-recalculate): Swap evaluation order: Field formula
22816 first, then column formulas, but don't allow them to overwrite the
22817 field formulas.
22818 (org-table-eval-formula): New argument untouchable.
22819 (org-table-put-field-property): New function.
22820
22821 2007-07-02 Martin Rudalics <rudalics@gmx.at>
22822
22823 * help-mode.el (help-make-xrefs): Skip spaces too when
22824 skipping tabs.
22825
22826 * ffap.el (dired-at-point-prompter): Improve prompt in
22827 list-directory case.
22828
22829 2007-07-01 Richard Stallman <rms@gnu.org>
22830
22831 * files.el (find-file-visit-truename): Fix safe-local-variable value.
22832
22833 2007-07-01 Richard Stallman <rms@gnu.org>
22834
22835 * cus-start.el (max-mini-window-height): Added.
22836
22837 2007-07-01 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
22838
22839 * complete.el (partial-completion-mode): Remove advice of
22840 read-file-name-internal.
22841 (PC-do-completion): Rebind minibuffer-completion-table.
22842 (PC-read-file-name-internal): New function doing what
22843 read-file-name-internal advice did.
22844
22845 2007-07-01 Paul Pogonyshev <pogonyshev@gmx.net>
22846
22847 * emacs-lisp/byte-opt.el: Set `binding-is-magic'
22848 property on a few symbols.
22849 (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
22850 (byte-optimize-lapcode): Remove bindings that are not referenced
22851 and certainly will not effect through dynamic scoping.
22852
22853 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
22854
22855 * files.el (find-file-confirm-inexistent-file): New var.
22856 (find-file, find-file-other-window, find-file-other-frame)
22857 (find-file-read-only, find-file-read-only-other-window)
22858 (find-file-read-only-other-frame): Use it.
22859
22860 2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
22861
22862 * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
22863
22864 2007-06-29 Juanma Barranquero <lekktu@gmail.com>
22865
22866 * generic-x.el (generic-define-mswindows-modes)
22867 (generic-define-unix-modes, apache-log-generic-mode)
22868 (bat-generic-mode-keymap, java-manifest-generic-mode)
22869 (show-tabs-generic-mode): Fix typos in docstrings.
22870
22871 2007-06-29 Ryan Yeske <rcyeske@gmail.com>
22872
22873 * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
22874 (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
22875 (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
22876 (rcirc-print): Never ignore messages from ourself.
22877
22878 2007-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
22879
22880 * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
22881 syntax as well. Reported by Juri Linkov <juri@jurta.org>.
22882
22883 2007-06-28 Jan Djärv <jan.h.d@swipnet.se>
22884
22885 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
22886 replace-regexp-in-string.
22887
22888 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
22889
22890 * emacs-lisp/cl.el: Set edebug and indentation before loading
22891 cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
22892
22893 2007-06-28 Andreas Schwab <schwab@suse.de>
22894
22895 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
22896 $(lisp)/subdirs.el.
22897
22898 2007-06-28 Juanma Barranquero <lekktu@gmail.com>
22899
22900 * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
22901 the speedbar frame if nil; that deletes the current frame or
22902 causes an error if it is the only frame.
22903 Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
22904
22905 2007-06-28 Kevin Ryde <user42@zip.com.au>
22906
22907 * textmodes/nroff-mode.el: Groff \# comments.
22908 (nroff-mode-syntax-table): \# comment intro,
22909 plain # as punct per global table.
22910 (nroff-font-lock-keywords): Add # as a single char escape.
22911 (nroff-mode): In comment-start-skip, match \#.
22912
22913 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
22914
22915 * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
22916 (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
22917 point-min == 1.
22918
22919 2007-06-28 Nick Roberts <nickrob@snap.net.nz>
22920
22921 * pcvs-util.el (cvs-strings->string, cvs-string->strings):
22922 Rename and move to...
22923
22924 * subr.el (strings->string, string->strings): ...here.
22925
22926 * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
22927 (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
22928
22929 * progmodes/gud.el (gud-common-init): Call string->strings instead
22930 of split-string.
22931
22932 2007-06-27 Michael Albinus <michael.albinus@gmx.de>
22933
22934 * dired-aux.el: Remove `dired-call-process'.
22935 (dired-check-process): Call `process-file'.
22936
22937 * wdired.el (wdired-do-perm-changes): Call `process-file'.
22938
22939 * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
22940 `ange-ftp-process-file'.
22941
22942 2007-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
22943
22944 * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
22945
22946 * emacs-lisp/cl-extra.el:
22947 * emacs-lisp/cl-seq.el:
22948 * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
22949 Add autoload cookies on all defs autoloaded manually in cl.el.
22950
22951 * emacs-lisp/cl-loaddefs.el: New file.
22952
22953 * textmodes/texinfmt.el (texinfo-raisesections-alist)
22954 (texinfo-lowersections-alist): Merge definition and declaration.
22955 (texinfo-start-of-header, texinfo-end-of-header): Remove.
22956 (texinfo-format-syntax-table): Merge init into declaration.
22957 (texinfo-format-parse-line-args, texinfo-format-parse-args)
22958 (texinfo-format-parse-defun-args, texinfo-format-node)
22959 (texinfo-push-stack, texinfo-multitable-widths)
22960 (texinfo-define-info-enclosure, texinfo-alias)
22961 (texinfo-format-defindex, batch-texinfo-format): Use push.
22962 (texinfo-footnote-number): Remove duplicate declaration.
22963
22964 * ps-print.el: Update with auto-generated autoloads.
22965
22966 * ps-mule.el: Set generated-autoload-file to "ps-print.el".
22967
22968 2007-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
22969
22970 * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
22971 relative to current dir for file-local settings.
22972 (autoload-generate-file-autoloads): Add `outfile' arg.
22973 (update-directory-autoloads): Use it to directly call
22974 autoload-generate-file-autoloads instead of going through
22975 update-file-autoloads so we avoid redundant searches and so we can know
22976 the set of buffers changed so we can save them all.
22977
22978 * emacs-lisp/autoload.el (autoload-find-destination): Return nil
22979 rather than throwing `up-to-date'.
22980 (autoload-generate-file-autoloads): Adjust correspondingly.
22981 (update-file-autoloads): Be careful to let-bind
22982 autoload-modified-buffers and adjust to new calling conventions.
22983 (autoload-modified-buffers): Make it a dynamically scoped var.
22984 (update-directory-autoloads): Use file-relative-name instead of
22985 autoload-trim-file-name.
22986 (autoload-insert-section-header): Don't use autoload-trim-file-name
22987 since the file is already relative now.
22988 (autoload-trim-file-name): Remove.
22989
22990 * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
22991 (vc-arch-complete, vc-arch--version-completion-table)
22992 (vc-arch-revision-completion-table): New functions to provide
22993 completion of revision names.
22994 (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
22995 (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
22996 to let the user trim the revlib.
22997
22998 * vc.el: Add new VC operation `revision-completion-table'.
22999 (vc-default-revision-completion-table): New function.
23000 (vc-version-diff, vc-version-other-window): Use it to provide
23001 completion of revision names if the backend provides it.
23002
23003 * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
23004
23005 * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
23006 of newer .svn/entries.
23007
23008 2007-06-25 David Kastrup <dak@gnu.org>
23009
23010 * calc/calc-poly.el (math-padded-polynomial)
23011 (math-partial-fractions): Add some function comments.
23012
23013 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
23014
23015 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
23016 Make `outbuf' optional.
23017 (update-file-autoloads): Use it.
23018
23019 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
23020
23021 * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
23022 (autoload-find-destination): Keep it uptodate.
23023 (autoload-save-buffers): New fun.
23024 (update-file-autoloads): Use it. Re-add the "up to date" message.
23025
23026 * emacs-lisp/autoload.el: Refactor for upcoming changes.
23027 (autoload-find-destination): New function extracted from
23028 update-file-autoloads.
23029 (update-file-autoloads): Use it.
23030 (autoload-generate-file-autoloads): New function extracted from
23031 generate-file-autoloads. Use file-relative-name. Delay computation of
23032 output-start to the first cookie. Remove done-any, replaced by
23033 output-start.
23034 (generate-file-autoloads): Use it.
23035
23036 2007-06-24 Jay Belanger <jay.p.belanger@gmail.com>
23037
23038 * calc/calc-comb.el (math-init-random-base, math-prime-test):
23039 Use math-read-number-simple to insert constants.
23040 (math-prime-test): Redo calculation of sum.
23041
23042 * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
23043
23044 * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
23045 math-scale-bignum-3.
23046 (math-isqrt-bignum): Use math-scale-bignum-digit-size and
23047 math-bignum-digit-size.
23048 (math-isqrt-small): Add another possible initial guess.
23049
23050 2007-06-23 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23051
23052 * textmodes/bibtex.el (bibtex-entry-format): New options
23053 `whitespace', `braces', and `string'.
23054 (bibtex-field-braces-alist, bibtex-field-strings-alist)
23055 (bibtex-field-braces-opt, bibtex-field-strings-opt)
23056 (bibtex-cite-matcher-alist): New variables.
23057 (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
23058 (bibtex-flash-head): Use blink-matching-delay.
23059 (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
23060 (bibtex-format-entry, bibtex-reformat): Handle new options of
23061 bibtex-entry-format.
23062 (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
23063 New functions.
23064 (bibtex-complete-internal): Do not display messages while
23065 minibuffer is used. Do not leave around a completions buffer
23066 that is out of date.
23067 (bibtex-copy-summary-as-kill): New optional arg.
23068 (bibtex-font-lock-url): New optional arg no-button.
23069 (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
23070 (bibtex-url): Allow multiple URLs per entry.
23071
23072 2007-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
23073
23074 * emacs-lisp/autoload.el (autoload-generated-file): New function.
23075 (update-file-autoloads, update-directory-autoloads): Use it.
23076 (autoload-file-load-name): New function.
23077 (generate-file-autoloads, update-file-autoloads): Use it.
23078 (autoload-find-file): Accept non-absolute argument. Set default-dir.
23079 (generate-file-autoloads): If the autoloaded form is malformed,
23080 indicate the problem with a warning instead of aborting.
23081
23082 2007-06-23 Thien-Thi Nguyen <ttn@gnuvola.org>
23083
23084 * simple.el (next-error-recenter): Accept `(4)' as well;
23085 also, specify `integer' instead of `number'.
23086
23087 2007-06-23 Eli Zaretskii <eliz@gnu.org>
23088
23089 * ls-lisp.el (insert-directory): If an invalid regexp error is
23090 thrown, try using FILE as a literal file name, not a wildcard.
23091
23092 2007-06-23 Juanma Barranquero <lekktu@gmail.com>
23093
23094 * ruler-mode.el (ruler-mode): Prevent clobbering the original
23095 `header-line-format' when reentering ruler mode.
23096
23097 2007-06-23 Eli Zaretskii <eliz@gnu.org>
23098
23099 * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
23100 FILE exists as a file.
23101
23102 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
23103
23104 * calc/calc.el (math-bignum-digit-length)
23105 (math-bignum-digit-size, math-small-integer-size):
23106 New constants.
23107 (math-normalize, math-bignum-big, math-make-float)
23108 (math-div10-bignum, math-scale-left, math-scale-left-bignum)
23109 (math-scale-right, math-scale-right-bignum, math-scale-rounding)
23110 (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
23111 (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
23112 (math-quotient, math-div-bignum, math-div-bignum-digit)
23113 (math-div-bignum-part, math-format-bignum-decimal)
23114 (math-read-bignum): Use math-bignum-digit-length,
23115 math-bignum-digit-size and math-small-integer-size.
23116
23117 * calc/calc-ext.el (math-fixnum-big): Use the variable
23118 math-bignum-digit-size.
23119
23120 2007-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23121
23122 * log-view.el (log-view-mode-menu): New menu.
23123
23124 2007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
23125
23126 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
23127 differently.
23128
23129 * vc-hg.el (vc-hg-registered): Add an autoloaded version.
23130 (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
23131
23132 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
23133
23134 * vc-hg.el (vc-hg-print-log): Insert the file name.
23135 (vc-hg-log-view-mode): Fontify the file name.
23136
23137 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
23138
23139 * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
23140 (calcFunc-julian): Fix incorrect number used in calculations.
23141
23142 2007-06-22 Thien-Thi Nguyen <ttn@gnuvola.org>
23143
23144 * simple.el (next-error-recenter): New defcustom.
23145 (next-error, next-error-internal): Recenter if specified,
23146 immediately prior to running `next-error-hook'.
23147
23148 * progmodes/hideshow.el (hs-show-block): Use line-end-position.
23149 (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
23150
23151 * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
23152
23153 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
23154
23155 * calc/calc-comb.el (math-small-factorial-table): New variable.
23156 (calcFunc-fact): Use `math-small-factorial-table'.
23157
23158 * calc/calc-ext.el (math-defcache): Allow forms to evaluate
23159 initial values.
23160 (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
23161 New variables to use in caches.
23162
23163 * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
23164 (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
23165
23166 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
23167 (math-bernoulli-b-cache): Use math-read-number-simple to insert
23168 bignums.
23169
23170 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
23171 New variables to use in caches.
23172
23173 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
23174
23175 * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
23176
23177 * vc-hg.el (vc-hg-log-view-mode): New mode.
23178
23179 2007-06-21 Jay Belanger <jay.p.belanger@gmail.com>
23180
23181 * calc/calc.el (math-read-number-simple): New function.
23182
23183 2007-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
23184
23185 * progmodes/vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
23186 (vera-font-lock-match-item): Fix doc string.
23187 (vera-in-comment-p): Remove unused function.
23188 (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
23189 use `syntax-ppss'.
23190 (vera-forward-syntactic-ws): Fix argument order.
23191 (vera-prepare-search): Use `with-syntax-table'.
23192 (vera-indent-line): Fix doc string.
23193 (vera-electric-tab): Fix doc string.
23194 (vera-expand-abbrev): Define alias instead of using `fset'.
23195 (vera-comment-uncomment-region): Use `comment-start-skip'.
23196
23197 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
23198
23199 * textmodes/org.el (org-export-with-footnotes): New option.
23200 (org-export-as-html): Fix replacement bug for XEmacs.
23201 (org-agenda-default-appointment-duration): New option.
23202
23203 2007-06-21 Dan Nicolaescu <dann@ics.uci.edu>
23204
23205 * vc-hg.el: Add to do items.
23206 (vc-hg-diff): Add support for comparing different revisions.
23207 (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
23208 (vc-hg-annotate-extract-revision-at-line)
23209 (vc-hg-previous-version, vc-hg-checkin): New functions.
23210 (vc-hg-annotate-re): New constant.
23211
23212 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com>
23213
23214 * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
23215
23216 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
23217
23218 * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
23219 buffer-local value of log-view-*-re if applicable.
23220
23221 * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
23222 Use vc-bzr-command rather than the ill defined vc-bzr-command*.
23223 (vc-bzr-command*): Remove both (incompatible) versions.
23224 (vc-bzr-do-command*): Remove.
23225 (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
23226 Remove by folding into its only caller vc-bzr-command.
23227 (vc-bzr-command): Always set the environment, even when ineffective.
23228 (vc-bzr-version): Minor fix up.
23229 (vc-bzr-admin-dirname): New var.
23230 (vc-bzr-bzr-dir): Remove.
23231 (vc-bzr-root-dir): New fun.
23232 (vc-bzr-registered): Use it. Add an autoloaded version.
23233 (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
23234 (vc-bzr-view-log-function): Remove.
23235 (vc-bzr-log-view-mode): New major mode to replace it.
23236 (vc-bzr-print-log): Only activate the old hack if needed.
23237
23238 * vc.el (vc-default-log-view-mode): New function.
23239 (vc-print-log): Add new `log-view-mode' VC operation.
23240
23241 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
23242
23243 * ido.el (ido-find-file-in-dir): Don't signal an error for
23244 empty directories.
23245
23246 * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
23247
23248 * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
23249 directory where the desktop file was found, as the docstring says.
23250 (desktop-kill): Use `read-directory-name'.
23251
23252 2007-06-20 Alan Mackenzie <acm@muc.de>
23253
23254 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
23255 When removing lines, also remove the \n. Correction of patch of
23256 2007-04-21.
23257
23258 2007-06-20 Martin Rudalics <rudalics@gmx.at>
23259
23260 * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
23261 event is not a cons cell. Do not unread drag-mouse-1 events.
23262 Select right window in check whether space was stolen from
23263 window above.
23264
23265 * help-mode.el (help-make-xrefs): Adjust position of new forward
23266 button.
23267
23268 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com>
23269
23270 * vc-bzr.el (vc-bzr-with-process-environment)
23271 (vc-bzr-std-process-invocation): New macros.
23272 (vc-bzr-command, vc-bzr-command*): Use them.
23273 (vc-bzr-with-c-locale): Remove.
23274 (vc-bzr-dir-state): Replace its use with vc-bzr-command.
23275 (vc-bzr-buffer-nonblank-p): New function.
23276 (vc-bzr-state-words): New const.
23277 (vc-bzr-state): Look for `bzr status' keywords in output.
23278 Display everything else as a warning message to the user.
23279 Fix status report with bzr >= 0.15.
23280
23281 2007-06-20 Dan Nicolaescu <dann@ics.uci.edu>
23282
23283 * vc-hg.el (vc-hg-global-switches): Simplify.
23284 (vc-hg-state): Handle more states.
23285 (vc-hg-diff): Fix doc-string.
23286 (vc-hg-register): New function.
23287 (vc-hg-checkout): Likewise.
23288
23289 2007-06-20 Reto Zimmermann <reto@gnu.org>
23290
23291 * progmodes/vera-mode.el: New file.
23292
23293 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com>
23294
23295 * calc/calc.el (calc-multiplication-has-precendence):
23296 New variable.
23297 (math-standard-ops, math-standard-ops-p, math-expr-ops):
23298 New functions.
23299 (math-expr-opers): Define using math-standard-ops rather than
23300 math-standard-opers.
23301 * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
23302 equal the function math-standard-ops rather than the variable
23303 math-standard-opers.
23304 (calc-algebraic-entry): Let math-expr-opers equal
23305 math-standard-ops or math-expr-ops, as appropriate.
23306 (math-expr-read-level, math-read-factor): Let math-expr-opers
23307 equal math-expr-ops.
23308 * calc/calc-embed.el (calc-embedded-finish-edit):
23309 Let math-expr-opers equal the function math-standard-ops
23310 rather than the variable math-standard-opers.
23311 * calc/calc-ext.el (math-read-plain-expr)
23312 (math-format-flat-expr-fancy): Let math-expr-opers equal the
23313 function math-standard-ops rather than the variable
23314 math-standard-opers.
23315 * calc/calc-lang.el (calc-set-language, math-read-big-rec):
23316 Let math-expr-opers equal the function math-standard-ops rather
23317 than the variable math-standard-opers.
23318 * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
23319 equal the function math-standard-ops rather than the variable
23320 math-standard-opers.
23321 * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
23322 equal the function math-standard-ops rather than the variable
23323 math-standard-opers.
23324 * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
23325 math-expr-ops.
23326
23327 2007-06-19 Ivan Kanis <apple@kanis.eu>
23328
23329 * vc-hg.el: New file.
23330
23331 2007-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
23332
23333 * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
23334 with font-lock-multiline.
23335
23336 2007-06-17 Glenn Morris <rgm@gnu.org>
23337
23338 * lpr.el (lpr-page-header-switches): Move %s to separate element
23339 for correct quoting. Doc fix.
23340
23341 2007-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
23342
23343 * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
23344 than setting sgml-xml-mode.
23345 (sgml-mode, html-mode): Set sgml-xml-mode.
23346 (sgml-skip-tag-backward): Tell if we skipped over matched tags.
23347 (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
23348 (sgml-electric-tag-pair-before-change-function)
23349 (sgml-electric-tag-pair-flush-overlays): New functions.
23350 (sgml-electric-tag-pair-mode): New minor mode.
23351 (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
23352 (sgml-calculate-indent): Use assoc-string.
23353
23354 2007-06-16 Karl Fogel <kfogel@red-bean.com>
23355
23356 * thingatpt.el (thing-at-point-email-regexp): Don't require two
23357 chars before the "@" in an email address. Andreas Roehler noticed
23358 this problem.
23359
23360 2007-06-15 Karl Fogel <kfogel@red-bean.com>
23361
23362 * thingatpt.el: Add support for email addresses (`email').
23363 (thing-at-point, bounds-of-thing-at-point): Document `email' support.
23364 (thing-at-point-email-regexp): New variable.
23365 (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
23366 properties on this symbol, with lambda forms for values.
23367
23368 2007-06-15 Masatake YAMATO <jet@gyve.org>
23369
23370 * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
23371
23372 * vc.el (vc-dired-hook): Check the backend returned from
23373 `vc-responsible-backend' can really handle `subdir'.
23374
23375 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
23376
23377 * wid-edit.el (widget-add-documentation-string-button):
23378 Fix handling of documentation indent.
23379
23380 2007-06-15 Miles Bader <miles@fencepost.gnu.org>
23381
23382 * mb-depth.el: New file.
23383
23384 2007-06-15 Masatake YAMATO <jet@gyve.org>
23385
23386 * vc.el (vc-dired-mode): Show backend name as part of mode name.
23387
23388 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
23389
23390 * wid-edit.el (widget-default-create): Move ?h handling here...
23391 (widget-default-format-handler): ...from here.
23392 (widget-docstring, widget-add-documentation-string-button): New funs.
23393 (documentation-string): Add :visibility-widget property.
23394 (widget-documentation-string-value-create): Use it.
23395
23396 * cus-edit.el (custom-split-regexp-maybe): Simplify.
23397 (custom-buffer-create-internal): Simplify message.
23398 (custom-variable-tag): Reduce height to normal.
23399 (custom-variable-value-create, custom-face-value-create)
23400 (custom-visibility): New widget.
23401 (custom-visibility): New face.
23402 (custom-group-value-create):
23403 Call widget-add-documentation-string-button, using `custom-visibility'.
23404
23405 2007-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
23406
23407 * emacs-lisp/bytecomp.el (byte-compile-current-group)
23408 (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
23409 change. Apparently the "warning even if the group is implicit" is
23410 a feature rather than a bug.
23411
23412 2007-06-14 Michael Kifer <kifer@cs.stonybrook.edu>
23413
23414 * emulation/viper.el (viper-describe-key-ad)
23415 (viper-describe-key-briefly-ad): Different advices for Emacs and XEmacs.
23416 Compile them conditionally.
23417 (viper-version): Belated version change.
23418
23419 2007-06-14 Juanma Barranquero <lekktu@gmail.com>
23420
23421 * follow.el (follow-all-followers, follow-generic-filter):
23422 * pcomplete.el (pcomplete-restore-windows):
23423 * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
23424 (x-dnd-drop-data):
23425 * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
23426 * progmodes/python.el (python-complete-symbol):
23427 * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
23428
23429 2007-06-13 Ryan Yeske <rcyeske@gmail.com>
23430
23431 * net/rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
23432 around bright and dim regexps. Make sure bright and dim matches
23433 use word anchors. Send text through rcirc-markup functions.
23434 (rcirc-url-regexp): Add single quote character.
23435 (rcirc-connect): Write logs to disk on auto-save-hook.
23436 Make server a non-optional argument.
23437 (rcirc-log-alist): New variable.
23438 (rcirc-log-directory): Make customizable.
23439 (rcirc-log-flag): New customizable variable.
23440 (rcirc-log): New function.
23441 (rcirc-print): Use above function.
23442 (rcirc-log-write): New function.
23443 (rcirc-generate-new-buffer-name): Strip text properties.
23444 (rcirc-switch-to-buffer-function): Remove variable.
23445 (rcirc-last-non-irc-buffer): Remove variable.
23446 (rcirc-non-irc-buffer): Add function.
23447 (rcirc-next-active-buffer): Use above function.
23448 (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
23449 (rcirc-handler-ctcp-KEEPALIVE): Add handler.
23450 (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
23451 (rcirc-omit-mode): Add minor-mode.
23452 (rcirc-mode-map): Change C-c C-o binding.
23453 (rcirc-mode): Clear mode-line-process. Use a custom
23454 fill-paragraph-function. Set up buffer-invisibility-spec.
23455 (rcirc-response-formats): Remove timestamp code.
23456 (rcirc-omit-responses): Add variable.
23457 (rcirc-print): Don't put the overlay arrow on potentially omitted
23458 lines. Log line to disk. Record activity for private messages
23459 from /dim nicks. Facify the fill-prefix with rcirc-timestamp face.
23460 (rcirc-jump-to-first-unread-line): Print message if there is no
23461 unread text.
23462 (rcirc-clear-unread): New function.
23463 (rcirc-markup-text-functions): Add variable.
23464 (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
23465 (rcirc-debug): Don't mess with window configuration.
23466 (rcirc-send-message): Send message before printing locally.
23467 Add SILENT argument, do not print message if non-nil.
23468 (rcirc-visible-buffers): New function and variable.
23469 (rcirc-window-configuration-change-1): Add function.
23470 (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
23471 server buffer.
23472 (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
23473 (rcirc-fill-paragraph): Add function.
23474 (rcirc-record-activity, rcirc-window-configuration-change-1):
23475 Only update the activity string if it has actually changed.
23476 (rcirc-update-activity-string): Remove padding characters from the
23477 mode-line string.
23478 (rcirc-disconnect-buffer): New function to be called when a
23479 channel is parted or the user quits.
23480 (rcirc-server-name): Warn when the server-name hasn't been set.
23481 (rcirc-window-configuration-change): Postpone work until
23482 post-command-hook.
23483 (rcirc-window-configuration-change-1): Update mode-line and
23484 overlay arrows here.
23485 (rcirc-authenticate): Fixc hanserv identification.
23486 (rcirc-default-server): Remove variable.
23487 (rcirc): Connect according to rcirc-connections.
23488 (rcirc-connections): Add variable.
23489 (rcirc-startup-channels-alist): Remove variable.
23490 (rcirc-startup-channels): Remove function.
23491
23492 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
23493
23494 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
23495
23496 2007-06-13 Johan Bockgård <bojohan@dd.chalmers.se> (tiny change)
23497
23498 * term/xterm.el (terminal-init-xterm): Escape parens in character
23499 constants.
23500
23501 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
23502
23503 * progmodes/sh-script.el: Remove unneeded * from docstrings.
23504 Use [:alpha:] and [:alnum:] where applicable.
23505 (sh-quoted-subshell): Rewrite to correctly
23506 handle nested mixes of `...' and $(...).
23507 (sh-apply-quoted-subshell): Remove.
23508 (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
23509
23510 * vc-arch.el (vc-arch-command): Remove bzr. It's a different program.
23511
23512 2007-06-13 Michael Kifer <kifer@cs.stonybrook.edu>
23513
23514 * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
23515 previous change.
23516
23517 2007-06-12 Tom Tromey <tromey@redhat.com>
23518
23519 * subr.el (user-emacs-directory): New defconst.
23520 * cmuscheme.el (scheme-start-file):
23521 * shell.el (shell):
23522 * completion.el (save-completions-file-name):
23523 * custom.el (custom-theme-directory):
23524 * term/x-win.el (emacs-session-filename):
23525 * filesets.el (filesets-menu-cache-file):
23526 * thumbs.el (thumbs-thumbsdir):
23527 * server.el (server-auth-dir):
23528 * image-dired.el (image-dired-dir):
23529 (image-dired-db-file):
23530 (image-dired-temp-image-file):
23531 (image-dired-gallery-dir):
23532 (image-dired-temp-rotate-image-file):
23533 * play/gamegrid.el (gamegrid-user-score-file-directory):
23534 * savehist.el (savehist-file):
23535 * tutorial.el (tutorial--saved-dir):
23536 * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
23537
23538 2007-06-12 Ralf Angeli <angeli@caeruleus.net>
23539
23540 * scroll-lock.el (scroll-lock-mode): Doc fix.
23541
23542 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
23543
23544 * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
23545
23546 * ediff-init.el: Doc strings.
23547
23548 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23549
23550 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
23551 (byte-compile-file): Bind it.
23552 (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
23553 group argument is provided implicitly.
23554 (byte-compile-format-warn, byte-compile-from-buffer)
23555 (byte-compile-insert-header): Don't hardcode point-min==1.
23556 (byte-compile-file-form-require): Remove unused var old-load-list.
23557 (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
23558
23559 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
23560
23561 * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
23562 Display error messages.
23563 (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
23564 Get rid of cl.el dependencies.
23565
23566 * emulation/viper-init.el (viper-suppress-input-method-change-message):
23567 New variable.
23568 (viper-activate-input-method-action)
23569 (viper-inactivate-input-method-action):
23570 Use viper-suppress-input-method-change-message.
23571
23572 * emulation/viper-keym.el (viper-vi-basic-map): Disable the bindings
23573 for C-s, C-r.
23574
23575 * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
23576 Use viper-replace-overlay-cursor-color instead of
23577 viper-replace-overlay-cursor-color.
23578 (viper-sit-for-short): Use sit-for with 3 arguments.
23579
23580 * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
23581 (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
23582 to gud-mode.
23583
23584 * ediff-mult.el (ediff-meta-buffer-brief-message)
23585 (ediff-meta-buffer-verbose-message): New variables.
23586 (ediff-meta-buffer-message): Variable deleted.
23587 (ediff-verbose-help-enabled): New variable.
23588 (ediff-toggle-verbose-help-meta-buffer): New function.
23589 (ediff-redraw-directory-group-buffer): Made aware of short/verbose
23590 message options.
23591
23592 * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
23593 (ediff-fixup-patch-map): Improve heuristic.
23594
23595 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23596
23597 * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
23598 (log-view-font-lock-keywords): Simplify.
23599 (log-view-current-file, log-view-current-tag): Simplify.
23600
23601 2007-06-12 Sam Steingold <sds@gnu.org>
23602
23603 * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
23604
23605 2007-06-12 Juanma Barranquero <lekktu@gmail.com>
23606
23607 * desktop.el (desktop-load-locked-desktop): New option.
23608 (desktop-read): Use it.
23609 (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
23610 Use `when'.
23611
23612 2007-06-12 Davis Herring <herring@lanl.gov>
23613
23614 * desktop.el (desktop-save-mode-off): New function.
23615 (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
23616 (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
23617 (desktop-claim-lock, desktop-release-lock): New functions.
23618 (desktop-kill): Tell `desktop-save' that this is the last save.
23619 Release the lock afterwards.
23620 (desktop-buffer-info): New function.
23621 (desktop-save): Use it. Run `desktop-save-hook' where the doc
23622 says to. Detect conflicts, and manage the lock.
23623 (desktop-read): Detect conflicts. Manage the lock.
23624
23625 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23626
23627 * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
23628
23629 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
23630 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead.
23631 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
23632 (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
23633 keysyms rather than byte sequences.
23634 (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
23635
23636 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23637
23638 * font-lock.el (font-lock-add-keywords): In case font-lock was only
23639 half-activated, forcefully activate it completely.
23640
23641 2007-06-11 Richard Stallman <rms@gnu.org>
23642
23643 * cus-edit.el (custom-variable-type): Doc fix.
23644
23645 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23646
23647 * progmodes/sh-script.el (sh-font-lock-backslash-quote)
23648 (sh-font-lock-flush-syntax-ppss-cache): New functions.
23649 (sh-font-lock-syntactic-keywords): Use them to distinguish the
23650 different possible cases for \'.
23651
23652 * complete.el (PC-bindings): Don't bind things already bound in the
23653 parent keymap.
23654
23655 * textmodes/bibtex-style.el: New file.
23656
23657 2007-06-11 Riccardo Murri <riccardo.murri@gmail.com>
23658
23659 * vc-bzr.el: New file.
23660
23661 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23662
23663 * vc-svn.el (vc-svn-program): New var.
23664 (vc-svn-command): Use it.
23665
23666 2007-06-11 Juanma Barranquero <lekktu@gmail.com>
23667
23668 * server.el (server-switch-buffer): Remove redundant check.
23669
23670 2007-06-10 Martin Rudalics <rudalics@gmx.at>
23671
23672 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
23673 Match against file-name-nondirectory.
23674 Fix text on user customization variables.
23675 Reported by Johan Bockgård <bojohan@dd.chalmers.se>.
23676
23677 2007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
23678
23679 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
23680
23681 2007-06-09 Davis Herring <herring@lanl.gov>
23682
23683 * desktop.el (desktop-minor-mode-table): Doc fix.
23684
23685 2007-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
23686
23687 * textmodes/css-mode.el (css-navigation-syntax-table):
23688 Use set-char-table-range so it also works in the unicode branch.
23689
23690 2007-06-08 Nick Roberts <nickrob@snap.net.nz>
23691
23692 * help-mode.el (help-xref-forward-stack)
23693 (help-xref-stack-forward-item, help-forward-label): New variables.
23694 (help-forward): New button type.
23695 (help-setup-xref): Initialise help-xref-forward-stack.
23696 (help-make-xrefs): Add forward button, if appropriate.
23697 (help-xref-go-back): Push item on forward stack.
23698 (help-xref-go-forward, help-go-forward): New functions.
23699
23700 2007-06-07 Chong Yidong <cyd@stupidchicken.com>
23701
23702 * dired.el (dired-mode-map): Remove spurious separator.
23703
23704 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
23705
23706 * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
23707
23708 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
23709 * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
23710
23711 2007-06-07 Carsten Dominik <dominik@science.uva.nl>
23712
23713 * textmodes/org.el: Version number fixed.
23714
23715 2007-06-07 Glenn Morris <rgm@gnu.org>
23716
23717 * version.el (emacs-copyright): New constant.
23718 * startup.el (fancy-splash-tail): Use emacs-copyright.
23719 * calc/calc-help.el (calc-full-help): Use emacs-copyright.
23720
23721 * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
23722 `make-local'.
23723 (byte-compile-warnings-safe-p): Add `make-local'.
23724 (byte-compile-make-variable-buffer-local):
23725 Allow byte-compile-warnings to suppress this warning.
23726
23727 * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
23728 format of "menu" description.
23729 (tutorial--find-changed-keys): Describe the specific menu a
23730 command is in.
23731
23732 * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
23733 Rewrite compatibility functions to silence byte-compiler.
23734
23735 2007-06-07 Alfred M. Szmidt <ams@gnu.org> (tiny change)
23736
23737 * mail/rmailsum.el (rmail-summary-save-buffer): New command.
23738 (rmail-summary-mode-map): Add rmail-summary-save-buffer.
23739
23740 2007-06-07 Eric M. Ludlam <eric@siege-engine.com>
23741
23742 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
23743
23744 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
23745
23746 * progmodes/ebrowse.el (ebrowse-member-table):
23747 * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
23748 (org-batch-agenda-csv): Fix typos in docstrings.
23749
23750 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
23751
23752 * pgg.el (pgg-sign-region, pgg-sign):
23753 * ses.el (ses-call-printer):
23754 * calendar/icalendar.el (icalendar--diarytime-to-isotime):
23755 * textmodes/org.el (org-cycle): Fix typos in docstrings.
23756
23757 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
23758
23759 * textmodes/org.el (org-export-region-as-html)
23760 (org-replace-region-by-html, org-number-to-letters)
23761 (org-table-fedit-finish, org-normalize-color)
23762 (org-table-fedit-ref-right, org-date-to-gregorian)
23763 (org-table-fedit-move, org-table-convert-refs-to-rc)
23764 (org-calendar-holiday, org-table-fedit-toggle-ref-type)
23765 (org-write-agenda, org-colgroup-info-to-vline-list)
23766 (org-agenda-todo-previousset, org-defkey, org-encode-for-stdout)
23767 (org-indent-line-function, org-export-as-html-to-buffer)
23768 (org-store-agenda-views, org-update-mode-line)
23769 (org-find-if, org-delete-all)
23770 (org-table-fedit-convert-buffer, org-emphasize)
23771 (org-uniquify, org-table-fedit-lisp-indent)
23772 (org-table-fedit-scroll, org-get-todo-sequence-head)
23773 (org-table-fedit-scroll-down, org-table-fedit-line-down)
23774 (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
23775 (org-table-fedit-toggle-coordinates, org-dvipng-color)
23776 (org-table-fedit-line-up, org-table-fedit-ref-down)
23777 (org-table-formula-from-user, org-mode-flyspell-verify)
23778 (org-cycle-show-empty-lines, org-ctrl-c-ret)
23779 (org-table-formula-to-user, org-diary-to-ical-string)
23780 (orgtbl-export, org-table-fedit-post-command)
23781 (org-closed-in-range, org-shiftcontrolright)
23782 (org-table-convert-refs-to-an, org-table-hline-and-move)
23783 (org-table-formula-less-p, org-format-table-ascii)
23784 (org-agenda-get-sexps, org-shift-refpart)
23785 (org-diary-sexp-entry, org-time-string-to-absolute)
23786 (org-table-show-reference, org-letters-to-number)
23787 (org-fix-agenda-info, org-table-fedit-ref-up)
23788 (org-table-fedit-shift-reference, org-table-fedit-abort)
23789 (org-closest-date, org-shiftcontrolleft)
23790 (org-at-heading-or-item-p, org-rematch-and-replace)
23791 (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
23792 New functions.
23793 (org-table-edit-scroll-down, org-finish-edit-formulas)
23794 (org-table-edit-next-field, org-abort-edit-formulas)
23795 (org-font-lock-level, org-export-find-first-heading-line)
23796 (org-table-edit-line-down, org-table-edit-backward-field)
23797 (org-edit-formula-lisp-indent, org-table-edit-move)
23798 (org-check-log-option, org-this-word)
23799 (org-table-edit-line-up, org-table-edit-formulas-post-command)
23800 (org-agenda-file-to-end, org-expand-file-name)
23801 (org-fake-empty-table-line, org-table-edit-scroll)
23802 (org-toggle-log-option, org-show-reference): Function removed.
23803 (org-inhibit-invisibility, org-table-formula-make-cmp-string):
23804 New defsubsts.
23805 (org-unmodified, org-batch-store-agenda-views)
23806 (org-batch-agenda-csv): New macro.
23807 (org-agenda-export): New customization group.
23808 (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
23809 (org-highest-priority, org-agenda-exporter-settings)
23810 (org-log-done-with-time, org-replace-disputed-keys)
23811 (org-format-latex-header, org-export-table-header-tags)
23812 (org-cycle-separator-lines, org-export-table-data-tags)
23813 (org-icalendar-include-sexps)
23814 (org-empty-line-terminates-plain-lists)
23815 (org-log-repeat, org-special-ctrl-a)
23816 (org-table-use-standard-references, org-disputed-keys)
23817 (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
23818 (org-agenda-export-html-style): New option.
23819 (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
23820 (org-CUA-compatible): Option removed.
23821 (org-agenda-structure, org-sexp-date): New face.
23822 (org-todo-keywords-for-agenda, org-not-done-keywords)
23823 (org-planning-or-clock-line-re, org-agenda-name)
23824 (org-table-colgroup-info, org-todo-sets)
23825 (constants-unit-system, org-clock-mode-line-entry)
23826 (org-mode-line-timer, org-table-current-begin-pos)
23827 (org-todo-keywords-1, org-mode-line-string)
23828 (org-table-clean-did-remove-column, org-table-fedit-map)
23829 (org-clock-heading, org-table-buffer-is-an)
23830 (org-agenda-info, org-done-keywords)
23831 (org-done-keywords-for-agenda, org-todo-heads)
23832 (org-todo-kwd-alist, org-clock-start-time): New variable.
23833 (org-todo-kwd-priority-p, org-edit-formulas-map)
23834 (org-repeat-re, org-todo-kwd-max-priority)
23835 (org-version, org-done-string)
23836 (org-table-clean-did-remove-column-1, org-disputed-keys):
23837 Remove variables.
23838 (org-table-translate-regexp, org-repeat-re, org-version): New consts.
23839 (org-ts-lengths): Constant removed.
23840 (org-follow-gnus-link): Don't ask how many articles to read.
23841 (org-export-find-first-export-line): Rename from
23842 `org-export-find-first-heading'.
23843 Use `org-export-skip-text-before-1st-heading'.
23844 (org-table-fedit-post-command): Rename from
23845 `org-table-edit-formulas-post-command'.
23846 (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
23847 (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
23848 (org-table-fedit-lisp-indent): Rename from
23849 `org-edit-formula-lisp-indent'.
23850 (org-table-show-reference): Rename from `org-show-reference'.
23851 (org-table-store-formulas): Use `org-table-formula-less-p'.
23852 (org-table-edit-formulas): Position cursor to current field equation.
23853 (org-update-checkbox-count, org-hide-archived-subtrees)
23854 (org-timestamp-up-day, org-timestamp-down-day)
23855 (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
23856 (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
23857 (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
23858 (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
23859 Let `org-on-heading-p' also check for invisible heading.
23860 (org-read-date): Match am/pm times.
23861 (org-eval-in-calendar): Fix default date in prompt.
23862
23863 2007-06-05 Chong Yidong <cyd@stupidchicken.com>
23864
23865 * files.el (auto-mode-alist): Separate "ChangeLog.1" and
23866 "ChangeLog.a" entries, giving the latter lower priority.
23867
23868 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
23869
23870 * faces.el (face-id): If the argument is a face alias,
23871 return the ID of the target face.
23872
23873 2007-06-05 Michael Albinus <michael.albinus@gmx.de>
23874
23875 * net/socks.el (top): Remove unnecessary copyright line.
23876
23877 2007-06-04 Chong Yidong <cyd@stupidchicken.com>
23878
23879 * longlines.el (longlines-auto-wrap): Handle argument correctly.
23880
23881 2007-06-04 Michael Albinus <michael.albinus@gmx.de>
23882
23883 * net/socks.el: New file, taken from w3 repository.
23884 (top): Update Copyright. Don't load cl.el.
23885 (all): Replace `case' by `cond', `string-to-int' by
23886 `string-to-number', and `process-kill-without-query' by
23887 `set-process-query-on-exit-flag'.
23888 (socks-char-int): Remove defalias and all occurrences.
23889
23890 2007-06-04 Juanma Barranquero <lekktu@gmail.com>
23891
23892 * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
23893 Fix typos in docstrings.
23894 (compilation-search-path, compilation-buffer-name-function): Doc fixes.
23895 (compilation-finish-function): Fix typo in obsolescence declaration.
23896
23897 2007-06-03 Sam Steingold <sds@gnu.org>
23898
23899 * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
23900 handle unending automatic recompilation of changed files (`omake -P').
23901 (compilation-loop): VISITED is now 5th CDR.
23902 (compilation-next-error-function): Set TIMESTAMP.
23903
23904 2007-06-03 Sam Steingold <sds@gnu.org>
23905
23906 * files.el (kill-buffer-ask): New function.
23907 (kill-some-buffers): Use it.
23908 (kill-matching-buffers): New user command.
23909
23910 2007-06-01 David Kastrup <dak@gnu.org>
23911
23912 * dired.el (dired-recursive-deletes, dired-recursive-copies):
23913 Change default to `top'.
23914
23915 2007-05-31 Richard Stallman <rms@gnu.org>
23916
23917 * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
23918
23919 2007-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
23920
23921 * textmodes/css-mode.el: New file.
23922
23923 2007-05-30 Michael Olson <mwolson@gnu.org>
23924
23925 * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
23926 died and we are trying to send a signal to it. The program using
23927 tq.el should periodically check to see whether the process has
23928 died and react appropriately -- this is not the responsibility of
23929 tq.el, and is consistent with the rest of the tq.el source code.
23930
23931 2007-05-29 Martin Rudalics <rudalics@gmx.at>
23932
23933 * textmodes/table.el (table--point-entered-cell-function)
23934 (table--point-left-cell-function):
23935 Bind `inhibit-point-motion-hooks' to t.
23936
23937 2007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
23938
23939 * emacs-lisp/rx.el (rx): Doc fix.
23940
23941 2007-05-28 Juanma Barranquero <lekktu@gmail.com>
23942
23943 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
23944
23945 2007-05-28 Michael Albinus <michael.albinus@gmx.de>
23946
23947 Sync with Tramp 2.0.56.
23948
23949 * net/tramp.el:
23950 * net/tramp-ftp.el:
23951 * net/tramp-smb.el:
23952 * net/tramp-util.el:
23953 * net/tramp-vc.el:
23954 Don't load cl.el, because that pollutes the namespace. Replace cl
23955 macros by their implementations where necessary. Requested by
23956 Richard Stallman <rms@gnu.org>.
23957
23958 * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
23959 doesn't exist.
23960 (with-parsed-tramp-file-name): Protect debug spec during compilation.
23961 (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
23962 (tramp-file-name-p, tramp-file-name-multi-method)
23963 (tramp-file-name-method, tramp-file-name-user)
23964 (tramp-file-name-host, tramp-file-name-localname): New defuns,
23965 replacing defstruct `tramp-file-name'.
23966 (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
23967 (tramp-dissect-file-name, tramp-dissect-multi-file-name):
23968 Apply `vector' instead of `make-tramp-file-name'.
23969 (tramp-handle-make-auto-save-file-name):
23970 Apply `tramp-temporary-file-directory' for compatibility reasons.
23971 (tramp-completion-mode): Use `natnump' instead of `wholenump'
23972 because of XEmacs.
23973 (tramp-completion-mode): `last-input-event' is nil when XEmacs is
23974 started.
23975
23976 2007-05-28 Chong Yidong <cyd@stupidchicken.com>
23977
23978 * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
23979
23980 2007-05-27 Tetsurou Okazaki <okazaki@be.to> (tiny change)
23981
23982 * log-edit.el (log-edit-changelog-paragraph): Return point-max
23983 as the end of the ChangeLog paragraph when it ends without a line
23984 termination.
23985
23986 2007-05-27 Ryan Yeske <rcyeske@gmail.com>
23987
23988 * net/webjump.el (webjump-sample-sites):
23989 Add simple Wikipedia query.
23990
23991 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
23992
23993 * emacs-lisp/derived.el (define-derived-mode): Remove bogus
23994 compatibility code.
23995
23996 * emacs-lisp/copyright.el (copyright-names-regexp): New var.
23997 (copyright-update-year): Use it.
23998
23999 * edmacro.el (edmacro-format-keys): Use current-active-maps.
24000
24001 * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
24002 Add indentation and debugging info. Fix up comment convention.
24003
24004 * cus-dep.el (custom-make-dependencies): Simplify.
24005
24006 * composite.el (compose-region, decompose-region):
24007 Use inhibit-read-only and restore-buffer-modified-p.
24008
24009 * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
24010 (xterm-mouse-event): Use it.
24011
24012 2007-05-25 Juanma Barranquero <lekktu@gmail.com>
24013
24014 * bs.el (bs-cycle-previous): Don't modify the cycle list until
24015 `switch-to-buffer' has returned succesfully.
24016 (bs-cycle-next): Ditto. Also, don't bury the buffer when the
24017 window is dedicated (it could iconify the frame).
24018
24019 2007-05-25 Miles Bader <miles@fencepost.gnu.org>
24020
24021 * vc-hooks.el (vc-find-root): Fix file attribute test.
24022
24023 2007-05-24 Richard Stallman <rms@gnu.org>
24024
24025 * textmodes/flyspell.el (flyspell-correct-word-before-point):
24026 Don't let opoint be nil.
24027 (flyspell-emacs-popup): Explicit error if no dialogs.
24028
24029 2007-05-24 Chong Yidong <cyd@stupidchicken.com>
24030
24031 * image-mode.el (image-forward-hscroll, image-backward-hscroll)
24032 (image-next-line, image-previous-line, image-scroll-up)
24033 (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
24034 New functions.
24035 (image-mode-map): Remap motion commands.
24036 (image-mode-text-map): New keymap for viewing images as text.
24037 (image-mode): Use image-mode-map.
24038 (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
24039
24040 2007-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
24041
24042 * textmodes/fill.el (canonically-space-region): Make the second arg
24043 a marker if it's not already the case.
24044
24045 2007-05-23 Eli Zaretskii <eliz@gnu.org>
24046
24047 * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
24048 (tar-get-descriptor): Handle type 55, an extended pax header.
24049
24050 2007-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
24051
24052 * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
24053 to confuse outline-minor-mode.
24054
24055 2007-05-23 Eli Zaretskii <eliz@gnu.org>
24056
24057 * tar-mode.el (tar-file-name-handler): New function.
24058 (tar-extract): Bind file-name-handler-alist to it to force
24059 find-buffer-file-type-coding-system behave as if the file being
24060 extracted existed. Use last-coding-system-used to force
24061 buffer-file-coding-system to what decode-coding-region actually
24062 used to decode the file.
24063
24064 2007-05-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
24065
24066 * progmodes/compile.el (compilation-handle-exit):
24067 `compilation-finish-function' may change the current buffer.
24068
24069 2007-05-22 Richard Stallman <rms@gnu.org>
24070
24071 * files.el (set-auto-mode): Doc fix.
24072
24073 2007-05-22 Jan Djärv <jan.h.d@swipnet.se>
24074
24075 * help-fns.el (find-source-lisp-file): New function.
24076 (describe-function-1): Use find-source-lisp-file to find source
24077 file in compile tree.
24078
24079 2007-05-22 Eli Zaretskii <eliz@gnu.org>
24080
24081 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
24082
24083 2007-05-22 Juanma Barranquero <lekktu@gmail.com>
24084
24085 * emacs-lisp/easy-mmode.el (define-minor-mode)
24086 (easy-mmode-define-navigation): Fix typos in docstrings.
24087
24088 2007-05-22 Glenn Morris <rgm@gnu.org>
24089
24090 * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
24091
24092 2007-05-22 Katsumi Yamaoka <yamaoka@jpl.org>
24093
24094 * mail/mail-extr.el (mail-extract-address-components):
24095 Recognize non-ASCII characters except for NBSP as words.
24096
24097 2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
24098
24099 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
24100 (rcirc-print): Handle `window-width'.
24101 (rcirc-buffer-maximum-lines): Doc fix.
24102
24103 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
24104
24105 * image-mode.el (image-toggle-display): Don't clear image cache.
24106 Only use filename in image spec if the file is readable.
24107 Call image-refresh.
24108
24109 * image.el (image-type-from-file-name, image-type): Simplify.
24110 (image-type-auto-detected-p): Don't scan auto-mode-alist.
24111
24112 * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
24113 (magic-fallback-mode-alist): Add image-type-auto-detected-p.
24114
24115 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
24116
24117 * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
24118 is an error.
24119
24120 * term/linux.el (terminal-init-linux): Don't signal an error
24121 if gpm isn't running.
24122
24123 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
24124
24125 * t-mouse.el: Reduce to a minor-mode macro call.
24126 (t-mouse-mode): Remove the lighter.
24127
24128 * term/linux.el (terminal-init-linux): Enable t-mouse by default.
24129
24130 2007-05-19 Dan Nicolaescu <dann@ics.uci.edu>
24131
24132 * files.el (auto-mode-alist): Change the regexp so that
24133 ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
24134
24135 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
24136
24137 * Version 22.1 released.
24138
24139 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
24140
24141 * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
24142 changes.
24143
24144 2007-05-19 Kevin Ryde <user42@zip.com.au>
24145
24146 * info.el (Info-fontify-node): Fontify https as well as http and ftp.
24147
24148 2007-05-18 Thien-Thi Nguyen <ttn@gnuvola.org>
24149
24150 * textmodes/sgml-mode.el: Revert last change.
24151
24152 2007-05-18 Richard Stallman <rms@gnu.org>
24153
24154 * simple.el (push-mark): Doc fix.
24155
24156 2007-05-18 Rob Riepel <riepel@Stanford.EDU>
24157
24158 * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
24159 tpu-global-map.
24160 (tpu-original-global-map): Variable deleted.
24161 (tpu-control-keys-map): New keymap variable.
24162 (tpu-set-control-keys): Use tpu-reset-control-keys rather than
24163 setting keymapping directly.
24164 (tpu-reset-control-keys): Use tpu-control-keys-map instead of
24165 tpu-global-map.
24166 (tpu-edt-on): Activate the tpu-global-map.
24167 (tpu-edt-off): Deactivate the tpu-global-map.
24168
24169 2007-05-18 Ryan Yeske <rcyeske@gmail.com>
24170
24171 * textmodes/ispell.el (ispell-get-word): Return markers
24172 for start and end positions.
24173 (ispell-word): Assume END is a marker.
24174
24175 2007-05-17 Christian Plate <cplate@web.de> (tiny change)
24176
24177 * textmodes/sgml-mode.el (sgml-tag):
24178 Fix bug: Call sgml-transformation-function.
24179
24180 2007-05-17 Martin Rudalics <rudalics@gmx.at>
24181
24182 * hilit-chg.el (highlight-changes-rotate-faces): Don't set
24183 modified flag of buffer. Use `inhibit-modification-hooks'.
24184
24185 2007-05-16 Richard Stallman <rms@gnu.org>
24186
24187 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
24188
24189 2007-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
24190
24191 * files.el (magic-mode-alist, magic-fallback-mode-alist):
24192 Move the *ml, Postscript, and XmCD entries to the fallback part.
24193
24194 * files.el (magic-fallback-mode-alist):
24195 Rename from file-start-mode-alist.
24196
24197 2007-05-16 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
24198
24199 * progmodes/compile.el (compilation-handle-exit): Quote first
24200 argument of `run-hook-with-args'.
24201
24202 2007-05-16 Juanma Barranquero <lekktu@gmail.com>
24203
24204 * buff-menu.el (Buffer-menu-sort-column):
24205 * dabbrev.el (dabbrev-upcase-means-case-search):
24206 * dired.el (dired-recursive-deletes, dired-recursive-copies):
24207 * info.el (Info-current-subfile):
24208 * ls-lisp.el (ls-lisp-verbosity):
24209 * msb.el (msb-menu-cond):
24210 * pcvs.el (cvs-dired-use-hook):
24211 * simple.el (set-mark-command-repeat-pop):
24212 * time.el (display-time-24hr-format, display-time-mail-file):
24213 Doc fixes.
24214
24215 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
24216 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
24217
24218 * view.el (view-inhibit-help-message): Fix typo in docstring.
24219 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
24220
24221 2007-05-16 Martin Rudalics <rudalics@gmx.at>
24222
24223 * textmodes/ispell.el (ispell-start-process): Defend against bad
24224 default-directory.
24225
24226 2007-05-14 Eli Zaretskii <eliz@gnu.org>
24227
24228 * mail/rmail.el (rmail-convert-to-babyl-format): Check
24229 content-transfer-encoding _last_, because it's its position that
24230 we need as value of base64-header-field-end.
24231
24232 2007-05-14 Juanma Barranquero <lekktu@gmail.com>
24233
24234 * files.el (mode-require-final-newline, require-final-newline)
24235 (enable-local-variables, enable-local-eval): Doc fixes.
24236
24237 2007-05-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24238
24239 * ps-print.el: Use default color when foreground or background color
24240 are unspecified. Reported by Leo <sdl.web@gmail.com>.
24241 (ps-print-version): New version 6.7.4.
24242 (ps-rgb-color): New argument. Use default color when color is
24243 unspecified.
24244 (ps-begin-job): Fix code.
24245
24246 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
24247
24248 * longlines.el (longlines-mode): Make longlines-auto-wrap
24249 buffer-local. Add hooks unconditionally.
24250 (longlines-auto-wrap): Toggle wrapping.
24251 (longlines-after-change-function)
24252 (longlines-post-command-function): Check longlines-auto-wrap.
24253
24254 2007-05-12 Nick Roberts <nickrob@snap.net.nz>
24255
24256 * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
24257 (xterm-mouse-translate): Use it.
24258
24259 2007-05-10 Richard Stallman <rms@gnu.org>
24260
24261 * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
24262 (iso-cvt-write-only): Likewise.
24263
24264 * emacs-lisp/easy-mmode.el (define-minor-mode):
24265 Fix generated doc string.
24266
24267 * startup.el (fancy-splash-text): Add URL of guided tour.
24268 Adjust horizontal and vertical whitespace.
24269
24270 * progmodes/compile.el (compilation-handle-exit):
24271 Use run-hook-with-args to run compilation-finish-functions.
24272
24273 * files.el (file-start-mode-alist): New variable.
24274 (magic-mode-regexp-match-limit): Doc fix.
24275 (set-auto-mode): Handle file-start-mode-alist.
24276 A little cleanup of structure.
24277
24278 * dabbrev.el (dabbrev-eliminate-newlines):
24279 Renamed from dabbrev--eliminate-newlines. All uses changed.
24280
24281 2007-05-10 Michaël Cadilhac <michael@cadilhac.name>
24282
24283 * man.el (Man-next-section): Don't consider the last line of the page
24284 as being part of any section.
24285
24286 2007-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
24287
24288 * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
24289 can take any number of values.
24290
24291 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
24292
24293 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
24294 to the list of citation commands.
24295
24296 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
24297
24298 * vc-hooks.el (vc-find-root): Stop searching when the user changes.
24299
24300 2007-05-09 Edward O'Connor <hober0@gmail.com> (tiny change)
24301
24302 * progmodes/python.el (python-font-lock-keywords)
24303 (python-open-block-statement-p, python-mode): Add support for the new
24304 "with" keyword.
24305
24306 2007-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
24307
24308 * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
24309 the exact opposite of diff-goto-source.
24310
24311 * emacs-lisp/advice.el (ad-special-forms): Remove.
24312 (ad-special-form-p): Use subr-arity.
24313
24314 * newcomment.el (comment-search-forward): Make sure we search forward.
24315 (comment-enter-backward): Try and distinguish the non-matching case at
24316 EOB from the non-matching case with a missing comment-end-skip for
24317 a 2-char comment ender.
24318 (comment-choose-indent): New function extracted from comment-indent.
24319 Improve the alignment algorithm.
24320 (comment-indent): Use it.
24321
24322 * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
24323 XML style Processing Instructions.
24324 (sgml-parse-tag-backward): Handle XML-style PIs. Also ensure progress.
24325 (sgml-calculate-indent): Handle `pi' context.
24326
24327 * vc.el: Ensure that update-changelog issues an error when used with
24328 a backend that does not implement it.
24329 (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
24330 Remove `backend' argument. Use expand-file-name.
24331 (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
24332
24333 * progmodes/python.el (python-end-of-block): Revert last change.
24334 (python-end-of-statement): Make sure we move *forward*.
24335
24336 2007-05-08 Richard Stallman <rms@gnu.org>
24337
24338 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
24339 Don't include non-self-insert commands in the exception for `-'.
24340
24341 2007-05-08 David Reitter <david.reitter@gmail.com>
24342
24343 * progmodes/python.el (python-guess-indent): Check non-nullness
24344 before comparing indent against the 2..8 interval.
24345
24346 2007-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24347
24348 * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
24349 available.
24350
24351 2007-05-06 Richard Stallman <rms@gnu.org>
24352
24353 * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
24354
24355 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
24356
24357 * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
24358 rather than storing their value in the revert-buffer function.
24359
24360 2007-05-04 Nick Roberts <nickrob@snap.net.nz>
24361
24362 * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
24363 when disabling t-mouse-mode.
24364
24365 2007-05-01 Davis Herring <herring@lanl.gov>
24366
24367 * calendar/timeclock.el: Update version number.
24368 (timeclock-modeline-display): Mention timeclock-use-display-time
24369 in explanatory message.
24370 (timeclock-in): Fix non-interactive workday specifications.
24371 (timeclock-log): Don't kill the log buffer if it already existed.
24372 Suppress warnings when finding the log. Don't check for a nil
24373 project twice. Run hooks after killing the buffer (if applicable).
24374 (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
24375 was geometric). All uses changed.
24376 (timeclock-generate-report): Support prefix argument.
24377
24378 2007-05-03 Ryan Yeske <rcyeske@gmail.com>
24379
24380 * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
24381 disconnections.
24382
24383 2007-05-01 Romain Francoise <romain@orebokech.com>
24384
24385 * dired-x.el: Revert 2007-04-06 change.
24386
24387 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net>
24388
24389 * find-dired.el (find-dired-filter): Propertize all text down to eob.
24390
24391 2007-04-29 Richard Stallman <rms@gnu.org>
24392
24393 * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
24394
24395 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
24396
24397 * progmodes/cc-mode.el (c-before-change): Use point-min rather
24398 than 1.
24399
24400 2007-04-28 Richard Stallman <rms@gnu.org>
24401
24402 * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
24403
24404 2007-04-28 Nick Roberts <nickrob@snap.net.nz>
24405
24406 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
24407 don't put stop on toolbar.
24408
24409 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
24410
24411 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
24412
24413 2007-04-28 Eli Zaretskii <eliz@gnu.org>
24414
24415 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
24416 instead of $(lisp)/mh-e.
24417
24418 2007-04-28 Glenn Morris <rgm@gnu.org>
24419
24420 * image-dired.el (image-dired-cmd-create-thumbnail-options)
24421 (image-dired-cmd-create-temp-image-options): Replace option
24422 +profile "*" with -strip.
24423
24424 2007-04-27 Chong Yidong <cyd@stupidchicken.com>
24425
24426 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
24427 Use window-start and window-end.
24428
24429 2007-04-27 Andreas Schwab <schwab@suse.de>
24430
24431 * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
24432
24433 2007-04-27 Eli Zaretskii <eliz@gnu.org>
24434
24435 * textmodes/fill.el (fill-paragraph): Doc fix.
24436
24437 2007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
24438
24439 * locate.el (locate-in-alternate-database): Doc fix.
24440
24441 2007-04-26 Glenn Morris <rgm@gnu.org>
24442
24443 * button.el (button): Use underline if supported, else fall back
24444 to color.
24445
24446 * version.el (emacs-version): Increase to 22.1.50.
24447
24448 2007-04-25 Richard Stallman <rms@gnu.org>
24449
24450 * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
24451
24452 2007-04-25 J.D. Smith <jdsmith@as.arizona.edu>
24453
24454 * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
24455 (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
24456 pushing mark.
24457 (idlwave-current-routine): Don't push mark.
24458
24459 2007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
24460
24461 * image-dired.el (image-dired-display-image): Derive image-type from
24462 filename rather than assuming jpeg, in case no resizing was needed.
24463
24464 2007-04-25 Johan Bockgård <bojohan@dd.chalmers.se>
24465
24466 * custom.el (defface): Doc fix.
24467
24468 See ChangeLog.12 for earlier changes.
24469
24470 ;; Local Variables:
24471 ;; coding: utf-8
24472 ;; add-log-time-zone-rule: t
24473 ;; End:
24474
24475 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
24476
24477 This file is part of GNU Emacs.
24478
24479 GNU Emacs is free software; you can redistribute it and/or modify
24480 it under the terms of the GNU General Public License as published by
24481 the Free Software Foundation; either version 3, or (at your option)
24482 any later version.
24483
24484 GNU Emacs is distributed in the hope that it will be useful,
24485 but WITHOUT ANY WARRANTY; without even the implied warranty of
24486 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24487 GNU General Public License for more details.
24488
24489 You should have received a copy of the GNU General Public License
24490 along with GNU Emacs; see the file COPYING. If not, write to the
24491 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24492 Boston, MA 02110-1301, USA.
24493
24494 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af