aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-10-28 17:39:49 +0000
committerDan Nicolaescu2007-10-28 17:39:49 +0000
commita7f58f4be274cdabd21419392c1a6ba54661cd2c (patch)
tree4a0e723d4711748af3515a198e94a708ede31ef5
parentc48254fbbfb493a29def89154bd43ca6923fdf2a (diff)
downloademacs-a7f58f4be274cdabd21419392c1a6ba54661cd2c.tar.gz
emacs-a7f58f4be274cdabd21419392c1a6ba54661cd2c.zip
* cus-edit.el (custom-browse-insert-prefix):
* emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-edit.el2
-rw-r--r--lisp/emulation/edt.el2
3 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 30bdbefd98e..f8c4831ae60 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-28 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * cus-edit.el (custom-browse-insert-prefix):
4 * emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
5
12007-10-28 Juanma Barranquero <lekktu@gmail.com> 62007-10-28 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * server.el (server-process-filter): Fix typo in docstring. 8 * server.el (server-process-filter): Fix typo in docstring.
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 19098367d8f..5e398d46ccf 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1713,7 +1713,7 @@ item in another window.\n\n"))
1713(defun custom-browse-insert-prefix (prefix) 1713(defun custom-browse-insert-prefix (prefix)
1714 "Insert PREFIX. On XEmacs convert it to line graphics." 1714 "Insert PREFIX. On XEmacs convert it to line graphics."
1715 ;; Fixme: do graphics. 1715 ;; Fixme: do graphics.
1716 (if nil ; (string-match "XEmacs" emacs-version) 1716 (if nil ; (featurep 'xemacs)
1717 (progn 1717 (progn
1718 (insert "*") 1718 (insert "*")
1719 (while (not (string-equal prefix "")) 1719 (while (not (string-equal prefix ""))
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index bff1a583586..3ea7ebb5b12 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -325,7 +325,7 @@ This means that an edt-user.el file was found in the user's `load-path'.")
325 "Non-nil if we are running GNU Emacs or XEmacs version 19, or higher.") 325 "Non-nil if we are running GNU Emacs or XEmacs version 19, or higher.")
326 326
327(defconst edt-x-emacs19-p 327(defconst edt-x-emacs19-p
328 (and edt-emacs19-p (string-match "XEmacs" emacs-version)) 328 (and edt-emacs19-p (featurep 'xemacs))
329 "Non-nil if we are running XEmacs version 19, or higher.") 329 "Non-nil if we are running XEmacs version 19, or higher.")
330 330
331(defconst edt-gnu-emacs19-p (and edt-emacs19-p (not edt-x-emacs19-p)) 331(defconst edt-gnu-emacs19-p (and edt-emacs19-p (not edt-x-emacs19-p))