* README: Fix typo.
authorueno <ueno>
Tue, 30 Apr 2002 22:06:14 +0000 (22:06 +0000)
committerueno <ueno>
Tue, 30 Apr 2002 22:06:14 +0000 (22:06 +0000)
* lsdb.el (lsdb-interesting-header-alist): Use comma as a delimiter of
AKA field.
(lsdb-complete-name-highlight): Use isearch-lazy-highlight-face if it exists.

README
lsdb.el

diff --git a/README b/README
index 017ddf3..a0c102e 100644 (file)
--- a/README
+++ b/README
@@ -141,7 +141,7 @@ LSDB can also have one or more number of secondary hash tables.  These
 hash tables are mainly used to hint lsdb-hash-table to gather
 additional relationship information between record name and entries.
 For example, lsdb-address-cache is a kind of secondary hash table
-which holds the mapping of mail addresses to record names.
+which maintains the mapping of mail addresses to record names.
 
 The variable lsdb-secondary-hash-tables holds a list where each
 element is corresponding to the name of global variable such as
diff --git a/lsdb.el b/lsdb.el
index 3e00502..2082a24 100644 (file)
--- a/lsdb.el
+++ b/lsdb.el
@@ -106,7 +106,7 @@ where the last three elements are optional."
     (attribution 4 ?.)
     (organization 4)
     (www 4)
-    (aka 4)
+    (aka 4 ?,)
     (score -1)
     (x-face -1))
   "Alist of entry types for presentation.
@@ -715,6 +715,7 @@ This is the current number of slots in HASH-TABLE, whether occupied or not."
          (make-overlay (match-beginning 0) (match-end 0)))
     (overlay-put lsdb-last-highlight-overlay 'face
                 (or (find-face 'isearch-secondary)
+                    (find-face 'isearch-lazy-highlight-face)
                     'underline))))
 
 (defun lsdb-complete-name-highlight-update ()