Changeset 6775


Ignore:
Timestamp:
Jun 20, 2007, 11:34:34 AM (17 years ago)
Author:
Gary Byers
Message:

Remove TIME macro call.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ide-1.0/ccl/hemlock/src/morecoms.lisp

    r6755 r6775  
    435435  "Print info on current point position"
    436436  (declare (ignore p))
    437   (time
    438437  (let* ((point (current-point))
    439438         (current-line (mark-line point)))
    440439    (let* ((line-number (do* ((l 1 (1+ l))
    441                               (mark-line (mark-line point) (line-previous mark-line)))
     440                              (mark-line (line-previous (mark-line point)) (line-previous mark-line)))
    442441                             ((null mark-line) l)))
    443442             (charpos (mark-charpos point))
     
    446445             (size (count-characters (buffer-region (current-buffer)))))
    447446        (message "Char: ~s point = ~d of ~d(~d%) line ~d column ~d"
    448                  char abspos size (round (/ (* 100 abspos) size)) line-number charpos)))))
     447                 char abspos size (round (/ (* 100 abspos) size)) line-number charpos))))
    449448
    450449
Note: See TracChangeset for help on using the changeset viewer.