When querying with sub-key :ALL, EXT:GET-ANNOTATION now returns a list of pairs, with each pair being prefixed by the appropriate sub-key.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-23 18:11:32 +01:00
parent b1ec23bce8
commit b325b0337e

View file

@ -164,7 +164,7 @@ Sets up a new hash table for storing documentation strings."
(dolist (i record)
(let ((key-sub-key (car i)))
(when (equal (car key-sub-key) key)
(push (cdr i) output))))
(push (cons (cdr key-sub-key) (cdr i)) output))))
(if (setq output (record-field record key sub-key))
(return output))))))))