diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-01-09 22:20:22 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-01-09 22:20:22 -0800 |
commit | 27e428e758036e68bffe737a5d361e2b426857a7 (patch) | |
tree | d127e8bae3090e2e1c1fa0127e9f09c2703fe770 /lisp/org/ob-fortran.el | |
parent | 5b43da69cbda7874f223da3063da594a7fb84218 (diff) | |
download | emacs-27e428e758036e68bffe737a5d361e2b426857a7.tar.gz |
Spelling fixes.
Diffstat (limited to 'lisp/org/ob-fortran.el')
-rw-r--r-- | lisp/org/ob-fortran.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/ob-fortran.el b/lisp/org/ob-fortran.el index b6305c42769..46d2269a1d7 100644 --- a/lisp/org/ob-fortran.el +++ b/lisp/org/ob-fortran.el @@ -110,7 +110,7 @@ it's header arguments." "Wrap body in a \"program ... end program\" block if none exists." (if (string-match "^[ \t]*program[ \t]*.*" (capitalize body)) (let ((vars (mapcar #'cdr (org-babel-get-header params :var)))) - (if vars (error "cannot use :vars if 'program' statment is present")) + (if vars (error "cannot use :vars if 'program' statement is present")) body) (format "program main\n%s\nend program main\n" body))) @@ -127,7 +127,7 @@ support for sessions" ;; helper functions (defun org-babel-fortran-var-to-fortran (pair) - "fortranonvert an elisp val into a string of fortran code specifying a var + "Convert an elisp val into a string of fortran code specifying a var of the same value." ;; TODO list support (let ((var (car pair)) |