diff options
| author | Gerd Moellmann | 2000-06-02 19:06:44 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-06-02 19:06:44 +0000 |
| commit | dcf671d286a4a7b04e84c8b43f0dae111d5b2a36 (patch) | |
| tree | 993250375fe00fdec52780d7b4ed8aa44dba2c09 | |
| parent | e911049b46512f90759afafb22d9c215835476ce (diff) | |
| download | emacs-dcf671d286a4a7b04e84c8b43f0dae111d5b2a36.tar.gz emacs-dcf671d286a4a7b04e84c8b43f0dae111d5b2a36.zip | |
*** empty log message ***
| -rw-r--r-- | etc/TUTORIAL | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
2 files changed, 14 insertions, 2 deletions
diff --git a/etc/TUTORIAL b/etc/TUTORIAL index ca10ec20b23..21433d11456 100644 --- a/etc/TUTORIAL +++ b/etc/TUTORIAL | |||
| @@ -699,6 +699,9 @@ top of the file is on the screen, it will say --Top-- instead of | |||
| 699 | --Bot--. If you are looking at text so small that all of it fits on | 699 | --Bot--. If you are looking at text so small that all of it fits on |
| 700 | the screen, the mode line says --All--. | 700 | the screen, the mode line says --All--. |
| 701 | 701 | ||
| 702 | The L and digits indicate position in another way: they give the | ||
| 703 | current line number of point. | ||
| 704 | |||
| 702 | The stars near the front mean that you have made changes to the text. | 705 | The stars near the front mean that you have made changes to the text. |
| 703 | Right after you visit or save a file, that part of the mode line shows | 706 | Right after you visit or save a file, that part of the mode line shows |
| 704 | no stars, just dashes. | 707 | no stars, just dashes. |
| @@ -948,7 +951,7 @@ The most basic HELP feature is C-h c. Type C-h, the character c, and | |||
| 948 | a command character or sequence; then Emacs displays a very brief | 951 | a command character or sequence; then Emacs displays a very brief |
| 949 | description of the command. | 952 | description of the command. |
| 950 | 953 | ||
| 951 | >> Type C-h c Control-p. | 954 | >> Type C-h c C-p. |
| 952 | The message should be something like | 955 | The message should be something like |
| 953 | 956 | ||
| 954 | C-p runs the command previous-line | 957 | C-p runs the command previous-line |
| @@ -964,7 +967,7 @@ EDIT or ALT key) <ESC>v are also allowed after C-h c. | |||
| 964 | 967 | ||
| 965 | To get more information about a command, use C-h k instead of C-h c. | 968 | To get more information about a command, use C-h k instead of C-h c. |
| 966 | 969 | ||
| 967 | >> Type C-h k Control-p. | 970 | >> Type C-h k C-p. |
| 968 | 971 | ||
| 969 | This displays the documentation of the function, as well as its | 972 | This displays the documentation of the function, as well as its |
| 970 | name, in an Emacs window. When you are finished reading the | 973 | name, in an Emacs window. When you are finished reading the |
diff --git a/src/ChangeLog b/src/ChangeLog index 0794cfba3cc..f32e82bc3b0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2000-06-02 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the | ||
| 4 | result face, set flags in the face indicating that colors may not | ||
| 5 | be freed. | ||
| 6 | |||
| 7 | * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character | ||
| 8 | glyph, use the ASCII NUL character to determine the face. | ||
| 9 | |||
| 1 | 2000-06-02 Dave Love <fx@gnu.org> | 10 | 2000-06-02 Dave Love <fx@gnu.org> |
| 2 | 11 | ||
| 3 | * sysdep.c: Conditionally include stdlib.h, unistd.h. | 12 | * sysdep.c: Conditionally include stdlib.h, unistd.h. |