comparison lisp/progmodes/flymake.el @ 111437:1b60252580de

Fix typo in previos flymake change.
author Glenn Morris <rgm@gnu.org>
date Sat, 06 Nov 2010 19:02:54 -0700
parents 810cef5c0eee
children 1441c8ae52a0
comparison
equal deleted inserted replaced
111436:606171abfda2 111437:1b60252580de
797 "Highlight line LINE-NO in current buffer. 797 "Highlight line LINE-NO in current buffer.
798 Perhaps use text from LINE-ERR-INFO-LIST to enhance highlighting." 798 Perhaps use text from LINE-ERR-INFO-LIST to enhance highlighting."
799 (goto-char (point-min)) 799 (goto-char (point-min))
800 (forward-line (1- line-no)) 800 (forward-line (1- line-no))
801 (let* ((line-beg (point-at-bol)) 801 (let* ((line-beg (point-at-bol))
802 (line-end (poin-at-eol)) 802 (line-end (point-at-eol))
803 (beg line-beg) 803 (beg line-beg)
804 (end line-end) 804 (end line-end)
805 (tooltip-text (flymake-ler-text (nth 0 line-err-info-list))) 805 (tooltip-text (flymake-ler-text (nth 0 line-err-info-list)))
806 (face nil)) 806 (face nil))
807 807