DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦6746dfe27⟧ TextFile

    Length: 467 (0x1d3)
    Types: TextFile
    Names: »tex-start.el«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/lisp/tex-start.el« 

TextFile

; This file is for use by TeX82 (see man page) to allow switching to
;  Emacs at a line number given on the command line
; It assumes that it has been called by:
;	emacs -l tex-start -e startline <linenumber> <file>

(defun startline ()
  ;(setq command-line-args (cdr command-line-args))
  (find-file (car (cdr command-line-args-left)))
  (goto-char (point-min))
  (forward-line (1- (string-to-int (car command-line-args-left))))
  (setq command-line-args-left ()))