Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9eaf396b
Commit
9eaf396b
authored
Jan 17, 2001
by
Dave Love
Browse files
Require disp-table.
(latin1-display): Fix :set.
parent
f864120f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
lisp/ChangeLog
lisp/ChangeLog
+9
-2
lisp/international/latin1-disp.el
lisp/international/latin1-disp.el
+9
-5
No files found.
lisp/ChangeLog
View file @
9eaf396b
2001-01-17 Dave Love <fx@gnu.org>
* international/latin1-disp.el: Require disp-table.
(latin1-display): Fix :set.
* net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
2001-01-17 Gerd Moellmann <gerd@gnu.org>
* isearch.el (isearch-lazy-highlight-initial-delay)
...
...
@@ -81,8 +88,8 @@
2001-01-15 Alex Schroeder <alex@gnu.org>
* ansi-color.el (ansi-colors) <defgroup>: Fix :version
by Dave
Love <fx@gnu.org>
* ansi-color.el (ansi-colors) <defgroup>: Fix :version
.
From Dave
Love <fx@gnu.org>
.
(ansi-color-for-comint-mode): Fix :version.
2001-01-15 Alex Schroeder <alex@gnu.org>
...
...
lisp/international/latin1-disp.el
View file @
9eaf396b
...
...
@@ -47,6 +47,9 @@
;;; Code:
;; Ensure `standard-display-table' is set up:
(
require
'disp-table
)
(
defconst
latin1-display-sets
'
(
latin-2
latin-3
latin-4
latin-5
latin-8
latin-9
cyrillic
greek
hebrew
)
"The ISO8859 character sets with defined Latin-1 display sequences.
...
...
@@ -82,11 +85,12 @@ use either M-x customize of the function `latin1-display'."
:require
'latin1-disp
:initialize
'custom-initialize-default
:set
(
lambda
(
symbol
value
)
(
if
value
(
mapc
(
if
value
#'
latin1-display-setup
#'
latin1-display-reset
)
latin1-display-sets
))))
(
set-default
symbol
value
)
(
mapc
(
if
value
#'
latin1-display-setup
#'
latin1-display-reset
)
latin1-display-sets
)
(
redraw-display
)))
;;;###autoload
(
defun
latin1-display
(
&rest
sets
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment