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
4d1f43c0
Commit
4d1f43c0
authored
Mar 07, 1993
by
Richard M. Stallman
Browse files
(check_mark): Error if mark is not active.
parent
a3c44b14
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/callint.c
src/callint.c
+6
-4
No files found.
src/callint.c
View file @
4d1f43c0
/* Call a Lisp function interactively.
Copyright (C) 1985, 1986,
1992,
1993 Free Software Foundation, Inc.
Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -69,9 +69,9 @@ c -- Character.\n\
C -- Command name: symbol with interactive function definition.\n\
d -- Value of point as number. Does not do I/O.\n\
D -- Directory name.\n\
e --
Event that invoked this command (value of `last-nonmenu-event')
.\n\
This skips events without parameters
.\n\
If used more than once, the Nth 'e' returns the Nth parameterized event
.\n\
e --
Parametrized event (i.e., one that's a list) that invoked this command
.\n\
If used more than once, the Nth `e' returns the Nth parameterized event
.\n\
This skips events that are integers or symbols
.\n\
f -- Existing file name.\n\
F -- Possibly nonexistent file name.\n\
k -- Key sequence (string).\n\
...
...
@@ -141,6 +141,8 @@ check_mark ()
Lisp_Object
tem
=
Fmarker_buffer
(
current_buffer
->
mark
);
if
(
NILP
(
tem
)
||
(
XBUFFER
(
tem
)
!=
current_buffer
))
error
(
"The mark is not set now"
);
if
(
NILP
(
current_buffer
->
mark_active
))
error
(
"The mark is not active now"
);
}
...
...
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