Update of /project/climacs/cvsroot/climacs In directory clnet:/tmp/cvs-serv19718
Modified Files: java-syntax-commands.lisp Log Message: Fixed undeclared variable error for a Java syntax command.
--- /project/climacs/cvsroot/climacs/java-syntax-commands.lisp 2007/12/08 08:55:06 1.3 +++ /project/climacs/cvsroot/climacs/java-syntax-commands.lisp 2007/12/21 11:22:50 1.4 @@ -67,10 +67,10 @@ (make-buffer-mark (current-buffer) offset2 :right) #'(lambda (mark) (syntax-line-indentation - mark (tab-space-count (current-view)) syntax)) + mark (tab-space-count (current-view)) (current-syntax))) fill-column (tab-space-count (current-view)) - syntax + (current-syntax) t)))))
(define-command (com-indent-expression :name t :command-table java-table) @@ -131,4 +131,4 @@
(set-key `(com-transpose-expressions) 'java-table - '((#\t :control :meta))) \ No newline at end of file + '((#\t :control :meta)))