]> git.eshelyaron.com Git - emacs.git/commitdiff
(local-variables-section): Deleted.
authorRichard M. Stallman <rms@gnu.org>
Sun, 16 Jun 1996 23:30:31 +0000 (23:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 16 Jun 1996 23:30:31 +0000 (23:30 +0000)
lisp/skeleton.el

index 399aead1dba85ec5f9ed5827cb6cb9c5b865e9bb..317410b6219d748ae6e62c9ef6bb7f861154170a 100644 (file)
@@ -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)
 \f
 ;; Variables and command for automatically inserting pairs like () or "".