Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
439e8af4
Commit
439e8af4
authored
Jul 16, 2002
by
Ken Raeburn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(general_insert_function): Insertion function now
takes pointer to const for input data.
parent
77be52b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/editfns.c
src/editfns.c
+2
-2
No files found.
src/editfns.c
View file @
439e8af4
...
...
@@ -76,7 +76,7 @@ static Lisp_Object region_limit P_ ((int));
static
int
lisp_time_argument
P_
((
Lisp_Object
,
time_t
*
,
int
*
));
static
size_t
emacs_memftimeu
P_
((
char
*
,
size_t
,
const
char
*
,
size_t
,
const
struct
tm
*
,
int
));
static
void
general_insert_function
P_
((
void
(
*
)
(
unsigned
char
*
,
int
),
static
void
general_insert_function
P_
((
void
(
*
)
(
const
unsigned
char
*
,
int
),
void
(
*
)
(
Lisp_Object
,
int
,
int
,
int
,
int
,
int
),
int
,
int
,
Lisp_Object
*
));
...
...
@@ -1901,7 +1901,7 @@ set_time_zone_rule (tzstring)
static
void
general_insert_function
(
insert_func
,
insert_from_string_func
,
inherit
,
nargs
,
args
)
void
(
*
insert_func
)
P_
((
unsigned
char
*
,
int
));
void
(
*
insert_func
)
P_
((
const
unsigned
char
*
,
int
));
void
(
*
insert_from_string_func
)
P_
((
Lisp_Object
,
int
,
int
,
int
,
int
,
int
));
int
inherit
,
nargs
;
register
Lisp_Object
*
args
;
...
...
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