diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-07-31 20:51:44 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-07-31 20:51:44 -0700 |
commit | c1dbc63c93c5702da44ef7e3cc281ac3bb7941ce (patch) | |
tree | 800fb170efd007c51fdea2f487526c6f58a63625 /src | |
parent | 8d7c7eed737a9e96264bb41772eb92c540ac4c28 (diff) | |
download | emacs-c1dbc63c93c5702da44ef7e3cc281ac3bb7941ce.tar.gz emacs-c1dbc63c93c5702da44ef7e3cc281ac3bb7941ce.tar.bz2 emacs-c1dbc63c93c5702da44ef7e3cc281ac3bb7941ce.zip |
* coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/coding.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 31c88c745ab..6c4e57e6905 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2012-08-01 Paul Eggert <eggert@cs.ucla.edu> + + * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work. + 2012-08-01 Glenn Morris <rgm@gnu.org> * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP): diff --git a/src/coding.h b/src/coding.h index 50435282229..2987f19607b 100644 --- a/src/coding.h +++ b/src/coding.h @@ -177,7 +177,6 @@ enum coding_attr_index #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) #define CODING_ATTR_FOR_UNIBYTE(attrs) AREF (attrs, coding_attr_for_unibyte) -#define CODING_ATTR_FLUSHING(attrs) AREF (attrs, coding_attr_flushing) #define CODING_ATTR_PLIST(attrs) AREF (attrs, coding_attr_plist) #define CODING_ATTR_CATEGORY(attrs) AREF (attrs, coding_attr_category) #define CODING_ATTR_SAFE_CHARSETS(attrs)AREF (attrs, coding_attr_safe_charsets) |