GNU bug report logs - #13952
24.3.50; thingatpoint at end of buffer

Previous Next

Package: emacs;

Reported by: joakim <at> verona.se

Date: Thu, 14 Mar 2013 07:18:01 UTC

Severity: normal

Found in version 24.3.50

Done: Leo Liu <sdl.web <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Leo Liu <sdl.web <at> gmail.com>
To: joakim <at> verona.se
Cc: 13952 <at> debbugs.gnu.org
Subject: bug#13952: 24.3.50; thingatpoint at end of buffer
Date: Thu, 14 Mar 2013 18:58:44 +0800
On 2013-03-14 15:14 +0800, joakim <at> verona.se wrote:
> - make an empty buffer
> - type a number
> - (thing-at-point 'number)

I will install the following fix after syncing up my emacs-24 branch.


=== modified file 'lisp/thingatpt.el'
--- lisp/thingatpt.el	2013-01-01 09:11:05 +0000
+++ lisp/thingatpt.el	2013-03-14 10:54:03 +0000
@@ -182,7 +182,7 @@
 (defun end-of-sexp ()
   "Move point to the end of the current sexp.
 \[This is an internal function.]"
-  (let ((char-syntax (char-syntax (char-after))))
+  (let ((char-syntax (and (char-after) (char-syntax (char-after)))))
     (if (or (eq char-syntax ?\))
 	    (and (eq char-syntax ?\") (in-string-p)))
 	(forward-char 1)




This bug report was last modified 12 years and 132 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.