Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a7f58f4b
Commit
a7f58f4b
authored
Oct 28, 2007
by
Dan Nicolaescu
Browse files
* cus-edit.el (custom-browse-insert-prefix):
* emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
parent
c48254fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cus-edit.el
lisp/cus-edit.el
+1
-1
lisp/emulation/edt.el
lisp/emulation/edt.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a7f58f4b
2007-10-28 Dan Nicolaescu <dann@ics.uci.edu>
* cus-edit.el (custom-browse-insert-prefix):
* emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
2007-10-28 Juanma Barranquero <lekktu@gmail.com>
* server.el (server-process-filter): Fix typo in docstring.
...
...
lisp/cus-edit.el
View file @
a7f58f4b
...
...
@@ -1713,7 +1713,7 @@ item in another window.\n\n"))
(defun custom-browse-insert-prefix (prefix)
"
Insert
PREFIX.
On
XEmacs
convert
it
to
line
graphics.
"
;; Fixme: do graphics.
(if nil ; (
string-match "
XEmacs
" emacs-version
)
(if nil ; (
featurep 'xemacs
)
(progn
(insert "
*
")
(while (not (string-equal prefix ""))
...
...
lisp/emulation/edt.el
View file @
a7f58f4b
...
...
@@ -325,7 +325,7 @@ This means that an edt-user.el file was found in the user's `load-path'.")
"Non-nil if we are running GNU Emacs or XEmacs version 19, or higher."
)
(
defconst
edt-x-emacs19-p
(
and
edt-emacs19-p
(
string-match
"XEmacs"
emacs-version
))
(
and
edt-emacs19-p
(
featurep
'xemacs
))
"Non-nil if we are running XEmacs version 19, or higher."
)
(
defconst
edt-gnu-emacs19-p
(
and
edt-emacs19-p
(
not
edt-x-emacs19-p
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment