emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/textmodes/nroff-mode.el


From: Werner LEMBERG
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/nroff-mode.el
Date: Fri, 03 Feb 2006 21:13:09 +0000

Index: emacs/lisp/textmodes/nroff-mode.el
diff -u emacs/lisp/textmodes/nroff-mode.el:1.29 
emacs/lisp/textmodes/nroff-mode.el:1.30
--- emacs/lisp/textmodes/nroff-mode.el:1.29     Thu Nov 17 07:40:11 2005
+++ emacs/lisp/textmodes/nroff-mode.el  Fri Feb  3 21:13:08 2006
@@ -1,7 +1,7 @@
 ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
 
 ;; Copyright (C) 1985, 1986, 1994, 1995, 1997, 2001, 2002, 2003,
-;;   2004, 2005 Free Software Foundation, Inc.
+;;   2004, 2005, 2006 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: wp
@@ -86,14 +86,14 @@
    ;; variants).  This won't currently do groff's \A'foo' and
    ;; the like properly.  One might expect it to highlight an escape's
    ;; arguments in common cases, like \f.
-   (concat "\\\\"                     ; backslash
-         "\\("                        ; followed by various possibilities
-         (mapconcat 'identity
-                    '("[f*n]*\\[.+]"  ; some groff extensions
-                      "(.."           ; two chars after (
-                      "[^(\"]"        ; single char escape
-                      ) "\\|")
-         "\\)")
+   (concat "\\\\"                    ; backslash
+        "\\("                        ; followed by various possibilities
+        (mapconcat 'identity
+                   '("[f*n]*\\[.+?]" ; some groff extensions
+                     "(.."           ; two chars after (
+                     "[^(\"]"        ; single char escape
+                     ) "\\|")
+        "\\)")
    )
   "Font-lock highlighting control in `nroff-mode'."
   :group 'nroff




reply via email to

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