summaryrefslogtreecommitdiff
path: root/src/editfns.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2010-07-11 11:27:13 +0200
committerAndreas Schwab <schwab@linux-m68k.org>2010-07-11 11:27:13 +0200
commit2700ae4324a349152fd5e4d1957653de0f7bf8ed (patch)
treef0035bad00a3758902d6c6c3f99390b164f370ab /src/editfns.c
parent87b25c8f31de5c7ae92cd6a0f439da7a6a6c35e5 (diff)
downloademacs-2700ae4324a349152fd5e4d1957653de0f7bf8ed.tar.gz
Constify functions taking char *
* alloc.c (pending_malloc_warning, malloc_warning): Add const. * callproc.c (relocate_fd, getenv_internal_1, getenv_internal) (egetenv): Likewise. * doprnt.c (doprnt): Likewise. * editfns.c (set_time_zone_rule, format2): Likewise. * emacs.c (decode_env_path): Likewise. * eval.c (signal_error, error): Likewise. * insdel.c (replace_range_2): Likewise. * keyboard.c (cmd_error_internal): Likewise. * lread.c (isfloat_string, make_symbol, dir_warning): Likewise. * print.c (write_string, write_string_1, print_error_message): Likewise. * vm-limit.c (warn_function, memory_warnings): Likewise. * xdisp.c (message1, message1_nolog, message_with_string) (vmessage, message, message_nolog): Likewise. * emacs.c: Remove duplicate declaration. * keyboard.h: Likewise. * lisp.h: Update prototypes.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index fe493162c01..93ae5647b04 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2045,7 +2045,7 @@ static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
responsibility to free. */
void
-set_time_zone_rule (char *tzstring)
+set_time_zone_rule (const char *tzstring)
{
int envptrs;
char **from, **to, **newenv;
@@ -4111,7 +4111,7 @@ usage: (format STRING &rest OBJECTS) */)
}
Lisp_Object
-format2 (char *string1, Lisp_Object arg0, Lisp_Object arg1)
+format2 (const char *string1, Lisp_Object arg0, Lisp_Object arg1)
{
Lisp_Object args[3];
args[0] = build_string (string1);