diff options
author | Colin Walters <walters@gnu.org> | 2001-11-19 07:44:56 +0000 |
---|---|---|
committer | Colin Walters <walters@gnu.org> | 2001-11-19 07:44:56 +0000 |
commit | 3132f345bc1ab68e4425178266e3d4ad1b2ccd02 (patch) | |
tree | 43339ccf578fb555b44dd0c84aa0e7b0389dc8b0 /lisp/calc/calc-prog.el | |
parent | f269b73e3ea3de8c539d544fd0310b63fc029f20 (diff) | |
download | emacs-3132f345bc1ab68e4425178266e3d4ad1b2ccd02.tar.gz |
Change all toplevel `setq' forms to `defvar' forms, and move them
before their first use. Use `when', `unless'. Remove trailing
periods from error forms. Add description and headers suggested by
Emacs Lisp coding conventions.
Diffstat (limited to 'lisp/calc/calc-prog.el')
-rw-r--r-- | lisp/calc/calc-prog.el | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/lisp/calc/calc-prog.el b/lisp/calc/calc-prog.el index cf2fc0cc5a1..160e7cfce2a 100644 --- a/lisp/calc/calc-prog.el +++ b/lisp/calc/calc-prog.el @@ -1,6 +1,9 @@ -;; Calculator for GNU Emacs, part II [calc-prog.el] +;;; calc-prog.el --- user programmability functions for Calc + ;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc. -;; Written by Dave Gillespie, daveg@synaptics.com. + +;; Author: David Gillespie <daveg@synaptics.com> +;; Maintainer: Colin Walters <walters@debian.org> ;; This file is part of GNU Emacs. @@ -19,6 +22,9 @@ ;; file named COPYING. Among other things, the copyright notice ;; and this notice must be preserved on all copies. +;;; Commentary: + +;;; Code: ;; This file is autoloaded from calc-ext.el. @@ -102,8 +108,8 @@ (calc-wrapper (calc-change-mode 'calc-timing n nil t) (message (if calc-timing - "Reporting timing of slow commands in Trail." - "Not reporting timing of commands.")))) + "Reporting timing of slow commands in Trail" + "Not reporting timing of commands")))) (defun calc-pass-errors () (interactive) @@ -116,7 +122,7 @@ (or (memq (car (car place)) '(error xxxerror)) (error "foo")) (setcar (car place) 'xxxerror)) - (error (error "The calc-do function has been modified; unable to patch.")))) + (error (error "The calc-do function has been modified; unable to patch")))) (defun calc-user-define () (interactive) @@ -1106,7 +1112,7 @@ (calc-pop-stack 1) (if (math-is-true cond) (if defining-kbd-macro - (message "If true...")) + (message "If true..")) (if defining-kbd-macro (message "Condition is false; skipping to Z: or Z] ...")) (calc-kbd-skip-to-else-if t))))) @@ -1218,7 +1224,7 @@ (null parts) (null counter) (progn - (message "Warning: Infinite loop! Not executing.") + (message "Warning: Infinite loop! Not executing") (setq rpt-count 0))) (or (not initial) dir (setq dir (math-compare final initial))) @@ -1266,9 +1272,10 @@ (let ((cond (calc-top-n 1))) (calc-pop-stack 1) (if (math-is-true cond) - (error "Keyboard macro aborted."))))) + (error "Keyboard macro aborted"))))) +(defvar calc-kbd-push-level 0) (defun calc-kbd-push (arg) (interactive "P") (calc-wrapper @@ -1324,7 +1331,6 @@ (let ((calc-kbd-push-level (1+ calc-kbd-push-level))) (message "Saving modes; type Z' to restore") (recursive-edit)))))) -(setq calc-kbd-push-level 0) (defun calc-kbd-pop () (interactive) @@ -1673,7 +1679,6 @@ - ;;;; User-programmability. ;;; Compiling Lisp-like forms to use the math library. @@ -2118,7 +2123,7 @@ (if (math-body-refers-to body 'math-break) (cons 'catch (cons '(quote math-break) (list body))) body))) - +;; (put 'math-while 'lisp-indent-hook 1) (defmacro math-for (head &rest body) (let ((body (if head @@ -2127,6 +2132,7 @@ (if (math-body-refers-to body 'math-break) (cons 'catch (cons '(quote math-break) (list body))) body))) +;; (put 'math-for 'lisp-indent-hook 1) (defun math-handle-for (head body) (let* ((var (nth 0 (car head))) @@ -2184,13 +2190,12 @@ var save-step))))))))))) - (defmacro math-foreach (head &rest body) (let ((body (math-handle-foreach head body))) (if (math-body-refers-to body 'math-break) (cons 'catch (cons '(quote math-break) (list body))) body))) - +;; (put 'math-foreach 'lisp-indent-hook 1) (defun math-handle-foreach (head body) (let ((var (nth 0 (car head))) |