summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/info/m-x.c
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-11-09 03:02:50 +0000
committerNorbert Preining <norbert@preining.info>2022-11-09 03:02:50 +0000
commit5de83ec843cdc88e6adc42b1fe3f0ec48c52b7f3 (patch)
treeb49f7c180396c8ef389c8fd519370b6d03f4e100 /macros/texinfo/texinfo/info/m-x.c
parent118cb5bbc5236bf86ca1088b9b3bae04c7b09beb (diff)
CTAN sync 202211090302
Diffstat (limited to 'macros/texinfo/texinfo/info/m-x.c')
-rw-r--r--macros/texinfo/texinfo/info/m-x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/texinfo/texinfo/info/m-x.c b/macros/texinfo/texinfo/info/m-x.c
index 2515eee154..669d999738 100644
--- a/macros/texinfo/texinfo/info/m-x.c
+++ b/macros/texinfo/texinfo/info/m-x.c
@@ -1,6 +1,6 @@
/* m-x.c -- Meta-x minibuffer reader.
- Copyright 1993-2021 Free Software Foundation, Inc.
+ Copyright 1993-2022 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -99,9 +99,9 @@ DECLARE_INFO_COMMAND (info_execute_command,
abort();
if (info_explicit_arg || count != 1)
- asprintf (&prompt, "%d %s ", count, keys);
+ xasprintf (&prompt, "%d %s ", count, keys);
else
- asprintf (&prompt, "%s ", keys);
+ xasprintf (&prompt, "%s ", keys);
/* Ask the completer to read a reference for us. */
line = read_function_name (prompt, window);