cmake-mode.el: Avoid using beginning-of-buffer

This should not be used from lisp programs.  Use the replacement
suggested by the doc: (goto-char (point-min))
This commit is contained in:
Philipp Möller 2014-01-28 17:53:29 +01:00 committed by Brad King
parent 2dfb517f73
commit fbc3a6f33e
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ set the path with these commands:
(if (save-excursion
(beginning-of-line)
(let ((parse-end (point)))
(beginning-of-buffer)
(goto-char (point-min))
(nth 3 (parse-partial-sexp (point) parse-end))
)
)