]> code.delx.au - gnu-emacs/blobdiff - lisp/info-xref.el
(url-http-mark-connection-as-free, url-http-find-free-connection):
[gnu-emacs] / lisp / info-xref.el
index 75bc72f25b4b641f1b0402060836c086eea06106..a6acfa8021caa3792f023b4b353c1537e7a01499 100644 (file)
@@ -301,7 +301,10 @@ quite a while."
        (lambda (symbol)
          (dolist (link (get symbol 'custom-links))
            (when (memq (car link) '(custom-manual info-link))
-             (if (info-xref-goto-node-p (cadr link))
+            ;; skip :tag part of (custom-manual :tag "Foo" "(foo)Node")
+            (if (eq :tag (cadr link))
+                (setq link (cddr link)))
+            (if (info-xref-goto-node-p (cadr link))
                  (setq good (1+ good))
                (setq bad (1+ bad))
                ;; symbol-file gives nil for preloaded variables, would need