diff options
| author | Po Lu | 2023-03-01 14:28:04 +0800 |
|---|---|---|
| committer | Po Lu | 2023-03-01 14:29:24 +0800 |
| commit | 7ef9a8210c9b6c2adf6094d8e85a50edd91e54e3 (patch) | |
| tree | 59b9d195cf2db62dd8137c45826db864ef722065 /src/bytecode.c | |
| parent | ec1dea7b43f159ec58bc4f18db5a900cac655925 (diff) | |
| download | emacs-7ef9a8210c9b6c2adf6094d8e85a50edd91e54e3.tar.gz emacs-7ef9a8210c9b6c2adf6094d8e85a50edd91e54e3.zip | |
Replace C++ comments with C style equivalents
* src/alloc.c (Fmake_byte_code, purecopy):
* src/bytecode.c (exec_byte_code):
* src/xdisp.c (face_at_pos): Do not use C++-style comments!
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 124348e5b35..74a94859aba 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -789,10 +789,10 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, | |||
| 789 | Lisp_Object template; | 789 | Lisp_Object template; |
| 790 | Lisp_Object bytecode; | 790 | Lisp_Object bytecode; |
| 791 | if (COMPILEDP (call_fun) | 791 | if (COMPILEDP (call_fun) |
| 792 | // Lexical binding only. | 792 | /* Lexical binding only. */ |
| 793 | && (template = AREF (call_fun, COMPILED_ARGLIST), | 793 | && (template = AREF (call_fun, COMPILED_ARGLIST), |
| 794 | FIXNUMP (template)) | 794 | FIXNUMP (template)) |
| 795 | // No autoloads. | 795 | /* No autoloads. */ |
| 796 | && (bytecode = AREF (call_fun, COMPILED_BYTECODE), | 796 | && (bytecode = AREF (call_fun, COMPILED_BYTECODE), |
| 797 | !CONSP (bytecode))) | 797 | !CONSP (bytecode))) |
| 798 | { | 798 | { |