diff lisp/subr.el @ 13812:fdbace398b5e

(add-to-list): Doc fix. (buffer-substring-no-properties): Function deleted.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 18:11:20 +0000
parents 6d3d7b32c519
children 24ff5e49ac27
line wrap: on
line diff
--- a/lisp/subr.el	Thu Dec 21 18:10:03 1995 +0000
+++ b/lisp/subr.el	Thu Dec 21 18:11:20 1995 +0000
@@ -565,6 +565,7 @@
 
 (defun add-to-list (list-var element)
   "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
+The test for presence of ELEMENT is done with `equal'.
 If you want to use `add-to-list' on a variable that is not defined
 until a certain package is loaded, you should put the call to `add-to-list'
 into a hook function that will be run only after loading the package.
@@ -749,12 +750,6 @@
 	  (substring string (match-beginning num) (match-end num))
 	(buffer-substring (match-beginning num) (match-end num)))))
 
-(defun buffer-substring-no-properties (beg end)
-  "Return the text from BEG to END, without text properties, as a string."
-  (let ((string (buffer-substring beg end)))
-    (set-text-properties 0 (length string) nil string)
-    string))
-
 (defun shell-quote-argument (argument)
   "Quote an argument for passing as argument to an inferior shell."
   (if (eq system-type 'ms-dos)