emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/calc calc.el


From: Jay Belanger
Subject: [Emacs-diffs] emacs/lisp/calc calc.el
Date: Tue, 25 Nov 2008 01:27:31 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Jay Belanger <jpb>      08/11/25 01:27:31

Modified files:
        lisp/calc      : calc.el 

Log message:
        (calc-settings-file, calc-language-alist)
        calc-embedded-announce-formula, calc-embedded-announce-formula-alist)
        calc-embedded-open-formula, calc-embedded-close-formula)
        calc-embedded-open-close-formula-alist)
        calc-embedded-word-regexp-alist, calc-embedded-open-plain)
        calc-embedded-close-plain, calc-embedded-open-close-plain-alist)
        calc-embedded-open-new-formula, calc-embedded-close-new-formula)
        calc-embedded-open-close-new-formula-alist, calc-embedded-open-mode)
        calc-embedded-close-mode, calc-embedded-open-close-mode-alist)
        calc-gnuplot-name, calc-gnuplot-plot-command)
        calc-gnuplot-print-command, calc-multiplication-has-precedence):
        Remove unnecessary asterisks from docstrings.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/calc/calc.el?cvsroot=emacs&r1=1.119&r2=1.120

Patches:
Index: calc.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calc/calc.el,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -b -r1.119 -r1.120
--- calc.el     5 Nov 2008 22:10:21 -0000       1.119
+++ calc.el     25 Nov 2008 01:27:31 -0000      1.120
@@ -230,7 +230,7 @@
 ;;;###autoload
 (defcustom calc-settings-file
   (convert-standard-filename "~/.calc.el")
-  "*File in which to record permanent settings."
+  "File in which to record permanent settings."
   :group 'calc
   :type '(file))
 
@@ -246,14 +246,14 @@
     (fortran-mode . fortran)
     (f90-mode . fortran)
     (texinfo-mode . calc-normal-language))
