2020-11-19 21:48:29 +01:00
|
|
|
;;; dictionary-connection.el --- TCP-based client connection for dictionary -*- lexical-binding:t -*-
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2021-02-07 16:02:30 +01:00
|
|
|
;; Copyright (C) 2021 Free Software Foundation, Inc.
|
|
|
|
|
2020-10-05 06:56:59 +02:00
|
|
|
;; Author: Torsten Hilbrich <torsten.hilbrich@gmx.net>
|
|
|
|
;; Keywords: network
|
|
|
|
|
2021-02-07 16:02:30 +01:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2020-10-05 06:56:59 +02:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2021-02-07 16:02:30 +01:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2021-02-07 16:02:30 +01:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2020-10-05 06:56:59 +02:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2021-02-07 16:02:30 +01:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2021-02-23 14:07:32 +01:00
|
|
|
;; dictionary-connection allows handling TCP-based connections in
|
Fix typos
* doc/lispref/display.texi (Size of Displayed Text):
* doc/lispref/windows.texi (Buffer Display Action Functions):
* etc/NEWS:
* etc/ORG-NEWS (Org-Attach has been refactored and extended):
* lisp/battery.el (display-battery-mode, battery--upower-subsribe):
* lisp/calendar/parse-time.el:
* lisp/dired-x.el:
* lisp/emacs-lisp/chart.el (chart-sequece, chart-bar-quickie):
* lisp/emacs-lisp/eldoc.el (eldoc-echo-area-use-multiline-p)
(eldoc-documentation-strategy):
* lisp/emacs-lisp/pcase.el (pcase--split-pred, pcase--u1):
* lisp/gnus/gnus-search.el (gnus-search-expandable-keys)
(gnus-search-parse-query, gnus-search-query-return-string)
(gnus-search-imap, gnus-search-imap-search-command)
(gnus-search-transform-expression):
* lisp/gnus/nnselect.el:
* lisp/isearch.el (isearch-lazy-count-format):
* lisp/mh-e/mh-show.el (mh-show-msg):
* lisp/net/dictionary-connection.el (dictionary-connection-open):
* lisp/net/dictionary.el (dictionary-default-popup-strategy)
(dictionary, dictionary-split-string, dictionary-do-select-dictionary)
(dictionary-display-dictionarys, dictionary-search)
(dictionary-tooltip-mode):
* lisp/net/eudcb-macos-contacts.el (eudc-macos-contacts-set-server):
* lisp/net/mailcap.el (mailcap-mime-data):
* lisp/net/tramp-smb.el (tramp-smb-maybe-open-connection):
* lisp/nxml/nxml-mode.el (nxml-mode):
* lisp/progmodes/cc-engine.el:
* lisp/progmodes/cperl-mode.el (cperl-mode)
(cperl-fontify-syntaxically):
* lisp/progmodes/flymake.el (flymake-diagnostic-functions):
* lisp/progmodes/verilog-mode.el (verilog--supressed-warnings)
(verilog-preprocess):
* lisp/simple.el (self-insert-uses-region-functions):
* lisp/textmodes/bibtex.el (bibtex-copy-summary-as-kill):
* lisp/textmodes/texnfo-upd.el (texinfo-insert-master-menu-list):
* src/dispnew.c:
* src/font.c (Ffont_get):
* src/indent.c (compute_motion):
* src/process.c (init_process_emacs):
* src/w32fns.c (deliver_wm_chars):
* test/lisp/jsonrpc-tests.el (deferred-action-complex-tests):
Fix typos in documentation, comments, and internal identifiers.
2021-02-18 16:41:36 +01:00
|
|
|
;; client mode where text-based information is exchanged. There is
|
2020-10-05 06:56:59 +02:00
|
|
|
;; special support for handling CR LF (and the usual CR LF . CR LF
|
Fix typos
* doc/lispref/display.texi (Size of Displayed Text):
* doc/lispref/windows.texi (Buffer Display Action Functions):
* etc/NEWS:
* etc/ORG-NEWS (Org-Attach has been refactored and extended):
* lisp/battery.el (display-battery-mode, battery--upower-subsribe):
* lisp/calendar/parse-time.el:
* lisp/dired-x.el:
* lisp/emacs-lisp/chart.el (chart-sequece, chart-bar-quickie):
* lisp/emacs-lisp/eldoc.el (eldoc-echo-area-use-multiline-p)
(eldoc-documentation-strategy):
* lisp/emacs-lisp/pcase.el (pcase--split-pred, pcase--u1):
* lisp/gnus/gnus-search.el (gnus-search-expandable-keys)
(gnus-search-parse-query, gnus-search-query-return-string)
(gnus-search-imap, gnus-search-imap-search-command)
(gnus-search-transform-expression):
* lisp/gnus/nnselect.el:
* lisp/isearch.el (isearch-lazy-count-format):
* lisp/mh-e/mh-show.el (mh-show-msg):
* lisp/net/dictionary-connection.el (dictionary-connection-open):
* lisp/net/dictionary.el (dictionary-default-popup-strategy)
(dictionary, dictionary-split-string, dictionary-do-select-dictionary)
(dictionary-display-dictionarys, dictionary-search)
(dictionary-tooltip-mode):
* lisp/net/eudcb-macos-contacts.el (eudc-macos-contacts-set-server):
* lisp/net/mailcap.el (mailcap-mime-data):
* lisp/net/tramp-smb.el (tramp-smb-maybe-open-connection):
* lisp/nxml/nxml-mode.el (nxml-mode):
* lisp/progmodes/cc-engine.el:
* lisp/progmodes/cperl-mode.el (cperl-mode)
(cperl-fontify-syntaxically):
* lisp/progmodes/flymake.el (flymake-diagnostic-functions):
* lisp/progmodes/verilog-mode.el (verilog--supressed-warnings)
(verilog-preprocess):
* lisp/simple.el (self-insert-uses-region-functions):
* lisp/textmodes/bibtex.el (bibtex-copy-summary-as-kill):
* lisp/textmodes/texnfo-upd.el (texinfo-insert-master-menu-list):
* src/dispnew.c:
* src/font.c (Ffont_get):
* src/indent.c (compute_motion):
* src/process.c (init_process_emacs):
* src/w32fns.c (deliver_wm_chars):
* test/lisp/jsonrpc-tests.el (deferred-action-complex-tests):
Fix typos in documentation, comments, and internal identifiers.
2021-02-18 16:41:36 +01:00
|
|
|
;; terminator).
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-p (connection)
|
2021-02-07 16:06:06 +01:00
|
|
|
"Return non-nil if CONNECTION is a connection object."
|
2020-12-14 09:31:28 +01:00
|
|
|
(get connection 'connection))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-read-point (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Return the read point of the CONNECTION object."
|
2020-12-14 09:31:28 +01:00
|
|
|
(get connection 'dictionary-connection-read-point))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-process (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Return the process of the CONNECTION object."
|
2020-12-14 09:31:28 +01:00
|
|
|
(get connection 'dictionary-connection-process))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-buffer (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Return the buffer of the CONNECTION object."
|
2020-12-14 09:31:28 +01:00
|
|
|
(get connection 'dictionary-connection-buffer))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-set-read-point (connection point)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Set the read-point for CONNECTION to POINT."
|
2020-12-14 09:31:28 +01:00
|
|
|
(put connection 'dictionary-connection-read-point point))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-set-process (connection process)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Set the process for CONNECTION to PROCESS."
|
2020-12-14 09:31:28 +01:00
|
|
|
(put connection 'dictionary-connection-process process))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
2020-12-14 09:31:28 +01:00
|
|
|
(defsubst dictionary-connection-set-buffer (connection buffer)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Set the buffer for CONNECTION to BUFFER."
|
2020-12-14 09:31:28 +01:00
|
|
|
(put connection 'dictionary-connection-buffer buffer))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
(defun dictionary-connection-create-data (buffer process point)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Create a new connection data based on BUFFER, PROCESS, and POINT."
|
2020-10-05 06:56:59 +02:00
|
|
|
(let ((connection (make-symbol "connection")))
|
|
|
|
(put connection 'connection t)
|
|
|
|
(dictionary-connection-set-read-point connection point)
|
|
|
|
(dictionary-connection-set-process connection process)
|
|
|
|
(dictionary-connection-set-buffer connection buffer)
|
|
|
|
connection))
|
|
|
|
|
|
|
|
(defun dictionary-connection-open (server port)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Open a connection to SERVER at PORT.
|
2021-02-23 14:07:32 +01:00
|
|
|
Return a data structure identifying the connection."
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
(let ((process-buffer (generate-new-buffer (format " connection to %s:%s"
|
|
|
|
server
|
|
|
|
port)))
|
|
|
|
(process))
|
|
|
|
(with-current-buffer process-buffer
|
|
|
|
(setq process (open-network-stream "connection" process-buffer
|
|
|
|
server port))
|
|
|
|
(dictionary-connection-create-data process-buffer process (point-min)))))
|
|
|
|
|
|
|
|
(defun dictionary-connection-status (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Return the status of the CONNECTION.
|
2020-10-05 06:56:59 +02:00
|
|
|
Possible return values are the symbols:
|
2021-02-23 14:07:32 +01:00
|
|
|
nil: argument is not a connection object
|
|
|
|
'none: argument is not connected
|
|
|
|
'up: connection is open and buffer is existing
|
|
|
|
'down: connection is closed
|
|
|
|
'alone: connection is not associated with a buffer"
|
2020-12-14 09:48:26 +01:00
|
|
|
(when (dictionary-connection-p connection)
|
|
|
|
(let ((process (dictionary-connection-process connection))
|
|
|
|
(buffer (dictionary-connection-buffer connection)))
|
|
|
|
(if (not process)
|
|
|
|
'none
|
|
|
|
(if (not (buffer-live-p buffer))
|
|
|
|
'alone
|
|
|
|
(if (not (eq (process-status process) 'open))
|
|
|
|
'down
|
|
|
|
'up))))))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
(defun dictionary-connection-close (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Force closing of the CONNECTION."
|
2020-12-14 09:48:26 +01:00
|
|
|
(when (dictionary-connection-p connection)
|
|
|
|
(let ((buffer (dictionary-connection-buffer connection))
|
|
|
|
(process (dictionary-connection-process connection)))
|
|
|
|
(if process
|
|
|
|
(delete-process process))
|
|
|
|
(if buffer
|
|
|
|
(kill-buffer buffer))
|
|
|
|
|
|
|
|
(dictionary-connection-set-process connection nil)
|
|
|
|
(dictionary-connection-set-buffer connection nil))))
|
2020-10-05 06:56:59 +02:00
|
|
|
|
|
|
|
(defun dictionary-connection-send (connection data)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Send DATA to the process stored in CONNECTION."
|
2020-10-05 06:56:59 +02:00
|
|
|
(unless (eq (dictionary-connection-status connection) 'up)
|
|
|
|
(error "Connection is not up"))
|
|
|
|
(with-current-buffer (dictionary-connection-buffer connection)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(dictionary-connection-set-read-point connection (point))
|
|
|
|
(process-send-string (dictionary-connection-process connection) data)))
|
|
|
|
|
|
|
|
(defun dictionary-connection-send-crlf (connection data)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Send DATA together with CRLF to the process found in CONNECTION."
|
2020-10-05 06:56:59 +02:00
|
|
|
(dictionary-connection-send connection (concat data "\r\n")))
|
|
|
|
|
|
|
|
(defun dictionary-connection-read (connection delimiter)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Read data from CONNECTION until DELIMITER is found inside the buffer."
|
2020-10-05 06:56:59 +02:00
|
|
|
(unless (eq (dictionary-connection-status connection) 'up)
|
|
|
|
(error "Connection is not up"))
|
|
|
|
(let ((case-fold-search nil)
|
|
|
|
match-end)
|
|
|
|
(with-current-buffer (dictionary-connection-buffer connection)
|
|
|
|
(goto-char (dictionary-connection-read-point connection))
|
|
|
|
;; Wait until there is enough data
|
|
|
|
(while (not (search-forward-regexp delimiter nil t))
|
|
|
|
(accept-process-output (dictionary-connection-process connection) 3)
|
|
|
|
(goto-char (dictionary-connection-read-point connection)))
|
|
|
|
(setq match-end (point))
|
|
|
|
;; Return the result
|
|
|
|
(let ((result (buffer-substring (dictionary-connection-read-point connection)
|
|
|
|
match-end)))
|
|
|
|
(dictionary-connection-set-read-point connection match-end)
|
|
|
|
result))))
|
|
|
|
|
|
|
|
(defun dictionary-connection-read-crlf (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Read from CONNECTION until a line is completed with CRLF."
|
2020-10-05 06:56:59 +02:00
|
|
|
(dictionary-connection-read connection "\015?\012"))
|
|
|
|
|
|
|
|
(defun dictionary-connection-read-to-point (connection)
|
A number of docstring fixes
* lisp/net/dictionary-connection.el (dictionary-connection-p,
dictionary-connection-read-point, dictionary-connection-process,
dictionary-connection-buffer, dictionary-connection-set-read-point,
dictionary-connection-set-process, dictionary-connection-set-buffer,
dictionary-connection-create-data, dictionary-connection-open,
dictionary-connection-status, dictionary-connection-close,
dictionary-connection-send, dictionary-connection-send-crlf,
dictionary-connection-read, dictionary-connection-read-crlf,
dictionary-connection-read-to-point): Fix docstring
2020-12-14 11:09:22 +01:00
|
|
|
"Read from CONNECTION until an end of entry is encountered.
|
2021-02-07 16:06:06 +01:00
|
|
|
End of entry is a decimal point found on a line by itself."
|
2020-10-05 06:56:59 +02:00
|
|
|
(dictionary-connection-read connection "\015?\012[.]\015?\012"))
|
|
|
|
|
|
|
|
(provide 'dictionary-connection)
|
|
|
|
;;; dictionary-connection.el ends here
|