diff options
| author | Philipp Stephani | 2017-06-04 19:15:20 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2017-06-04 19:50:50 +0200 |
| commit | 034275ebe8c5f6fef6d7fe1c35670f732f8d14db (patch) | |
| tree | 1ed1cdecc465f50cdcfec77e582dd8cfbab39af2 | |
| parent | 9be8b2bf1d1679e7b60dd7d2dbfef2c68f046938 (diff) | |
| download | emacs-034275ebe8c5f6fef6d7fe1c35670f732f8d14db.tar.gz emacs-034275ebe8c5f6fef6d7fe1c35670f732f8d14db.zip | |
; Small comment fix
* emacs-module.c (MODULE_FUNCTION_BEGIN): Don't say that the error
value should be a sentinel value, because in almost all cases it
isn't.
| -rw-r--r-- | src/emacs-module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c index c276edab37b..7f5bd86c96b 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c | |||
| @@ -226,7 +226,7 @@ static emacs_value const module_nil = 0; | |||
| 226 | 226 | ||
| 227 | /* Use MODULE_FUNCTION_BEGIN to implement steps 2 through 4 for most | 227 | /* Use MODULE_FUNCTION_BEGIN to implement steps 2 through 4 for most |
| 228 | environment functions. On error it will return its argument, which | 228 | environment functions. On error it will return its argument, which |
| 229 | should be a sentinel value. */ | 229 | can be a sentinel value. */ |
| 230 | 230 | ||
| 231 | #define MODULE_FUNCTION_BEGIN(error_retval) \ | 231 | #define MODULE_FUNCTION_BEGIN(error_retval) \ |
| 232 | MODULE_FUNCTION_BEGIN_NO_CATCH (error_retval); \ | 232 | MODULE_FUNCTION_BEGIN_NO_CATCH (error_retval); \ |