# HG changeset patch # User Karl Heuer # Date 881546251 0 # Node ID 1b4c829e2f42eb09c28f664520655c9cad58b2bb # Parent ad8d3c6d3d94b387ece187f8bfa5b352c1c8880d (number-to-register): Move point as a side effect. diff -r ad8d3c6d3d94 -r 1b4c829e2f42 lisp/register.el --- a/lisp/register.el Mon Dec 08 01:46:34 1997 +0000 +++ b/lisp/register.el Mon Dec 08 01:57:31 1997 +0000 @@ -139,21 +139,17 @@ (defun number-to-register (arg char) "Store a number in a register. Two args, NUMBER and REGISTER (a character, naming the register). -If NUMBER is nil, digits in the buffer following point are read -to get the number to store. +If NUMBER is nil, a decimal number is read from the buffer starting +at point, and point moves to the end of that number. Interactively, NUMBER is the prefix arg (none means nil)." (interactive "P\ncNumber to register: ") (set-register char (if arg (prefix-numeric-value arg) - (if (looking-at "[0-9][0-9]*") - (save-excursion - (save-restriction - (narrow-to-region (point) - (progn (skip-chars-forward "0-9") - (point))) - (goto-char (point-min)) - (read (current-buffer)))) + (if (looking-at "\\s-*-?[0-9]+") + (progn + (goto-char (match-end 0)) + (string-to-int (match-string 0))) 0)))) (defun increment-register (arg char)