diff options
| author | Dmitry Antipov | 2013-08-29 19:28:45 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-29 19:28:45 +0400 |
| commit | 20de2834a594370b2f30fa55932c9de3da6150ed (patch) | |
| tree | 6fc36944aa8e7e97190b225dcaab5af3fea82ab9 /src | |
| parent | 101ed2bbbd42b780675fabb7a990f7613b1fb154 (diff) | |
| download | emacs-20de2834a594370b2f30fa55932c9de3da6150ed.tar.gz emacs-20de2834a594370b2f30fa55932c9de3da6150ed.zip | |
* lisp.h (XSETMARKER): Remove unused macro (it doesn't work
anyway because XMISCTYPE is a function and can't be an lvalue).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/lisp.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4bdb6de0689..a020c1278e3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | 2 | ||
| 3 | * alloc.c (Fmake_marker, build_marker): Zero need_adjustment | 3 | * alloc.c (Fmake_marker, build_marker): Zero need_adjustment |
| 4 | field of new marker (for sanity and safety). | 4 | field of new marker (for sanity and safety). |
| 5 | * lisp.h (XSETMARKER): Remove unused macro (it doesn't work | ||
| 6 | anyway because XMISCTYPE is a function and can't be an lvalue). | ||
| 5 | 7 | ||
| 6 | 2013-08-29 Dmitry Antipov <dmantipov@yandex.ru> | 8 | 2013-08-29 Dmitry Antipov <dmantipov@yandex.ru> |
| 7 | 9 | ||
diff --git a/src/lisp.h b/src/lisp.h index f3a78f48a17..54c0b8cf11d 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -866,11 +866,7 @@ make_lisp_proc (struct Lisp_Process *p) | |||
| 866 | #define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, Lisp_String)) | 866 | #define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, Lisp_String)) |
| 867 | #define XSETSYMBOL(a, b) ((a) = make_lisp_ptr (b, Lisp_Symbol)) | 867 | #define XSETSYMBOL(a, b) ((a) = make_lisp_ptr (b, Lisp_Symbol)) |
| 868 | #define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, Lisp_Float)) | 868 | #define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, Lisp_Float)) |
| 869 | |||
| 870 | /* Misc types. */ | ||
| 871 | |||
| 872 | #define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Lisp_Misc)) | 869 | #define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Lisp_Misc)) |
| 873 | #define XSETMARKER(a, b) (XSETMISC (a, b), XMISCTYPE (a) = Lisp_Misc_Marker) | ||
| 874 | 870 | ||
| 875 | /* Pseudovector types. */ | 871 | /* Pseudovector types. */ |
| 876 | 872 | ||