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
4809d0dd
Commit
4809d0dd
authored
May 30, 1995
by
Karl Heuer
Browse files
(frame-configuration-p): Moved here from frame.el.
parent
46be8793
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
lisp/subr.el
lisp/subr.el
+9
-0
No files found.
lisp/subr.el
View file @
4809d0dd
...
...
@@ -931,6 +931,15 @@ KEY is a string representing a sequence of keystrokes."
(
local-set-key
key
nil
))
nil
)
;; We put this here instead of in frame.el so that it's defined even on
;; systems where frame.el isn't loaded.
(
defun
frame-configuration-p
(
object
)
"Return non-nil if OBJECT seems to be a frame configuration.
Any list whose car is `frame-configuration' is assumed to be a frame
configuration."
(
and
(
consp
object
)
(
eq
(
car
object
)
'frame-configuration
)))
;; now in fns.c
;(defun nth (n list)
; "Returns the Nth element of LIST.
...
...
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