summaryrefslogtreecommitdiff
path: root/elisp/geiser-syntax.el
diff options
context:
space:
mode:
Diffstat (limited to 'elisp/geiser-syntax.el')
-rw-r--r--elisp/geiser-syntax.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el
index 683d37e..1dc42cc 100644
--- a/elisp/geiser-syntax.el
+++ b/elisp/geiser-syntax.el
@@ -1,6 +1,6 @@
;;; geiser-syntax.el --- Utilities for parsing scheme syntax -*- lexical-binding: t; -*-
-;; Copyright (C) 2009-2016, 2019-2022 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009-2016, 2019-2022, 2026 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -194,7 +194,7 @@ implementation-specific entries for font-lock-keywords.")
(defun geiser-syntax--read/ex-symbol () ;; #{foo bar}# style symbols
(let ((tk (geiser-syntax--read/matching "{" "}")))
- (when-let (c (geiser-syntax--read/next-char))
+ (when-let* ((c (geiser-syntax--read/next-char)))
(when (char-equal ?\# c)
(geiser-syntax--read/next-char)
(cons 'atom (make-symbol (format "#{%s}#" tk)))))))