1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
|
;;; coq-indent.el --- indentation for Coq -*- lexical-binding:t -*-
;; This file is part of Proof General.
;; Portions © Copyright 1994-2012 David Aspinall and University of Edinburgh
;; Portions © Copyright 2003-2021 Free Software Foundation, Inc.
;; Portions © Copyright 2001-2017 Pierre Courtieu
;; Portions © Copyright 2010, 2016 Erik Martin-Dorel
;; Portions © Copyright 2011-2013, 2016-2017 Hendrik Tews
;; Portions © Copyright 2015-2017 Clément Pit-Claudel
;; Authors: Pierre Courtieu
;; Maintainer: Pierre Courtieu <courtieu@lri.fr>
;; Commentary:
;;
;; Indentation for Coq.
;; This is experimental, the code is rather ugly for the moment.
;;
;;; Commentary:
;;
;;; Code:
;; debugging
;(defmacro measure-time (&rest body)
; "Measure the time it takes to evaluate BODY."
; `(let ((time (current-time)))
; ,@body
; (message "%.06f" (float-time (time-since time)))))
(defconst coq-comment-start-regexp "(\\*")
(defconst coq-comment-end-regexp "\\*)")
(defconst coq-comment-start-or-end-regexp
(concat coq-comment-start-regexp "\\|" coq-comment-end-regexp))
(defconst coq-bullet-regexp-nospace "\\(-\\)+\\|\\(+\\)+\\|\\(\\*\\)+"
"Matches single bullet, WARNING: Lots of false positive.
No context checking.")
;; goal selectors are of two forms;
;; 2:
;; [goalname]:
(defconst coq-goal-selector-regexp "\\(?:[0-9]+\\|\\[\\w+\\]\\)\\s-*:\\s-*"
"regexp of goal selector in coq.")
;;;;;;;;;;;;;;; FORWARD / BACKWARD REGEXP ;;;;;;;;;;;;;;;;;
;; These regexp are used to split the buffer into commands. They make
;; use of the fact that the file is processed from top to bottom. At
;; each step the point is put just after the last recognized chunk,
;; then spaces are jumped, and THEN the regexp for command end is
;; searched. Since bullets are are command ends occurring at command
;; start, we use the "\\=" regexp to tell if we are at the beginning
;; of a command. We don't car for the presence of comments, as the
;; regexp search is launched once coments are passed.
;; On the contrary when going backward we cannot use this trick.
;; NOTE: \\= here allows to fail when the user types a "." just after
;; an already played command with no space.
(defconst coq-simple-cmd-ender-prefix-regexp-forward "[^.]\\|\\=\\|\\.\\."
"Used internally. Matches the allowed prefixes of coq \".\" command ending.")
(defconst coq-simple-cmd-ender-prefix-regexp-backward "[^.]\\|\\.\\."
"Used internally. Matches the allowed prefixes of coq \".\" command ending.")
;; bullets must appear after a command end. So when splitting a buffer
;; forward it is enough that they appear at cursor, maybe preceded by
;; a goal selector
(defconst coq-bullet-prefix-regexp-forward "\\=")
;; when going backward, we need to check that the bullet is located
;; after a nother command end.
(defconst coq-bullet-prefix-regexp-backward
(concat "\\(?:\\(?:" coq-simple-cmd-ender-prefix-regexp-backward "\\)\\(?:\\.\\s-+\\)"
"\\(?:\\(?:" coq-goal-selector-regexp "\\)?"
"{\\|}\\|-\\|+\\|\\*\\)+\\s-*\\)"))
;; matches regular command end (. and ... followed by a space or "}" or buffer end)
;; ". " and "... " are command endings, ".. " is not, same as in
;; proof-script-command-end-regexp in coq.el
(defconst coq-period-end-command
(concat "\\(?:\\(?2:" coq-simple-cmd-ender-prefix-regexp-forward "\\)\\(?1:\\.\\)\\(?3:\\s-\\|\\}\\|\\'\\)\\)")
"Matches coq regular syntax for ending a command (except bullets and curlies).
This should match EXACTLY command ending syntax. No false
positive should be accepted. \"...\" is matched as \".\" with a
left context \"..\".
There are 3 substrings (2 and 3 may be nil):
* number 1 is the real bullet string,
* number 2 is the left context matched that is not part of the bullet
* number 3 is the right context matched that is not part of the bullet")
;; captures a lot of false bullets, unless called at the first non
;; space character of a command. The primary use of this variable is
;; to split the buffer into commands, from top to bottom.
(defconst coq-bullet-end-command-forward
(concat "\\(?:\\=\\(?1:" coq-bullet-regexp-nospace "\\)\\)")
"Matches ltac bullets. WARNING: lots of false positive.
This matches more than real bullets as - + and * may match this
when used in regular expressions. See
`coq-bullet-end-command-backward' for a more precise regexp (but
only when searching backward).")
;; Context aware detecting regexp, usefull when search backward.
(defconst coq-bullet-end-command-backward
(concat "\\(?:\\(?2:" coq-bullet-prefix-regexp-backward "\\)\\(?1:\\(-\\)+\\|\\(+\\)+\\|\\(\\*\\)+\\)\\)")
"Matches ltac bullets when searching backward.
This should match EXACTLY bullets. No false positive should be accepted.
There are 2 substrings:
* number 1 is the real bullet string,
* number 2 is the left context matched that is not part of the bullet" )
(defconst coq-curlybracket-end-command
(concat
"\\(?:"
"\\(?2:"
"\\(?:" coq-bullet-prefix-regexp-forward"\\)\\)"
"\\(?1:\\(?:" coq-goal-selector-regexp "\\)?{\\)"
"\\(?3:\\s-*[^|{]\\)"
"\\|"
;; [^|]}
"\\(?2:[^|.]\\|\\=\\)\\(?1:}\\)\\)")
"Matches ltac curlies when searching backward. Warning: False positive.
There are 3 substrings (2 and 3 may be nil):
* number 1 is the real bullet string,
* number 2 is the left context matched that is not part of the bullet
* number 3 is the right context matched that is not part of the bullet
This matches more than real ltac curlies. See
`coq-bullet-end-command-backward' for a more precise regexp (but
only when searching backward).")
(defconst coq-curlybracket-end-command-backward
(concat "\\(?:\\(?2:" coq-bullet-prefix-regexp-backward "\\)"
"\\(?:\\(?:\\(?1:" "\\(?:" coq-goal-selector-regexp "\\)?{\\)"
"\\(?3:[^|]\\)\\)"
"\\|\\(?1:}\\)\\)\\)")
"Matches ltac curly brackets when searching backward.
This should match EXACTLY script structuring curlies. No false
positive should be accepted.
There are 3 substrings (2 and 3 may be nil):
* number 1 is the real bullet string,
* number 2 is the left context matched that is not part of the bullet
* number 3 is the right context matched that is not part of the bullet")
(defconst coq-end-command-regexp-forward
(concat coq-period-end-command "\\|"
coq-bullet-end-command-forward "\\|"
coq-curlybracket-end-command)
"Matches end of commands (and ltac bullets and curlies).
WARNING: False positive.
There are 3 substrings:
* number 1 is the real coq ending string,
* number 2 is the left context matched that is not part of the ending string
* number 3 is the right context matched that is not part of the ending string
WARNING: this regexp accepts some curly brackets and bullets (+ -
*) with no sufficient context verification. Lots of false
positive are matched. Currently bullets and curlies are always
ending an empty command, so we just need to check that the
command ended by the bullet-like regexp is empty. This is done in
coq-smie.el, and see `coq-end-command-regexp-backward' for a more
precise regexp (but only when searching backward).")
; Order here is significant, when two pattern match with the same
; starting position, the first regexp is preferred. period-command is
; the shorter one so let us have it at the end, but what about curly vs
; bullets?
(defconst coq-end-command-regexp-backward
(concat coq-bullet-end-command-backward "\\|"
coq-curlybracket-end-command-backward "\\|"
coq-period-end-command)
"Matches end of commands, including bullets and curlies.
There are 3 substrings (2 and 3 may be nil):
* number 1 is the real coq ending string,
* number 2 is the left context matched that is not part of the ending string
* number 3 is the right context matched that is not part of the ending string
Remark: This regexp is much more precise than `coq-end-command-regexp-forward'
but only works when searching backward.")
(defconst coq-cmd-end-backward-matcher (concat "\\(?2:" coq-simple-cmd-ender-prefix-regexp-backward "\\)\\.\\s-"))
(defun coq-looking-at-comment ()
"Return non-nil if point is inside a comment."
(or (proof-inside-comment (point))
(proof-inside-comment (+ 1 (point)))))
(defun coq-find-previous-endcmd ()
"Internal use, look backward for a \".\" that is an end of command.
Go backward and put point exactly after the first \".\" that is
an end of command, or at point-min if none found. Return the new
position."
(re-search-backward (concat "\\(?2:" coq-simple-cmd-ender-prefix-regexp-backward "\\)\\.\\s-") (point-min) 'dummy)
(while (coq-looking-at-comment) ;; we are looking for ". " so this is enough
(re-search-backward (concat "\\(?2:" coq-simple-cmd-ender-prefix-regexp-backward "\\)\\.\\s-") (point-min) 'dummy))
;; unless we reached point-min, jump over the "."
(when (match-end 2) (goto-char (match-end 2)) (forward-char 1))
(point))
(defun coq-find-start-of-cmd ()
(let ((p (point)) (something-found))
(coq-find-previous-endcmd)
(while (not something-found)
(forward-comment (point-max))
(if (and (looking-at "\\({\\|}\\|\\++\\|\\*+\\|-+\\)")
(< (point) p) ;; if we are after the starting point then anything is the start of the current command, even "#" or ".".
)
(forward-char 1)
(setq something-found t))))
(point))
(defun coq-search-comment-delimiter-forward ()
"Search forward for a comment start (return 1) or end (return -1).
Return nil if not found."
(when (re-search-forward coq-comment-start-or-end-regexp nil 'dummy)
(save-excursion
(goto-char (match-beginning 0))
(if (looking-at coq-comment-start-regexp) 1 -1))))
(defun coq-search-comment-delimiter-backward ()
"Search backward for a comment start (return 1) or end (return -1).
Return nil if not found."
(when (re-search-backward coq-comment-start-or-end-regexp nil 'dummy)
(if (looking-at coq-comment-start-regexp) 1 -1)))
(defun coq-skip-until-one-comment-backward ()
"Skips comments and normal text until finding an unclosed comment start.
Return nil if not found. Point is moved to the the unclosed comment start
if found, to (point-max) otherwise. Return t if found, nil otherwise."
(if (= (point) (point-min)) nil
(ignore-errors (backward-char 1)) ; if point is between '(' and '*'
(if (looking-at coq-comment-start-regexp) t
(forward-char 1)
(let ((nbopen 1) (kind nil))
(while (and (> nbopen 0) (setq kind (coq-search-comment-delimiter-backward)))
(if (< kind 0)
(setq nbopen (+ 1 nbopen))
(setq nbopen (- nbopen 1))))
(= nbopen 0)))))
(defun coq-skip-until-one-comment-forward ()
"Skips comments and normal text until finding an unopened comment end."
(ignore-errors (backward-char 1)) ; if point is between '*' and ')'
(if (looking-at coq-comment-end-regexp) (progn (forward-char 2) t)
(forward-char 1)
(let ((nbopen 1) (kind nil))
(while (and (> nbopen 0) (setq kind (coq-search-comment-delimiter-forward)))
(if (> kind 0) (setq nbopen (+ 1 nbopen))
(setq nbopen (- nbopen 1))))
(= nbopen 0))))
(defun coq-looking-at-comment ()
"Return non-nil if point is inside a comment."
(or (proof-inside-comment (point))
(proof-inside-comment (+ 1 (point)))))
(defun coq-find-comment-start ()
"Go to the current comment start.
If inside nested comments, go to the start of the outer most comment.
Return the position of the comment start. If not inside a comment,
return nil and does not move the point."
(when (coq-looking-at-comment)
(let ((prevpos (point)) (init (point)))
(while (coq-skip-until-one-comment-backward)
(setq prevpos (point)))
(goto-char prevpos)
(if (= prevpos init) nil prevpos))))
(defun coq-find-comment-end ()
"Go to the current comment end.
If inside nested comments, go to the end of the outer most
comment. Return the position of the end of comment end. If not inside
a comment, return nil and does not move the point."
(let ((prevpos (point)) (init (point)))
(while (coq-skip-until-one-comment-forward)
(setq prevpos (point)))
(goto-char prevpos)
(if (= prevpos init) nil prevpos)))
; generic function is wrong when the point in between ( and *
;; (defun coq-looking-at-syntactic-context ()
;; "See `proof-looking-at-syntactic-context'.
;; Use this one for coq instead of the generic one."
;; (if (coq-looking-at-comment) 'comment
;; (proof-looking-at-syntactic-context)))
;; (defconst coq-end-command-or-comment-regexp
;; (concat coq-comment-end-regexp "\\|" coq-end-command-regexp))
;; (defconst coq-end-command-or-comment-start-regexp
;; (concat coq-comment-start-regexp "\\|" coq-end-command-regexp))
;; (defun coq-find-not-in-comment-backward (reg &optional lim submatch)
;; "Moves to the first not commented occurrence of REG found looking up.
;; The point is put exactly before the occurrence if SUBMATCH is nil,
;; otherwise the point is put before SUBMATCHnth matched
;; sub-expression (see `match-string'). If no occurrence is found, go as
;; far as possible and return nil."
;; (coq-find-comment-start) ; first go out of comment if inside some
;; (let ((found nil) (continue t)
;; (regexp (concat coq-comment-end-regexp "\\|" reg)))
;; (while (and (not found) continue)
;; (setq continue (re-search-backward regexp lim 'dummy))
;; (when continue
;; (if (coq-looking-at-comment)
;; (progn (coq-skip-until-one-comment-backward))
;; (progn (when submatch (goto-char (match-beginning submatch)))
;; (setq found t)))))
;; (when found (point))))
;; (defun coq-find-not-in-comment-forward (reg &optional lim submatch)
;; "Moves to the first not commented occurrence of REG found looking down.
;; The point is put exactly before the occurrence if SUBMATCH is nil,
;; otherwise the point is put before SUBMATCHnth matched sub-expression
;; \(see `match-string'). If no occurrence is found, go as far as possible
;; and return nil."
;; ;; da: PATCH here for http://proofgeneral.inf.ed.ac.uk/trac/ticket/173
;; ;; (nasty example). But I don't understand this code!
;; ;; Sometimes we're called outside of a comment here.
;; (if (coq-looking-at-comment)
;; (coq-find-comment-end))
;; (let ((found nil) (continue t)
;; (regexp (concat coq-comment-start-regexp "\\|" reg)))
;; (while (and (not found) continue)
;; (setq continue (re-search-forward regexp lim 'dummy))
;; (when continue
;; (goto-char (match-beginning 0))
;; (if (looking-at coq-comment-start-regexp)
;; (progn (forward-char 2) (coq-skip-until-one-comment-forward))
;; (progn (when (and submatch (match-beginning submatch))
;; (goto-char (match-beginning submatch)))
;; (setq found t))
;; )))
;; (when found (point))))
;; check if we are in the middle of an command ender. Return the
;; number of shift needed to have to move one char to see the end of a
;; command. typically if we are ( >< is the cursor). intro.><
(defun coq-is-on-ending-context ()
(cond
((looking-at "}") 0)
((save-excursion
(ignore-errors
(forward-char -1) ; always nil, don't use "and"
(looking-at "{\\|\\."))) 1)
(t 0)))
(defun coq-empty-command-p ()
"Test if between point and previous command is empty.
Comments are ignored, of course."
(forward-comment (- (point)))
(unless (bobp) (forward-char -1))
;; we must find a "." to be sure, because {O} {P} is allowed in definitions
;; with implicits --> this function is recursive
(cond
;; "{" can be prefixed by a goal selector (coq-8.8).
;; TODO: looking-back is supposed to be slow. Find something else?
((or (and (looking-at "{")(looking-back "[0-9]+\\s-*:\\s-*" nil t))
(and (looking-at ":\\s-*{")(looking-back "[0-9]+\\s-*" nil t))
(and (looking-at "[0-9]+:\\s-*{") nil t))
(goto-char (match-beginning 0)) ; swallow goal selector
(coq-empty-command-p))
;; other bulleting syntax
((looking-at "{\\|}\\|-\\|\\+\\|\\*") (coq-empty-command-p))
;; vernacular controls Time, Fail, Redirect, Timeout
((or (and (looking-at "e\\>") (looking-back "\\<Tim" (- (point) 3)))
(and (looking-at "l\\>") (looking-back "\\<Fai" (- (point) 3)))
(and (looking-at "\"") (looking-back "\\<Redirect\\s-+\"[^\"]+"))
(and (looking-at "[[:digit:]]\\_>") (looking-back "\\<Timeout\\s-+[[:digit:]]*")))
(goto-char (match-beginning 0))
(coq-empty-command-p))
;; not a bullet, we found something else, it should be either a
;; dot or the beginning of the file, otherwise we are in the
;; middle of a command
(t (looking-at "\\.\\|\\`"))
))
; slight modification of proof-script-generic-parse-cmdend (one of the
; candidate for proof-script-parse-function), to allow "{" and "}" to
; be command terminator when the command is empty. This function is
; used as coq-script-parse-function in coq.el.
(defun coq-script-parse-cmdend-forward (&optional limit)
"Move to the first end of command found looking forward from point.
Point is put exactly after the ending token (but before matching
substring if present). If no end command is found, go as far as
possible and return nil. End of command appearing in comments are
ignored. This function makes use of the substring 1 of the command end
regexp."
(if (looking-at comment-start-skip)
;; Handle comments
(if (forward-comment 1) 'comment)
;; Handle non-comments: assumed to be commands
(if (< (coq-is-on-ending-context) 0)
(ignore-errors (forward-char (coq-is-on-ending-context))))
(let (foundend)
;; Find end of command
(while (and (setq foundend
(and
(re-search-forward coq-end-command-regexp-forward limit t)
(match-end 1)))
(or
(and (not (or (string-equal (match-string 1) ".")
(string-equal (match-string 1) "...")))
;; Checking that this is really a bullet
;; command-end that are not a dot are + ++ -
;; -- etc or { or }. To ensure this is really
;; a bullet (and not one of the numerous
;; other possible uses of those tokens) we
;; check that the command ended by it is
;; empty. example:
;; destruct x.
;; - (* - here ends an empty command*)
(save-excursion
(goto-char (match-beginning 1))
(not (coq-empty-command-p))))
(and
(goto-char foundend)
(nth 8 (syntax-ppss)))))
;; Given the form of coq-end-command-regexp-forward
;; match-end 1 is the right place to start again
;; to search backward, next time we start from just
;; there
(ignore-errors (goto-char foundend)))
(if (and foundend
(goto-char foundend) ; move to command end
(not (nth 8 (syntax-ppss))))
;; Found command end outside string/comment
'cmd
;; Didn't find command end
nil))))
;; This is not used by generic pg, just by a few functions in here.
;; It is less trustable that itsforward version above.
;; FIXME: rely on coq-find-previous-endcmd
(defun coq-script-parse-cmdend-backward (&optional limit)
"Move to the first end of command (not commented) found looking up.
Point is put exactly before the last ending token (before the last
\".\" if \"...\"). If no end command is found, go as far as possible
and return nil."
(if (looking-at comment-start-skip)
;; Handle comments
(if (forward-comment 1) 'comment) ; start?
;; Handle non-comments: assumed to be commands
;; first shift if we are in the middle of a ending pattern
(if (> (coq-is-on-ending-context) 0)
(ignore-errors(forward-char (coq-is-on-ending-context))))
(let (foundbeg)
;; Find end of previous command
(while (and (setq foundbeg
(and
(re-search-backward coq-end-command-regexp-backward limit 'dummy)
(match-beginning 1)))
;; Given the form of coq-end-command-regexp-backward
;; - bullets should be correctly detected
;; - match-beginning 1 is the right place to start again
;; to search backward, next time we start from just
;; there, unless we are in a comment
(goto-char foundbeg)
(let ((ppss (syntax-ppss)))
;; If neither within a string nor a comment, just exit the
;; loop. Otherwise see what kind of syntactic
(and (nth 8 ppss)
(cond
;; jump directly out of a comment
((nth 4 ppss)
(setq foundbeg (goto-char (nth 8 ppss))))
((nth 3 ppss) t) ;FIXME: Why?
;; nil captured before entering the cond
(t (message "assert false"))))))
(ignore-errors (goto-char foundbeg)))
(if (and foundbeg
(goto-char foundbeg) ; move to command end
(not (nth 8 (syntax-ppss))))
;; Found command end outside string/comment
'cmd
;; Didn't find command end
nil))))
(defun coq-find-current-start ()
"Move to the start of command at point.
The point is put exactly after the end of previous command, or at
the (point-min) if there is no previous command."
(coq-script-parse-cmdend-backward)
(let ((case-fold-search nil))
(when
(looking-at "\\.\\s-\\|{\\|}\\|\\++\\|\\*+\\|-+")
(forward-char (- (match-end 0) (match-beginning 0))))) ; else = no match found
(point))
(defun coq-find-real-start ()
"Move to the start of command at point.
The point is put exactly before first non comment letter of the command."
(coq-find-start-of-cmd))
;; (defun same-line (pt pt2)
;; (or (= (line-number-at-pos pt) (line-number-at-pos pt2))))
;; (defun coq-command-at-point (&optional nojumplines)
;; "Return the string of the command at point, nil if none.
;; Can jump line if NOJUMPLINES = nil."
;; (let ((initpos (point)))
;; (save-excursion
;; (let* ((st (coq-find-real-start)) ; va chercher trop loin? OUI
;; (linejumped (not (same-line initpos (point))))
;; ;(xxx (goto-char (- (point) 1)))
;; (nd (or (if (coq-script-parse-cmdend-forward) (point) nil)
;; (- (point-max) 1)))) ; idem?
;; (if (and st (or (not nojumplines) (not linejumped)))
;; (buffer-substring st nd)
;; nil)))))
;; (defun coq-commands-at-line (&optional nojumplines)
;; "Return the string of each command at current line."
;; (save-excursion
;; ;; we must capture a "." or a "{" at start of the line. So we go at the end of
;; ;; previous line to have a left context to match
;; (let ((initpoint (point))
;; (forward-char (coq-is-on-ending-context))
;; (command-found (coq-command-at-point nojumplines))
;; res
;; )
;; (if command-found (coq-find-real-start))
;; (while (and command-found
;; ;; need this second test even with nojumplines:
;; (same-line (point) initpoint))
;; (setq res (cons command-found res))
;; (if (and (coq-script-parse-cmdend-forward)
;; ;(ignore-errors (forward-char 1) t);to fit in the "and"
;; (coq-find-real-start))
;; (setq command-found (coq-command-at-point nojumplines))
;; (setq command-found nil)
;; ))
;; res)))
;; (defun coq-indent-only-spaces-on-line ()
;; "Non-nil if there only spaces (or nothing) on the current line after point.
;; Moves point to first non space char if present, to the end of line otherwise."
;; (skip-chars-forward " \t" (save-excursion (end-of-line) (point)))
;; (eolp))
;; (defun coq-indent-find-reg (lim reg)
;; "Non-nil if REG occurs between point and LIM, not in a comment or string.
;; Point is moved at the end of the match if found, at LIM otherwise."
;; (let ((oldpt (point)) (limit lim) (found nil))
;; (if (= limit (point)) nil
;; ;;swap limit and point if necessary
;; ; (message "coq-indent-find-reg...")
;; (when (< limit (point)) (let ((x limit)) (setq limit (point)) (goto-char x)))
;; (prog1
;; (coq-find-not-in-comment-forward reg limit)
;; (goto-char (match-end 0))))))
;; (defun coq-find-no-syntactic-on-line ()
;; "Return non-nil if there is a not commented non white character on the line.
;; Moves point to this char or to the end of the line if not found (and
;; return nil in this case)."
;; (let ((eol (save-excursion (end-of-line) (point))))
;; (back-to-indentation)
;; (while (and (coq-looking-at-syntactic-context)
;; (re-search-forward coq-comment-end-regexp eol 'dummy))
;; (skip-chars-forward " \t"))
;; (not (eolp))))
;; (defun coq-back-to-indentation-prevline ()
;; "Move point back to previous pertinent line for indentation.
;; Move point to the first non white space character. Returns 0 if
;; top of buffer was reached, 3 if inside a comment or string, 4 if
;; inside the {} of a record, 1 if the line found is not in the same
;; command as the point before the function was called, 2
;; otherwise (point and previous line are in the same command, and
;; not inside the {} of a record)."
;; (if (coq-looking-at-syntactic-context) 3
;; (let ((oldpt (point))
;; (topnotreached (= (forward-line -1) 0))) ;;; nil if going one line backward
;; ;;; is not possible
;; (while (and topnotreached
;; (not (coq-find-no-syntactic-on-line))
;; )
;; (setq topnotreached (= (forward-line -1) 0))
;; (end-of-line)
;; (if (proof-looking-at-syntactic-context)
;; (re-search-backward coq-comment-start-regexp nil 'dummy)
;; ))
;; (back-to-indentation)
;; (if (not topnotreached) 0 ;; returns nil if top of buffer was reached
;; ;; if we are at end of a command (dot) find this command
;; ; if there is a "." alone on the line
;; (let ((pos (point)))
;; ;(ignore-errors (forward-char -1))
;; (if (coq-script-parse-cmdend-forward oldpt)
;; (progn (forward-char -1)
;; ;; one more if "." found, no more if "{" or "}"
;; (when (proof-looking-at "\\.") (forward-char -1))
;; (coq-find-real-start)
;; (back-to-indentation)
;; 1)
;; (goto-char pos)
;; (if (save-excursion
;; (and
;; (not (= (point) (point-min)))
;; (or (forward-char -1) t)
;; (coq-find-real-start)
;; (proof-looking-at-safe "Record\\|Class\\|Instance"); {struct} should not match this
;; (coq-indent-find-reg oldpt "{[^|]")))
;; 4
;; 2)))))))
;; (defun coq-find-unclosed (&optional optlvl limit openreg closereg)
;; "Finds the first unclosed open item (backward).
;; Counter starts to OPTLVL (default 1) and stops when reaching
;; LIMIT (default point-min)."
;; (let* ((lvl (or optlvl 1))
;; (open-re (if openreg
;; (proof-regexp-alt openreg proof-indent-open-regexp)
;; proof-indent-open-regexp))
;; (close-re (if closereg
;; (proof-regexp-alt closereg proof-indent-close-regexp)
;; proof-indent-close-regexp))
;; (both-re (proof-regexp-alt "\\`" close-re open-re))
;; (nextpt (save-excursion
;; (proof-re-search-backward both-re))))
;; (while
;; (and (not (= lvl 0))
;; (>= nextpt (or limit (point-min)))
;; (not (= nextpt (point-min))))
;; (goto-char nextpt)
;; (cond
;; ((proof-looking-at-syntactic-context) ())
;; ;; ((proof-looking-at-safe proof-indent-close-regexp)
;; ;; (coq-find-unclosed 1 limit)) ;; recursive call
;; ((proof-looking-at-safe close-re) (setq lvl (+ lvl 1)))
;; ((proof-looking-at-safe open-re) (setq lvl (- lvl 1))))
;; (setq nextpt (save-excursion (proof-re-search-backward both-re))))
;; (if (= lvl 0) t
;; (goto-char (or limit (point-min)))
;; nil)))
;; (defun coq-find-at-same-level-zero (limit openreg)
;; "Move to open or openreg (first found) at same parenthesis level as point.
;; Returns point if found."
;; (let* (found
;; min-reached
;; (open-re (if openreg
;; (proof-regexp-alt openreg proof-indent-open-regexp)
;; proof-indent-open-regexp))
;; (close-re proof-indent-close-regexp)
;; (both-re (proof-regexp-alt "\\`" close-re open-re))
;; (nextpt (save-excursion
;; (proof-re-search-backward both-re))))
;; (while ; min-reached is set to t only after we have tested if found.
;; (and (not found) (not min-reached)
;; (>= nextpt (or limit (point-min))))
;; (goto-char nextpt)
;; (cond
;; ((proof-looking-at-syntactic-context) ())
;; ((proof-looking-at-safe openreg) (setq found t))
;; ((proof-looking-at-safe proof-indent-open-regexp) (setq found t));assert false?
;; ;; ((proof-looking-at-safe closereg) (coq-find-unclosed 1 limit))
;; ((proof-looking-at-safe proof-indent-close-regexp)
;; (coq-find-unclosed 1 limit)))
;; (if (= nextpt (point-min)) (setq min-reached t))
;; (setq nextpt (save-excursion (proof-re-search-backward both-re))))
;; (if found (point) nil)))
;; (defun coq-find-unopened (&optional optlvl limit)
;; "Find the last unopened close item (looking forward from point).
;; Counter starts to OPTLVL (default 1) and stops when reaching
;; LIMIT (default ‘point-max’). This function only works inside an
;; expression."
;; (let ((lvl (or optlvl 1)) after nextpt endpt)
;; (save-excursion
;; (proof-re-search-forward
;; (proof-regexp-alt "\\'"
;; proof-indent-close-regexp
;; proof-indent-open-regexp))
;; (setq after (point))
;; (goto-char (match-beginning 0))
;; (setq nextpt (point)))
;; (while
;; (and (not (= lvl 0))
;; (<= nextpt (or limit (point-max)))
;; (not (= nextpt (point-max))))
;; (goto-char nextpt)
;; (setq endpt (point))
;; (cond
;; ((proof-looking-at-syntactic-context) ())
;; ((proof-looking-at-safe proof-indent-close-regexp)
;; (setq lvl (- lvl 1)))
;; ((proof-looking-at-safe proof-indent-open-regexp)
;; (setq lvl (+ lvl 1))))
;; (goto-char after)
;; (save-excursion
;; (proof-re-search-forward
;; (proof-regexp-alt "\\'"
;; proof-indent-close-regexp
;; proof-indent-open-regexp))
;; (setq after (point))
;; (goto-char (match-beginning 0))
;; (setq nextpt (point))))
;; (if (= lvl 0)
;; (goto-char endpt)
;; (goto-char (or limit (point-max)))
;; nil)))
;; (defun coq-find-last-unopened (&optional optlvl limit)
;; "Backward move to and return the point of the last close item, not opened after LIMIT."
;; (let ((last nil))
;; (while (coq-find-unopened optlvl limit)
;; (setq last (point))
;; (forward-char 1)); shift one to the right,
;; ; that way the current match won'tbe matched again
;; (if last (goto-char last))
;; last))
;; (defun coq-end-offset (&optional limit)
;; "Find the first unclosed open indent item, and return its column.
;; Stop when reaching LIMIT (default to ‘point-min’)."
;; (save-excursion
;; (let ((found nil)
;; (anyreg (proof-regexp-alt "\\`" proof-indent-any-regexp)))
;; (while
;; (and (not found)
;; (> (point) (or limit (point-min))))
;; (proof-re-search-backward anyreg)
;; (cond
;; ((proof-looking-at-syntactic-context) ())
;; ((proof-looking-at-safe proof-indent-close-regexp)
;; (coq-find-unclosed))
;; ((proof-looking-at-safe proof-indent-open-regexp)
;; (setq found t))
;; (t ())))
;; (if found (current-column)
;; -1000) ; no unclosed found
;; )))
;; (defun coq-add-iter (l f)
;; (if (eq l nil) 0 (+ (if (funcall f (car l)) 1 0) (coq-add-iter (cdr l) f))))
;; (defun coq-goal-count (l) (coq-add-iter l 'coq-indent-goal-command-p))
;; (defun coq-save-count (l)
;; (coq-add-iter l (lambda (x)
;; (or (coq-save-command-p nil x)
;; (eq (proof-string-match "\\<\\(?:EndSubproof\\)\\>\\|}" x) 0)))))
;; (defun coq-proof-count (l)
;; (coq-add-iter l (lambda (x)
;; (eq (proof-string-match "\\<\\(?:Proof\\|BeginSubproof\\)\\>\\|{" x) 0))))
;; returns the difference between goal (and assimilate Proof and BeginSubproof) and
;; save commands in a commands list. This is to
;; (defun coq-goal-save-diff-maybe-proof (l)
;; (let ((proofs (coq-proof-count l))
;; (saves (coq-save-count l))
;; (goals (coq-goal-count l)))
;; ; (if (= goals 0) (- (if (<= proofs 0) 0 1) (coq-save-count l))
;; ; (- goals (coq-save-count l)))
;; (- (+ proofs goals) saves)
;; ))
;; (defun coq-indent-command-offset (kind prevcol prevpoint)
;; "Return the indentation offset of the current line.
;; This function indents a *command* line (the first line of a command).
;; Use `coq-indent-expr-offset' to indent a line belonging to an expression."
;; (let ((diff-goal-save-current
;; (coq-goal-save-diff-maybe-proof (coq-commands-at-line t)))
;; (diff-goal-save-prev
;; (save-excursion
;; (goto-char prevpoint)
;; (coq-goal-save-diff-maybe-proof (coq-commands-at-line t))))
;; (prev-closing-beginning ; t if the closing is at start of the (prev) line
;; (save-excursion
;; (goto-char prevpoint)
;; (back-to-indentation)
;; ;(forward-char -1)
;; (looking-at coq-indent-close-regexp)))
;; (current-closing-beginning ; t if the closing is at start of the (current) line
;; (save-excursion
;; (back-to-indentation)
;; (looking-at coq-indent-close-regexp))))
;; ;(message "currentkind,prevcol,prevpoint = %d , %d ,%d " kind prevcol prevpoint)
;; (cond
;; ((proof-looking-at-safe "\\<Proof\\>") 0);; no indentation at "Proof ..."
;; (t (* proof-indent
;; (let ((res
;; (let ((a diff-goal-save-prev) (b diff-goal-save-current)
;; (a2 prev-closing-beginning) (b2 current-closing-beginning))
;; ;(message "a,b,a2,b2 = %d,%d,%S,%S" a b a2 b2)
;; (cond
;; ((and (>= a 0) (>= b 0)) a)
;; ((and (>= a 0) (< b 0) b2) (+ a -1)) ; a + b
;; ((and (>= a 0) (< b 0) (not b2)) a)
;; ((and (< a 0) (< b 0) a2 b2) a) ; a +1 -1
;; ((and (< a 0) (< b 0) a2 (not b2)) (+ a 1))
;; ((and (< a 0) (< b 0) (not a2) b2) (+ a -1))
;; ((and (< a 0) (< b 0) (not a2) (not b2)) a)
;; ((and (< a 0) (>= b 0) a2) (+ a 1))
;; ((and (< a 0) (>= b 0) (not a2)) a)
;; (t (error "Muh?"))))))
;; ;(message "RES = %S" res)
;; ;(message "********************")
;; res))
;; )
;; ;; ;; we are at an end command -> one ident left unless previous line is a goal
;; ;; ;; (if goal and save are consecutive, then no indentation at all)
;; ;; ((and (< diff-goal-save-current 0) (<= diff-goal-save-prev 0)) (- proof-indent))
;; ;; ;; previous command is a goal command -> one indent right unless the current one
;; ;; ;; is an end (consecutive goal and save).
;; ;; ((and (>= diff-goal-save-current 0) (> diff-goal-save-prev 0)) proof-indent)
;; ;; ;; otherwise -> same indent as previous command
;; ;; (t 0)
;; )))
;; This function is very complex, indentation of a line (inside an
;; expression) is determined by the beginning of this line (current
;; point) and the indentation items found at previous pertinent (not
;; comment, not string, not empty) line. Sometimes we even need the
;; previous line of previous line.
;; prevcol is the indentation column of the previous line, prevpoint
;; is the indentation point of previous line, record tells if we are
;; inside the accolades of a record.
;; (defun coq-indent-expr-offset (kind prevcol prevpoint record)
;; "Return the indentation column of the current line.
;; This function indents a *expression* line (a line inside of a
;; command). Use `coq-indent-command-offset' to indent a line belonging
;; to a command. The fourth argument RECORD must be t if inside the {}s
;; of a record, nil otherwise."
;; ;(message "COQ-INDENT-EXPR-OFFSET")
;; (let ((pt (point)) real-start)
;; (save-excursion
;; (setq real-start (coq-find-real-start)))
;; (cond
;; ;; at a ) -> same indent as the *line* of corresponding (
;; ((proof-looking-at-safe coq-indent-closepar-regexp)
;; (save-excursion (coq-find-unclosed 1 real-start)
;; (back-to-indentation)
;; (current-column)))
;; ;; at an end -> same indent as the corresponding match or Case
;; ((proof-looking-at-safe coq-indent-closematch-regexp)
;; (save-excursion (coq-find-unclosed 1 real-start)
;; (current-column)))
;; ;; if we find a "|" we indent from the first unclosed
;; ;; or from the command start (if we are in an Inductive type)
;; ((proof-looking-at-safe coq-indent-pattern-regexp)
;; (save-excursion
;; (coq-find-unclosed 1 real-start)
;; (cond
;; ((proof-looking-at-safe "\\s(")
;; (+ (current-indentation) proof-indent))
;; ((proof-looking-at-safe (proof-regexp-alt-list coq-keywords-defn))
;; (current-column))
;; (t (+ (current-column) proof-indent)))))
;; ;; if we find a "then" we indent from the first unclosed if
;; ;; or from the command start (should not happen)
;; ((proof-looking-at-safe "\\<then\\>")
;; (save-excursion
;; (coq-find-unclosed 1 real-start "\\<if\\>" "\\<then\\>")
;; (back-to-indentation)
;; (+ (current-column) proof-indent)))
;; ;; if we find a "else" we indent from the first unclosed if
;; ;; or from the command start (should not happen)
;; ((proof-looking-at-safe "\\<else\\>")
;; (save-excursion
;; (coq-find-unclosed 1 real-start "\\<then\\>" "\\<else\\>")
;; (coq-find-unclosed 1 real-start "\\<if\\>" "\\<then\\>")
;; (back-to-indentation)
;; (+ (current-column) proof-indent)))
;; ;; there is an unclosed open in the previous line
;; ;; -> same column if match
;; ;; -> same indent than prev line + indent if (
;; ((coq-find-unclosed 1 prevpoint
;; coq-indent-openmatch-regexp
;; coq-indent-closematch-regexp)
;; (let ((base (if (proof-looking-at-safe coq-indent-openmatch-regexp)
;; (current-column)
;; prevcol)))
;; (+ base proof-indent)))
;; ;; there is an unclosed '(' in the previous line -> prev line indent + indent
;; ;; ((and (goto-char pt) nil)) ; just for side effect: jump to initial point
;; ;; ((coq-find-unclosed 1 prevpoint
;; ;; coq-indent-openpar-regexp
;; ;; coq-indent-closepar-regexp)
;; ;; (+ prevcol proof-indent))
;; ((and (goto-char prevpoint) nil)) ; just for side effect: jump to previous line
;; ;; find the last unopened ) -> indentation of line + indent
;; ((coq-find-last-unopened 1 pt) ; side effect, nil if no unopenned found
;; (save-excursion
;; (coq-find-unclosed 1 real-start)
;; (back-to-indentation)
;; (current-column)))
;; ;; just for side effect: jumps to end of previous line
;; ((and (goto-char prevpoint)
;; (or (and (end-of-line) nil)
;; (and (coq-find-not-in-comment-backward "[^[:space:]]") t)) nil))
;; ;; TODO fix with new use of { for tactics enclosing
;; ;; should be ok if record is ok.
;; ((and (proof-looking-at-safe ";") ;prev line has ";" at the end
;; record) ; and we are inside {}s of a record
;; (save-excursion
;; (coq-find-unclosed 1 real-start)
;; (back-to-indentation)
;; (+ (current-column) proof-indent)))
;; ;; just for side effect: jumps to end of previous line
;; ((and (goto-char prevpoint) (not (= (coq-back-to-indentation-prevline) 0))
;; (or (and (end-of-line) nil)
;; (and (forward-char -1) t)) nil))
;; ((and (proof-looking-at-safe ";") ;prev prev line has ";" at the end
;; record) ; and we are inside {}s of a record
;; (save-excursion (+ prevcol proof-indent)))
;; ((and (goto-char pt) nil)) ;; just for side effect: go back to initial point
;; ;; There is a indent keyword (fun, forall etc)
;; ;; and we are not in {}s of a record just after a ";"
;; ((coq-find-at-same-level-zero prevpoint coq-indent-kw)
;; ;(message "COQ-INDENT-KW")
;; (+ prevcol proof-indent))
;; ((and (goto-char prevpoint) nil)) ;; just for side effect: go back to previous line
;; ;; "|" at previous line
;; ((proof-looking-at-safe coq-indent-pattern-regexp)
;; (+ prevcol proof-indent))
;; (t prevcol))))
;; (defun coq-indent-comment-offset ()
;; (save-excursion
;; (back-to-indentation)
;; (let ((oldpt (point))
;; ;; atstart is true if the line to indent starts with a comment start
;; (atstart (proof-looking-at coq-comment-start-regexp)))
;; ;; go back looking for a non empty line
;; (if (/= (forward-line -1) 0) 0 ; we are at beginning of buffer
;; ;; only-space on a non empty line moves the point to first non space char
;; (while (and (coq-indent-only-spaces-on-line) (= (forward-line -1) 0)) ())
;; ;; now we found the previous non empty line
;; (let ((eol (save-excursion (end-of-line) (point))))
;; (cond
;; ;; The previous line contains is the comment start
;; ((and (not atstart) (string-match coq-comment-start-regexp
;; (buffer-substring (point) eol)))
;; (re-search-forward coq-comment-start-regexp) ;first '(*' in the line?
;; (+ 1 (current-column)))
;; ;; the previous is in the same comment start or a comment started at that line
;; ((and (not atstart) (proof-looking-at-syntactic-context))
;; (skip-chars-forward " \t")
;; (current-column))
;; ;;we were at the first line of a comment and the current line is the
;; ;;previous one
;; (t (goto-char oldpt)
;; (coq-script-parse-cmdend-backward)
;; (coq-find-real-start)
;; (current-column))))))))
;; (defun coq-indent-offset (&optional notcomments)
;; (let (kind prevcol prevpoint)
;; (save-excursion
;; (setq kind (coq-back-to-indentation-prevline) ;go to previous *command* (assert)
;; prevcol (current-column)
;; prevpoint (point)))
;; ;(message "coq-indent-offset... kind = %s ; prevcol = %s; prevpoint = %s" kind prevcol prevpoint)
;; (cond
;; ((= kind 0) 0 ; top of the buffer reached
;; )
;; ((= kind 1) ; we are at the command level
;; (+ prevcol (coq-indent-command-offset kind prevcol prevpoint)))
;; ((= kind 2) ; we are at the expression level
;; (coq-indent-expr-offset kind prevcol prevpoint nil))
;; ((= kind 4) ; we are at the expression level inside {}s of a record
;; (coq-indent-expr-offset kind prevcol prevpoint t))
;; ((= kind 3)
;; (if notcomments nil (coq-indent-comment-offset))))))
;; (defun coq-indent-calculate (&optional notcomments)
;; (coq-indent-offset notcomments))
;; (defun coq-indent-line ()
;; "Indent current line of proof script, if indentation enabled."
;; (interactive)
;; (unless (not coq-script-indent)
;; (save-excursion
;; (let ((ind (save-excursion (back-to-indentation) (coq-indent-calculate))))
;; (indent-line-to (max 0 ind))))
;; (if (< (current-column) (current-indentation))
;; (back-to-indentation))))
;; (defun coq-indent-line-not-comments ()
;; "Same as `coq-indent-line' but comments are not indented."
;; (interactive)
;; (unless (not coq-script-indent)
;; (save-excursion
;; (let ((ind (save-excursion (back-to-indentation) (coq-indent-calculate t))))
;; (when ind (indent-line-to (max 0 ind)))))
;; (if (< (current-column) (current-indentation))
;; (back-to-indentation))))
;; (defun coq-indent-region (start end)
;; (let ((deb (min start end)) (fin (max start end)))
;; (goto-char end)
;; (setq fin (point-marker)) ;; to go back there even if shifted
;; (goto-char deb)
;; (while (< (point) fin)
;; (or (and (bolp) (eolp))
;; (coq-indent-line-not-comments))
;; (forward-line 1))
;; (goto-char fin)))
;; Local Variables: ***
;; indent-tabs-mode:nil ***
;; End: ***
(provide 'coq-indent)
;;; coq-indent.el ends here
|