diff options
| author | jao <jao@gnu.org> | 2026-09-05 23:56:08 +0100 |
|---|---|---|
| committer | jao <jao@gnu.org> | 2026-09-05 23:56:08 +0100 |
| commit | 1d7b08e989df3933ea0b4414ebfbdd99c3cc24ed (patch) | |
| tree | 2ddb667d312c8877f0c088e589169b6759da10c5 /elisp/geiser-syntax.el | |
| parent | 584f78b103037e8bc6f4b22a6fae23e09f619d6d (diff) | |
| download | geiser-1d7b08e989df3933ea0b4414ebfbdd99c3cc24ed.tar.gz geiser-1d7b08e989df3933ea0b4414ebfbdd99c3cc24ed.tar.bz2 | |
Diffstat (limited to 'elisp/geiser-syntax.el')
| -rw-r--r-- | elisp/geiser-syntax.el | 4 |
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))))))) |
