aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-08-04 11:52:36 +0000
committerJuanma Barranquero2008-08-04 11:52:36 +0000
commit9d5a559375309727d199fa5b8a4b5f9b9e4b7050 (patch)
tree63644922b0d2009351bc3018325e661147b82810
parent0a39306613e02c06ac43c0ce16847cf5cf17dfe8 (diff)
downloademacs-9d5a559375309727d199fa5b8a4b5f9b9e4b7050.tar.gz
emacs-9d5a559375309727d199fa5b8a4b5f9b9e4b7050.zip
Fix typos and add missing entry.
-rw-r--r--lisp/ChangeLog71
1 files changed, 40 insertions, 31 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3e5b22b844e..859ae3f799d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -278,8 +278,8 @@
278 278
2792008-07-30 Michael McNamara <mac@mail.brushroad.com> 2792008-07-30 Michael McNamara <mac@mail.brushroad.com>
280 280
281 * verilog-mode.el (verilog-do-indent): Remove special indent for 281 * progmodes/verilog-mode.el (verilog-do-indent): Remove special indent
282 declarations inside a parenthetical list. The code is ill-advised, 282 for declarations inside a parenthetical list. The code is ill-advised,
283 and doesn't work given user defined types. 283 and doesn't work given user defined types.
284 (verilog-set-auto-endcomments): Enhance function automatic 284 (verilog-set-auto-endcomments): Enhance function automatic
285 endcomment to support functions that return user defined types. 285 endcomment to support functions that return user defined types.
@@ -293,8 +293,8 @@
293 293
2942008-07-30 Wilson Snyder <wsnyder@wsnyder.org> 2942008-07-30 Wilson Snyder <wsnyder@wsnyder.org>
295 295
296 * verilog-mode (verilog-read-decls): Allow AUTORESET to work with 296 * progmodes/verilog-mode.el (verilog-read-decls): Allow AUTORESET
297 SV 'logic' signals. [Julian Gorfajn] 297 to work with SV 'logic' signals. [Julian Gorfajn]
298 (verilog-auto-inst-column): Make verilog-auto-inst-column customizable. 298 (verilog-auto-inst-column): Make verilog-auto-inst-column customizable.
299 (verilog-string-replace-matches): Avoid recursion with small 299 (verilog-string-replace-matches): Avoid recursion with small
300 replacements. 300 replacements.
@@ -888,7 +888,7 @@
888 888
8892008-07-17 Fan Kai <fktpp@xemacs.org> (tiny change) 8892008-07-17 Fan Kai <fktpp@xemacs.org> (tiny change)
890 890
891 * esh-arg.el (eshell-quote-backslash): Fix eshell path completion 891 * eshell/esh-arg.el (eshell-quote-backslash): Fix eshell path completion
892 for Windows. 892 for Windows.
893 893
8942008-07-17 Daiki Ueno <ueno@unixuser.org> 8942008-07-17 Daiki Ueno <ueno@unixuser.org>
@@ -1026,12 +1026,12 @@
1026 1026
10272008-07-13 Jay Belanger <jay.p.belanger@gmail.com> 10272008-07-13 Jay Belanger <jay.p.belanger@gmail.com>
1028 1028
1029 * calc-help.el (calc-describe-key): Add angles to special key 1029 * calc/calc-help.el (calc-describe-key): Add angles to special key
1030 descriptions. 1030 descriptions.
1031 1031
10322008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr> 10322008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
1033 1033
1034 * calc-help.el (calc-describe-thing): Use `re-search-forward' to 1034 * calc/calc-help.el (calc-describe-thing): Use `re-search-forward' to
1035 search for regexp. 1035 search for regexp.
1036 1036
10372008-07-12 Chong Yidong <cyd@stupidchicken.com> 10372008-07-12 Chong Yidong <cyd@stupidchicken.com>
@@ -4038,7 +4038,7 @@
4038 4038
40392008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> 40392008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
4040 4040
4041 * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el: 4041 * vc-sccs.el, vc-svn.el, vc-git.el, vc-hg.el, vc-mtn.el:
4042 Remove stub implementations of, and references to, wash-log. 4042 Remove stub implementations of, and references to, wash-log.
4043 * vc-rcs.el (vc-rcs-comment-history): 4043 * vc-rcs.el (vc-rcs-comment-history):
4044 * vc-cvs.el (vc-cvs-comment-history): 4044 * vc-cvs.el (vc-cvs-comment-history):
@@ -4098,8 +4098,8 @@
4098 4098
4099 * progmodes/compile.el (compilation-minor-mode-map) 4099 * progmodes/compile.el (compilation-minor-mode-map)
4100 (compilation-mode-map): Bind "g" to recompile and "q" to quit-window. 4100 (compilation-mode-map): Bind "g" to recompile and "q" to quit-window.
4101 * grep.el (grep-mode-map): Use `set-keymap-parent' to connect it 4101 * progmodes/grep.el (grep-mode-map): Use `set-keymap-parent' to connect
4102 to `compilation-minor-mode-map' (instead of an explicit `cons'). 4102 it to `compilation-minor-mode-map' (instead of an explicit `cons').
4103 4103
41042008-05-08 Juanma Barranquero <lekktu@gmail.com> 41042008-05-08 Juanma Barranquero <lekktu@gmail.com>
4105 4105
@@ -4130,8 +4130,8 @@
4130 4130
41312008-05-08 Michael McNamara <mac@mail.brushroad.com> 41312008-05-08 Michael McNamara <mac@mail.brushroad.com>
4132 4132
4133 * verilog-mode.el (verilog-type-font-keywords): Add leda and 0in 4133 * progmodes/verilog-mode.el (verilog-type-font-keywords):
4134 as pragma keywords. 4134 Add leda and 0in as pragma keywords.
4135 (verilog-pretty-expr): Support lining up assignments which include 4135 (verilog-pretty-expr): Support lining up assignments which include
4136 part selects. 4136 part selects.
4137 (verilog-mode): More portable check for the availability of 4137 (verilog-mode): More portable check for the availability of
@@ -4218,7 +4218,8 @@
4218 4218
42192008-05-06 Wilson Snyder <wsnyder@wsnyder.org> 42192008-05-06 Wilson Snyder <wsnyder@wsnyder.org>
4220 4220
4221 * verilog-mode.el (verilog-getopt-file): Cleanup warning message format. 4221 * progmodes/verilog-mode.el (verilog-getopt-file):
4222 Cleanup warning message format.
4222 (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum) 4223 (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum)
4223 (verilog-auto-inout, verilog-auto-inout-module) 4224 (verilog-auto-inout, verilog-auto-inout-module)
4224 (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param) 4225 (verilog-auto-input, verilog-auto-inst, verilog-auto-inst-param)
@@ -4355,7 +4356,8 @@
4355 * progmodes/compile.el (compilation-start): Move setting of 4356 * progmodes/compile.el (compilation-start): Move setting of
4356 compilation-directory after (funcall mode) as that resets local 4357 compilation-directory after (funcall mode) as that resets local
4357 variables, this fixes recompile in grep buffers. 4358 variables, this fixes recompile in grep buffers.
4358 * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c). 4359 * progmodes/grep.el (grep-mode-map): Bind "g" to recompile (like
4360 in dired &c).
4359 4361
43602008-05-02 Eric S. Raymond <esr@snark.thyrsus.com> 43622008-05-02 Eric S. Raymond <esr@snark.thyrsus.com>
4361 4363
@@ -4457,7 +4459,7 @@
4457 we report the 'unregistered state reliably. 4459 we report the 'unregistered state reliably.
4458 * vc-git.el (vc-git-state): Call vc-git-unregistered so 4460 * vc-git.el (vc-git-state): Call vc-git-unregistered so
4459 we report the 'unregistered state reliably. 4461 we report the 'unregistered state reliably.
4460 * vc-hooks (vc-state): Document that vc-unregistered is 4462 * vc-hooks.el (vc-state): Document that vc-unregistered is
4461 now expected to be returned reliably. 4463 now expected to be returned reliably.
4462 * vc.el (vc-default-dired-state): Change needs-patch state to 4464 * vc.el (vc-default-dired-state): Change needs-patch state to
4463 needs-update, since the name now shows up in dir-status listings 4465 needs-update, since the name now shows up in dir-status listings
@@ -4921,7 +4923,7 @@
4921 4923
49222008-04-27 Jason Riedy <jason@acm.org> 49242008-04-27 Jason Riedy <jason@acm.org>
4923 4925
4924 * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines 4926 * org/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
4925 parameter that supresses lines that evaluate to NIL. 4927 parameter that supresses lines that evaluate to NIL.
4926 (orgtbl-get-fmt): New inline function for 4928 (orgtbl-get-fmt): New inline function for
4927 picking apart formats that may be lists. 4929 picking apart formats that may be lists.
@@ -4981,7 +4983,7 @@
4981 deadline leader. 4983 deadline leader.
4982 (org-agenda-get-deadlines): Deal with new function value. 4984 (org-agenda-get-deadlines): Deal with new function value.
4983 4985
4984 * lisp/org-clock.el (org-clock): New customization group. 4986 * org/org-clock.el (org-clock): New customization group.
4985 (org-clock-into-drawer, org-clock-out-when-done) 4987 (org-clock-into-drawer, org-clock-out-when-done)
4986 (org-clock-in-switch-to-state, org-clock-heading-function): 4988 (org-clock-in-switch-to-state, org-clock-heading-function):
4987 Move into the new group. 4989 Move into the new group.
@@ -5334,16 +5336,18 @@
5334 5336
53352008-04-23 Agustín Martín <agustin.martin@hispalinux.es> 53372008-04-23 Agustín Martín <agustin.martin@hispalinux.es>
5336 5338
5337 * ispell.el (ispell-set-spellchecker-params): New function to make sure 5339 * textmodes/ispell.el (ispell-set-spellchecker-params):
5338 right params and dictionary alists are used after spellchecker changes. 5340 New function to make sure right params and dictionary alists are used
5341 after spellchecker changes.
5339 (ispell-aspell-dictionary-alist, ispell-last-program-name) 5342 (ispell-aspell-dictionary-alist, ispell-last-program-name)
5340 (ispell-initialize-spellchecker-hook): New variables and hook. 5343 (ispell-initialize-spellchecker-hook): New variables and hook.
5341 (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist. 5344 (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
5342 (ispell-maybe-find-aspell-dictionaries): Remove. 5345 (ispell-maybe-find-aspell-dictionaries): Remove.
5343 Calls replaced by (ispell-set-spellchecker-params) calls. 5346 Calls replaced by (ispell-set-spellchecker-params) calls.
5344 (ispell-have-aspell-dictionaries): Remove. 5347 (ispell-have-aspell-dictionaries): Remove.
5345 * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by 5348
5346 ispell-set-spellchecker-params. 5349 * textmodes/flyspell.el: Replace ispell-maybe-find-aspell-dictionaries
5350 by ispell-set-spellchecker-params.
5347 5351
53482008-04-23 Stefan Monnier <monnier@iro.umontreal.ca> 53522008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5349 5353
@@ -6289,7 +6293,7 @@
6289 (holiday-islamic-holidays, holiday-bahai-holidays) 6293 (holiday-islamic-holidays, holiday-bahai-holidays)
6290 (holiday-solar-holidays, calendar-holidays): Move to holidays.el. 6294 (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
6291 * calendar/diary-lib.el: Move custom group here from calendar.el. 6295 * calendar/diary-lib.el: Move custom group here from calendar.el.
6292 * calendar/holidays-lib.el: Move custom group and variables here 6296 * calendar/holidays.el: Move custom group and variables here
6293 from calendar.el. 6297 from calendar.el.
6294 6298
6295 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky. 6299 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
@@ -6635,7 +6639,7 @@
6635 6639
6636 * calendar/calendar.el (calendar-mode-map): Replace use of kbd. 6640 * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
6637 6641
6638 * calendar.el (diary-view-entries-initially-flag): Rename 6642 * calendar/calendar.el (diary-view-entries-initially-flag): Rename
6639 view-diary-entries-initially. Keep old name as alias, update users. 6643 view-diary-entries-initially. Keep old name as alias, update users.
6640 (calendar-mark-diary-entries-flag): Rename 6644 (calendar-mark-diary-entries-flag): Rename
6641 mark-diary-entries-in-calendar. Keep old name as alias, update users. 6645 mark-diary-entries-in-calendar. Keep old name as alias, update users.
@@ -7233,7 +7237,7 @@
7233 7237
7234 * ediff*.el: Replace load with require in eval-when-compile. 7238 * ediff*.el: Replace load with require in eval-when-compile.
7235 7239
7236 * ediff-hook: Delete all invocations of (autoload ...). 7240 * ediff-hook.el: Delete all invocations of (autoload ...).
7237 7241
7238 * ediff-util.el (ediff-setup): Make window-min-height a local variable 7242 * ediff-util.el (ediff-setup): Make window-min-height a local variable
7239 in ediff control window, and set its min height to 2. 7243 in ediff control window, and set its min height to 2.
@@ -7242,7 +7246,7 @@
7242 Work directly with ediff-setup-windows-multiframe and 7246 Work directly with ediff-setup-windows-multiframe and
7243 ediff-setup-windows-plain. 7247 ediff-setup-windows-plain.
7244 7248
7245 * ediff-wind (ediff-choose-window-setup-function-automatically): 7249 * ediff-wind.el (ediff-choose-window-setup-function-automatically):
7246 New function. 7250 New function.
7247 (ediff-window-setup-function): Change initialization. 7251 (ediff-window-setup-function): Change initialization.
7248 (ediff-setup-windows-automatic): Delete. 7252 (ediff-setup-windows-automatic): Delete.
@@ -7438,7 +7442,7 @@
7438 7442
7439 * emulation/viper.el (viper-mode): Move the check for fundamental mode. 7443 * emulation/viper.el (viper-mode): Move the check for fundamental mode.
7440 7444
7441 * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode) 7445 * emulation/viper-util.el (viper-get-saved-cursor-color-in-insert-mode)
7442 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant 7446 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
7443 let-statements. 7447 let-statements.
7444 7448
@@ -8919,7 +8923,7 @@
8919 8923
89202008-03-16 Ulf Jasper <ulf.jasper@web.de> 89242008-03-16 Ulf Jasper <ulf.jasper@web.de>
8921 8925
8922 * icalendar.el (icalendar-version): Increase to 0.18. 8926 * calendar/icalendar.el (icalendar-version): Increase to 0.18.
8923 (icalendar-export-hidden-diary-entries): New variable. 8927 (icalendar-export-hidden-diary-entries): New variable.
8924 (icalendar-export-region): Use icalendar-export-hidden-diary-entries. 8928 (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
8925 In case of error, insert full error-val. 8929 In case of error, insert full error-val.
@@ -8929,7 +8933,7 @@
8929 8933
89302008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov> 89342008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov>
8931 8935
8932 * icalendar.el (icalendar-recurring-start-year): New variable. 8936 * calendar/icalendar.el (icalendar-recurring-start-year): New variable.
8933 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm. 8937 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
8934 (icalendar-export-region): Ignore hidden diary entries. 8938 (icalendar-export-region): Ignore hidden diary entries.
8935 (icalendar--convert-ordinary-to-ical): Fix case where event 8939 (icalendar--convert-ordinary-to-ical): Fix case where event
@@ -9718,8 +9722,8 @@
9718 9722
97192008-03-10 Michael McNamara <mac@mail.brushroad.com> 97232008-03-10 Michael McNamara <mac@mail.brushroad.com>
9720 9724
9721 * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the 9725 * progmodes/verilog-mode.el (verilog-font-grouping-keywords):
9722 grouping-keyword regular expression. 9726 Fix bug in the grouping-keyword regular expression.
9723 (verilog-font-lock-keywords): Allow users to toggle special 9727 (verilog-font-lock-keywords): Allow users to toggle special
9724 highlight of grouping-keywords. 9728 highlight of grouping-keywords.
9725 (verilog-highlight-grouping-keywords): The toggle for special 9729 (verilog-highlight-grouping-keywords): The toggle for special
@@ -11774,7 +11778,7 @@
11774 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local; 11778 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
11775 it is already automatically buffer-local. 11779 it is already automatically buffer-local.
11776 11780
117772008-02-11 Drew Adams <drew.adams@oracle.com> 117812008-02-12 Drew Adams <drew.adams@oracle.com>
11778 11782
11779 * help.el (describe-key): Join some split lines to facilitate filling. 11783 * help.el (describe-key): Join some split lines to facilitate filling.
11780 * help-fns.el (describe-function-1): Fill text of overlong lines. 11784 * help-fns.el (describe-function-1): Fill text of overlong lines.
@@ -11797,6 +11801,11 @@
11797 * simple.el (clone-indirect-buffer-hook): New hook. 11801 * simple.el (clone-indirect-buffer-hook): New hook.
11798 (clone-indirect-buffer): Run it. 11802 (clone-indirect-buffer): Run it.
11799 11803
118042008-02-11 Michael Olson <mwolson@gnu.org>
11805
11806 * epa-setup.el:
11807 * epg-package-info.el: Files removed.
11808
118002008-02-11 Daiki Ueno <ueno@unixuser.org> 118092008-02-11 Daiki Ueno <ueno@unixuser.org>
11801 11810
11802 * epa.el (epa-menu-mode): Merge into epa-mode. 11811 * epa.el (epa-menu-mode): Merge into epa-mode.