From: Philipp Stephani Date: Fri, 27 Nov 2020 19:04:20 +0000 (+0100) Subject: ; * src/lisp.h (enum specbind_tag): Fix typo. X-Git-Tag: emacs-28.0.90~5004 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e7423689208026658fbe8c75523eac6dbe022c39;p=emacs.git ; * src/lisp.h (enum specbind_tag): Fix typo. --- diff --git a/src/lisp.h b/src/lisp.h index 76d74200ac8..31614b9125b 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -3124,7 +3124,7 @@ enum specbind_tag { SPECPDL_UNWIND_PTR, /* Likewise, on void *. */ SPECPDL_UNWIND_INT, /* Likewise, on int. */ SPECPDL_UNWIND_INTMAX, /* Likewise, on intmax_t. */ - SPECPDL_UNWIND_EXCURSION, /* Likewise, on an execursion. */ + SPECPDL_UNWIND_EXCURSION, /* Likewise, on an excursion. */ SPECPDL_UNWIND_VOID, /* Likewise, with no arg. */ SPECPDL_BACKTRACE, /* An element of the backtrace. */ SPECPDL_LET, /* A plain and simple dynamic let-binding. */