Move misc/net.el to net/server.el.

This commit is contained in:
tastytea 2019-11-04 20:42:06 +01:00
parent cea4ff08f5
commit c2c0a3b62f
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-10-14T15:34:28+00:00>
;; Time-stamp: <2019-11-04T19:41:30+00:00>
;;; Commentary:
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
@ -41,7 +41,7 @@
(require 'programming/common)
(require 'programming/c++)
(require 'misc/net)
(require 'net/server)
;; Set garbage collection threshold to original value.
(setq gc-cons-threshold (car (get 'gc-cons-threshold 'standard-value)))

View File

@ -1,6 +1,6 @@
;;; net.el --- Set up network stuff.. -*- lexical-binding: t; -*-
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-10-14T15:34:02+00:00>
;; Time-stamp: <2019-11-04T19:40:54+00:00>
;;; Commentary:
@ -69,5 +69,5 @@
)
))
(provide 'misc/net)
;;; net.el ends here
(provide 'net/server)
;;; server.el ends here