• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/progmodes/

Lines Matching defs:continuation

65 ;; * Even smarter indentation of continuation lines.
115 (defcustom dcl-continuation-offset 6
116 "*Number of columns to indent a continuation line in DCL.
117 A continuation line is a line that follows a line ending with `-'.
197 "*Function to calculate indentation for a continuation line.
218 Data lines (i.e. lines not part of a command line or continuation line) are
389 A line starting with $, optionally followed by continuation lines,
391 A continuation line is any characters followed by `-',
400 A line starting with $, optionally followed by continuation lines,
402 A continuation line is any characters followed by `-',
423 (dcl-continuation-offset curval)
507 dcl-continuation-offset
632 (make-local-variable 'dcl-continuation-offset)
884 - for a continuation line
902 ;; Check if it's a continuation line
905 ;; If we're at the beginning of the buffer it can't be a continuation
951 (message "continuation line"))
1154 ;; Look at comment, continuation character, command but not label
1213 "Indent continuation lines to align with words on previous line.
1215 Indent continuation lines to a position relative to preceding
1219 indentation of continuation lines.
1284 (defun dcl-calc-continuation-indent ()
1286 The line is known to be a continuation line.
1296 ;; Huh? a continuation line first in the buffer??
1327 ;; Look at comment, continuation character, command but not label
1338 dcl-continuation-offset))
1339 (+ indent dcl-continuation-offset))
1371 (defun dcl-indent-continuation-line ()
1372 "Indent a line known to be a continuation line.
1376 (let ((indent (dcl-calc-continuation-indent)))
1405 (dcl-indent-continuation-line))
1417 This includes continuation lines."
1505 Inserts continuation marks and splits character strings."
1551 Also remove the continuation mark if easily detected."
2173 only line or at the end of the last continuation line.
2175 ;; Must be at end-of-line on a command line or a continuation line
2180 ;; Next line must not be a continuation line
2189 Return t if point is on a command line or a continuation line,