Changeset 4140 for trunk/lisp/progmodes/gud.el
- Timestamp:
- 08/10/06 11:19:54 (2 years ago)
- Files:
-
- trunk/lisp/progmodes/gud.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/progmodes/gud.el
r4111 r4140 3181 3181 '(("^document\\s-.*\\(\n\\)" (1 "< b")) 3182 3182 ;; It would be best to change the \n in front, but it's more difficult. 3183 ("^en\\(d\\)\\>" (1 "> b")))) 3183 ("^end\\>" 3184 (0 (progn 3185 (unless (eq (match-beginning 0) (point-min)) 3186 (put-text-property (1- (match-beginning 0)) (match-beginning 0) 3187 'syntax-table (eval-when-compile 3188 (string-to-syntax "> b"))) 3189 (put-text-property (1- (match-beginning 0)) (match-end 0) 3190 'font-lock-multiline t) 3191 nil)))))) 3184 3192 3185 3193 (defun gdb-script-font-lock-syntactic-face (state)
