diff options
| author | Paul A. Patience | 2022-08-19 14:04:31 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-08-19 14:04:31 +0200 |
| commit | 6fca17270a6c8be6f561e8048eebe375b362f311 (patch) | |
| tree | 536ff738b61ddabb909873600b3766d7a27d3967 | |
| parent | e5695faec4a43f10be3b56fa7fd436d5f54a5761 (diff) | |
| download | emacs-6fca17270a6c8be6f561e8048eebe375b362f311.tar.gz emacs-6fca17270a6c8be6f561e8048eebe375b362f311.zip | |
Fix mis-spelling of c-awk-old-ByLL and really make it buffer-local
* lisp/progmodes/cc-awk.el (c-awk-old-ByLL): Make the
correct variable buffer-local (bug#57294).
Copyright-paperwork-exempt: yes
| -rw-r--r-- | lisp/progmodes/cc-awk.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index 9ea1557391b..57750a2b394 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el | |||
| @@ -887,7 +887,7 @@ | |||
| 887 | ;; subsequent use of movement functions, etc. However, it seems that if font | 887 | ;; subsequent use of movement functions, etc. However, it seems that if font |
| 888 | ;; lock _is_ enabled, we can always leave it to do the job. | 888 | ;; lock _is_ enabled, we can always leave it to do the job. |
| 889 | (defvar c-awk-old-ByLL 0) | 889 | (defvar c-awk-old-ByLL 0) |
| 890 | (make-variable-buffer-local 'c-awk-old-Byll) | 890 | (make-variable-buffer-local 'c-awk-old-ByLL) |
| 891 | ;; Just beyond logical line following the region which is about to be changed. | 891 | ;; Just beyond logical line following the region which is about to be changed. |
| 892 | ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change. | 892 | ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change. |
| 893 | 893 | ||