• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/textmodes/

Lines Matching +defs:first +defs:line +defs:prefix

47   :prefix "tex-"
52 :prefix "tex-"
57 :prefix "tex-"
77 (defcustom tex-first-line-header-regexp nil
78 "Regexp for matching a first line which `tex-region' should include.
80 if it matches the first line of the file,
81 `tex-region' always includes the first line in the TeX run."
184 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
195 would tell \\[tex-print] with a prefix argument to ask you which printer to
492 ;; match the local line, but defer-contextually will
634 ;; preceding line, so things gets screwed every time the previous
635 ;; line is re-font-locked on its own.
685 END is the position of the first delimiter after \verb."
823 (beginning-of-line)
915 Alternative command string used by \\[tex-print] (when given a prefix
961 Alternative command string used by \\[tex-print] (when given a prefix
977 ;; A line containing just $$ is treated as a paragraph separator.
978 ;; A line starting with $$ starts a paragraph,
1006 (set (make-local-variable 'indent-line-function) 'latex-indent)
1043 Alternative command string used by \\[tex-print] (when given a prefix
1061 ;; A line containing just $$ is treated as a paragraph separator.
1064 ;; A line starting with $$ starts a paragraph,
1135 \(normally '') depending on the context. With prefix argument, always
1146 (self-insert-command (prefix-numeric-value arg))
1155 on the line for the invalidity you want to see."
1180 (let* ((end (line-beginning-position 2))
1182 (beginning-of-line)
1184 ;; Keep track of line number as we scan,
1197 ;; Skip "Mismatches:" header line.
1198 (forward-line 1)
1255 A prefix arg inhibits the checking."
1273 ;; in LaTeX mode. Its job is to prevent line-breaking inside
1282 (beginning-of-line)
1320 Puts point on a blank line between them."
1707 (defsubst* tex-string-prefix-p (str1 str2)
1708 "Return non-nil if STR1 is a prefix of STR2"
1724 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1733 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1875 ;; If no command seems to be applicable, arbitrarily pick the first one.
2013 since TeX does not put file names and line numbers on the same line as
2054 (progn (goto-line linenum) (setq last-position nil))
2056 (forward-line (- linenum last-linenum)))
2057 ;; first try a forward search for the error text,
2095 The header must start in the first 100 lines of the buffer.
2123 (forward-line 100)
2129 ;; Maybe copy first line, such as `\input texinfo', to temp file.
2130 (and tex-first-line-header-regexp
2131 (looking-at tex-first-line-header-regexp)
2133 (progn (forward-line 1)
2142 (beginning-of-line)
2146 (forward-line 1)
2242 The last line of the buffer is displayed on
2243 line LINE of the window, or centered if LINE is nil."
2255 (prefix-numeric-value linenum)
2260 Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
2305 Pascal-based TeX scans for the first period, C TeX uses the last.
2312 ;; The first-period split can get fooled when two files
2323 ;; Not found, so split on first period.
2375 (if (and (eq (get-text-property (line-beginning-position) 'face)
2382 (beginning-of-line)
2386 (indent-line-to indent)
2387 (save-excursion (indent-line-to indent)))))))
2397 ;; Stick the first line at column 0.
2398 (and (= (point-min) (line-beginning-position)) 0)
2427 ((= (point-min) pos) 0) ; We're really just indenting the first line.
2434 ;; that the macro is at the beginning of a line.
2446 ;; Align with the first element after the open-paren.
2448 ;; We're the first element after a hanging brace.
2455 ;; We're now at the "beginning" of a line.
2466 ;; Can't be an arg if there's an empty line inbetween.
2468 ;; If the first char was not an open-paren, there's
2473 (if (< (line-end-position)
2476 ;; we're indenting the first argument.
2483 (if (eq (char-after (line-beginning-position)) ?\%)
2488 (if (= (1+ (line-beginning-position)) (match-beginning 1))
2495 (let ((end (line-end-position)))