mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-04 16:51:38 -05:00
use the correct equality predicate for symbols
This commit is contained in:
parent
612153688b
commit
5fbc371da5
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue