diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-11-24 14:07:58 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-11-24 14:07:58 -0500 |
commit | c8b469a0597edb988a9966655d9061ed3ce8936a (patch) | |
tree | 4dcc48f917e5ccec7a5f9545aee916e00282f1c5 | |
parent | dab06e456792358cee3544c6d718e5011e01b3ec (diff) | |
download | emacsconf-el-c8b469a0597edb988a9966655d9061ed3ce8936a.tar.xz emacsconf-el-c8b469a0597edb988a9966655d9061ed3ce8936a.zip |
fix pcase
-rw-r--r-- | emacsconf-stream.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacsconf-stream.el b/emacsconf-stream.el index 5d8078d..897f205 100644 --- a/emacsconf-stream.el +++ b/emacsconf-stream.el @@ -241,7 +241,7 @@ This uses the BBB room if available, or the IRC channel if not." (concat "nohup firefox -new-window " (shell-quote-argument (pcase (plist-get talk :q-and-a) - ((or nil "" (rx "Mumble")) + ((or 'nil "" (rx "Mumble")) (plist-get talk :qa-slide-url)) ((rx "live") (plist-get talk :bbb-backstage)) |