]> git.eshelyaron.com Git - emacs.git/commitdiff
(calc-user-define-edit): Add local variable.
authorJay Belanger <jay.p.belanger@gmail.com>
Sat, 19 Feb 2005 20:01:01 +0000 (20:01 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Sat, 19 Feb 2005 20:01:01 +0000 (20:01 +0000)
(calc-edit-top): Move declaration to earlier in file.
(calc-edit-macro-repeats): Add local variables.

lisp/calc/calc-prog.el

index 640fa5b665cfe1e3197cfe5975e97d6cb1abbb83..05ec668cce9e3d6ea2f70b1eca96283da0c88ddd 100644 (file)
 (defun calc-user-define-edit ()
   (interactive)  ; but no calc-wrapper!
   (message "Edit definition of command: z-")
-  (let* ((key (read-char))
+  (let* (cmdname
+         (key (read-char))
         (def (or (assq key (calc-user-key-map))
                  (assq (upcase key) (calc-user-key-map))
                  (assq (downcase key) (calc-user-key-map))
 
 ;; Formatting the macro buffer
 
+(defvar calc-edit-top)
+
 (defun calc-edit-macro-repeats ()
   (goto-char calc-edit-top)
   (while
       (re-search-forward "^\\([0-9]+\\)\\*" nil t)
-    (setq num (string-to-int (match-string 1)))
-    (setq line (buffer-substring (point) (line-end-position)))
-    (goto-char (line-beginning-position))
-    (kill-line 1)
-    (while (> num 0)
-      (insert line "\n")
-      (setq num (1- num)))))
+    (let ((num (string-to-int (match-string 1)))
+          (line (buffer-substring (point) (line-end-position))))
+      (goto-char (line-beginning-position))
+      (kill-line 1)
+      (while (> num 0)
+        (insert line "\n")
+        (setq num (1- num))))))
 
 (defun calc-edit-macro-adjust-buffer ()
   (calc-edit-macro-repeats)
     (delete-char 3)
     (insert "<return>")))
 
-(defvar calc-edit-top)
 (defun calc-edit-macro-finish-edit (cmdname key)
   "Finish editing a Calc macro.
 Redefine the corresponding command."