# HG changeset patch # User Nick Roberts # Date 1116461589 0 # Node ID 3de160e732f1e5231a262cee53dc12e1229407ed # Parent e371d32adcb5c784254fb31923e771398bc4618e (describe-variable): Remove hyperlinks in a variable's value as these are quite frequently inappropriate. diff -r e371d32adcb5 -r 3de160e732f1 lisp/help-fns.el --- a/lisp/help-fns.el Thu May 19 00:12:37 2005 +0000 +++ b/lisp/help-fns.el Thu May 19 00:13:09 2005 +0000 @@ -535,7 +535,9 @@ (terpri) (let ((from (point))) (pp val) - (help-xref-on-pp from (point)) + ;; Hyperlinks in variable's value are quite frequently + ;; inappropriate e.g C-h v features + ;; (help-xref-on-pp from (point)) (if (< (point) (+ from 20)) (delete-region (1- from) from))))) (terpri) @@ -556,7 +558,8 @@ ;; sensible size before prettyprinting. -- fx (let ((from (point))) (pp val) - (help-xref-on-pp from (point)) + ;; See previous comment for this function. + ;; (help-xref-on-pp from (point)) (if (< (point) (+ from 20)) (delete-region (1- from) from)))))) (terpri))