]> git.eshelyaron.com Git - emacs.git/commitdiff
; Delete commented out code in help-fns.el
authorStefan Kangas <stefankangas@gmail.com>
Tue, 11 Mar 2025 22:46:15 +0000 (23:46 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 19:01:52 +0000 (20:01 +0100)
(cherry picked from commit f4b20c3f768c4d833c304ace2a9cf0a028346fdb)

lisp/help-fns.el

index fc494b7b93e3964d491f093902b3c7c4f49dffa7..c74eec24f45b20a48cf57c002178878a48e34c61 100644 (file)
@@ -963,48 +963,6 @@ TYPE indicates the namespace and is `fun' or `var'."
     (when first
       (make-text-button first nil 'type 'help-news 'help-args place))))
 
-;; (defun help-fns--check-first-releases ()
-;;   "Compare the old liberal regexp to the new more restrictive one."
-;;   (interactive)
-;;   (let* ((quoted nil)
-;;          (rx-fun (lambda (orig-fun symbol)
-;;                    (if quoted
-;;                        (funcall orig-fun symbol)
-;;                      (format "\\_<%s\\_>"
-;;                              (regexp-quote (symbol-name symbol))))))
-;;          (count
-;;           (let ((count 0))
-;;             (obarray-map (lambda (sym)
-;;                            (when (or (fboundp sym) (boundp sym))
-;;                              (incf count)))
-;;                          obarray)
-;;             count))
-;;          (p (make-progress-reporter "Check first releases..." 0 count)))
-;;     (with-current-buffer (get-buffer-create "*Check-first-release*")
-;;       (unwind-protect
-;;           (progn
-;;             (advice-add 'help-fns--first-release-regexp :around rx-fun)
-;;             (erase-buffer)
-;;             (setq count 0)
-;;             (obarray-map
-;;              (lambda (sym)
-;;                (when (or (fboundp sym) (boundp sym))
-;;                  (incf count)
-;;                  (progress-reporter-update p count)
-;;                  (let ((vt (progn (setq quoted t)
-;;                                   (help-fns--first-release sym)))
-;;                        (vnil (progn (setq quoted nil)
-;;                                     (help-fns--first-release sym))))
-;;                    (when (and vnil (not (equal vt vnil)))
-;;                      (insert (symbol-name sym)
-;;                              "\nnot-quoted: " (or vnil "nil")
-;;                              "\nquoted:     " (or vt "nil")
-;;                              "\n\n")))))
-;;              obarray)
-;;             (progress-reporter-done p))
-;;         (advice-remove 'help-fns--first-release-regexp rx-fun))
-;;       (display-buffer (current-buffer)))))
-
 (add-hook 'help-fns-describe-function-functions
           #'help-fns--mention-first-function-release)
 (add-hook 'help-fns-describe-variable-functions