diff options
| author | Paul Eggert | 2013-06-18 10:15:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-06-18 10:15:25 -0700 |
| commit | 5ebb1ee6c92a14649d480db44a0c1a8b901369e4 (patch) | |
| tree | fe2916e7e9fac14545bacb8de357dff99135db65 | |
| parent | f7e3f7cd3f696410596b865bf270af20393ca5cd (diff) | |
| download | emacs-5ebb1ee6c92a14649d480db44a0c1a8b901369e4.tar.gz emacs-5ebb1ee6c92a14649d480db44a0c1a8b901369e4.zip | |
Spelling fixes.
| -rw-r--r-- | etc/DEBUG | 2 | ||||
| -rw-r--r-- | src/lisp.h | 2 |
2 files changed, 2 insertions, 2 deletions
| @@ -26,7 +26,7 @@ described in the node "Auto-loading safe path" in the GDB user manual. | |||
| 26 | ** When you are trying to analyze failed assertions or backtraces, it | 26 | ** When you are trying to analyze failed assertions or backtraces, it |
| 27 | is essential to compile Emacs with flags suitable for debugging. | 27 | is essential to compile Emacs with flags suitable for debugging. |
| 28 | With GCC 4.8 or later, you can invoke 'make' with CFLAGS="-Og -g3". | 28 | With GCC 4.8 or later, you can invoke 'make' with CFLAGS="-Og -g3". |
| 29 | With older GCC or non-GCC commpilers, you can use CFLAGS="-O0 -g3". | 29 | With older GCC or non-GCC compilers, you can use CFLAGS="-O0 -g3". |
| 30 | With GCC and higher optimization levels such as -O2, the | 30 | With GCC and higher optimization levels such as -O2, the |
| 31 | -fno-omit-frame-pointer and -fno-crossjumping options are often | 31 | -fno-omit-frame-pointer and -fno-crossjumping options are often |
| 32 | essential. The latter prevents GCC from using the same abort call for | 32 | essential. The latter prevents GCC from using the same abort call for |
diff --git a/src/lisp.h b/src/lisp.h index e4033a2f45b..3a4819c763e 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -226,7 +226,7 @@ enum enum_USE_LSB_TAG { USE_LSB_TAG = 0 }; | |||
| 226 | would otherwise cause a serious performance problem. | 226 | would otherwise cause a serious performance problem. |
| 227 | 227 | ||
| 228 | For each such operation OP, define a macro lisp_h_OP that contains | 228 | For each such operation OP, define a macro lisp_h_OP that contains |
| 229 | the operation's implementation. That way, OP can be implementated | 229 | the operation's implementation. That way, OP can be implemented |
| 230 | via a macro definition like this: | 230 | via a macro definition like this: |
| 231 | 231 | ||
| 232 | #define OP(x) lisp_h_OP (x) | 232 | #define OP(x) lisp_h_OP (x) |