From 48e3f5d83313bb159462bebef7113c493b52d8be Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 30 Apr 2002 22:06:14 +0000 Subject: [PATCH] * README: Fix typo. * 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 | 2 +- lsdb.el | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index 017ddf3..a0c102e 100644 --- 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 --- 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 () -- 1.7.10.4