aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-23 16:04:28 +0000
committerJuanma Barranquero2005-06-23 16:04:28 +0000
commitd4db983a998ff67c3ca7872bf3623559e5da9488 (patch)
treee445169b205079815a3cbeaeeafb1eb6fd2b5a19 /src
parent74351e9fc287715c264d0b5ee51c31aee8d71726 (diff)
downloademacs-d4db983a998ff67c3ca7872bf3623559e5da9488.tar.gz
emacs-d4db983a998ff67c3ca7872bf3623559e5da9488.zip
(Funexpand_abbrev): Follow error conventions.
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index ac132f20023..3883e35da31 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -442,7 +442,7 @@ is not undone. */)
442 442
443 val = SYMBOL_VALUE (Vlast_abbrev); 443 val = SYMBOL_VALUE (Vlast_abbrev);
444 if (!STRINGP (val)) 444 if (!STRINGP (val))
445 error ("value of abbrev-symbol must be a string"); 445 error ("Value of `abbrev-symbol' must be a string");
446 zv_before = ZV; 446 zv_before = ZV;
447 del_range_byte (PT_BYTE, PT_BYTE + SBYTES (val), 1); 447 del_range_byte (PT_BYTE, PT_BYTE + SBYTES (val), 1);
448 /* Don't inherit properties here; just copy from old contents. */ 448 /* Don't inherit properties here; just copy from old contents. */