Skip to content

Commit

Permalink
Fix warning in ELisp code.
Browse files Browse the repository at this point in the history
  • Loading branch information
nominolo committed May 10, 2011
1 parent d1be179 commit d3d352f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emacs/scion.el
Expand Up @@ -1789,7 +1789,8 @@ The overlay has several properties:
(progn
(find-file-other-window file)
(setq buff (find-buffer-visiting file))))
(goto-line (scion-note.line note))
(goto-char (point-min))
(forward-line (1- (scion-note.line note)))
(move-to-column (scion-note.col note))
(let ((r (scion-note.region note buff)))
(with-current-buffer buff
Expand Down

0 comments on commit d3d352f

Please sign in to comment.