Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!ncar!noao!asuvax!mcdphx!rave.UUCP!lynn From: lynn@rave.UUCP (Lynn D. Newton) Newsgroups: comp.emacs Subject: Re: Line numbers Keywords: emacs, line numbers Message-ID: <10801@mcdphx.phx.mcd.mot.com> Date: 27 Apr 89 23:54:12 GMT References: <1824@uop.edu> Sender: listen@mcdphx.phx.mcd.mot.com Reply-To: lynn@rave.UUCP (Lynn D. Newton) Organization: Motorola Microcomputer Division, Tempe, Az. Lines: 17 In article <1824@uop.edu> jeff@uop.edu (Jeff Ferguson) writes: > > Hi kids, > > Is there any way to go to a specific line number? When my >compiler tells me there is an error on line 33, I would like to know >where line 33 is. I have looked everywhere but I cannot find what I >want. Thank you for any help you can provide. > Use goto-line. You can bind it to a function key or C-c g or something. It prompts you for the line number. If you are using emacs to compile (I have compile bound to C-c C-c), then errors are output in the *compilation* buffer. To find errors listed in that buffer, execute next-error, usually bound to C-x ` (backquote) which automatically takes you to the point of the error, even when you use multiple files.