diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-07 19:05:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-07 19:05:41 +0000 |
commit | eb57c0e084b54033ccddee10e37c27602df93c8e (patch) | |
tree | 43dbb7e3e8b96b6af1619c49e51bea85a1a49981 /lisp | |
parent | 90d6f1014ec53b7aca3eff720bac2aadee7d72e6 (diff) | |
download | emacs-eb57c0e084b54033ccddee10e37c27602df93c8e.tar.gz |
(calendar-daylight-savings-ends)
(calendar-daylight-savings-ends): Add risky-local-variable property.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/calendar/cal-dst.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el index a4c666eac5e..d395173197e 100644 --- a/lisp/calendar/cal-dst.el +++ b/lisp/calendar/cal-dst.el @@ -281,6 +281,8 @@ For example, \"EST\" in New York City, \"PST\" for Los Angeles.") "*Abbreviated name of daylight-savings time zone at `calendar-location-name'. For example, \"EDT\" in New York City, \"PDT\" for Los Angeles.") +;;;###autoload +(put 'calendar-daylight-savings-starts 'risky-local-variable t) (defvar calendar-daylight-savings-starts (or (car (nthcdr 4 calendar-current-time-zone-cache)) (and (not (zerop calendar-daylight-time-offset)) @@ -302,6 +304,8 @@ If it starts on the first Sunday in April, you would set it to If the locale never uses daylight savings time, set this to nil.") +;;;###autoload +(put 'calendar-daylight-savings-starts 'risky-local-variable t) (defvar calendar-daylight-savings-ends (or (car (nthcdr 5 calendar-current-time-zone-cache)) (and (not (zerop calendar-daylight-time-offset)) |