comparison lisp/cmdloop.el @ 5420:b9167d522a9a

Rebase with 21.5 trunk.
author Mats Lidell <matsl@xemacs.org>
date Thu, 28 Oct 2010 23:53:24 +0200
parents 308d34e9f07d d27c1ee1943b
children ac37a5f7e5be
comparison
equal deleted inserted replaced
5419:eaf01113cd42 5420:b9167d522a9a
560 560
561 ;;;; Input and display facilities. 561 ;;;; Input and display facilities.
562 562
563 ;; BEGIN SYNCHED WITH FSF 21.2. 563 ;; BEGIN SYNCHED WITH FSF 21.2.
564 564
565 (defvar read-quoted-char-radix 8 565 (defcustom read-quoted-char-radix 8
566 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
567 Legitimate radix values are 8, 10 and 16.")
568
569 (custom-declare-variable-early
570 'read-quoted-char-radix 8
571 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'. 566 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
572 Legitimate radix values are 8, 10 and 16." 567 Legitimate radix values are 8, 10 and 16."
573 :type '(choice (const 8) (const 10) (const 16)) 568 :type '(choice (const 8) (const 10) (const 16))
574 :group 'editing-basics) 569 :group 'editing-basics)
575 570