From: Philipp Stephani Date: Sun, 4 Jun 2017 17:15:20 +0000 (+0200) Subject: ; Small comment fix X-Git-Tag: emacs-26.0.90~521^2~170^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=034275ebe8c5f6fef6d7fe1c35670f732f8d14db;p=emacs.git ; 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. --- 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); \