emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/help-mode.el


From: Luc Teirlinck
Subject: [Emacs-diffs] Changes to emacs/lisp/help-mode.el
Date: Sat, 18 Oct 2003 23:58:43 -0400

Index: emacs/lisp/help-mode.el
diff -c emacs/lisp/help-mode.el:1.18 emacs/lisp/help-mode.el:1.19
*** emacs/lisp/help-mode.el:1.18        Mon Sep  1 11:45:12 2003
--- emacs/lisp/help-mode.el     Sat Oct 18 23:58:43 2003
***************
*** 213,219 ****
                    "\\(function\\|command\\)\\|"
                    "\\(face\\)\\|"
                    "\\(symbol\\)\\|"
!                   "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)\\s-+\\)?"
                    ;; Note starting with word-syntax character:
                    "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
    "Regexp matching doc string references to symbols.
--- 213,220 ----
                    "\\(function\\|command\\)\\|"
                    "\\(face\\)\\|"
                    "\\(symbol\\)\\|"
!                   "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)"
!                   "[ \t\n]+\\)?"
                    ;; Note starting with word-syntax character:
                    "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
    "Regexp matching doc string references to symbols.
***************
*** 278,284 ****
  references for selection with `help-follow'.  Cross-references have
  the canonical form `...'  and the type of reference may be
  disambiguated by the preceding word(s) used in
! `help-xref-symbol-regexp'.
  
  If the variable `help-xref-mule-regexp' is non-nil, find also
  cross-reference information related to multilingual environment
--- 279,288 ----
  references for selection with `help-follow'.  Cross-references have
  the canonical form `...'  and the type of reference may be
  disambiguated by the preceding word(s) used in
! `help-xref-symbol-regexp'.  Faces only get cross-referenced if
! preceded or followed by the word `face'.  Variables without
! variable documentation do not get cross-referenced, unless
! preceded by the word `variable'.
  
  If the variable `help-xref-mule-regexp' is non-nil, find also
  cross-reference information related to multilingual environment
***************
*** 342,352 ****
                           (sym (intern-soft data)))
                      (if sym
                          (cond
!                          ((match-string 3) ; `variable' &c
                            (and (boundp sym) ; `variable' doesn't ensure
                                          ; it's actually bound
                                 (help-xref-button 8 'help-variable sym)))
!                          ((match-string 4) ; `function' &c
                            (and (fboundp sym) ; similarly
                                 (help-xref-button 8 'help-function sym)))
                         ((match-string 5) ; `face'
--- 346,356 ----
                           (sym (intern-soft data)))
                      (if sym
                          (cond
!                          ((match-string 3)  ; `variable' &c
                            (and (boundp sym) ; `variable' doesn't ensure
                                          ; it's actually bound
                                 (help-xref-button 8 'help-variable sym)))
!                          ((match-string 4)   ; `function' &c
                            (and (fboundp sym) ; similarly
                                 (help-xref-button 8 'help-function sym)))
                         ((match-string 5) ; `face'
***************
*** 354,376 ****
                               (help-xref-button 8 'help-face sym)))
                           ((match-string 6)) ; nothing for `symbol'
                         ((match-string 7)
! ;; this used:
! ;;                       #'(lambda (arg)
! ;;                           (let ((location
! ;;                                  (find-function-noselect arg)))
! ;;                             (pop-to-buffer (car location))
! ;;                             (goto-char (cdr location))))
                          (help-xref-button 8 'help-function-def sym))
                           ((and (boundp sym) (fboundp sym))
                            ;; We can't intuit whether to use the
                            ;; variable or function doc -- supply both.
                            (help-xref-button 8 'help-symbol sym))
!                          ((boundp sym)
                          (help-xref-button 8 'help-variable sym))
                         ((fboundp sym)
                          (help-xref-button 8 'help-function sym))
                         ((facep sym)
!                         (help-xref-button 8 'help-face sym)))))))
                ;; An obvious case of a key substitution:
                (save-excursion
                  (while (re-search-forward
--- 358,384 ----
                               (help-xref-button 8 'help-face sym)))
                           ((match-string 6)) ; nothing for `symbol'
                         ((match-string 7)
! ;;;  this used:
! ;;;                     #'(lambda (arg)
! ;;;                         (let ((location
! ;;;                                (find-function-noselect arg)))
! ;;;                           (pop-to-buffer (car location))
! ;;;                           (goto-char (cdr location))))
                          (help-xref-button 8 'help-function-def sym))
                           ((and (boundp sym) (fboundp sym))
                            ;; We can't intuit whether to use the
                            ;; variable or function doc -- supply both.
                            (help-xref-button 8 'help-symbol sym))
!                          ((and
!                          (boundp sym)
!                          (documentation-property sym
!                                                  'variable-documentation))
                          (help-xref-button 8 'help-variable sym))
                         ((fboundp sym)
                          (help-xref-button 8 'help-function sym))
                         ((facep sym)
!                         (if (save-match-data (looking-at "[ \t\n]+face\\W"))
!                             (help-xref-button 8 'help-face sym))))))))
                ;; An obvious case of a key substitution:
                (save-excursion
                  (while (re-search-forward




reply via email to

[Prev in Thread] Current Thread [Next in Thread]