emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103866: * lisp/man.el (Man-page-head


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103866: * lisp/man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
Date: Thu, 07 Apr 2011 20:30:26 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103866
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2011-04-07 20:30:26 -0700
message:
  * lisp/man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
modified:
  lisp/ChangeLog
  lisp/man.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-04-08 03:26:40 +0000
+++ b/lisp/ChangeLog    2011-04-08 03:30:26 +0000
@@ -1,5 +1,7 @@
 2011-04-08  Glenn Morris  <address@hidden>
 
+       * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
+
        * net/browse-url.el (browse-url-firefox):
        Test system-type, not system-configuration.
 

=== modified file 'lisp/man.el'
--- a/lisp/man.el       2011-03-02 08:31:47 +0000
+++ b/lisp/man.el       2011-04-08 03:30:26 +0000
@@ -254,8 +254,7 @@
   "Regular expression describing a manpage section within parentheses.")
 
 (defvar Man-page-header-regexp
-  (if (and (string-match "-solaris2\\." system-configuration)
-          (not (string-match "-solaris2\\.[123435]$" system-configuration)))
+  (if (string-match "-solaris2\\." system-configuration)
       (concat "^[-A-Za-z0-9_].*[ \t]\\(" Man-name-regexp
              "(\\(" Man-section-regexp "\\))\\)$")
     (concat "^[ \t]*\\(" Man-name-regexp


reply via email to

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