OSDN Git Service

[Refactor] #39962 Renamed process_pref_file() to interpret_pref_file()
authorHourier <hourier@users.sourceforge.jp>
Mon, 2 Mar 2020 13:01:39 +0000 (22:01 +0900)
committerHourier <hourier@users.sourceforge.jp>
Mon, 2 Mar 2020 13:01:39 +0000 (22:01 +0900)
src/io/interpret-pref-file.c
src/io/interpret-pref-file.h

index 4e7f967..f0a989a 100644 (file)
@@ -4,7 +4,7 @@
  * @author Hourier
  */
 
-#include "io/process-pref-file.h"
+#include "io/interpret-pref-file.h"
 #include "io/gf-descriptions.h"
 #include "io/tokenizer.h"
 #include "objectkind.h"
@@ -67,7 +67,7 @@
  *   T:\<trigger\>:\<keycode\>:\<shift-keycode\>
  * </pre>
  */
-errr process_pref_file_command(player_type *creature_ptr, char *buf)
+errr interpret_pref_file(player_type *creature_ptr, char *buf)
 {
        if (buf[1] != ':') return 1;
 
index af26842..77c65c3 100644 (file)
@@ -2,4 +2,4 @@
 
 #include "angband.h"
 
-errr process_pref_file_command(player_type *creature_ptr, char *buf);
+errr interpret_pref_file(player_type *creature_ptr, char *buf);