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
394e2561
Commit
394e2561
authored
Nov 26, 2001
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(syms_of_syntax): Remove defsubr of Sdescribe_syntax.
(describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
parent
845975f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
44 deletions
+0
-44
src/syntax.c
src/syntax.c
+0
-44
No files found.
src/syntax.c
View file @
394e2561
...
...
@@ -1170,49 +1170,6 @@ DEFUN ("internal-describe-syntax-value", Finternal_describe_syntax_value,
return
syntax
;
}
static
void
describe_syntax
(
value
,
args
)
Lisp_Object
value
,
args
;
{
Findent_to
(
make_number
(
16
),
make_number
(
1
));
Finternal_describe_syntax_value
(
value
);
insert_string
(
"
\n
"
);
}
static
Lisp_Object
describe_syntax_1
(
vector
)
Lisp_Object
vector
;
{
struct
buffer
*
old
=
current_buffer
;
set_buffer_internal
(
XBUFFER
(
Vstandard_output
));
describe_vector
(
vector
,
Qnil
,
Qnil
,
describe_syntax
,
0
,
Qnil
,
Qnil
,
NULL
,
0
);
while
(
!
NILP
(
XCHAR_TABLE
(
vector
)
->
parent
))
{
vector
=
XCHAR_TABLE
(
vector
)
->
parent
;
insert_string
(
"
\n
The parent syntax table is:"
);
describe_vector
(
vector
,
Qnil
,
Qnil
,
describe_syntax
,
0
,
Qnil
,
Qnil
,
NULL
,
0
);
}
call0
(
intern
(
"help-mode"
));
set_buffer_internal
(
old
);
return
Qnil
;
}
DEFUN
(
"describe-syntax"
,
Fdescribe_syntax
,
Sdescribe_syntax
,
0
,
0
,
""
,
doc
:
/* Describe the syntax specifications in the syntax table.
The descriptions are inserted in a buffer, which is then displayed. */
)
()
{
internal_with_output_to_temp_buffer
(
"*Help*"
,
describe_syntax_1
,
current_buffer
->
syntax_table
);
return
Qnil
;
}
int
parse_sexp_ignore_comments
;
...
...
@@ -3038,7 +2995,6 @@ See the info node `(elisp)Syntax Properties' for a description of the
defsubr
(
&
Smatching_paren
);
defsubr
(
&
Sstring_to_syntax
);
defsubr
(
&
Smodify_syntax_entry
);
defsubr
(
&
Sdescribe_syntax
);
defsubr
(
&
Sinternal_describe_syntax_value
);
defsubr
(
&
Sforward_word
);
...
...
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