diff options
| author | Stefan Monnier | 2008-06-12 20:53:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-06-12 20:53:18 +0000 |
| commit | 455af463a1e359c89892b40e5cf69f2545d48908 (patch) | |
| tree | c7991feb4b86cf7e835a27705854eb58a792c50b /src | |
| parent | 2456bb63ba84813ffb3c6c17d218429099becc25 (diff) | |
| download | emacs-455af463a1e359c89892b40e5cf69f2545d48908.tar.gz emacs-455af463a1e359c89892b40e5cf69f2545d48908.zip | |
(CHAR_TO_BYTE_SAFE): Cut&paste error.
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/character.h b/src/character.h index cf73083dd04..b391fe14474 100644 --- a/src/character.h +++ b/src/character.h | |||
| @@ -73,7 +73,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 73 | #define CHAR_TO_BYTE_SAFE(c) \ | 73 | #define CHAR_TO_BYTE_SAFE(c) \ |
| 74 | (CHAR_BYTE8_P (c) \ | 74 | (CHAR_BYTE8_P (c) \ |
| 75 | ? (c) - 0x3FFF00 \ | 75 | ? (c) - 0x3FFF00 \ |
| 76 | : multibyte_char_to_unibyte_safe (c, Qnil)) | 76 | : multibyte_char_to_unibyte_safe (c)) |
| 77 | 77 | ||
| 78 | /* Nonzero iff BYTE is the 1st byte of a multibyte form of a character | 78 | /* Nonzero iff BYTE is the 1st byte of a multibyte form of a character |
| 79 | that corresponds to a raw 8-bit byte. */ | 79 | that corresponds to a raw 8-bit byte. */ |