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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
4c390850
Commit
4c390850
authored
Nov 09, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc fixes.
parent
2950a20e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/editfns.c
src/editfns.c
+6
-6
No files found.
src/editfns.c
View file @
4c390850
...
@@ -360,7 +360,7 @@ DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0,
...
@@ -360,7 +360,7 @@ DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0,
DEFUN
(
"point-min"
,
Fpoint_min
,
Spoint_min
,
0
,
0
,
0
,
DEFUN
(
"point-min"
,
Fpoint_min
,
Spoint_min
,
0
,
0
,
0
,
"Return the minimum permissible value of point in the current buffer.
\n
\
"Return the minimum permissible value of point in the current buffer.
\n
\
This is 1, unless
a clipping restriction
is in effect."
)
This is 1, unless
narrowing (a buffer restriction)
is in effect."
)
()
()
{
{
Lisp_Object
temp
;
Lisp_Object
temp
;
...
@@ -370,7 +370,7 @@ This is 1, unless a clipping restriction is in effect.")
...
@@ -370,7 +370,7 @@ This is 1, unless a clipping restriction is in effect.")
DEFUN
(
"point-min-marker"
,
Fpoint_min_marker
,
Spoint_min_marker
,
0
,
0
,
0
,
DEFUN
(
"point-min-marker"
,
Fpoint_min_marker
,
Spoint_min_marker
,
0
,
0
,
0
,
"Return a marker to the minimum permissible value of point in this buffer.
\n
\
"Return a marker to the minimum permissible value of point in this buffer.
\n
\
This is the beginning, unless
a clipping restriction
is in effect."
)
This is the beginning, unless
narrowing (a buffer restriction)
is in effect."
)
()
()
{
{
return
buildmark
(
BEGV
);
return
buildmark
(
BEGV
);
...
@@ -378,8 +378,8 @@ This is the beginning, unless a clipping restriction is in effect.")
...
@@ -378,8 +378,8 @@ This is the beginning, unless a clipping restriction is in effect.")
DEFUN
(
"point-max"
,
Fpoint_max
,
Spoint_max
,
0
,
0
,
0
,
DEFUN
(
"point-max"
,
Fpoint_max
,
Spoint_max
,
0
,
0
,
0
,
"Return the maximum permissible value of point in the current buffer.
\n
\
"Return the maximum permissible value of point in the current buffer.
\n
\
This is (1+ (buffer-size)), unless
a clipping restriction is in effect,
\n
\
This is (1+ (buffer-size)), unless
narrowing (a buffer restriction)
\n
\
in which case it is less."
)
i
s in effect, i
n which case it is less."
)
()
()
{
{
Lisp_Object
temp
;
Lisp_Object
temp
;
...
@@ -389,8 +389,8 @@ in which case it is less.")
...
@@ -389,8 +389,8 @@ in which case it is less.")
DEFUN
(
"point-max-marker"
,
Fpoint_max_marker
,
Spoint_max_marker
,
0
,
0
,
0
,
DEFUN
(
"point-max-marker"
,
Fpoint_max_marker
,
Spoint_max_marker
,
0
,
0
,
0
,
"Return a marker to the maximum permissible value of point in this buffer.
\n
\
"Return a marker to the maximum permissible value of point in this buffer.
\n
\
This is (1+ (buffer-size)), unless
a clipping restriction is in effect,
\n
\
This is (1+ (buffer-size)), unless
narrowing (a buffer restriction)
\n
\
in which case it is less."
)
i
s in effect, i
n which case it is less."
)
()
()
{
{
return
buildmark
(
ZV
);
return
buildmark
(
ZV
);
...
...
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