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
9ab8560d
Commit
9ab8560d
authored
May 16, 2000
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the term `invalid' instead of `illegal'.
parent
835c1b36
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
src/emacs.c
src/emacs.c
+1
-1
src/msdos.c
src/msdos.c
+1
-1
src/print.c
src/print.c
+2
-2
src/w32.c
src/w32.c
+2
-2
src/xdisp.c
src/xdisp.c
+2
-2
No files found.
src/emacs.c
View file @
9ab8560d
...
...
@@ -314,7 +314,7 @@ handle_USR2_signal (sig)
}
#endif
/* SIGUSR2 */
/* Handle bus errors, i
llegal
instruction, etc. */
/* Handle bus errors, i
nvalid
instruction, etc. */
SIGTYPE
fatal_error_signal
(
sig
)
int
sig
;
...
...
src/msdos.c
View file @
9ab8560d
...
...
@@ -372,7 +372,7 @@ dosv_refresh_virtual_screen (int offset, int count)
{
__dpmi_regs regs;
if (offset < 0 || count < 0) /* paranoia; i
llegal
values crash DOS/V */
if (offset < 0 || count < 0) /* paranoia; i
nvalid
values crash DOS/V */
return;
regs.h.ah = 0xff; /* update relocated screen */
...
...
src/print.c
View file @
9ab8560d
...
...
@@ -1490,7 +1490,7 @@ print_object (obj, printcharfun, escapeflag)
int
print_length
,
i
;
Lisp_Object
halftail
=
obj
;
/* Negative values of print-length are i
llegal
in CL.
/* Negative values of print-length are i
nvalid
in CL.
Treat them like nil, as CMUCL does. */
if
(
NATNUMP
(
Vprint_length
))
print_length
=
XFASTINT
(
Vprint_length
);
...
...
@@ -1594,7 +1594,7 @@ print_object (obj, printcharfun, escapeflag)
PRINTCHAR
(
'\"'
);
/* Don't print more characters than the specified maximum.
Negative values of print-length are i
llegal
. Treat them
Negative values of print-length are i
nvalid
. Treat them
like a print-length of nil. */
if
(
NATNUMP
(
Vprint_length
)
&&
XFASTINT
(
Vprint_length
)
<
size_in_chars
)
...
...
src/w32.c
View file @
9ab8560d
...
...
@@ -468,7 +468,7 @@ get_long_basename (char * name, char * buf, int size)
HANDLE
dir_handle
;
int
len
=
0
;
/* must be valid filename, no wild cards or other i
llegal
characters */
/* must be valid filename, no wild cards or other i
nvalid
characters */
if
(
strpbrk
(
name
,
"*?|<>
\"
"
))
return
0
;
...
...
@@ -1913,7 +1913,7 @@ stat (const char * path, struct stat * buf)
}
name
=
(
char
*
)
map_w32_filename
(
path
,
&
path
);
/* must be valid filename, no wild cards or other i
llegal
characters */
/* must be valid filename, no wild cards or other i
nvalid
characters */
if
(
strpbrk
(
name
,
"*?|<>
\"
"
))
{
errno
=
ENOENT
;
...
...
src/xdisp.c
View file @
9ab8560d
...
...
@@ -878,7 +878,7 @@ window_box_edges (w, area, top_left_x, top_left_y,
/* Return the next character from STR which is MAXLEN bytes long.
Return in *LEN the length of the character. This is like
STRING_CHAR_AND_LENGTH but never returns an invalid character. If
we find one, we return a `?', but with the length of the i
llegal
we find one, we return a `?', but with the length of the i
nvalid
character. */
static INLINE int
...
...
@@ -891,7 +891,7 @@ string_char_and_length (str, maxlen, len)
c = STRING_CHAR_AND_LENGTH (str, maxlen, *len);
if (!CHAR_VALID_P (c, 1))
/* We may not change the length here because other places in Emacs
don't use this function, i.e. they silently accept i
llegal
don't use this function, i.e. they silently accept i
nvalid
characters. */
c = '?';
...
...
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