remove byte compilation warnings
Ignore-this: 628353be0d3e1d11d84fdc89f9a7690d darcs-hash:20120303194751-33bd9-5bb0c7c9e5e1312d87cd764c9cb29f48faa892aa
This commit is contained in:
parent
bd61b32e8a
commit
b09cf8da02
|
@ -403,8 +403,8 @@ to add the newline character if it is not accepted).")
|
|||
;; Highlight errors
|
||||
(let ((offsets (split-string argument "," t)))
|
||||
(while offsets
|
||||
(let ((a (string-to-int (car offsets)))
|
||||
(b (string-to-int (car (cdr offsets)))))
|
||||
(let ((a (string-to-number (car offsets)))
|
||||
(b (string-to-number (car (cdr offsets)))))
|
||||
(add-text-properties (+ utop-prompt-max a) (+ utop-prompt-max b) '(face utop-error))
|
||||
(setq offsets (cdr (cdr offsets))))))
|
||||
;; Make everything read-only
|
||||
|
|
Loading…
Reference in New Issue