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
4f63c6bb
Commit
4f63c6bb
authored
Mar 16, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* syntax.c (back_comment, skip_chars): Mark vars as initialized.
parent
01f44d5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/ChangeLog
src/ChangeLog
+1
-0
src/syntax.c
src/syntax.c
+2
-2
No files found.
src/ChangeLog
View file @
4f63c6bb
...
...
@@ -2,6 +2,7 @@
* syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
shadowing.
(back_comment, skip_chars): Mark vars as initialized.
* character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
Rename locals to avoid shadowing.
src/syntax.c
View file @
4f63c6bb
...
...
@@ -513,7 +513,7 @@ back_comment (EMACS_INT from, EMACS_INT from_byte, EMACS_INT stop, int comnested
EMACS_INT
comment_end
=
from
;
EMACS_INT
comment_end_byte
=
from_byte
;
EMACS_INT
comstart_pos
=
0
;
EMACS_INT
comstart_byte
;
EMACS_INT
comstart_byte
IF_LINT
(
=
0
)
;
/* Place where the containing defun starts,
or 0 if we didn't come across it yet. */
EMACS_INT
defun_start
=
0
;
...
...
@@ -1421,7 +1421,7 @@ skip_chars (int forwardp, Lisp_Object string, Lisp_Object lim, int handle_iso_cl
register
unsigned
int
c
;
unsigned
char
fastmap
[
0400
];
/* Store the ranges of non-ASCII characters. */
int
*
char_ranges
;
int
*
char_ranges
IF_LINT
(
=
NULL
)
;
int
n_char_ranges
=
0
;
int
negate
=
0
;
register
EMACS_INT
i
,
i_byte
;
...
...
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