diff options
| -rw-r--r-- | etc/.gitignore | 1 | ||||
| -rw-r--r-- | lib-src/.gitignore | 17 | ||||
| -rw-r--r-- | lisp/.gitignore | 1 | ||||
| -rw-r--r-- | src/.gitignore | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 12 |
5 files changed, 41 insertions, 0 deletions
diff --git a/etc/.gitignore b/etc/.gitignore index 29241f472db..6f1c180a692 100644 --- a/etc/.gitignore +++ b/etc/.gitignore | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | fns-* | 1 | fns-* |
| 2 | *.ps | 2 | *.ps |
| 3 | *.log | 3 | *.log |
| 4 | DOC DOC-* | ||
diff --git a/lib-src/.gitignore b/lib-src/.gitignore new file mode 100644 index 00000000000..b5eea5caab4 --- /dev/null +++ b/lib-src/.gitignore | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | Makefile.c | ||
| 2 | fns-* | ||
| 3 | test-distrib | ||
| 4 | make-docfile | ||
| 5 | profile | ||
| 6 | digest-doc | ||
| 7 | sorted-doc | ||
| 8 | movemail | ||
| 9 | cvtmail | ||
| 10 | fakemail | ||
| 11 | yow | ||
| 12 | emacsserver | ||
| 13 | hexl | ||
| 14 | etags | ||
| 15 | ctags | ||
| 16 | emacsclient | ||
| 17 | b2m | ||
diff --git a/lisp/.gitignore b/lisp/.gitignore new file mode 100644 index 00000000000..d7ede1746ce --- /dev/null +++ b/lisp/.gitignore | |||
| @@ -0,0 +1 @@ | |||
| cus-load.el | |||
diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 00000000000..6568596b674 --- /dev/null +++ b/src/.gitignore | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | Makefile.c | ||
| 2 | config.h | ||
| 3 | epaths.h | ||
| 4 | config.stamp | ||
| 5 | stamp-oldxmenu | ||
| 6 | prefix-args | ||
| 7 | temacs | ||
| 8 | emacs | ||
| 9 | emacs-* | ||
| 10 | *.core | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 18d3efcc73a..3bad3d9c61a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,17 @@ | |||
| 1 | 1999-10-07 Gerd Moellmann <gerd@gnu.org> | 1 | 1999-10-07 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xfaces.c (Qbitmap_spec_p): Replaces Qpixmap_spec_p. | ||
| 4 | (Fbitmap_spec_p): Replaces Fpixmap_spec_p. | ||
| 5 | (load_pixmap): Use Fbitmap_spec_p and Qbitmap_spec_p instead of | ||
| 6 | Fpixmap_spec_p and Qpixmap_spec_p. | ||
| 7 | (load_face_colors, check_lface_attrs, | ||
| 8 | merge_face_vector_with_property, | ||
| 9 | Finternal_set_lisp_face_attribute): Use Fbitmap_spec_p. | ||
| 10 | (syms_of_xfaces): Initialize Qbitmap_spec_p, defsubr | ||
| 11 | Fbitmap_spec_p. | ||
| 12 | |||
| 13 | 1999-10-07 Gerd Moellmann <gerd@gnu.org> | ||
| 14 | |||
| 3 | * xdisp.c (display_menu_bar): Use MENU_FACE_ID instead of | 15 | * xdisp.c (display_menu_bar): Use MENU_FACE_ID instead of |
| 4 | MODE_LINE_FACE_ID. | 16 | MODE_LINE_FACE_ID. |
| 5 | 17 | ||