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.el


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/help.el
Date: Thu, 16 Dec 2004 08:16:29 -0500

Index: emacs/lisp/help.el
diff -c emacs/lisp/help.el:1.271 emacs/lisp/help.el:1.272
*** emacs/lisp/help.el:1.271    Sat Oct 30 01:07:20 2004
--- emacs/lisp/help.el  Thu Dec 16 13:05:37 2004
***************
*** 267,274 ****
                      (and (symbolp obj) (fboundp obj) obj))))
              (error nil))))
        (let* ((str (find-tag-default))
!            (obj (if str (intern str))))
!       (and (symbolp obj) (fboundp obj) obj))))
  
  
  ;;; `User' help functions
--- 267,279 ----
                      (and (symbolp obj) (fboundp obj) obj))))
              (error nil))))
        (let* ((str (find-tag-default))
!            (sym (if str (intern-soft str))))
!       (if (and sym (fboundp sym))
!           sym
!         (save-match-data
!           (when (and str (string-match "\\`\\W*\\(.*?\\)\\W*\\'" str))
!             (setq sym (intern-soft (match-string 1 str)))
!             (and (fboundp sym) sym)))))))
  
  
  ;;; `User' help functions




reply via email to

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