home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-18.59-src.tgz / emacs-18.59-src.tar / fsf / emacs18 / lisp / tex-start.el < prev    next >
Lisp/Scheme  |  1996-09-28  |  467b  |  12 lines

  1. ; This file is for use by TeX82 (see man page) to allow switching to
  2. ;  Emacs at a line number given on the command line
  3. ; It assumes that it has been called by:
  4. ;    emacs -l tex-start -e startline <linenumber> <file>
  5.  
  6. (defun startline ()
  7.   ;(setq command-line-args (cdr command-line-args))
  8.   (find-file (car (cdr command-line-args-left)))
  9.   (goto-char (point-min))
  10.   (forward-line (1- (string-to-int (car command-line-args-left))))
  11.   (setq command-line-args-left ()))
  12.