Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

100 рядки
3.7KB

  1. / ========================================================================= /
  2. / Copyright (c) 1998-2000, The Santa Cruz Operation /
  3. / All rights reserved./
  4. / /
  5. / Redistribution and use in source and binary forms, with or without/
  6. / modification, are permitted provided that the following conditions are met:/
  7. //
  8. / *Redistributions of source code must retain the above copyright notice,/
  9. / this list of conditions and the following disclaimer./
  10. //
  11. / *Redistributions in binary form must reproduce the above copyright notice,/
  12. / this list of conditions and the following disclaimer in the documentation/
  13. / and/or other materials provided with the distribution./
  14. //
  15. / *Neither name of The Santa Cruz Operation nor the names of its contributors/
  16. / may be used to endorse or promote products derived from this software/
  17. / without specific prior written permission. /
  18. //
  19. / THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS/
  20. / IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,/
  21. / THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR/
  22. / PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE/
  23. / LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR/
  24. / CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF/
  25. / SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS/
  26. / INTERRUPTION)/
  27. / HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT/
  28. / LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY/
  29. / OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH/
  30. / DAMAGE. /
  31. / ========================================================================= /
  32. / emacs menu for cscope /
  33. ((X) cscope (find current word [MACRO])
  34. (extern symbol-character)
  35. / if this character is not part of a symbol /
  36. (cond ((not symbol-character)
  37. / if the previous character is not part of a symbol, go to
  38. the next word /
  39. back
  40. (cond ((not symbol-character) forward-word back-word))
  41. ))
  42. / get the current symbol (leave cursor at beginning of symbol) /
  43. (while symbol-character forward) / go past last symbol character /
  44. mark / mark this point /
  45. back / back to last symbol character /
  46. (while (cond (symbol-character (return back)))) / back fails at BOF /
  47. (cond ((not symbol-character) forward)) / forward if not at BOF /
  48. pickup-region / get the symbol /
  49. (local-string symbol)
  50. symbol=
  51. / if arg > 0 then display the menu /
  52. (cond ((> arg 0) (display-menu
  53. (format symbol "5 Find functions calling %l()")
  54. (format symbol "4 Find functions called by %l()")
  55. (format symbol "3 Find global definition of %l")
  56. (format symbol "2 Find symbol %l")
  57. "1 Call cscope"
  58. 5)
  59. ))
  60. / get the selection /
  61. (local selection)
  62. (selection= (read-character "Selection?"))
  63. / if the selection is in range /
  64. (cond ((&& (>= selection '1') (<= selection '5'))
  65. / if the selection requests finding the symbol /
  66. (local-string findsymbol)
  67. (findsymbol= "")
  68. (cond ((>= selection '2')
  69. (findsymbol= (format (char-to-string (- selection 2)) symbol "-%l '%l'"))))
  70. / if arg > 1 or < 0 then don't update the cross-reference database /
  71. (local-string doption)
  72. (doption= "")
  73. (cond ((|| (> arg 1) (< arg 0)) (doption= "-d")))
  74. / call cscope with usilent mode off /
  75. (local oldmode) / save old usilent mode /
  76. (oldmode= (set-mode "usilent" 0)) / turn off usilent mode /
  77. (run-command (format doption findsymbol "cscope %l %l"))
  78. (set-mode "usilent" oldmode) / restore usilent mode /
  79. ))
  80. )
  81. / see if the current character is part of a symbol /
  82. (symbol-character ()
  83. (local c)
  84. (c= current-character)
  85. (return (cond ((&& (>= c 'a') (<= c 'z')))
  86. ((&& (>= c 'A') (<= c 'Z')))
  87. ((&& (>= c '0') (<= c '9')))
  88. ((== c '_'))
  89. )
  90. )
  91. )