Changeset 369

Show
Ignore:
Timestamp:
09/16/08 18:42:45 (4 months ago)
Author:
sergey.kol..@gmail.com
Message:

Sergey Kolos:

  • Added printing of new line after in watch macro.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • jasko.tim.lisp/src/jasko/tim/lisp/editors/actions/WatchAction.java

    r304 r369  
    1010public class WatchAction extends LispAction { 
    1111    private ILispEditor editor; 
    12     public static String macro = "(defmacro cusp-watch (x) `(progn (format t \"~a -> ~a\" ',x ,x) ,x))"; 
     12    public static String macro = "(defmacro cusp-watch (x) `(progn (format t \"~a -> ~a~%\" ',x ,x) ,x))"; 
    1313    public static String start = "(cl-user::cusp-watch "; 
    1414    public static String splitregx = "\\(cl-user::cusp-watch ";