]> code.delx.au - gnu-emacs/blobdiff - lisp/widget.el
Don't quote nil and t in doc strings
[gnu-emacs] / lisp / widget.el
index 539f91e63a0549bb846e18a419b0ca94e757733f..d62f7ffd8d1b2f1552f76e00c7f9b34fa0edb8b2 100644 (file)
@@ -85,7 +85,7 @@ create identical widgets:
 The third argument DOC is a documentation string for the widget."
   ;;
   (unless (or (null doc) (stringp doc))
-    (error "widget documentation must be `nil' or a string."))
+    (error "widget documentation must be nil or a string."))
   (put name 'widget-type (cons class args))
   (put name 'widget-documentation (purecopy doc))
   name)