summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-16 23:30:31 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-16 23:30:31 +0000
commit2cc719cd737b0846848bd681cfbccd1e23964393 (patch)
treec41bf22b284c9f09d83b4bc85b5d9853a3b62873
parent17554225e6fa1291ac0b2608889a56ef02057fbf (diff)
downloademacs-2cc719cd737b0846848bd681cfbccd1e23964393.tar.gz
(local-variables-section): Deleted.
-rw-r--r--lisp/skeleton.el52
1 files changed, 26 insertions, 26 deletions
diff --git a/lisp/skeleton.el b/lisp/skeleton.el
index 399aead1dba..317410b6219 100644
--- a/lisp/skeleton.el
+++ b/lisp/skeleton.el
@@ -382,32 +382,32 @@ automatically, and you are prompted to fill in the variable parts.")))
;; Maybe belongs into simple.el or elsewhere
-(define-skeleton local-variables-section
- "Insert a local variables section. Use current comment syntax if any."
- ()
- '(save-excursion
- (if (re-search-forward page-delimiter nil t)
- (error "Not on last page.")))
- comment-start "Local Variables:" comment-end \n
- comment-start "mode: "
- (completing-read "Mode: " obarray
- (lambda (symbol)
- (if (commandp symbol)
- (string-match "-mode$" (symbol-name symbol))))
- t)
- & -5 | '(kill-line 0) & -1 | comment-end \n
- ( (completing-read (format "Variable, %s: " skeleton-subprompt)
- obarray
- (lambda (symbol)
- (or (eq symbol 'eval)
- (user-variable-p symbol)))
- t)
- comment-start str ": "
- (read-from-minibuffer "Expression: " nil read-expression-map nil
- 'read-expression-history) | _
- comment-end \n)
- resume:
- comment-start "End:" comment-end)
+;;;(define-skeleton local-variables-section
+;;; "Insert a local variables section. Use current comment syntax if any."
+;;; ()
+;;; '(save-excursion
+;;; (if (re-search-forward page-delimiter nil t)
+;;; (error "Not on last page.")))
+;;; comment-start "Local Variables:" comment-end \n
+;;; comment-start "mode: "
+;;; (completing-read "Mode: " obarray
+;;; (lambda (symbol)
+;;; (if (commandp symbol)
+;;; (string-match "-mode$" (symbol-name symbol))))
+;;; t)
+;;; & -5 | '(kill-line 0) & -1 | comment-end \n
+;;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
+;;; obarray
+;;; (lambda (symbol)
+;;; (or (eq symbol 'eval)
+;;; (user-variable-p symbol)))
+;;; t)
+;;; comment-start str ": "
+;;; (read-from-minibuffer "Expression: " nil read-expression-map nil
+;;; 'read-expression-history) | _
+;;; comment-end \n)
+;;; resume:
+;;; comment-start "End:" comment-end)
;; Variables and command for automatically inserting pairs like () or "".