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
b222e415
Commit
b222e415
authored
Jan 31, 2003
by
Dave Love
Browse files
(Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.
parent
0819bf7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/syntax.c
src/syntax.c
+4
-2
No files found.
src/ChangeLog
View file @
b222e415
2003-01-31 Dave Love <fx@gnu.org>
* syntax.c (Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.
2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
* fileio.c: Support // at start of name for Cygwin (just added proper
...
...
src/syntax.c
View file @
b222e415
...
...
@@ -1307,7 +1307,9 @@ except that `]' is never special and `\\' quotes `^', `-' or `\\'
(but not as the end of a range; quoting is never needed there).
Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
With arg "^a-zA-Z", skips nonletters stopping before first letter.
Returns the distance traveled, either zero or positive. */
)
Returns the distance traveled, either zero or positive.
Note that char classes, e.g. `[:alpha:]', are not currently supported;
they will be treated as literals. */
)
(
string
,
lim
)
Lisp_Object
string
,
lim
;
{
...
...
@@ -2994,7 +2996,7 @@ See the info node `(elisp)Syntax Properties' for a description of the
DEFVAR_BOOL
(
"open-paren-in-column-0-is-defun-start"
,
&
open_paren_in_column_0_is_defun_start
,
doc:
/* Non-nil means an open paren in column 0 denotes the start of a defun. */
);
doc:
/*
*
Non-nil means an open paren in column 0 denotes the start of a defun. */
);
open_paren_in_column_0_is_defun_start
=
1
;
defsubr
(
&
Ssyntax_table_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