projects
/
elisp
/
apel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef4877e
)
* poe-xemacs.el: Load `timer' even if `timer-funcs' exists.
author
yamaoka
<yamaoka>
Sun, 5 Jun 2005 10:29:14 +0000
(10:29 +0000)
committer
yamaoka
<yamaoka>
Sun, 5 Jun 2005 10:29:14 +0000
(10:29 +0000)
From Kinoshita-san.
ChangeLog
patch
|
blob
|
history
poe-xemacs.el
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index
449b3f2
..
662525d
100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,7
@@
+2005-06-05 Tatsuya Kinoshita <tats@vega.ocn.ne.jp>
+
+ * poe-xemacs.el: Load `timer' even if `timer-funcs' exists.
+
2005-05-10 TAKAHASHI Kaoru <kaoru@kaisei.org>
* poe.el (split-string): Import from Emacs 22. Add omit-nulls
diff --git
a/poe-xemacs.el
b/poe-xemacs.el
index
5824235
..
49ebc74
100644
(file)
--- a/
poe-xemacs.el
+++ b/
poe-xemacs.el
@@
-81,13
+81,14
@@
When called interactively, prompt for the name of the color to use."
;;; @ timer
;;;
+(condition-case nil
+ (require 'timer-funcs)
+ (error nil))
+(condition-case nil
+ (require 'timer)
+ (error nil))
(or
- (condition-case nil
- (require 'timer-funcs)
- (error nil))
- (condition-case nil
- (require 'timer)
- (error nil))
+ (or (featurep 'timer-funcs) (featurep 'timer))
(progn
(require 'itimer)
(if (and (= emacs-major-version 19) (<= emacs-minor-version 14))