Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

VAXTPU LINE_END — VMS 5.2

 LINE_END

    Returns a pattern that matches the end-of-line condition.

 Syntax

    pattern := LINE_END

 Example

    The following procedure moves the active editing position to the end of
    the line, unless you are already there:

    PROCEDURE user_end_of_line
       eol_pattern := LINE_END;
       eol_range := SEARCH (eol_pattern, FORWARD);
       IF eol_range <> 0
          THEN POSITION (eol_range);
       ENDIF;
    ENDPROCEDURE;

 Related topics

    END_OF    LINE_BEGIN

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026