Tuber oregonense, Vysotsky (skyscraper) & Nomina Villarum
This commit is contained in:
parent
e5d4b0a6b1
commit
29409bf9ff
1 changed files with 57 additions and 56 deletions
|
@ -5,7 +5,6 @@
|
|||
;; Author: nik gaffney <nik@fo.am>
|
||||
;; Created: 2020-12-12
|
||||
;; Version: 0.1
|
||||
;; Package-Requires: ((emacs "27.1") (request "0.3") (websocket "1.12") (parsec "0.1") (0xc "0.1"))
|
||||
;; Keywords: comm, etherpad, collaborative editing
|
||||
;; URL: https://github.com/zzkt/ethermacs
|
||||
|
||||
|
@ -47,12 +46,12 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
;; (require 'websocket)
|
||||
;; (require 'let-alist)
|
||||
;; (require 'calc-bin)
|
||||
;; (require 'parsec)
|
||||
;; (require '0xc)
|
||||
;; (require 's)
|
||||
(require 'websocket)
|
||||
(require 'let-alist)
|
||||
(require 'calc-bin)
|
||||
(require 'parsec)
|
||||
(require '0xc)
|
||||
(require 's)
|
||||
|
||||
;; debug details
|
||||
;; (setq websocket-debug t)
|
||||
|
@ -277,7 +276,8 @@
|
|||
pair should just be omitted."
|
||||
|
||||
(let* ((changes
|
||||
(parsec-with-input cs
|
||||
(parsec-with-input
|
||||
cs
|
||||
;; a letter Z (the "magic character" and format version identifier)
|
||||
(parsec-str "Z")
|
||||
(parsec-collect*
|
||||
|
@ -381,6 +381,7 @@ Numeric offsets are calculated from the beginning of the buffer."
|
|||
(insert chars))))
|
||||
|
||||
(defun etherpad-esync-try-changeset (cs)
|
||||
"Try changeset CS."
|
||||
(let* ((changes
|
||||
(etherpad-esync-parse-changeset cs))
|
||||
(len (nth 0 changes))
|
||||
|
|
Loading…
Reference in a new issue