comparison lispref/minibuf.texi @ 71702:92db740f1887

(Minibuffer Contents): Remove @tindex.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 08 Jul 2006 18:06:06 +0000
parents 3184a667d8db
children 61cb5aae3bc3
comparison
equal deleted inserted replaced
71701:ce0ef9a0bb1f 71702:92db740f1887
1833 This function returns the prompt string of the currently active 1833 This function returns the prompt string of the currently active
1834 minibuffer. If no minibuffer is active, it returns @code{nil}. 1834 minibuffer. If no minibuffer is active, it returns @code{nil}.
1835 @end defun 1835 @end defun
1836 1836
1837 @defun minibuffer-prompt-end 1837 @defun minibuffer-prompt-end
1838 @tindex minibuffer-prompt-end
1839 This function returns the current 1838 This function returns the current
1840 position of the end of the minibuffer prompt, if a minibuffer is 1839 position of the end of the minibuffer prompt, if a minibuffer is
1841 current. Otherwise, it returns the minimum valid buffer position. 1840 current. Otherwise, it returns the minimum valid buffer position.
1842 @end defun 1841 @end defun
1843 1842
1845 This function returns the current display-width of the minibuffer 1844 This function returns the current display-width of the minibuffer
1846 prompt, if a minibuffer is current. Otherwise, it returns zero. 1845 prompt, if a minibuffer is current. Otherwise, it returns zero.
1847 @end defun 1846 @end defun
1848 1847
1849 @defun minibuffer-contents 1848 @defun minibuffer-contents
1850 @tindex minibuffer-contents
1851 This function returns the editable 1849 This function returns the editable
1852 contents of the minibuffer (that is, everything except the prompt) as 1850 contents of the minibuffer (that is, everything except the prompt) as
1853 a string, if a minibuffer is current. Otherwise, it returns the 1851 a string, if a minibuffer is current. Otherwise, it returns the
1854 entire contents of the current buffer. 1852 entire contents of the current buffer.
1855 @end defun 1853 @end defun
1856 1854
1857 @defun minibuffer-contents-no-properties 1855 @defun minibuffer-contents-no-properties
1858 @tindex minibuffer-contents-no-properties
1859 This is like @code{minibuffer-contents}, except that it does not copy text 1856 This is like @code{minibuffer-contents}, except that it does not copy text
1860 properties, just the characters themselves. @xref{Text Properties}. 1857 properties, just the characters themselves. @xref{Text Properties}.
1861 @end defun 1858 @end defun
1862 1859
1863 @defun minibuffer-completion-contents 1860 @defun minibuffer-completion-contents
1864 @tindex minibuffer-completion-contents
1865 This is like @code{minibuffer-contents}, except that it returns only 1861 This is like @code{minibuffer-contents}, except that it returns only
1866 the contents before point. That is the part that completion commands 1862 the contents before point. That is the part that completion commands
1867 operate on. @xref{Minibuffer Completion}. 1863 operate on. @xref{Minibuffer Completion}.
1868 @end defun 1864 @end defun
1869 1865
1870 @defun delete-minibuffer-contents 1866 @defun delete-minibuffer-contents
1871 @tindex delete-minibuffer-contents
1872 This function erases the editable contents of the minibuffer (that is, 1867 This function erases the editable contents of the minibuffer (that is,
1873 everything except the prompt), if a minibuffer is current. Otherwise, 1868 everything except the prompt), if a minibuffer is current. Otherwise,
1874 it erases the entire current buffer. 1869 it erases the entire current buffer.
1875 @end defun 1870 @end defun
1876 1871