Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • qhong/crdt.el
  • jimmyhmiller/crdt.el
  • jming422/crdt.el
  • artenator/crdt.el
  • willforan/crdt.el
5 results
Show changes
Commits on Source (3)
......@@ -6,7 +6,7 @@
;; Maintainer: Qiantan Hong <qhong@alum.mit.edu>
;; URL: https://code.librehq.com/qhong/crdt.el
;; Keywords: collaboration crdt
;; Version: 0.2.5
;; Version: 0.2.6
;; This file is part of GNU Emacs.
......@@ -35,13 +35,13 @@
(require 'url)
(require 'color)
(defconst crdt-version "0.2.5")
(defconst crdt-version "0.2.6")
(defconst crdt-protocol-version "0.2.5")
(defun crdt-version ()
"Show the crdt.el version."
(interactive)
(message crdt-version))
(message "crdt.el version %s" crdt-version))
(defgroup crdt nil
"Collaborative editing using Conflict-free Replicated Data Types."
......@@ -1471,7 +1471,7 @@ CRDT--PROCESS should be bound to The network process for the client connection."
(crdt--format-message
`(cursor ,crdt--buffer-network-name ,site-id
,point ,(crdt--get-id point)
,mark ,(crdt--get-id mark)))))))
,mark ,(when mark (crdt--get-id mark))))))))
crdt--pseudo-cursor-table)
(process-send-string crdt--process (crdt--format-message (crdt--local-cursor nil)))
......