mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
16 lines
346 B
EmacsLisp
16 lines
346 B
EmacsLisp
;;; kmscon.el -*- lexical-binding:t -*-
|
|
|
|
;; Copyright (C) 2026 Free Software Foundation, Inc.
|
|
|
|
(require 'term/xterm)
|
|
|
|
(defun terminal-init-kmscon ()
|
|
"Terminal initialization function for kmscon."
|
|
|
|
;; kmscon supports 24-bit color mode.
|
|
(xterm-register-default-colors xterm-standard-colors))
|
|
|
|
(provide 'term/kmscon)
|
|
|
|
;;; kmscon.el ends here
|