diff options
| author | Philipp Stephani | 2017-06-04 19:35:52 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2017-06-04 19:50:52 +0200 |
| commit | 2aa8b1564ea3dd8eb23c71315a19877cab508db3 (patch) | |
| tree | 4d6c2ea59dea794eb7937d1b5d5c8265a927d3f7 /src | |
| parent | 66da3f4afa53e5c5cfab17ca03a13a0d65083ffb (diff) | |
| download | emacs-2aa8b1564ea3dd8eb23c71315a19877cab508db3.tar.gz emacs-2aa8b1564ea3dd8eb23c71315a19877cab508db3.zip | |
Remove an unused error symbol
* src/emacs-module.c (syms_of_module): Remove unused error symbol
'invalid-module-call'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs-module.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c index e6a109b1962..f173bf93934 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c | |||
| @@ -1009,11 +1009,6 @@ syms_of_module (void) | |||
| 1009 | Fput (Qmodule_load_failed, Qerror_message, | 1009 | Fput (Qmodule_load_failed, Qerror_message, |
| 1010 | build_pure_c_string ("Module load failed")); | 1010 | build_pure_c_string ("Module load failed")); |
| 1011 | 1011 | ||
| 1012 | DEFSYM (Qinvalid_module_call, "invalid-module-call"); | ||
| 1013 | Fput (Qinvalid_module_call, Qerror_conditions, | ||
| 1014 | listn (CONSTYPE_PURE, 2, Qinvalid_module_call, Qerror)); | ||
| 1015 | Fput (Qinvalid_module_call, Qerror_message, | ||
| 1016 | build_pure_c_string ("Invalid module call")); | ||
| 1017 | DEFSYM (Qmodule_open_failed, "module-open-failed"); | 1012 | DEFSYM (Qmodule_open_failed, "module-open-failed"); |
| 1018 | Fput (Qmodule_open_failed, Qerror_conditions, | 1013 | Fput (Qmodule_open_failed, Qerror_conditions, |
| 1019 | listn (CONSTYPE_PURE, 3, | 1014 | listn (CONSTYPE_PURE, 3, |