# HG changeset patch # User Richard M. Stallman # Date 861683842 0 # Node ID b891e41b401106cc50b742b91048fe87a0c23f69 # Parent 9fb83ef40566ea02ec81f3d7ca5f4423c2ce9013 (sh-case): Make this a simple define-skeleton as it was originally. Don't add a menu-enable property. (sh-assignment-regexp): Renamed from sh-assignment-prefix undoing a renaming made by mistake. diff -r 9fb83ef40566 -r b891e41b4011 lisp/progmodes/sh-script.el --- a/lisp/progmodes/sh-script.el Tue Apr 22 04:32:00 1997 +0000 +++ b/lisp/progmodes/sh-script.el Tue Apr 22 04:37:22 1997 +0000 @@ -322,7 +322,7 @@ :group 'sh-script) -(defcustom sh-assignment-prefix +(defcustom sh-assignment-regexp '((csh . "\\<\\([a-zA-Z0-9_]+\\)\\(\\[.+\\]\\)?[ \t]*[-+*/%^]?=") ;; actually spaces are only supported in let/(( ... )) (ksh88 . "\\<\\([a-zA-Z0-9_]+\\)\\(\\[.+\\]\\)?[ \t]*\\([-+*/%&|~^]\\|<<\\|>>\\)?=") @@ -1001,56 +1001,46 @@ ;; You are welcome to add the syntax or even completely new statements as ;; appropriate for your favorite shell. -;; This defun is the same as what define-skeleton does, -;; but by putting the data in a variable named sh-case, -;; we make it possible to use that variable in the menu-enable property. -(defun sh-case (&optional str arg) - (interactive "*P\nP") - (skeleton-proxy-new sh-case str arg)) -(put 'sh-case 'menu-enable '(sh-feature sh-case)) - -(defvar sh-case - '((csh "expression: " - "switch( " str " )" \n - > "case " (read-string "pattern: ") ?: \n - > _ \n - "breaksw" \n - ( "other pattern, %s: " - < "case " str ?: \n - > _ \n - "breaksw" \n) - < "default:" \n - > _ \n - resume: - < < "endsw") - (es) - (rc "expression: " - "switch( " str " ) {" \n - > "case " (read-string "pattern: ") \n +(define-skeleton sh-case + "Insert a case/switch statement. See `sh-feature'." + ((csh "expression: " + "switch( " str " )" \n + > "case " (read-string "pattern: ") ?: \n > _ \n + "breaksw" \n ( "other pattern, %s: " - < "case " str \n - > _ \n) - < "case *" \n + < "case " str ?: \n + > _ \n + "breaksw" \n) + < "default:" \n > _ \n resume: - < < ?}) - (sh "expression: " - "case " str " in" \n - > (read-string "pattern: ") ?\) \n - > _ \n - ";;" \n - ( "other pattern, %s: " - < str ?\) \n - > _ \n - ";;" \n) - < "*)" \n - > _ \n - resume: - < < "esac")) - "Insert a case/switch statement. See `sh-feature'.") - - + < < "endsw") + (es) + (rc "expression: " + "switch( " str " ) {" \n + > "case " (read-string "pattern: ") \n + > _ \n + ( "other pattern, %s: " + < "case " str \n + > _ \n) + < "case *" \n + > _ \n + resume: + < < ?}) + (sh "expression: " + "case " str " in" \n + > (read-string "pattern: ") ?\) \n + > _ \n + ";;" \n + ( "other pattern, %s: " + < str ?\) \n + > _ \n + ";;" \n) + < "*)" \n + > _ \n + resume: + < < "esac"))) (define-skeleton sh-for "Insert a for loop. See `sh-feature'."