comparison lisp/register.el @ 103249:019c8b2b5898

* register.el (register-alist): Doc fix (Bug#3311).
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 18 May 2009 17:08:19 +0000
parents 13b4ea6830b5
children c4c3db18d05c
comparison
equal deleted inserted replaced
103248:97c6a390ad50 103249:019c8b2b5898
48 48
49 (defvar register-alist nil 49 (defvar register-alist nil
50 "Alist of elements (NAME . CONTENTS), one for each Emacs register. 50 "Alist of elements (NAME . CONTENTS), one for each Emacs register.
51 NAME is a character (a number). CONTENTS is a string, number, marker or list. 51 NAME is a character (a number). CONTENTS is a string, number, marker or list.
52 A list of strings represents a rectangle. 52 A list of strings represents a rectangle.
53 A list of the form (file . NAME) represents the file named NAME. 53 A list of the form (file . FILE-NAME) represents the file named FILE-NAME.
54 A list of the form (file-query NAME POSITION) represents position POSITION 54 A list of the form (file-query FILE-NAME POSITION) represents
55 in the file named NAME, but query before visiting it. 55 position POSITION in the file named FILE-NAME, but query before
56 visiting it.
56 A list of the form (WINDOW-CONFIGURATION POSITION) 57 A list of the form (WINDOW-CONFIGURATION POSITION)
57 represents a saved window configuration plus a saved value of point. 58 represents a saved window configuration plus a saved value of point.
58 A list of the form (FRAME-CONFIGURATION POSITION) 59 A list of the form (FRAME-CONFIGURATION POSITION)
59 represents a saved frame configuration plus a saved value of point.") 60 represents a saved frame configuration plus a saved value of point.")
60 61