mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Cleanup FIXMEs
This commit is contained in:
parent
47b01c1f55
commit
18dec8a1cb
3 changed files with 3 additions and 3 deletions
|
@ -30,6 +30,7 @@
|
|||
|
||||
(require 'ein-core)
|
||||
(require 'ein-log)
|
||||
;; FIXME: use websocket.el directly once v1.0 is released.
|
||||
(require 'ein-websocket)
|
||||
(require 'ein-events)
|
||||
(require 'ein-query)
|
||||
|
|
|
@ -209,7 +209,6 @@ Current buffer for these functions is set to the notebook buffer.")
|
|||
scratchsheets
|
||||
)
|
||||
|
||||
;; FIXME: Remove `ein:%notebook%' when worksheet is fully implemented.
|
||||
(ein:deflocal ein:%notebook% nil
|
||||
"Buffer local variable to store an instance of `ein:$notebook'.")
|
||||
(define-obsolete-variable-alias 'ein:notebook 'ein:%notebook% "0.1.2")
|
||||
|
@ -252,7 +251,8 @@ call notebook destructor `ein:notebook-del'."
|
|||
|
||||
(defun ein:notebook-buffer (notebook)
|
||||
"Return the buffer that is associated with NOTEBOOK."
|
||||
;; FIXME: Find a better way to define notebook buffer! (or remove this func)
|
||||
;; FIXME: Find a better way to define notebook buffer!
|
||||
;; For example, the last accessed buffer.
|
||||
(let ((first-buffer
|
||||
(lambda (ws-list)
|
||||
(loop for ws in ws-list if (ein:worksheet-buffer ws) return it))))
|
||||
|
|
|
@ -54,7 +54,6 @@
|
|||
onopen
|
||||
onopen-args
|
||||
closed-by-client)
|
||||
;; FIXME: probably, first arguments of any callback must be WEBSOCKET.
|
||||
|
||||
|
||||
(defun ein:websocket (url &optional onmessage onclose onopen
|
||||
|
|
Loading…
Add table
Reference in a new issue