Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0d1bb2ff
Commit
0d1bb2ff
authored
Mar 08, 2008
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mark-hebrew-calendar-date-pattern): Use zerop.
parent
d18d0261
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/calendar/cal-hebrew.el
lisp/calendar/cal-hebrew.el
+4
-4
No files found.
lisp/calendar/cal-hebrew.el
View file @
0d1bb2ff
;;; cal-hebrew.el --- calendar functions for the Hebrew calendar
;; Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
2008
;; Free Software Foundation, Inc.
;; Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
;;
2008
Free Software Foundation, Inc.
;; Author: Nachum Dershowitz <nachum@cs.uiuc.edu>
;; Edward M. Reingold <reingold@cs.uiuc.edu>
...
...
@@ -599,8 +599,8 @@ not be marked in the calendar. This function is provided for use with the
A value of 0 in any position is a wildcard."
(
save-excursion
(
set-buffer
calendar-buffer
)
(
if
(
and
(
/=
0
month
)
(
/=
0
day
))
(
if
(
/=
0
year
)
(
if
(
and
(
not
(
zerop
month
)
)
(
not
(
zerop
day
))
)
(
if
(
not
(
zerop
year
)
)
;; Fully specified Hebrew date.
(
let
((
date
(
calendar-gregorian-from-absolute
(
calendar-absolute-from-hebrew
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment