HomeSort by: relevance | last modified time | path
    Searched defs:syntable (Results 1 - 6 of 6) sorted by relevancy

  /xsrc/external/mit/xedit/dist/lisp/
xedit.h 82 LispObj *syntable; /* Syntax-table the cursor is located */ member in struct:_XeditLispData
xedit.c 284 Osyntable_indent = STATIC_ATOM("SYNTABLE-INDENT");
571 LispObj *result, *syntable; local
668 syntable = RETURN(0);
670 syntable = NIL;
763 data->syntable = syntable;
765 if (indent && syntable != NIL && !lisp__running &&
790 indentp = APPLY1(Osyntable_indent, data->syntable);
794 APPLY2(indentp, data->syntax, data->syntable);
  /xsrc/external/mit/xedit/dist/lisp/modules/progmodes/
sgml.lsp 109 ;; The macros sgml-syntoken and sgml-syntable allows creating rules for
142 (defmacro sgml-syntable (name property)
148 (syntable label *prop-preprocessor* nil
157 (syntable nested-label ,property nil
171 (defmacro sgml-syntable-simple (name property)
177 (syntable label *prop-preprocessor* nil
186 (syntable nested-label ,property nil
218 (defmacro sgml-syntable-short (name property)
219 `(syntable (intern (string-concat ,name "/") 'keyword) ,property nil
238 (syntable :comment *prop-comment* ni
    [all...]
man.lsp 92 (defmacro man-syntable (pattern property)
93 `(syntable (intern (string ,pattern) 'keyword) ,property nil
103 (man-syntable "b|br|nm" *prop-man-b*)
106 (man-syntable "i|ir|ri|ip" *prop-man-i*)
109 (man-syntable "th|dt" *prop-man-th*)
112 (man-syntable "sh" *prop-man-sh*)
115 (man-syntable "ss" *prop-man-ss*)
118 (man-syntable "bi" *prop-man-bi*)
125 (syntable :extras nil nil
143 (syntable :i *prop-man-i* ni
    [all...]
html.lsp 155 (defmacro html-syntable (name property)
159 (syntable label *prop-html-tag* nil
162 (syntable nested-label ,property nil
172 (syntable :comment *prop-html-comment* nil
190 (syntable :unbalanced *prop-html-unknown* nil
204 (html-syntable "b" *prop-html-bold*)
206 (html-syntable "strong" *prop-html-bold*)
209 (html-syntable "i" *prop-html-italic*)
211 (html-syntable "em" *prop-html-italic*)
213 (html-syntable "address" *prop-html-italic*
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/modules/
syntax.lsp 39 syntable syntoken synaugment
200 (syntable ,label ,property ,indent ,@lists)
304 (defstruct syntable function
309 tables ;; A list of syntable structures.
322 ;; Just call make-syntable, but sorts the elements by type, allowing
327 (defun syntable (label default-property indent &rest definitions) function
331 (error "SYNTABLE: ~A is not a keyword" label)
338 (error "SYNTABLE: ~A is an invalid text property"
346 ;; now the arguments to make-syntable.
357 (syntable-p item
    [all...]

Completed in 8 milliseconds