Mercurial > emacs
comparison lisp/info-xref.el @ 65137:4377043d399d
Move the `defvar's to the top level.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 26 Aug 2005 10:48:00 +0000 |
parents | 23c9aeba8f59 |
children | 3bd95f4f2941 a3716f7538f2 |
comparison
equal
deleted
inserted
replaced
65136:d66de68f18cb | 65137:4377043d399d |
---|---|
136 | 136 |
137 | 137 |
138 ;; Some dynamic variables are used to share information with sub-functions | 138 ;; Some dynamic variables are used to share information with sub-functions |
139 ;; below. | 139 ;; below. |
140 ;; | 140 ;; |
141 (eval-when-compile | 141 ;; info-xref-filename-header - a heading message for the current top-level |
142 ;; | 142 ;; filename, or "" when it's been printed. |
143 ;; info-xref-filename-header - a heading message for the current top-level | 143 ;; |
144 ;; filename, or "" when it's been printed. | 144 (defvar info-xref-xfile-alist) |
145 ;; | 145 ;; |
146 (defvar info-xref-xfile-alist) | 146 ;; info-xref-good - count of good cross references. |
147 ;; | 147 ;; |
148 ;; info-xref-good - count of good cross references. | 148 (defvar info-xref-good) |
149 ;; | 149 ;; |
150 (defvar info-xref-good) | 150 ;; info-xref-bad - count of bad cross references. |
151 ;; | 151 ;; |
152 ;; info-xref-bad - count of bad cross references. | 152 (defvar info-xref-bad) |
153 ;; | 153 ;; |
154 (defvar info-xref-bad) | 154 ;; info-xref-xfile-alist - indexed by "(foo)" with value nil or t according |
155 ;; | 155 ;; to whether "(foo)" exists or not. This is used to suppress duplicate |
156 ;; info-xref-xfile-alist - indexed by "(foo)" with value nil or t according | 156 ;; messages about foo not being available. (Duplicates within one |
157 ;; to whether "(foo)" exists or not. This is used to suppress duplicate | 157 ;; top-level file that is.) |
158 ;; messages about foo not being available. (Duplicates within one | 158 ;; |
159 ;; top-level file that is.) | 159 (defvar info-xref-filename-heading) |
160 ;; | |
161 (defvar info-xref-filename-heading)) | |
162 | 160 |
163 (defun info-xref-check-list (filename-list) | 161 (defun info-xref-check-list (filename-list) |
164 "Check external references in info documents in FILENAME-LIST." | 162 "Check external references in info documents in FILENAME-LIST." |
165 (pop-to-buffer info-xref-results-buffer t) | 163 (pop-to-buffer info-xref-results-buffer t) |
166 (erase-buffer) | 164 (erase-buffer) |