# HG changeset patch # User Kenichi Handa # Date 967705408 0 # Node ID 15e7eab87754d8f303ebd36d22f49f9be666b8ee # Parent aaae505ca52b18c5c1b40a0c2528d1a9edae1a9a (help-make-xrefs): Don't make hyperlinks for incorrect coding systems. diff -r aaae505ca52b -r 15e7eab87754 lisp/help.el --- a/lisp/help.el Thu Aug 31 07:03:03 2000 +0000 +++ b/lisp/help.el Thu Aug 31 07:03:28 2000 +0000 @@ -1134,7 +1134,7 @@ (sym (intern-soft data))) (cond ((match-string 3) ; coding system - (and (coding-system-p sym) + (and sym (coding-system-p sym) (help-xref-button 5 #'describe-coding-system sym "mouse-2, RET: describe this coding system"))) @@ -1143,7 +1143,7 @@ (help-xref-button 5 #'describe-input-method data "mouse-2, RET: describe this input method"))) - ((coding-system-p sym) + ((and sym (coding-system-p sym)) (help-xref-button 5 #'describe-coding-system sym "mouse-2, RET: describe this coding system"))