diff options
| author | Stefan Monnier | 2004-10-30 16:43:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-10-30 16:43:18 +0000 |
| commit | 5459bcdf38655e39b3762abcef1a5167d873a8e6 (patch) | |
| tree | 6cea99f3bd419f54375356b7f58532d6cda17679 | |
| parent | d6288299d325714ac74a6cd792c9132e49b415a0 (diff) | |
| download | emacs-5459bcdf38655e39b3762abcef1a5167d873a8e6.tar.gz emacs-5459bcdf38655e39b3762abcef1a5167d873a8e6.zip | |
(custom-deps, autoloads): Fix *-hooks -> *-hook.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 4 |
2 files changed, 11 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 379136ee0a6..43f98adbef9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,12 +1,16 @@ | |||
| 1 | 2004-10-30 Stefan <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook. | ||
| 4 | |||
| 1 | 2004-10-30 Juri Linkov <juri@jurta.org> | 5 | 2004-10-30 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * help.el (function-called-at-point): | 7 | * help.el (function-called-at-point): |
| 4 | * help-fns.el (variable-at-point): read -> intern. | 8 | * help-fns.el (variable-at-point): Read -> intern. |
| 5 | 9 | ||
| 6 | 2004-10-30 Simon Josefsson <jas@extundo.com> | 10 | 2004-10-30 Simon Josefsson <jas@extundo.com> |
| 7 | 11 | ||
| 8 | * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize | 12 | * progmodes/autoconf.el (autoconf-font-lock-keywords): |
| 9 | AS_* too. | 13 | Recognize AS_* too. |
| 10 | 14 | ||
| 11 | 2004-10-29 Simon Josefsson <jas@extundo.com> | 15 | 2004-10-29 Simon Josefsson <jas@extundo.com> |
| 12 | 16 | ||
| @@ -75,8 +79,8 @@ | |||
| 75 | 79 | ||
| 76 | 2004-10-28 Kenichi Handa <handa@m17n.org> | 80 | 2004-10-28 Kenichi Handa <handa@m17n.org> |
| 77 | 81 | ||
| 78 | * international/utf-8.el (utf-translate-cjk-charsets): Add | 82 | * international/utf-8.el (utf-translate-cjk-charsets): |
| 79 | katakana-jisx0201. | 83 | Add katakana-jisx0201. |
| 80 | 84 | ||
| 81 | * international/subst-jis.el: Add data for JISX0201. | 85 | * international/subst-jis.el: Add data for JISX0201. |
| 82 | 86 | ||
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index b2694bc2b78..76a63a78b52 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -170,7 +170,7 @@ cus-load.el: | |||
| 170 | touch $@ | 170 | touch $@ |
| 171 | custom-deps: cus-load.el doit | 171 | custom-deps: cus-load.el doit |
| 172 | @echo Directories: $(WINS) | 172 | @echo Directories: $(WINS) |
| 173 | -$(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hooks nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS) | 173 | -$(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hook nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS) |
| 174 | 174 | ||
| 175 | finder-data: doit | 175 | finder-data: doit |
| 176 | @echo Directories: $(WINS) | 176 | @echo Directories: $(WINS) |
| @@ -220,7 +220,7 @@ loaddefs.el-CMD: | |||
| 220 | autoloads: loaddefs.el doit | 220 | autoloads: loaddefs.el doit |
| 221 | @echo Directories: $(WINS) | 221 | @echo Directories: $(WINS) |
| 222 | $(emacs) -l autoload \ | 222 | $(emacs) -l autoload \ |
| 223 | --eval $(ARGQUOTE)(setq find-file-hooks nil \ | 223 | --eval $(ARGQUOTE)(setq find-file-hook nil \ |
| 224 | find-file-suppress-same-file-warnings t \ | 224 | find-file-suppress-same-file-warnings t \ |
| 225 | generated-autoload-file \ | 225 | generated-autoload-file \ |
| 226 | $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) \ | 226 | $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) \ |