branch: elpa/annotate commit 201b4587dc7bc7d2114a173aa67289369ab9d182 Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- made recongnizable code that refers to info file annotation (1/3) annotate-valid-info-extensions -> annotate-info-valid-file-extensions --- annotate.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotate.el b/annotate.el index 790b241359..eaf1460145 100644 --- a/annotate.el +++ b/annotate.el @@ -154,7 +154,7 @@ major mode is a member of this list (space separated entries)." summary window because does not exist or is in an unsupported format.") -(defconst annotate-valid-info-extensions +(defconst annotate-info-valid-file-extensions '(".info" ".info.gz" ".gz") "The valid extension for files that contains info document") @@ -372,7 +372,7 @@ modified (for example a newline is inserted)." filename nil))) (cl-block surrounding - (dolist (extension annotate-valid-info-extensions) + (dolist (extension annotate-info-valid-file-extensions) (let ((filename-maybe (concat filename extension))) (when (file-exists-p filename-maybe) (setf found filename-maybe)