Patch for minor bug in bbdb-hack-x-face, which tests
(fboundp 'highlight-headers-hack-x-face-p) instead of boundp.
Index: bbdb-gui.el
===================================================================
RCS file: /home/cvsroot/xemacs/xemacs-packages/lisp/bbdb/bbdb-gui.el,v
retrieving revision 1.4
diff -u -d -w -r1.4 bbdb-gui.el
--- bbdb-gui.el 9 Nov 2004 19:26:10 -0000 1.4
+++ bbdb-gui.el 29 Jul 2005 00:30:42 -0000
@@ -261,9 +261,8 @@
"Process a face property of a record and honour it.
Not done for GNU Emacs just yet, since it doesn't have image support
as of GNU Emacs 20.7"
- (if (not (or (and (fboundp 'highlight-headers-hack-x-face-p)
- (symbol-value (intern ;; compiler
- "highlight-headers-hack-x-face-p"))) ;; ick.
+ (if (not (or (and (boundp 'highlight-headers-hack-x-face-p)
+ (symbol-value 'highlight-headers-hack-x-face-p))
(and (featurep 'xemacs)
(string-match "^21\\." emacs-version)))) ;; XXX
() ;; nothing doing
2005-09-05 Jeff Mincy <jeff(a)delphioutpost.com>
* bbdb-gui.el (bbdb-hack-x-face): use boundp on highlight-headers-hack-x-face-p
-jeff
Show replies by date