emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/font-lock.el


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/font-lock.el
Date: Mon, 06 Jun 2005 08:02:36 -0400

Index: emacs/lisp/font-lock.el
diff -c emacs/lisp/font-lock.el:1.261 emacs/lisp/font-lock.el:1.262
*** emacs/lisp/font-lock.el:1.261       Sun Jun  5 03:37:59 2005
--- emacs/lisp/font-lock.el     Mon Jun  6 12:02:35 2005
***************
*** 905,911 ****
                        'font-lock-after-change-function t)
           (set (make-local-variable 'font-lock-fontify-buffer-function)
                'jit-lock-refontify)
!          ;; Don't fontify eagerly (and don't abort is the buffer is large).
           (set (make-local-variable 'font-lock-fontified) t)
           ;; Use jit-lock.
           (jit-lock-register 'font-lock-fontify-region
--- 905,911 ----
                        'font-lock-after-change-function t)
           (set (make-local-variable 'font-lock-fontify-buffer-function)
                'jit-lock-refontify)
!          ;; Don't fontify eagerly (and don't abort if the buffer is large).
           (set (make-local-variable 'font-lock-fontified) t)
           ;; Use jit-lock.
           (jit-lock-register 'font-lock-fontify-region
***************
*** 1826,1831 ****
--- 1826,1842 ----
    "Font Lock mode face used to highlight preprocessor directives."
    :group 'font-lock-highlighting-faces)
  
+ (defface font-lock-regexp-backslash
+   '((((class color) (min-colors 16)) :inherit escape-glyph)
+     (t :inherit bold))
+   "Font Lock mode face used to highlight a backslash in Lisp regexps."
+   :group 'font-lock-highlighting-faces)
+ 
+ (defface font-lock-regexp-backslash-construct
+   '((t :inherit bold))
+   "Font Lock mode face used to highlight `\' constructs in Lisp regexps."
+   :group 'font-lock-highlighting-faces)
+ 
  ;;; End of Colour etc. support.
  
  ;;; Menu support.
***************
*** 2019,2025 ****
       `(;; Control structures.  Emacs Lisp forms.
         (,(concat
          "(" (regexp-opt
!              '("cond" "if" "while" "let" "let*"
                 "prog" "progn" "progv" "prog1" "prog2" "prog*"
                 "inline" "lambda" "save-restriction" "save-excursion"
                 "save-window-excursion" "save-selected-window"
--- 2030,2036 ----
       `(;; Control structures.  Emacs Lisp forms.
         (,(concat
          "(" (regexp-opt
!              '("cond" "if" "while" "while-no-input" "let" "let*"
                 "prog" "progn" "progv" "prog1" "prog2" "prog*"
                 "inline" "lambda" "save-restriction" "save-excursion"
                 "save-window-excursion" "save-selected-window"
***************
*** 2075,2090 ****
         ;; Make regexp grouping constructs bold, so they stand out, but only
         ;; in strings.
         ((lambda (bound)
!         (if (re-search-forward "\\(\\\\\\\\\\)\\([(|)]\\)\\(\\?:\\)?" bound t)
               (let ((face (get-text-property (1- (point)) 'face)))
                 (if (listp face)
                     (memq 'font-lock-string-face face)
                   (eq 'font-lock-string-face face)))))
!         ;; Should we introduce a lowlight face for this?
!         ;; Ideally that would retain the color, dimmed.
!       (1 font-lock-comment-face prepend)
!       (2 'bold prepend)
!       (3 font-lock-type-face prepend t))
         ;; Underline innermost grouping, so that you can more easily see what
         ;; belongs together.  2005-05-12: Font-lock can go into an
         ;; unbreakable endless loop on this -- something's broken.
--- 2086,2099 ----
         ;; Make regexp grouping constructs bold, so they stand out, but only
         ;; in strings.
         ((lambda (bound)
!         (if (re-search-forward "\\(\\\\\\\\\\)\\((\\(?:?:\\)?\\|[|)]\\)" 
bound t)
               (let ((face (get-text-property (1- (point)) 'face)))
                 (if (listp face)
                     (memq 'font-lock-string-face face)
                   (eq 'font-lock-string-face face)))))
!       (1 'font-lock-regexp-backslash prepend)
!       (2 'font-lock-regexp-backslash-construct prepend))
! 
         ;; Underline innermost grouping, so that you can more easily see what
         ;; belongs together.  2005-05-12: Font-lock can go into an
         ;; unbreakable endless loop on this -- something's broken.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]