comparison lisp/ChangeLog @ 44386:b3544d5a262d

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 03 Apr 2002 19:56:59 +0000
parents 3626a12fe452
children b5cf83d7e776
comparison
equal deleted inserted replaced
44385:d5cf9afe17d6 44386:b3544d5a262d
22 * shell.el (shell-mode): Don't reinit comint-input-ring 22 * shell.el (shell-mode): Don't reinit comint-input-ring
23 if that was already done. 23 if that was already done.
24 24
25 2002-04-03 Edward M. Reingold <reingold@emr.cs.iit.edu> 25 2002-04-03 Edward M. Reingold <reingold@emr.cs.iit.edu>
26 26
27 * solar.el (solar-spring-or-summer-season): Deleted. 27 * solar.el (solar-spring-or-summer-season): Delete.
28 (solar-northern-spring-or-summer-season): New variable. 28 (solar-northern-spring-or-summer-season): New variable.
29 (solar-sunrise-and-sunset, solar-moment, solar-sunrise-sunset): 29 (solar-sunrise-and-sunset, solar-moment, solar-sunrise-sunset):
30 Rewritten. 30 Rewrite.
31 31
32 * solar.el (diary-sabbath-candles-minutes): New variable. 32 * solar.el (diary-sabbath-candles-minutes): New variable.
33 (diary-sabbath-candles): Use it instead of fixed 18 minutes. 33 (diary-sabbath-candles): Use it instead of fixed 18 minutes.
34 34
35 * calendar.el (update-calendar-mode-line): Force mode-line update. 35 * calendar.el (update-calendar-mode-line): Force mode-line update.
36 Make date under the cursor available as `date' in 36 Make date under the cursor available as `date' in
37 calendar-mode-line-format. 37 calendar-mode-line-format.
38 Eval items in calendar-mode-line-format list. 38 Eval items in calendar-mode-line-format list.
39 39
40 * cal-tex.el (cal-tex-hook, cal-tex-year-hook, cal-tex-month-hook, 40 * cal-tex.el (cal-tex-hook, cal-tex-year-hook, cal-tex-month-hook)
41 cal-tex-week-hook, cal-tex-daily-hook): Add doc strings. 41 (cal-tex-week-hook, cal-tex-daily-hook): Add doc strings.
42 42
43 * cal-tex.el (cal-tex-latexify-list): Fix doc string. 43 * cal-tex.el (cal-tex-latexify-list): Fix doc string.
44 44
45 * cal-tex.el (cal-tex-insert-day-names): LaTeXify day names. 45 * cal-tex.el (cal-tex-insert-day-names): LaTeXify day names.
46 (cal-tex-cursor-week-iso, cal-tex-week-hours, cal-tex-weekly4-box) 46 (cal-tex-cursor-week-iso, cal-tex-week-hours, cal-tex-weekly4-box)
74 2002-04-02 Richard M. Stallman <rms@gnu.org> 74 2002-04-02 Richard M. Stallman <rms@gnu.org>
75 75
76 * files.el (hack-one-local-variable): 76 * files.el (hack-one-local-variable):
77 Clear text props from string value. 77 Clear text props from string value.
78 78
79 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
80
81 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
82 (f90-procedures-re, f90-operators-re, f90-hpf-keywords-re):
83 Use regexp-opt.
84 (f90-keywords-re, f90-keywords-level-3-re): Add `pure' and `elemental'
85 from F95.
86 (f90-procedures-re): Add `null' and `cpu_time' from F95.
87 (f90-font-lock-keywords-1): Minor reorganization so we don't need
88 `override' any more.
89 (f90-font-lock-keywords-3): Use `keep' rather than `override'.
90 (f90-indent-subprogram): Use indent-region.
91 (f90-break-line): Use indent-according-to-mode.
92
79 2002-04-02 Mike Williams <mdub@bigfoot.com> 93 2002-04-02 Mike Williams <mdub@bigfoot.com>
80 94
81 * textmodes/sgml-mode.el (sgml-close-tag): Rename from 95 * textmodes/sgml-mode.el (sgml-close-tag): Rename from
82 sgml-insert-end-tag. Simplify by using sgml-lexical-context. 96 sgml-insert-end-tag. Simplify by using sgml-lexical-context.
83 (sgml-get-context): Remove use of sgml-inside-tag-p. 97 (sgml-get-context): Remove use of sgml-inside-tag-p.
84 (sgml-inside-tag-p): Remove. 98 (sgml-inside-tag-p): Remove.
85 (sgml-looking-back-at): Short-circuit at beg of buffer. 99 (sgml-looking-back-at): Short-circuit at beg of buffer.
86 (sgml-lexical-context,sgml-calculate-indent): Add support for 100 (sgml-lexical-context, sgml-calculate-indent): Add support for
87 CDATA sections. 101 CDATA sections.
88 102
89 2002-04-01 Stefan Monnier <monnier@cs.yale.edu> 103 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
104
105 * help.el (help-key-description): New fun.
106 (describe-key-briefly, describe-key): Use it and
107 this-single-command-raw-keys plus new arg `untranslated'.
90 108
91 * textmodes/sgml-mode.el (sgml-at-indentation-p, sgml-tag) 109 * textmodes/sgml-mode.el (sgml-at-indentation-p, sgml-tag)
92 (sgml-parse-tag-name, sgml-looking-back-at, sgml-parse-tag-backward) 110 (sgml-parse-tag-name, sgml-looking-back-at, sgml-parse-tag-backward)
93 (sgml-inside-tag-p, sgml-get-context, sgml-show-context) 111 (sgml-inside-tag-p, sgml-get-context, sgml-show-context)
94 (sgml-insert-end-tag): New funs taken from xml-lite.el. 112 (sgml-insert-end-tag): New funs taken from xml-lite.el.