From 034275ebe8c5f6fef6d7fe1c35670f732f8d14db Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 4 Jun 2017 19:15:20 +0200 Subject: [PATCH] ; 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. --- src/emacs-module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; /* Use MODULE_FUNCTION_BEGIN to implement steps 2 through 4 for most environment functions. On error it will return its argument, which - should be a sentinel value. */ + can be a sentinel value. */ #define MODULE_FUNCTION_BEGIN(error_retval) \ MODULE_FUNCTION_BEGIN_NO_CATCH (error_retval); \ -- 2.39.5