Changeset 4111 for trunk/lisp/help-mode.el
- Timestamp:
- 07/16/06 08:36:52 (2 years ago)
- Files:
-
- trunk/lisp/help-mode.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/help-mode.el
r4098 r4111 158 158 (find-function-search-for-symbol fun nil file))) 159 159 (pop-to-buffer (car location)) 160 (goto-char (cdr location)))) 160 (when (cdr location) 161 (goto-char (cdr location))))) 161 162 'help-echo (purecopy "mouse-2, RET: find function's definition")) 162 163 … … 168 169 (let ((location (find-variable-noselect var file))) 169 170 (pop-to-buffer (car location)) 170 (goto-char (cdr location)))) 171 'help-echo (purecopy"mouse-2, RET: find variable's definition")) 171 (when (cdr location) 172 (goto-char (cdr location))))) 173 'help-echo (purecopy "mouse-2, RET: find variable's definition")) 172 174 173 175 (define-button-type 'help-face-def … … 180 182 (find-function-search-for-symbol fun 'defface file))) 181 183 (pop-to-buffer (car location)) 182 (goto-char (cdr location)))) 184 (when (cdr location) 185 (goto-char (cdr location))))) 183 186 'help-echo (purecopy "mouse-2, RET: find face's definition")) 184 187
