]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-type-properties): Use custom-asis instead of as-is.
authorRichard M. Stallman <rms@gnu.org>
Sat, 23 Mar 1996 14:38:37 +0000 (14:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 23 Mar 1996 14:38:37 +0000 (14:38 +0000)
(custom-asis): Set it to itself.

lisp/custom.el

index 7234cbeae5d2f75575ded014bbd5ff69ed7c22e6..78b2323dd87f28bcc772f8ef7ad1da84a7381d0a 100644 (file)
@@ -524,7 +524,7 @@ hierarchy the new entry should be added.  CUSTOM is the entry to add."
                    (default . nil))
                   ((type . const)
                    (tag . "Def")
-                   (default . as-is))))
+                   (default . custom-asis))))
     (choice (type . default)
            ;; See `custom-match'.
            (query . custom-choice-query)
@@ -632,16 +632,16 @@ Select the properties you want this face to have.")
                        (type . string))
                       "\n"
                       ((tag . "Bold")
-                       (default . as-is)
+                       (default . custom-asis)
                        (type . triggle))
                       "              "
                       ((tag . "Italic")
-                       (default . as-is)
+                       (default . custom-asis)
                        (type . triggle))
                       "             "
                       ((tag . "Underline")
                        (hidden . t)
-                       (default . as-is)
+                       (default . custom-asis)
                        (type . triggle)))
                 (default . (custom-face-lookup "default" "default" "default"
                                                nil nil nil))
@@ -733,6 +733,9 @@ Entries in this list take precedence over `custom-type-properties'.")
 (defconst custom-invalid '__invalid__
   "Special value representing an invalid field.")
 
+(defconst custom-asis 'custom-asis)
+;; Bad, ugly, and horrible kludge.
+
 (defun custom-property (custom property)
   "Extract from CUSTOM property PROPERTY."
   (let ((entry (assq property custom)))