projects
/
elisp
/
lsdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d61da1
)
* lsdb.el: Check whether make-hash-table is a subr.
author
ueno
<ueno>
Fri, 26 Apr 2002 12:23:15 +0000
(12:23 +0000)
committer
ueno
<ueno>
Fri, 26 Apr 2002 12:23:15 +0000
(12:23 +0000)
lsdb.el
patch
|
blob
|
history
diff --git
a/lsdb.el
b/lsdb.el
index
c18e28a
..
610b4df
100644
(file)
--- a/
lsdb.el
+++ b/
lsdb.el
@@
-196,7
+196,8
@@
where the last element is optional."
"An obarray used to complete an entry name.")
;;;_. Hash Table Emulation
-(if (fboundp 'make-hash-table)
+(if (and (fboundp 'make-hash-table)
+ (subrp (symbol-function 'make-hash-table)))
(progn
(defalias 'lsdb-puthash 'puthash)
(defalias 'lsdb-gethash 'gethash)