-  "*Alist of major modes with appropriate Calc languages."
+  "Alist of major modes with appropriate Calc languages."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (symbol :tag "Calc language")))
 
 (defcustom calc-embedded-announce-formula
   "%Embed\n\\(% .*\n\\)*"
-  "*A regular expression which is sure to be followed by a calc-embedded 
formula."
+  "A regular expression which is sure to be followed by a calc-embedded 
formula."
   :group 'calc
   :type '(regexp))
 
@@ -269,26 +269,26 @@
     (sgml-mode    . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
     (xml-mode     . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
     (texinfo-mode . "@c Embed\n\\(@c .*\n\\)*"))
-  "*Alist of major modes with appropriate values for 
`calc-embedded-announce-formula'."
+  "Alist of major modes with appropriate values for 
`calc-embedded-announce-formula'."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (regexp :tag "Regexp to announce formula")))
 
 (defcustom calc-embedded-open-formula
   
"\\`\\|^\n\\|\\$\\$?\\|\\\\\\[\\|^\\\\begin[^{].*\n\\|^\\\\begin{.*[^x]}.*\n\\|address@hidden|^\\.EQ.*\n\\|\\\\(\\|^%\n\\|^\\.\\\\\"\n"
-  "*A regular expression for the opening delimiter of a formula used by 
calc-embedded."
+  "A regular expression for the opening delimiter of a formula used by 
calc-embedded."
   :group 'calc
   :type '(regexp))
 
 (defcustom calc-embedded-close-formula
   
"\\'\\|\n$\\|\\$\\$?\\|\\\\]\\|^\\\\end[^{].*\n\\|^\\\\end{.*[^x]}.*\n\\|address@hidden|^\\.EN.*\n\\|\\\\)\\|\n%\n\\|^\\.\\\\\"\n"
-  "*A regular expression for the closing delimiter of a formula used by 
calc-embedded."
+  "A regular expression for the closing delimiter of a formula used by 
calc-embedded."
   :group 'calc
   :type '(regexp))
 
 (defcustom calc-embedded-open-close-formula-alist
   nil
-  "*Alist of major modes with pairs of formula delimiters used by 
calc-embedded."
+  "Alist of major modes with pairs of formula delimiters used by 
calc-embedded."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (list (regexp :tag "Opening formula delimiter")
@@ -302,14 +302,14 @@
 
 (defcustom calc-embedded-word-regexp-alist
   nil
-  "*Alist of major modes with word regexps used by calc-embedded-word."
+  "Alist of major modes with word regexps used by calc-embedded-word."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (regexp :tag "Regexp for word")))
 
 (defcustom calc-embedded-open-plain
   "%%% "
-  "*A string which is the opening delimiter for a \"plain\" formula.
+  "A string which is the opening delimiter for a \"plain\" formula.
 If calc-show-plain mode is enabled, this is inserted at the front of
 each formula."
   :group 'calc
@@ -317,7 +317,7 @@
 
 (defcustom calc-embedded-close-plain
   " %%%\n"
-  "*A string which is the closing delimiter for a \"plain\" formula.
+  "A string which is the closing delimiter for a \"plain\" formula.
 See calc-embedded-open-plain."
   :group 'calc
   :type '(string))
@@ -334,7 +334,7 @@
     (sgml-mode     "<!-- %% " " %% -->\n")
     (xml-mode     "<!-- %% " " %% -->\n")
     (texinfo-mode "@c %% "   " %%\n"))
-  "*Alist of major modes with pairs of delimiters for \"plain\" formulas."
+  "Alist of major modes with pairs of delimiters for \"plain\" formulas."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (list (string :tag "Opening \"plain\" delimiter")
@@ -342,19 +342,19 @@
 
 (defcustom calc-embedded-open-new-formula
   "\n\n"
-  "*A string which is inserted at front of formula by 
calc-embedded-new-formula."
+  "A string which is inserted at front of formula by 
calc-embedded-new-formula."
   :group 'calc
   :type '(string))
 
 (defcustom calc-embedded-close-new-formula
   "\n\n"
-  "*A string which is inserted at end of formula by calc-embedded-new-formula."
+  "A string which is inserted at end of formula by calc-embedded-new-formula."
   :group 'calc
   :type '(string))
 
 (defcustom calc-embedded-open-close-new-formula-alist
   nil
-  "*Alist of major modes with pairs of new formula delimiters used by 
calc-embedded."
+  "Alist of major modes with pairs of new formula delimiters used by 
calc-embedded."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (list (string :tag "Opening new formula delimiter")
@@ -362,14 +362,14 @@
 
 (defcustom calc-embedded-open-mode
   "% "
-  "*A string which should precede calc-embedded mode annotations.
+  "A string which should precede calc-embedded mode annotations.
 This is not required to be present for user-written mode annotations."
   :group 'calc
   :type '(string))
 
 (defcustom calc-embedded-close-mode
   "\n"
-  "*A string which should follow calc-embedded mode annotations.
+  "A string which should follow calc-embedded mode annotations.
 This is not required to be present for user-written mode annotations."
   :group 'calc
   :type '(string))
@@ -386,7 +386,7 @@
     (sgml-mode    "<!-- " " -->\n")
     (xml-mode     "<!-- " " -->\n")
     (texinfo-mode "@c "   "\n"))
-  "*Alist of major modes with pairs of strings to delimit annotations."
+  "Alist of major modes with pairs of strings to delimit annotations."
   :group 'calc
   :type '(alist :key-type (symbol :tag "Major mode")
                 :value-type (list (string :tag "Opening annotation delimiter")
@@ -394,25 +394,25 @@
 
 (defcustom calc-gnuplot-name
   "gnuplot"
-  "*Name of GNUPLOT program, for calc-graph features."
+  "Name of GNUPLOT program, for calc-graph features."
   :group 'calc
   :type '(string))
 
 (defcustom calc-gnuplot-plot-command
   nil
-  "*Name of command for displaying GNUPLOT output; %s = file name to print."
+  "Name of command for displaying GNUPLOT output; %s = file name to print."
   :group 'calc
   :type '(choice (string) (sexp)))
 
 (defcustom calc-gnuplot-print-command
   "lp %s"
-  "*Name of command for printing GNUPLOT output; %s = file name to print."
+  "Name of command for printing GNUPLOT output; %s = file name to print."
   :group 'calc
   :type '(choice (string) (sexp)))
 
 (defcustom calc-multiplication-has-precedence
   t
-  "*If non-nil, multiplication has precedence over division
+  "If non-nil, multiplication has precedence over division
 in normal mode."
   :group 'calc
   :type 'boolean)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]