You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3KB

  1. ; ===========================================================================
  2. ; Copyright (c) 1998-2000, The Santa Cruz Operation
  3. ; All rights reserved.
  4. ; Redistribution and use in source and binary forms, with or without
  5. ; modification, are permitted provided that the following conditions are met:
  6. ; *Redistributions of source code must retain the above copyright notice,
  7. ; this list of conditions and the following disclaimer.
  8. ; *Redistributions in binary form must reproduce the above copyright notice,
  9. ; this list of conditions and the following disclaimer in the documentation
  10. ; and/or other materials provided with the distribution.
  11. ; *Neither name of The Santa Cruz Operation nor the names of its contributors
  12. ; may be used to endorse or promote products derived from this software
  13. ; without specific prior written permission.
  14. ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
  15. ; IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  16. ; THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  17. ; PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
  18. ; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  19. ; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  20. ; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  21. ; INTERRUPTION)
  22. ; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. ; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. ; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  25. ; DAMAGE.
  26. ; =========================================================================
  27. ; cscope.ml (s.cscope.ml) - 1.4 (2/21/84 14:53:58)
  28. ;
  29. ; Macro to handle invocation of gmacs by cscope from the
  30. ; experimental tools. Cscope invokes gmacs with two arguments:
  31. ;
  32. ; gmacs +line file
  33. ;
  34. ; This macro gobbles the line number, visits the specified file,
  35. ; and moves to the specified line number.
  36. (progn
  37. args
  38. pluses
  39. (setq pluses 0)
  40. (setq args (argc))
  41. (if (> args 1)
  42. (progn
  43. (if (= (string-to-char "+") (string-to-char (argv 1)))
  44. (setq pluses 1)
  45. )
  46. (setq args (- args 1))
  47. (while (> args pluses)
  48. (visit-file (argv args))
  49. (setq args (- args 1))
  50. )
  51. (if (= (> (argc) 2) (> pluses 0))
  52. (goto-line (argv 1))
  53. )
  54. )
  55. )
  56. )