diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-17 23:08:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-17 23:08:33 +0000 |
commit | ea39159ea2d6848263f4ec853c1b959745094bc8 (patch) | |
tree | d4e21f74f20d8c03d10eff032b03ea26b7bf3e2c | |
parent | 9b0ffdac4b452ea635dae7ea6e34300981bbd5a0 (diff) | |
download | emacs-ea39159ea2d6848263f4ec853c1b959745094bc8.tar.gz |
Remove all menu-enable properties except for sh-case.
-rw-r--r-- | lisp/progmodes/sh-script.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 2127b4fd64e..78fbb0a9599 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -1249,7 +1249,7 @@ t means to return a list of all possible completions of STRING. "repeat " str "; do"\n > _ \n < "done")) -(put 'sh-repeat 'menu-enable '(sh-feature sh-repeat)) +;;;(put 'sh-repeat 'menu-enable '(sh-feature sh-repeat)) @@ -1259,7 +1259,7 @@ t means to return a list of all possible completions of STRING. "select " str " in " _ "; do" \n > ?$ str \n < "done")) -(put 'sh-select 'menu-enable '(sh-feature sh-select)) +;;;(put 'sh-select 'menu-enable '(sh-feature sh-select)) @@ -1301,7 +1301,7 @@ t means to return a list of all possible completions of STRING. "until " str "; do" \n > _ \n < "done")) -(put 'sh-until 'menu-enable '(sh-feature sh-until)) +;;;(put 'sh-until 'menu-enable '(sh-feature sh-until)) |