]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-shell-arg, sh-require-final-newline, sh-assignment-regexp, sh-builtins)
authorEli Zaretskii <eliz@gnu.org>
Fri, 27 Feb 2004 17:22:27 +0000 (17:22 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 27 Feb 2004 17:22:27 +0000 (17:22 +0000)
(sh-leading-keywords, sh-other-keywords): Fix custom type.

lisp/ChangeLog
lisp/progmodes/sh-script.el

index 080167bad25dc836537299c37e7b9fc8dffb8134..b264bf306090845c6000b091dc9e7546fbeb5497 100644 (file)
@@ -1,3 +1,9 @@
+2004-02-27  Markus Rost  <rost@mathematik.uni-bielefeld.de>
+
+       * progmodes/sh-script.el (sh-shell-arg)
+       (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
+       (sh-leading-keywords, sh-other-keywords): Fix custom type.
+
 2004-02-27  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * faces.el (face-spec-set-match-display): Add a new  attribute,
index a23dc0a307ee00a0c1e4ffa40beab0580ab0ef41..f765b37c76a0a0ecef893fb8839006296871f2bc 100644 (file)
@@ -315,9 +315,7 @@ shell it really is."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (const :tag "No Arguments" nil)
                               (string :tag "Arguments")
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)
 
 (defcustom sh-imenu-generic-expression
@@ -498,9 +496,7 @@ This is buffer-local in every such buffer.")
 See `sh-feature'."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (const :tag "require" t)
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)
 
 
@@ -515,9 +511,7 @@ First grouping matches the variable name.  This is upto and including the `='
 sign.  See `sh-feature'."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice regexp
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)
 
 
@@ -639,9 +633,7 @@ Note that on some systems not all builtins are available or some are
 implemented as aliases.  See `sh-feature'."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (repeat string)
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)
 
 
@@ -663,9 +655,7 @@ system, the distinction here has been based on whether they influence the
 flow of control or syntax.  See `sh-feature'."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (repeat string)
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)
 
 
@@ -702,9 +692,7 @@ flow of control or syntax.  See `sh-feature'."
 See `sh-feature'."
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (repeat string)
-                              (cons :format "Evaluate: %v"
-                                    (const :format "" eval)
-                                    sexp))))
+                              (sexp :format "Evaluate: %v"))))
   :group 'sh-script)