]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_local_map): Don't get char-property of previous
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 May 2003 16:39:49 +0000 (16:39 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 May 2003 16:39:49 +0000 (16:39 +0000)
point any more: get_pos_property already does it and better.

src/intervals.c

index a9e36f8b9b1bb1222d1a0ac6fdc70bd6355dac0b..6ad4ae8d1e984ba729b56663055cc5d93f70d0c6 100644 (file)
@@ -2335,10 +2335,6 @@ get_local_map (position, buffer, type)
   BUF_BEGV_BYTE (buffer) = BUF_BEG_BYTE (buffer);
   BUF_ZV_BYTE (buffer) = BUF_Z_BYTE (buffer);
 
-  /* There are no properties at the end of the buffer, so in that case
-     check for a local map on the last character of the buffer instead.  */
-  if (position == BUF_Z (buffer) && BUF_Z (buffer) > BUF_BEG (buffer))
-    --position;
   XSETFASTINT (lispy_position, position);
   XSETBUFFER (lispy_buffer, buffer);
   /* First check if the CHAR has any property.  This is because when