use the correct equality predicate for symbols

This commit is contained in:
dickmao 2020-02-11 21:30:38 -05:00
parent 612153688b
commit 5fbc371da5
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@
(ein:$content-path content)))
(setq ein:content-file-buffer--content content)
(let ((raw-content (ein:$content-raw-content content)))
(if (eql system-type 'windows-nt)
(if (eq system-type 'windows-nt)
(insert (decode-coding-string raw-content 'utf-8))
(insert raw-content)))
(set-visited-file-name (buffer-name))

View file

@ -350,7 +350,7 @@ server command."
(run-at-time 2 nil
(lambda ()
(ein:log 'info "Resignaled %s with pid %s" proc pid)
(signal-process pid (if (eql system-type 'windows-nt) 9 15)))))
(signal-process pid (if (eq system-type 'windows-nt) 9 15)))))
;; `ein:notebooklist-sentinel' frequently does not trigger
(ein:notebooklist-list-remove url-or-port)